{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:matter-js@0.18.0/build/matter.js", "ssg:https://framer.com/m/MakeWalls-36kf.js@Ok6wam0uM9G4VUuXWgpR", "ssg:https://framer.com/m/MakeBodies-Lkv1.js@LTuIQWugGJr30ZUS1CV9", "ssg:https://framerusercontent.com/modules/8VVgbG1flQ1tceOVOBM1/0JLfKUN6gfqt1GEFRIwS/Physics_1.js", "ssg:https://framerusercontent.com/modules/bARI95K0qe1bAsDzWKNm/4tAnxua8sIFe3WfkJ4bJ/tqqsK7FPC.js", "ssg:https://framerusercontent.com/modules/sy1HYuNHbnGu7VtSzAst/H8cT0yzPUnoQk1MswQKJ/niUZQEQ1G.js"],
  "sourcesContent": ["var e=\"undefined\"!==typeof globalThis?globalThis:\"undefined\"!==typeof self?self:global;var t={};(function webpackUniversalModuleDefinition(e,n){t=n()})(0,(function(){return function(e){var t={};function __webpack_require__(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:false,exports:{}};e[n].call(i.exports,i,i.exports,__webpack_require__);i.l=true;return i.exports}__webpack_require__.m=e;__webpack_require__.c=t;__webpack_require__.d=function(e,t,n){__webpack_require__.o(e,t)||Object.defineProperty(e,t,{enumerable:true,get:n})};__webpack_require__.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"});Object.defineProperty(e,\"__esModule\",{value:true})};__webpack_require__.t=function(e,t){1&t&&(e=__webpack_require__(e));if(8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);__webpack_require__.r(n);Object.defineProperty(n,\"default\",{enumerable:true,value:e});if(2&t&&\"string\"!=typeof e)for(var i in e)__webpack_require__.d(n,i,function(t){return e[t]}.bind(null,i));return n};__webpack_require__.n=function(e){var t=e&&e.__esModule?function getDefault(){return e.default}:function getModuleExports(){return e};__webpack_require__.d(t,\"a\",t);return t};__webpack_require__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)};__webpack_require__.p=\"\";return __webpack_require__(__webpack_require__.s=21)}([function(t,n){var i={};t.exports=i;(function(){i._nextId=0;i._seed=0;i._nowStartTime=+new Date;i._warnedOnce={};i._decomp=null;\n/**\n         * Extends the object in the first argument using the object in the second argument.\n         * @method extend\n         * @param {} obj\n         * @param {boolean} deep\n         * @return {} obj extended\n         */i.extend=function(e,t){var n,o;if(\"boolean\"===typeof t){n=2;o=t}else{n=1;o=true}for(var r=n;r<arguments.length;r++){var a=arguments[r];if(a)for(var s in a)if(o&&a[s]&&a[s].constructor===Object)if(e[s]&&e[s].constructor!==Object)e[s]=a[s];else{e[s]=e[s]||{};i.extend(e[s],o,a[s])}else e[s]=a[s]}return e};\n/**\n         * Creates a new clone of the object, if deep is true references will also be cloned.\n         * @method clone\n         * @param {} obj\n         * @param {bool} deep\n         * @return {} obj cloned\n         */i.clone=function(e,t){return i.extend({},t,e)};\n/**\n         * Returns the list of keys for the given object.\n         * @method keys\n         * @param {} obj\n         * @return {string[]} keys\n         */i.keys=function(e){if(Object.keys)return Object.keys(e);var t=[];for(var n in e)t.push(n);return t};\n/**\n         * Returns the list of values for the given object.\n         * @method values\n         * @param {} obj\n         * @return {array} Array of the objects property values\n         */i.values=function(e){var t=[];if(Object.keys){var n=Object.keys(e);for(var i=0;i<n.length;i++)t.push(e[n[i]]);return t}for(var o in e)t.push(e[o]);return t};\n/**\n         * Gets a value from `base` relative to the `path` string.\n         * @method get\n         * @param {} obj The base object\n         * @param {string} path The path relative to `base`, e.g. 'Foo.Bar.baz'\n         * @param {number} [begin] Path slice begin\n         * @param {number} [end] Path slice end\n         * @return {} The object at the given path\n         */i.get=function(e,t,n,i){t=t.split(\".\").slice(n,i);for(var o=0;o<t.length;o+=1)e=e[t[o]];return e};\n/**\n         * Sets a value on `base` relative to the given `path` string.\n         * @method set\n         * @param {} obj The base object\n         * @param {string} path The path relative to `base`, e.g. 'Foo.Bar.baz'\n         * @param {} val The value to set\n         * @param {number} [begin] Path slice begin\n         * @param {number} [end] Path slice end\n         * @return {} Pass through `val` for chaining\n         */i.set=function(e,t,n,o,r){var a=t.split(\".\").slice(o,r);i.get(e,t,0,-1)[a[a.length-1]]=n;return n};\n/**\n         * Shuffles the given array in-place.\n         * The function uses a seeded random generator.\n         * @method shuffle\n         * @param {array} array\n         * @return {array} array shuffled randomly\n         */i.shuffle=function(e){for(var t=e.length-1;t>0;t--){var n=Math.floor(i.random()*(t+1));var o=e[t];e[t]=e[n];e[n]=o}return e};\n/**\n         * Randomly chooses a value from a list with equal probability.\n         * The function uses a seeded random generator.\n         * @method choose\n         * @param {array} choices\n         * @return {object} A random choice object from the array\n         */i.choose=function(e){return e[Math.floor(i.random()*e.length)]};\n/**\n         * Returns true if the object is a HTMLElement, otherwise false.\n         * @method isElement\n         * @param {object} obj\n         * @return {boolean} True if the object is a HTMLElement, otherwise false\n         */i.isElement=function(e){return\"undefined\"!==typeof HTMLElement?e instanceof HTMLElement:!!(e&&e.nodeType&&e.nodeName)};\n/**\n         * Returns true if the object is an array.\n         * @method isArray\n         * @param {object} obj\n         * @return {boolean} True if the object is an array, otherwise false\n         */i.isArray=function(e){return\"[object Array]\"===Object.prototype.toString.call(e)};\n/**\n         * Returns true if the object is a function.\n         * @method isFunction\n         * @param {object} obj\n         * @return {boolean} True if the object is a function, otherwise false\n         */i.isFunction=function(e){return\"function\"===typeof e};\n/**\n         * Returns true if the object is a plain object.\n         * @method isPlainObject\n         * @param {object} obj\n         * @return {boolean} True if the object is a plain object, otherwise false\n         */i.isPlainObject=function(e){return\"object\"===typeof e&&e.constructor===Object};\n/**\n         * Returns true if the object is a string.\n         * @method isString\n         * @param {object} obj\n         * @return {boolean} True if the object is a string, otherwise false\n         */i.isString=function(e){return\"[object String]\"===toString.call(e)};\n/**\n         * Returns the given value clamped between a minimum and maximum value.\n         * @method clamp\n         * @param {number} value\n         * @param {number} min\n         * @param {number} max\n         * @return {number} The value clamped between min and max inclusive\n         */i.clamp=function(e,t,n){return e<t?t:e>n?n:e};\n/**\n         * Returns the sign of the given value.\n         * @method sign\n         * @param {number} value\n         * @return {number} -1 if negative, +1 if 0 or positive\n         */i.sign=function(e){return e<0?-1:1};i.now=function(){if(\"undefined\"!==typeof window&&window.performance){if(window.performance.now)return window.performance.now();if(window.performance.webkitNow)return window.performance.webkitNow()}return Date.now?Date.now():new Date-i._nowStartTime};\n/**\n         * Returns a random value between a minimum and a maximum value inclusive.\n         * The function uses a seeded random generator.\n         * @method random\n         * @param {number} min\n         * @param {number} max\n         * @return {number} A random number between min and max inclusive\n         */i.random=function(e,t){e=\"undefined\"!==typeof e?e:0;t=\"undefined\"!==typeof t?t:1;return e+_seededRandom()*(t-e)};var _seededRandom=function(){i._seed=(9301*i._seed+49297)%233280;return i._seed/233280};\n/**\n         * Converts a CSS hex colour string into an integer.\n         * @method colorToNumber\n         * @param {string} colorString\n         * @return {number} An integer representing the CSS hex string\n         */i.colorToNumber=function(e){e=e.replace(\"#\",\"\");3==e.length&&(e=e.charAt(0)+e.charAt(0)+e.charAt(1)+e.charAt(1)+e.charAt(2)+e.charAt(2));return parseInt(e,16)};\n/**\n         * The console logging level to use, where each level includes all levels above and excludes the levels below.\n         * The default level is 'debug' which shows all console messages.  \n         *\n         * Possible level values are:\n         * - 0 = None\n         * - 1 = Debug\n         * - 2 = Info\n         * - 3 = Warn\n         * - 4 = Error\n         * @property Common.logLevel\n         * @type {Number}\n         * @default 1\n         */i.logLevel=1;\n/**\n         * Shows a `console.log` message only if the current `Common.logLevel` allows it.\n         * The message will be prefixed with 'matter-js' to make it easily identifiable.\n         * @method log\n         * @param ...objs {} The objects to log.\n         */i.log=function(){console&&i.logLevel>0&&i.logLevel<=3&&console.log.apply(console,[\"matter-js:\"].concat(Array.prototype.slice.call(arguments)))};\n/**\n         * Shows a `console.info` message only if the current `Common.logLevel` allows it.\n         * The message will be prefixed with 'matter-js' to make it easily identifiable.\n         * @method info\n         * @param ...objs {} The objects to log.\n         */i.info=function(){console&&i.logLevel>0&&i.logLevel<=2&&console.info.apply(console,[\"matter-js:\"].concat(Array.prototype.slice.call(arguments)))};\n/**\n         * Shows a `console.warn` message only if the current `Common.logLevel` allows it.\n         * The message will be prefixed with 'matter-js' to make it easily identifiable.\n         * @method warn\n         * @param ...objs {} The objects to log.\n         */i.warn=function(){console&&i.logLevel>0&&i.logLevel<=3&&console.warn.apply(console,[\"matter-js:\"].concat(Array.prototype.slice.call(arguments)))};\n/**\n         * Uses `Common.warn` to log the given message one time only.\n         * @method warnOnce\n         * @param ...objs {} The objects to log.\n         */i.warnOnce=function(){var e=Array.prototype.slice.call(arguments).join(\" \");if(!i._warnedOnce[e]){i.warn(e);i._warnedOnce[e]=true}};\n/**\n         * Shows a deprecated console warning when the function on the given object is called.\n         * The target function will be replaced with a new function that first shows the warning\n         * and then calls the original function.\n         * @method deprecated\n         * @param {object} obj The object or module\n         * @param {string} name The property name of the function on obj\n         * @param {string} warning The one-time message to show if the function is called\n         */i.deprecated=function(e,t,n){e[t]=i.chain((function(){i.warnOnce(\"\uD83D\uDD05 deprecated \uD83D\uDD05\",n)}),e[t])};i.nextId=function(){return i._nextId++};\n/**\n         * A cross browser compatible indexOf implementation.\n         * @method indexOf\n         * @param {array} haystack\n         * @param {object} needle\n         * @return {number} The position of needle in haystack, otherwise -1.\n         */i.indexOf=function(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0;n<e.length;n++)if(e[n]===t)return n;return-1};\n/**\n         * A cross browser compatible array map implementation.\n         * @method map\n         * @param {array} list\n         * @param {function} func\n         * @return {array} Values from list transformed by func.\n         */i.map=function(e,t){if(e.map)return e.map(t);var n=[];for(var i=0;i<e.length;i+=1)n.push(t(e[i]));return n};\n/**\n         * Takes a directed graph and returns the partially ordered set of vertices in topological order.\n         * Circular dependencies are allowed.\n         * @method topologicalSort\n         * @param {object} graph\n         * @return {array} Partially ordered set of vertices in topological order.\n         */i.topologicalSort=function(e){var t=[],n=[],o=[];for(var r in e)n[r]||o[r]||i._topologicalSort(r,n,o,e,t);return t};i._topologicalSort=function(e,t,n,o,r){var a=o[e]||[];n[e]=true;for(var s=0;s<a.length;s+=1){var l=a[s];n[l]||(t[l]||i._topologicalSort(l,t,n,o,r))}n[e]=false;t[e]=true;r.push(e)};\n/**\n         * Takes _n_ functions as arguments and returns a new function that calls them in order.\n         * The arguments applied when calling the new function will also be applied to every function passed.\n         * The value of `this` refers to the last value returned in the chain that was not `undefined`.\n         * Therefore if a passed function does not return a value, the previously returned value is maintained.\n         * After all passed functions have been called the new function returns the last returned value (if any).\n         * If any of the passed functions are a chain, then the chain will be flattened.\n         * @method chain\n         * @param ...funcs {function} The functions to chain.\n         * @return {function} A new function that calls the passed functions in order.\n         */i.chain=function(){var e=[];for(var t=0;t<arguments.length;t+=1){var n=arguments[t];n._chained?e.push.apply(e,n._chained):e.push(n)}var chain=function(){var t,n=new Array(arguments.length);for(var i=0,o=arguments.length;i<o;i++)n[i]=arguments[i];for(i=0;i<e.length;i+=1){var r=e[i].apply(t,n);\"undefined\"!==typeof r&&(t=r)}return t};chain._chained=e;return chain};\n/**\n         * Chains a function to excute before the original function on the given `path` relative to `base`.\n         * See also docs for `Common.chain`.\n         * @method chainPathBefore\n         * @param {} base The base object\n         * @param {string} path The path relative to `base`\n         * @param {function} func The function to chain before the original\n         * @return {function} The chained function that replaced the original\n         */i.chainPathBefore=function(e,t,n){return i.set(e,t,i.chain(n,i.get(e,t)))};\n/**\n         * Chains a function to excute after the original function on the given `path` relative to `base`.\n         * See also docs for `Common.chain`.\n         * @method chainPathAfter\n         * @param {} base The base object\n         * @param {string} path The path relative to `base`\n         * @param {function} func The function to chain after the original\n         * @return {function} The chained function that replaced the original\n         */i.chainPathAfter=function(e,t,n){return i.set(e,t,i.chain(i.get(e,t),n))};\n/**\n         * Provide the [poly-decomp](https://github.com/schteppe/poly-decomp.js) library module to enable\n         * concave vertex decomposition support when using `Bodies.fromVertices` e.g. `Common.setDecomp(require('poly-decomp'))`.\n         * @method setDecomp\n         * @param {} decomp The [poly-decomp](https://github.com/schteppe/poly-decomp.js) library module.\n         */i.setDecomp=function(e){i._decomp=e};i.getDecomp=function(){var t=i._decomp;try{t||\"undefined\"===typeof window||(t=window.decomp);t||\"undefined\"===typeof e||(t=e.decomp)}catch(e){t=null}return t}})()},function(e,t){var n={};e.exports=n;(function(){\n/**\n         * Creates a new axis-aligned bounding box (AABB) for the given vertices.\n         * @method create\n         * @param {vertices} vertices\n         * @return {bounds} A new bounds object\n         */\nn.create=function(e){var t={min:{x:0,y:0},max:{x:0,y:0}};e&&n.update(t,e);return t};\n/**\n         * Updates bounds using the given vertices and extends the bounds given a velocity.\n         * @method update\n         * @param {bounds} bounds\n         * @param {vertices} vertices\n         * @param {vector} velocity\n         */n.update=function(e,t,n){e.min.x=Infinity;e.max.x=-Infinity;e.min.y=Infinity;e.max.y=-Infinity;for(var i=0;i<t.length;i++){var o=t[i];o.x>e.max.x&&(e.max.x=o.x);o.x<e.min.x&&(e.min.x=o.x);o.y>e.max.y&&(e.max.y=o.y);o.y<e.min.y&&(e.min.y=o.y)}if(n){n.x>0?e.max.x+=n.x:e.min.x+=n.x;n.y>0?e.max.y+=n.y:e.min.y+=n.y}};\n/**\n         * Returns true if the bounds contains the given point.\n         * @method contains\n         * @param {bounds} bounds\n         * @param {vector} point\n         * @return {boolean} True if the bounds contain the point, otherwise false\n         */n.contains=function(e,t){return t.x>=e.min.x&&t.x<=e.max.x&&t.y>=e.min.y&&t.y<=e.max.y};\n/**\n         * Returns true if the two bounds intersect.\n         * @method overlaps\n         * @param {bounds} boundsA\n         * @param {bounds} boundsB\n         * @return {boolean} True if the bounds overlap, otherwise false\n         */n.overlaps=function(e,t){return e.min.x<=t.max.x&&e.max.x>=t.min.x&&e.max.y>=t.min.y&&e.min.y<=t.max.y};\n/**\n         * Translates the bounds by the given vector.\n         * @method translate\n         * @param {bounds} bounds\n         * @param {vector} vector\n         */n.translate=function(e,t){e.min.x+=t.x;e.max.x+=t.x;e.min.y+=t.y;e.max.y+=t.y};\n/**\n         * Shifts the bounds to the given position.\n         * @method shift\n         * @param {bounds} bounds\n         * @param {vector} position\n         */n.shift=function(e,t){var n=e.max.x-e.min.x,i=e.max.y-e.min.y;e.min.x=t.x;e.max.x=t.x+n;e.min.y=t.y;e.max.y=t.y+i}})()},function(e,t){var n={};e.exports=n;(function(){\n/**\n         * Creates a new vector.\n         * @method create\n         * @param {number} x\n         * @param {number} y\n         * @return {vector} A new vector\n         */\nn.create=function(e,t){return{x:e||0,y:t||0}};\n/**\n         * Returns a new vector with `x` and `y` copied from the given `vector`.\n         * @method clone\n         * @param {vector} vector\n         * @return {vector} A new cloned vector\n         */n.clone=function(e){return{x:e.x,y:e.y}};\n/**\n         * Returns the magnitude (length) of a vector.\n         * @method magnitude\n         * @param {vector} vector\n         * @return {number} The magnitude of the vector\n         */n.magnitude=function(e){return Math.sqrt(e.x*e.x+e.y*e.y)};\n/**\n         * Returns the magnitude (length) of a vector (therefore saving a `sqrt` operation).\n         * @method magnitudeSquared\n         * @param {vector} vector\n         * @return {number} The squared magnitude of the vector\n         */n.magnitudeSquared=function(e){return e.x*e.x+e.y*e.y};\n/**\n         * Rotates the vector about (0, 0) by specified angle.\n         * @method rotate\n         * @param {vector} vector\n         * @param {number} angle\n         * @param {vector} [output]\n         * @return {vector} The vector rotated about (0, 0)\n         */n.rotate=function(e,t,n){var i=Math.cos(t),o=Math.sin(t);n||(n={});var r=e.x*i-e.y*o;n.y=e.x*o+e.y*i;n.x=r;return n};\n/**\n         * Rotates the vector about a specified point by specified angle.\n         * @method rotateAbout\n         * @param {vector} vector\n         * @param {number} angle\n         * @param {vector} point\n         * @param {vector} [output]\n         * @return {vector} A new vector rotated about the point\n         */n.rotateAbout=function(e,t,n,i){var o=Math.cos(t),r=Math.sin(t);i||(i={});var a=n.x+((e.x-n.x)*o-(e.y-n.y)*r);i.y=n.y+((e.x-n.x)*r+(e.y-n.y)*o);i.x=a;return i};\n/**\n         * Normalises a vector (such that its magnitude is `1`).\n         * @method normalise\n         * @param {vector} vector\n         * @return {vector} A new vector normalised\n         */n.normalise=function(e){var t=n.magnitude(e);return 0===t?{x:0,y:0}:{x:e.x/t,y:e.y/t}};\n/**\n         * Returns the dot-product of two vectors.\n         * @method dot\n         * @param {vector} vectorA\n         * @param {vector} vectorB\n         * @return {number} The dot product of the two vectors\n         */n.dot=function(e,t){return e.x*t.x+e.y*t.y};\n/**\n         * Returns the cross-product of two vectors.\n         * @method cross\n         * @param {vector} vectorA\n         * @param {vector} vectorB\n         * @return {number} The cross product of the two vectors\n         */n.cross=function(e,t){return e.x*t.y-e.y*t.x};\n/**\n         * Returns the cross-product of three vectors.\n         * @method cross3\n         * @param {vector} vectorA\n         * @param {vector} vectorB\n         * @param {vector} vectorC\n         * @return {number} The cross product of the three vectors\n         */n.cross3=function(e,t,n){return(t.x-e.x)*(n.y-e.y)-(t.y-e.y)*(n.x-e.x)};\n/**\n         * Adds the two vectors.\n         * @method add\n         * @param {vector} vectorA\n         * @param {vector} vectorB\n         * @param {vector} [output]\n         * @return {vector} A new vector of vectorA and vectorB added\n         */n.add=function(e,t,n){n||(n={});n.x=e.x+t.x;n.y=e.y+t.y;return n};\n/**\n         * Subtracts the two vectors.\n         * @method sub\n         * @param {vector} vectorA\n         * @param {vector} vectorB\n         * @param {vector} [output]\n         * @return {vector} A new vector of vectorA and vectorB subtracted\n         */n.sub=function(e,t,n){n||(n={});n.x=e.x-t.x;n.y=e.y-t.y;return n};\n/**\n         * Multiplies a vector and a scalar.\n         * @method mult\n         * @param {vector} vector\n         * @param {number} scalar\n         * @return {vector} A new vector multiplied by scalar\n         */n.mult=function(e,t){return{x:e.x*t,y:e.y*t}};\n/**\n         * Divides a vector and a scalar.\n         * @method div\n         * @param {vector} vector\n         * @param {number} scalar\n         * @return {vector} A new vector divided by scalar\n         */n.div=function(e,t){return{x:e.x/t,y:e.y/t}};\n/**\n         * Returns the perpendicular vector. Set `negate` to true for the perpendicular in the opposite direction.\n         * @method perp\n         * @param {vector} vector\n         * @param {bool} [negate=false]\n         * @return {vector} The perpendicular vector\n         */n.perp=function(e,t){t=true===t?-1:1;return{x:t*-e.y,y:t*e.x}};\n/**\n         * Negates both components of a vector such that it points in the opposite direction.\n         * @method neg\n         * @param {vector} vector\n         * @return {vector} The negated vector\n         */n.neg=function(e){return{x:-e.x,y:-e.y}};\n/**\n         * Returns the angle between the vector `vectorB - vectorA` and the x-axis in radians.\n         * @method angle\n         * @param {vector} vectorA\n         * @param {vector} vectorB\n         * @return {number} The angle in radians\n         */n.angle=function(e,t){return Math.atan2(t.y-e.y,t.x-e.x)};\n/**\n         * Temporary vector pool (not thread-safe).\n         * @property _temp\n         * @type {vector[]}\n         * @private\n         */n._temp=[n.create(),n.create(),n.create(),n.create(),n.create(),n.create()]})()},function(e,t,n){var i={};e.exports=i;var o=n(2);var r=n(0);(function(){\n/**\n         * Creates a new set of `Matter.Body` compatible vertices.\n         * The `points` argument accepts an array of `Matter.Vector` points orientated around the origin `(0, 0)`, for example:\n         *\n         *     [{ x: 0, y: 0 }, { x: 25, y: 50 }, { x: 50, y: 0 }]\n         *\n         * The `Vertices.create` method returns a new array of vertices, which are similar to Matter.Vector objects,\n         * but with some additional references required for efficient collision detection routines.\n         *\n         * Vertices must be specified in clockwise order.\n         *\n         * Note that the `body` argument is not optional, a `Matter.Body` reference must be provided.\n         *\n         * @method create\n         * @param {vector[]} points\n         * @param {body} body\n         */\ni.create=function(e,t){var n=[];for(var i=0;i<e.length;i++){var o=e[i],r={x:o.x,y:o.y,index:i,body:t,isInternal:false};n.push(r)}return n};\n/**\n         * Parses a string containing ordered x y pairs separated by spaces (and optionally commas), \n         * into a `Matter.Vertices` object for the given `Matter.Body`.\n         * For parsing SVG paths, see `Svg.pathToVertices`.\n         * @method fromPath\n         * @param {string} path\n         * @param {body} body\n         * @return {vertices} vertices\n         */i.fromPath=function(e,t){var n=/L?\\s*([-\\d.e]+)[\\s,]*([-\\d.e]+)*/gi,o=[];e.replace(n,(function(e,t,n){o.push({x:parseFloat(t),y:parseFloat(n)})}));return i.create(o,t)};\n/**\n         * Returns the centre (centroid) of the set of vertices.\n         * @method centre\n         * @param {vertices} vertices\n         * @return {vector} The centre point\n         */i.centre=function(e){var t,n,r,a=i.area(e,true),s={x:0,y:0};for(var l=0;l<e.length;l++){r=(l+1)%e.length;t=o.cross(e[l],e[r]);n=o.mult(o.add(e[l],e[r]),t);s=o.add(s,n)}return o.div(s,6*a)};\n/**\n         * Returns the average (mean) of the set of vertices.\n         * @method mean\n         * @param {vertices} vertices\n         * @return {vector} The average point\n         */i.mean=function(e){var t={x:0,y:0};for(var n=0;n<e.length;n++){t.x+=e[n].x;t.y+=e[n].y}return o.div(t,e.length)};\n/**\n         * Returns the area of the set of vertices.\n         * @method area\n         * @param {vertices} vertices\n         * @param {bool} signed\n         * @return {number} The area\n         */i.area=function(e,t){var n=0,i=e.length-1;for(var o=0;o<e.length;o++){n+=(e[i].x-e[o].x)*(e[i].y+e[o].y);i=o}return t?n/2:Math.abs(n)/2};\n/**\n         * Returns the moment of inertia (second moment of area) of the set of vertices given the total mass.\n         * @method inertia\n         * @param {vertices} vertices\n         * @param {number} mass\n         * @return {number} The polygon's moment of inertia\n         */i.inertia=function(e,t){var n,i,r=0,a=0,s=e;for(var l=0;l<s.length;l++){i=(l+1)%s.length;n=Math.abs(o.cross(s[i],s[l]));r+=n*(o.dot(s[i],s[i])+o.dot(s[i],s[l])+o.dot(s[l],s[l]));a+=n}return t/6*(r/a)};\n/**\n         * Translates the set of vertices in-place.\n         * @method translate\n         * @param {vertices} vertices\n         * @param {vector} vector\n         * @param {number} scalar\n         */i.translate=function(e,t,n){n=\"undefined\"!==typeof n?n:1;var i,o=e.length,r=t.x*n,a=t.y*n;for(i=0;i<o;i++){e[i].x+=r;e[i].y+=a}return e};\n/**\n         * Rotates the set of vertices in-place.\n         * @method rotate\n         * @param {vertices} vertices\n         * @param {number} angle\n         * @param {vector} point\n         */i.rotate=function(e,t,n){if(0!==t){var i,o,r,a,s=Math.cos(t),l=Math.sin(t),c=n.x,u=n.y,f=e.length;for(a=0;a<f;a++){i=e[a];o=i.x-c;r=i.y-u;i.x=c+(o*s-r*l);i.y=u+(o*l+r*s)}return e}};\n/**\n         * Returns `true` if the `point` is inside the set of `vertices`.\n         * @method contains\n         * @param {vertices} vertices\n         * @param {vector} point\n         * @return {boolean} True if the vertices contains point, otherwise false\n         */i.contains=function(e,t){var n,i=t.x,o=t.y,r=e.length,a=e[r-1];for(var s=0;s<r;s++){n=e[s];if((i-a.x)*(n.y-a.y)+(o-a.y)*(a.x-n.x)>0)return false;a=n}return true};\n/**\n         * Scales the vertices from a point (default is centre) in-place.\n         * @method scale\n         * @param {vertices} vertices\n         * @param {number} scaleX\n         * @param {number} scaleY\n         * @param {vector} point\n         */i.scale=function(e,t,n,r){if(1===t&&1===n)return e;r=r||i.centre(e);var a,s;for(var l=0;l<e.length;l++){a=e[l];s=o.sub(a,r);e[l].x=r.x+s.x*t;e[l].y=r.y+s.y*n}return e};\n/**\n         * Chamfers a set of vertices by giving them rounded corners, returns a new set of vertices.\n         * The radius parameter is a single number or an array to specify the radius for each vertex.\n         * @method chamfer\n         * @param {vertices} vertices\n         * @param {number[]} radius\n         * @param {number} quality\n         * @param {number} qualityMin\n         * @param {number} qualityMax\n         */i.chamfer=function(e,t,n,i,a){t=\"number\"===typeof t?[t]:t||[8];n=\"undefined\"!==typeof n?n:-1;i=i||2;a=a||14;var s=[];for(var l=0;l<e.length;l++){var c=e[l-1>=0?l-1:e.length-1],u=e[l],f=e[(l+1)%e.length],d=t[l<t.length?l:t.length-1];if(0!==d){var p=o.normalise({x:u.y-c.y,y:c.x-u.x});var v=o.normalise({x:f.y-u.y,y:u.x-f.x});var y=Math.sqrt(2*Math.pow(d,2)),m=o.mult(r.clone(p),d),g=o.normalise(o.mult(o.add(p,v),.5)),x=o.sub(u,o.mult(g,y));var h=n;-1===n&&(h=1.75*Math.pow(d,.32));h=r.clamp(h,i,a);h%2===1&&(h+=1);var b=Math.acos(o.dot(p,v)),S=b/h;for(var w=0;w<h;w++)s.push(o.add(o.rotate(m,S*w),x))}else s.push(u)}return s};\n/**\n         * Sorts the input vertices into clockwise order in place.\n         * @method clockwiseSort\n         * @param {vertices} vertices\n         * @return {vertices} vertices\n         */i.clockwiseSort=function(e){var t=i.mean(e);e.sort((function(e,n){return o.angle(t,e)-o.angle(t,n)}));return e};\n/**\n         * Returns true if the vertices form a convex shape (vertices must be in clockwise order).\n         * @method isConvex\n         * @param {vertices} vertices\n         * @return {bool} `true` if the `vertices` are convex, `false` if not (or `null` if not computable).\n         */i.isConvex=function(e){var t,n,i,o,r=0,a=e.length;if(a<3)return null;for(t=0;t<a;t++){n=(t+1)%a;i=(t+2)%a;o=(e[n].x-e[t].x)*(e[i].y-e[n].y);o-=(e[n].y-e[t].y)*(e[i].x-e[n].x);o<0?r|=1:o>0&&(r|=2);if(3===r)return false}return 0!==r||null};\n/**\n         * Returns the convex hull of the input vertices as a new array of points.\n         * @method hull\n         * @param {vertices} vertices\n         * @return [vertex] vertices\n         */i.hull=function(e){var t,n,i=[],r=[];e=e.slice(0);e.sort((function(e,t){var n=e.x-t.x;return 0!==n?n:e.y-t.y}));for(n=0;n<e.length;n+=1){t=e[n];while(r.length>=2&&o.cross3(r[r.length-2],r[r.length-1],t)<=0)r.pop();r.push(t)}for(n=e.length-1;n>=0;n-=1){t=e[n];while(i.length>=2&&o.cross3(i[i.length-2],i[i.length-1],t)<=0)i.pop();i.push(t)}i.pop();r.pop();return i.concat(r)}})()},function(e,t,n){var i={};e.exports=i;var o=n(0);(function(){\n/**\n         * Subscribes a callback function to the given object's `eventName`.\n         * @method on\n         * @param {} object\n         * @param {string} eventNames\n         * @param {function} callback\n         */\ni.on=function(e,t,n){var i,o=t.split(\" \");for(var r=0;r<o.length;r++){i=o[r];e.events=e.events||{};e.events[i]=e.events[i]||[];e.events[i].push(n)}return n};\n/**\n         * Removes the given event callback. If no callback, clears all callbacks in `eventNames`. If no `eventNames`, clears all events.\n         * @method off\n         * @param {} object\n         * @param {string} eventNames\n         * @param {function} callback\n         */i.off=function(e,t,n){if(t){if(\"function\"===typeof t){n=t;t=o.keys(e.events).join(\" \")}var i=t.split(\" \");for(var r=0;r<i.length;r++){var a=e.events[i[r]],s=[];if(n&&a)for(var l=0;l<a.length;l++)a[l]!==n&&s.push(a[l]);e.events[i[r]]=s}}else e.events={}};\n/**\n         * Fires all the callbacks subscribed to the given object's `eventName`, in the order they subscribed, if any.\n         * @method trigger\n         * @param {} object\n         * @param {string} eventNames\n         * @param {} event\n         */i.trigger=function(e,t,n){var i,r,a,s;var l=e.events;if(l&&o.keys(l).length>0){n||(n={});i=t.split(\" \");for(var c=0;c<i.length;c++){r=i[c];a=l[r];if(a){s=o.clone(n,false);s.name=r;s.source=e;for(var u=0;u<a.length;u++)a[u].apply(e,[s])}}}}})()},function(e,t,n){var i={};e.exports=i;var o=n(4);var r=n(0);var a=n(1);var s=n(6);(function(){\n/**\n         * Creates a new composite. The options parameter is an object that specifies any properties you wish to override the defaults.\n         * See the properites section below for detailed information on what you can pass via the `options` object.\n         * @method create\n         * @param {} [options]\n         * @return {composite} A new composite\n         */\ni.create=function(e){return r.extend({id:r.nextId(),type:\"composite\",parent:null,isModified:false,bodies:[],constraints:[],composites:[],label:\"Composite\",plugin:{},cache:{allBodies:null,allConstraints:null,allComposites:null}},e)};\n/**\n         * Sets the composite's `isModified` flag. \n         * If `updateParents` is true, all parents will be set (default: false).\n         * If `updateChildren` is true, all children will be set (default: false).\n         * @private\n         * @method setModified\n         * @param {composite} composite\n         * @param {boolean} isModified\n         * @param {boolean} [updateParents=false]\n         * @param {boolean} [updateChildren=false]\n         */i.setModified=function(e,t,n,o){e.isModified=t;if(t&&e.cache){e.cache.allBodies=null;e.cache.allConstraints=null;e.cache.allComposites=null}n&&e.parent&&i.setModified(e.parent,t,n,o);if(o)for(var r=0;r<e.composites.length;r++){var a=e.composites[r];i.setModified(a,t,n,o)}};\n/**\n         * Generic single or multi-add function. Adds a single or an array of body(s), constraint(s) or composite(s) to the given composite.\n         * Triggers `beforeAdd` and `afterAdd` events on the `composite`.\n         * @method add\n         * @param {composite} composite\n         * @param {object|array} object A single or an array of body(s), constraint(s) or composite(s)\n         * @return {composite} The original composite with the objects added\n         */i.add=function(e,t){var n=[].concat(t);o.trigger(e,\"beforeAdd\",{object:t});for(var a=0;a<n.length;a++){var s=n[a];switch(s.type){case\"body\":if(s.parent!==s){r.warn(\"Composite.add: skipped adding a compound body part (you must add its parent instead)\");break}i.addBody(e,s);break;case\"constraint\":i.addConstraint(e,s);break;case\"composite\":i.addComposite(e,s);break;case\"mouseConstraint\":i.addConstraint(e,s.constraint);break}}o.trigger(e,\"afterAdd\",{object:t});return e};\n/**\n         * Generic remove function. Removes one or many body(s), constraint(s) or a composite(s) to the given composite.\n         * Optionally searching its children recursively.\n         * Triggers `beforeRemove` and `afterRemove` events on the `composite`.\n         * @method remove\n         * @param {composite} composite\n         * @param {object|array} object\n         * @param {boolean} [deep=false]\n         * @return {composite} The original composite with the objects removed\n         */i.remove=function(e,t,n){var r=[].concat(t);o.trigger(e,\"beforeRemove\",{object:t});for(var a=0;a<r.length;a++){var s=r[a];switch(s.type){case\"body\":i.removeBody(e,s,n);break;case\"constraint\":i.removeConstraint(e,s,n);break;case\"composite\":i.removeComposite(e,s,n);break;case\"mouseConstraint\":i.removeConstraint(e,s.constraint);break}}o.trigger(e,\"afterRemove\",{object:t});return e};\n/**\n         * Adds a composite to the given composite.\n         * @private\n         * @method addComposite\n         * @param {composite} compositeA\n         * @param {composite} compositeB\n         * @return {composite} The original compositeA with the objects from compositeB added\n         */i.addComposite=function(e,t){e.composites.push(t);t.parent=e;i.setModified(e,true,true,false);return e};\n/**\n         * Removes a composite from the given composite, and optionally searching its children recursively.\n         * @private\n         * @method removeComposite\n         * @param {composite} compositeA\n         * @param {composite} compositeB\n         * @param {boolean} [deep=false]\n         * @return {composite} The original compositeA with the composite removed\n         */i.removeComposite=function(e,t,n){var o=r.indexOf(e.composites,t);-1!==o&&i.removeCompositeAt(e,o);if(n)for(var a=0;a<e.composites.length;a++)i.removeComposite(e.composites[a],t,true);return e};\n/**\n         * Removes a composite from the given composite.\n         * @private\n         * @method removeCompositeAt\n         * @param {composite} composite\n         * @param {number} position\n         * @return {composite} The original composite with the composite removed\n         */i.removeCompositeAt=function(e,t){e.composites.splice(t,1);i.setModified(e,true,true,false);return e};\n/**\n         * Adds a body to the given composite.\n         * @private\n         * @method addBody\n         * @param {composite} composite\n         * @param {body} body\n         * @return {composite} The original composite with the body added\n         */i.addBody=function(e,t){e.bodies.push(t);i.setModified(e,true,true,false);return e};\n/**\n         * Removes a body from the given composite, and optionally searching its children recursively.\n         * @private\n         * @method removeBody\n         * @param {composite} composite\n         * @param {body} body\n         * @param {boolean} [deep=false]\n         * @return {composite} The original composite with the body removed\n         */i.removeBody=function(e,t,n){var o=r.indexOf(e.bodies,t);-1!==o&&i.removeBodyAt(e,o);if(n)for(var a=0;a<e.composites.length;a++)i.removeBody(e.composites[a],t,true);return e};\n/**\n         * Removes a body from the given composite.\n         * @private\n         * @method removeBodyAt\n         * @param {composite} composite\n         * @param {number} position\n         * @return {composite} The original composite with the body removed\n         */i.removeBodyAt=function(e,t){e.bodies.splice(t,1);i.setModified(e,true,true,false);return e};\n/**\n         * Adds a constraint to the given composite.\n         * @private\n         * @method addConstraint\n         * @param {composite} composite\n         * @param {constraint} constraint\n         * @return {composite} The original composite with the constraint added\n         */i.addConstraint=function(e,t){e.constraints.push(t);i.setModified(e,true,true,false);return e};\n/**\n         * Removes a constraint from the given composite, and optionally searching its children recursively.\n         * @private\n         * @method removeConstraint\n         * @param {composite} composite\n         * @param {constraint} constraint\n         * @param {boolean} [deep=false]\n         * @return {composite} The original composite with the constraint removed\n         */i.removeConstraint=function(e,t,n){var o=r.indexOf(e.constraints,t);-1!==o&&i.removeConstraintAt(e,o);if(n)for(var a=0;a<e.composites.length;a++)i.removeConstraint(e.composites[a],t,true);return e};\n/**\n         * Removes a body from the given composite.\n         * @private\n         * @method removeConstraintAt\n         * @param {composite} composite\n         * @param {number} position\n         * @return {composite} The original composite with the constraint removed\n         */i.removeConstraintAt=function(e,t){e.constraints.splice(t,1);i.setModified(e,true,true,false);return e};\n/**\n         * Removes all bodies, constraints and composites from the given composite.\n         * Optionally clearing its children recursively.\n         * @method clear\n         * @param {composite} composite\n         * @param {boolean} keepStatic\n         * @param {boolean} [deep=false]\n         */i.clear=function(e,t,n){if(n)for(var o=0;o<e.composites.length;o++)i.clear(e.composites[o],t,true);t?e.bodies=e.bodies.filter((function(e){return e.isStatic})):e.bodies.length=0;e.constraints.length=0;e.composites.length=0;i.setModified(e,true,true,false);return e};\n/**\n         * Returns all bodies in the given composite, including all bodies in its children, recursively.\n         * @method allBodies\n         * @param {composite} composite\n         * @return {body[]} All the bodies\n         */i.allBodies=function(e){if(e.cache&&e.cache.allBodies)return e.cache.allBodies;var t=[].concat(e.bodies);for(var n=0;n<e.composites.length;n++)t=t.concat(i.allBodies(e.composites[n]));e.cache&&(e.cache.allBodies=t);return t};\n/**\n         * Returns all constraints in the given composite, including all constraints in its children, recursively.\n         * @method allConstraints\n         * @param {composite} composite\n         * @return {constraint[]} All the constraints\n         */i.allConstraints=function(e){if(e.cache&&e.cache.allConstraints)return e.cache.allConstraints;var t=[].concat(e.constraints);for(var n=0;n<e.composites.length;n++)t=t.concat(i.allConstraints(e.composites[n]));e.cache&&(e.cache.allConstraints=t);return t};\n/**\n         * Returns all composites in the given composite, including all composites in its children, recursively.\n         * @method allComposites\n         * @param {composite} composite\n         * @return {composite[]} All the composites\n         */i.allComposites=function(e){if(e.cache&&e.cache.allComposites)return e.cache.allComposites;var t=[].concat(e.composites);for(var n=0;n<e.composites.length;n++)t=t.concat(i.allComposites(e.composites[n]));e.cache&&(e.cache.allComposites=t);return t};\n/**\n         * Searches the composite recursively for an object matching the type and id supplied, null if not found.\n         * @method get\n         * @param {composite} composite\n         * @param {number} id\n         * @param {string} type\n         * @return {object} The requested object, if found\n         */i.get=function(e,t,n){var o,r;switch(n){case\"body\":o=i.allBodies(e);break;case\"constraint\":o=i.allConstraints(e);break;case\"composite\":o=i.allComposites(e).concat(e);break}if(!o)return null;r=o.filter((function(e){return e.id.toString()===t.toString()}));return 0===r.length?null:r[0]};\n/**\n         * Moves the given object(s) from compositeA to compositeB (equal to a remove followed by an add).\n         * @method move\n         * @param {compositeA} compositeA\n         * @param {object[]} objects\n         * @param {compositeB} compositeB\n         * @return {composite} Returns compositeA\n         */i.move=function(e,t,n){i.remove(e,t);i.add(n,t);return e};\n/**\n         * Assigns new ids for all objects in the composite, recursively.\n         * @method rebase\n         * @param {composite} composite\n         * @return {composite} Returns composite\n         */i.rebase=function(e){var t=i.allBodies(e).concat(i.allConstraints(e)).concat(i.allComposites(e));for(var n=0;n<t.length;n++)t[n].id=r.nextId();return e};\n/**\n         * Translates all children in the composite by a given vector relative to their current positions, \n         * without imparting any velocity.\n         * @method translate\n         * @param {composite} composite\n         * @param {vector} translation\n         * @param {bool} [recursive=true]\n         */i.translate=function(e,t,n){var o=n?i.allBodies(e):e.bodies;for(var r=0;r<o.length;r++)s.translate(o[r],t);return e};\n/**\n         * Rotates all children in the composite by a given angle about the given point, without imparting any angular velocity.\n         * @method rotate\n         * @param {composite} composite\n         * @param {number} rotation\n         * @param {vector} point\n         * @param {bool} [recursive=true]\n         */i.rotate=function(e,t,n,o){var r=Math.cos(t),a=Math.sin(t),l=o?i.allBodies(e):e.bodies;for(var c=0;c<l.length;c++){var u=l[c],f=u.position.x-n.x,d=u.position.y-n.y;s.setPosition(u,{x:n.x+(f*r-d*a),y:n.y+(f*a+d*r)});s.rotate(u,t)}return e};\n/**\n         * Scales all children in the composite, including updating physical properties (mass, area, axes, inertia), from a world-space point.\n         * @method scale\n         * @param {composite} composite\n         * @param {number} scaleX\n         * @param {number} scaleY\n         * @param {vector} point\n         * @param {bool} [recursive=true]\n         */i.scale=function(e,t,n,o,r){var a=r?i.allBodies(e):e.bodies;for(var l=0;l<a.length;l++){var c=a[l],u=c.position.x-o.x,f=c.position.y-o.y;s.setPosition(c,{x:o.x+u*t,y:o.y+f*n});s.scale(c,t,n)}return e};\n/**\n         * Returns the union of the bounds of all of the composite's bodies.\n         * @method bounds\n         * @param {composite} composite The composite.\n         * @returns {bounds} The composite bounds.\n         */i.bounds=function(e){var t=i.allBodies(e),n=[];for(var o=0;o<t.length;o+=1){var r=t[o];n.push(r.bounds.min,r.bounds.max)}return a.create(n)};\n/**\n        * Fired when a call to `Composite.add` is made, before objects have been added.\n        *\n        * @event beforeAdd\n        * @param {} event An event object\n        * @param {} event.object The object(s) to be added (may be a single body, constraint, composite or a mixed array of these)\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired when a call to `Composite.add` is made, after objects have been added.\n        *\n        * @event afterAdd\n        * @param {} event An event object\n        * @param {} event.object The object(s) that have been added (may be a single body, constraint, composite or a mixed array of these)\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired when a call to `Composite.remove` is made, before objects have been removed.\n        *\n        * @event beforeRemove\n        * @param {} event An event object\n        * @param {} event.object The object(s) to be removed (may be a single body, constraint, composite or a mixed array of these)\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired when a call to `Composite.remove` is made, after objects have been removed.\n        *\n        * @event afterRemove\n        * @param {} event An event object\n        * @param {} event.object The object(s) that have been removed (may be a single body, constraint, composite or a mixed array of these)\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n         * An integer `Number` uniquely identifying number generated in `Composite.create` by `Common.nextId`.\n         *\n         * @property id\n         * @type number\n         */\n/**\n         * A `String` denoting the type of object.\n         *\n         * @property type\n         * @type string\n         * @default \"composite\"\n         * @readOnly\n         */\n/**\n         * An arbitrary `String` name to help the user identify and manage composites.\n         *\n         * @property label\n         * @type string\n         * @default \"Composite\"\n         */\n/**\n         * A flag that specifies whether the composite has been modified during the current step.\n         * This is automatically managed when bodies, constraints or composites are added or removed.\n         *\n         * @property isModified\n         * @type boolean\n         * @default false\n         */\n/**\n         * The `Composite` that is the parent of this composite. It is automatically managed by the `Matter.Composite` methods.\n         *\n         * @property parent\n         * @type composite\n         * @default null\n         */\n/**\n         * An array of `Body` that are _direct_ children of this composite.\n         * To add or remove bodies you should use `Composite.add` and `Composite.remove` methods rather than directly modifying this property.\n         * If you wish to recursively find all descendants, you should use the `Composite.allBodies` method.\n         *\n         * @property bodies\n         * @type body[]\n         * @default []\n         */\n/**\n         * An array of `Constraint` that are _direct_ children of this composite.\n         * To add or remove constraints you should use `Composite.add` and `Composite.remove` methods rather than directly modifying this property.\n         * If you wish to recursively find all descendants, you should use the `Composite.allConstraints` method.\n         *\n         * @property constraints\n         * @type constraint[]\n         * @default []\n         */\n/**\n         * An array of `Composite` that are _direct_ children of this composite.\n         * To add or remove composites you should use `Composite.add` and `Composite.remove` methods rather than directly modifying this property.\n         * If you wish to recursively find all descendants, you should use the `Composite.allComposites` method.\n         *\n         * @property composites\n         * @type composite[]\n         * @default []\n         */\n/**\n         * An object reserved for storing plugin-specific properties.\n         *\n         * @property plugin\n         * @type {}\n         */\n/**\n         * An object used for storing cached results for performance reasons.\n         * This is used internally only and is automatically managed.\n         *\n         * @private\n         * @property cache\n         * @type {}\n         */})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(2);var a=n(7);n(16);var s=n(0);var l=n(1);var c=n(11);(function(){i._inertiaScale=4;i._nextCollidingGroupId=1;i._nextNonCollidingGroupId=-1;i._nextCategory=1;\n/**\n         * Creates a new rigid body model. The options parameter is an object that specifies any properties you wish to override the defaults.\n         * All properties have default values, and many are pre-calculated automatically based on other properties.\n         * Vertices must be specified in clockwise order.\n         * See the properties section below for detailed information on what you can pass via the `options` object.\n         * @method create\n         * @param {} options\n         * @return {body} body\n         */i.create=function(e){var t={id:s.nextId(),type:\"body\",label:\"Body\",parts:[],plugin:{},angle:0,vertices:o.fromPath(\"L 0 0 L 40 0 L 40 40 L 0 40\"),position:{x:0,y:0},force:{x:0,y:0},torque:0,positionImpulse:{x:0,y:0},constraintImpulse:{x:0,y:0,angle:0},totalContacts:0,speed:0,angularSpeed:0,velocity:{x:0,y:0},angularVelocity:0,isSensor:false,isStatic:false,isSleeping:false,motion:0,sleepThreshold:60,density:.001,restitution:0,friction:.1,frictionStatic:.5,frictionAir:.01,collisionFilter:{category:1,mask:4294967295,group:0},slop:.05,timeScale:1,render:{visible:true,opacity:1,strokeStyle:null,fillStyle:null,lineWidth:null,sprite:{xScale:1,yScale:1,xOffset:0,yOffset:0}},events:null,bounds:null,chamfer:null,circleRadius:0,positionPrev:null,anglePrev:0,parent:null,axes:null,area:0,mass:0,inertia:0,_original:null};var n=s.extend(t,e);_initProperties(n,e);return n};\n/**\n         * Returns the next unique group index for which bodies will collide.\n         * If `isNonColliding` is `true`, returns the next unique group index for which bodies will _not_ collide.\n         * See `body.collisionFilter` for more information.\n         * @method nextGroup\n         * @param {bool} [isNonColliding=false]\n         * @return {Number} Unique group index\n         */i.nextGroup=function(e){return e?i._nextNonCollidingGroupId--:i._nextCollidingGroupId++};i.nextCategory=function(){i._nextCategory=i._nextCategory<<1;return i._nextCategory};\n/**\n         * Initialises body properties.\n         * @method _initProperties\n         * @private\n         * @param {body} body\n         * @param {} [options]\n         */var _initProperties=function(e,t){t=t||{};i.set(e,{bounds:e.bounds||l.create(e.vertices),positionPrev:e.positionPrev||r.clone(e.position),anglePrev:e.anglePrev||e.angle,vertices:e.vertices,parts:e.parts||[e],isStatic:e.isStatic,isSleeping:e.isSleeping,parent:e.parent||e});o.rotate(e.vertices,e.angle,e.position);c.rotate(e.axes,e.angle);l.update(e.bounds,e.vertices,e.velocity);i.set(e,{axes:t.axes||e.axes,area:t.area||e.area,mass:t.mass||e.mass,inertia:t.inertia||e.inertia});var n=e.isStatic?\"#14151f\":s.choose([\"#f19648\",\"#f5d259\",\"#f55a3c\",\"#063e7b\",\"#ececd1\"]),a=e.isStatic?\"#555\":\"#ccc\",u=e.isStatic&&null===e.render.fillStyle?1:0;e.render.fillStyle=e.render.fillStyle||n;e.render.strokeStyle=e.render.strokeStyle||a;e.render.lineWidth=e.render.lineWidth||u;e.render.sprite.xOffset+=-(e.bounds.min.x-e.position.x)/(e.bounds.max.x-e.bounds.min.x);e.render.sprite.yOffset+=-(e.bounds.min.y-e.position.y)/(e.bounds.max.y-e.bounds.min.y)};\n/**\n         * Given a property and a value (or map of), sets the property(s) on the body, using the appropriate setter functions if they exist.\n         * Prefer to use the actual setter functions in performance critical situations.\n         * @method set\n         * @param {body} body\n         * @param {} settings A property name (or map of properties and values) to set on the body.\n         * @param {} value The value to set if `settings` is a single property name.\n         */i.set=function(e,t,n){var o;if(\"string\"===typeof t){o=t;t={};t[o]=n}for(o in t)if(Object.prototype.hasOwnProperty.call(t,o)){n=t[o];switch(o){case\"isStatic\":i.setStatic(e,n);break;case\"isSleeping\":a.set(e,n);break;case\"mass\":i.setMass(e,n);break;case\"density\":i.setDensity(e,n);break;case\"inertia\":i.setInertia(e,n);break;case\"vertices\":i.setVertices(e,n);break;case\"position\":i.setPosition(e,n);break;case\"angle\":i.setAngle(e,n);break;case\"velocity\":i.setVelocity(e,n);break;case\"angularVelocity\":i.setAngularVelocity(e,n);break;case\"parts\":i.setParts(e,n);break;case\"centre\":i.setCentre(e,n);break;default:e[o]=n}}};\n/**\n         * Sets the body as static, including isStatic flag and setting mass and inertia to Infinity.\n         * @method setStatic\n         * @param {body} body\n         * @param {bool} isStatic\n         */i.setStatic=function(e,t){for(var n=0;n<e.parts.length;n++){var i=e.parts[n];i.isStatic=t;if(t){i._original={restitution:i.restitution,friction:i.friction,mass:i.mass,inertia:i.inertia,density:i.density,inverseMass:i.inverseMass,inverseInertia:i.inverseInertia};i.restitution=0;i.friction=1;i.mass=i.inertia=i.density=Infinity;i.inverseMass=i.inverseInertia=0;i.positionPrev.x=i.position.x;i.positionPrev.y=i.position.y;i.anglePrev=i.angle;i.angularVelocity=0;i.speed=0;i.angularSpeed=0;i.motion=0}else if(i._original){i.restitution=i._original.restitution;i.friction=i._original.friction;i.mass=i._original.mass;i.inertia=i._original.inertia;i.density=i._original.density;i.inverseMass=i._original.inverseMass;i.inverseInertia=i._original.inverseInertia;i._original=null}}};\n/**\n         * Sets the mass of the body. Inverse mass, density and inertia are automatically updated to reflect the change.\n         * @method setMass\n         * @param {body} body\n         * @param {number} mass\n         */i.setMass=function(e,t){var n=e.inertia/(e.mass/6);e.inertia=n*(t/6);e.inverseInertia=1/e.inertia;e.mass=t;e.inverseMass=1/e.mass;e.density=e.mass/e.area};\n/**\n         * Sets the density of the body. Mass and inertia are automatically updated to reflect the change.\n         * @method setDensity\n         * @param {body} body\n         * @param {number} density\n         */i.setDensity=function(e,t){i.setMass(e,t*e.area);e.density=t};\n/**\n         * Sets the moment of inertia (i.e. second moment of area) of the body. \n         * Inverse inertia is automatically updated to reflect the change. Mass is not changed.\n         * @method setInertia\n         * @param {body} body\n         * @param {number} inertia\n         */i.setInertia=function(e,t){e.inertia=t;e.inverseInertia=1/e.inertia};\n/**\n         * Sets the body's vertices and updates body properties accordingly, including inertia, area and mass (with respect to `body.density`).\n         * Vertices will be automatically transformed to be orientated around their centre of mass as the origin.\n         * They are then automatically translated to world space based on `body.position`.\n         *\n         * The `vertices` argument should be passed as an array of `Matter.Vector` points (or a `Matter.Vertices` array).\n         * Vertices must form a convex hull, concave hulls are not supported.\n         *\n         * @method setVertices\n         * @param {body} body\n         * @param {vector[]} vertices\n         */i.setVertices=function(e,t){t[0].body===e?e.vertices=t:e.vertices=o.create(t,e);e.axes=c.fromVertices(e.vertices);e.area=o.area(e.vertices);i.setMass(e,e.density*e.area);var n=o.centre(e.vertices);o.translate(e.vertices,n,-1);i.setInertia(e,i._inertiaScale*o.inertia(e.vertices,e.mass));o.translate(e.vertices,e.position);l.update(e.bounds,e.vertices,e.velocity)};\n/**\n         * Sets the parts of the `body` and updates mass, inertia and centroid.\n         * Each part will have its parent set to `body`.\n         * By default the convex hull will be automatically computed and set on `body`, unless `autoHull` is set to `false.`\n         * Note that this method will ensure that the first part in `body.parts` will always be the `body`.\n         * @method setParts\n         * @param {body} body\n         * @param [body] parts\n         * @param {bool} [autoHull=true]\n         */i.setParts=function(e,t,n){var r;t=t.slice(0);e.parts.length=0;e.parts.push(e);e.parent=e;for(r=0;r<t.length;r++){var a=t[r];if(a!==e){a.parent=e;e.parts.push(a)}}if(1!==e.parts.length){n=\"undefined\"===typeof n||n;if(n){var s=[];for(r=0;r<t.length;r++)s=s.concat(t[r].vertices);o.clockwiseSort(s);var l=o.hull(s),c=o.centre(l);i.setVertices(e,l);o.translate(e.vertices,c)}var u=i._totalProperties(e);e.area=u.area;e.parent=e;e.position.x=u.centre.x;e.position.y=u.centre.y;e.positionPrev.x=u.centre.x;e.positionPrev.y=u.centre.y;i.setMass(e,u.mass);i.setInertia(e,u.inertia);i.setPosition(e,u.centre)}};\n/**\n         * Set the centre of mass of the body. \n         * The `centre` is a vector in world-space unless `relative` is set, in which case it is a translation.\n         * The centre of mass is the point the body rotates about and can be used to simulate non-uniform density.\n         * This is equal to moving `body.position` but not the `body.vertices`.\n         * Invalid if the `centre` falls outside the body's convex hull.\n         * @method setCentre\n         * @param {body} body\n         * @param {vector} centre\n         * @param {bool} relative\n         */i.setCentre=function(e,t,n){if(n){e.positionPrev.x+=t.x;e.positionPrev.y+=t.y;e.position.x+=t.x;e.position.y+=t.y}else{e.positionPrev.x=t.x-(e.position.x-e.positionPrev.x);e.positionPrev.y=t.y-(e.position.y-e.positionPrev.y);e.position.x=t.x;e.position.y=t.y}};\n/**\n         * Sets the position of the body instantly. Velocity, angle, force etc. are unchanged.\n         * @method setPosition\n         * @param {body} body\n         * @param {vector} position\n         */i.setPosition=function(e,t){var n=r.sub(t,e.position);e.positionPrev.x+=n.x;e.positionPrev.y+=n.y;for(var i=0;i<e.parts.length;i++){var a=e.parts[i];a.position.x+=n.x;a.position.y+=n.y;o.translate(a.vertices,n);l.update(a.bounds,a.vertices,e.velocity)}};\n/**\n         * Sets the angle of the body instantly. Angular velocity, position, force etc. are unchanged.\n         * @method setAngle\n         * @param {body} body\n         * @param {number} angle\n         */i.setAngle=function(e,t){var n=t-e.angle;e.anglePrev+=n;for(var i=0;i<e.parts.length;i++){var a=e.parts[i];a.angle+=n;o.rotate(a.vertices,n,e.position);c.rotate(a.axes,n);l.update(a.bounds,a.vertices,e.velocity);i>0&&r.rotateAbout(a.position,n,e.position,a.position)}};\n/**\n         * Sets the linear velocity of the body instantly. Position, angle, force etc. are unchanged. See also `Body.applyForce`.\n         * @method setVelocity\n         * @param {body} body\n         * @param {vector} velocity\n         */i.setVelocity=function(e,t){e.positionPrev.x=e.position.x-t.x;e.positionPrev.y=e.position.y-t.y;e.velocity.x=t.x;e.velocity.y=t.y;e.speed=r.magnitude(e.velocity)};\n/**\n         * Sets the angular velocity of the body instantly. Position, angle, force etc. are unchanged. See also `Body.applyForce`.\n         * @method setAngularVelocity\n         * @param {body} body\n         * @param {number} velocity\n         */i.setAngularVelocity=function(e,t){e.anglePrev=e.angle-t;e.angularVelocity=t;e.angularSpeed=Math.abs(e.angularVelocity)};\n/**\n         * Moves a body by a given vector relative to its current position, without imparting any velocity.\n         * @method translate\n         * @param {body} body\n         * @param {vector} translation\n         */i.translate=function(e,t){i.setPosition(e,r.add(e.position,t))};\n/**\n         * Rotates a body by a given angle relative to its current angle, without imparting any angular velocity.\n         * @method rotate\n         * @param {body} body\n         * @param {number} rotation\n         * @param {vector} [point]\n         */i.rotate=function(e,t,n){if(n){var o=Math.cos(t),r=Math.sin(t),a=e.position.x-n.x,s=e.position.y-n.y;i.setPosition(e,{x:n.x+(a*o-s*r),y:n.y+(a*r+s*o)});i.setAngle(e,e.angle+t)}else i.setAngle(e,e.angle+t)};\n/**\n         * Scales the body, including updating physical properties (mass, area, axes, inertia), from a world-space point (default is body centre).\n         * @method scale\n         * @param {body} body\n         * @param {number} scaleX\n         * @param {number} scaleY\n         * @param {vector} [point]\n         */i.scale=function(e,t,n,r){var a=0,s=0;r=r||e.position;for(var u=0;u<e.parts.length;u++){var f=e.parts[u];o.scale(f.vertices,t,n,r);f.axes=c.fromVertices(f.vertices);f.area=o.area(f.vertices);i.setMass(f,e.density*f.area);o.translate(f.vertices,{x:-f.position.x,y:-f.position.y});i.setInertia(f,i._inertiaScale*o.inertia(f.vertices,f.mass));o.translate(f.vertices,{x:f.position.x,y:f.position.y});if(u>0){a+=f.area;s+=f.inertia}f.position.x=r.x+(f.position.x-r.x)*t;f.position.y=r.y+(f.position.y-r.y)*n;l.update(f.bounds,f.vertices,e.velocity)}if(e.parts.length>1){e.area=a;if(!e.isStatic){i.setMass(e,e.density*a);i.setInertia(e,s)}}e.circleRadius&&(t===n?e.circleRadius*=t:e.circleRadius=null)};\n/**\n         * Performs a simulation step for the given `body`, including updating position and angle using Verlet integration.\n         * @method update\n         * @param {body} body\n         * @param {number} deltaTime\n         * @param {number} timeScale\n         * @param {number} correction\n         */i.update=function(e,t,n,i){var a=Math.pow(t*n*e.timeScale,2);var s=1-e.frictionAir*n*e.timeScale,u=e.position.x-e.positionPrev.x,f=e.position.y-e.positionPrev.y;e.velocity.x=u*s*i+e.force.x/e.mass*a;e.velocity.y=f*s*i+e.force.y/e.mass*a;e.positionPrev.x=e.position.x;e.positionPrev.y=e.position.y;e.position.x+=e.velocity.x;e.position.y+=e.velocity.y;e.angularVelocity=(e.angle-e.anglePrev)*s*i+e.torque/e.inertia*a;e.anglePrev=e.angle;e.angle+=e.angularVelocity;e.speed=r.magnitude(e.velocity);e.angularSpeed=Math.abs(e.angularVelocity);for(var d=0;d<e.parts.length;d++){var p=e.parts[d];o.translate(p.vertices,e.velocity);if(d>0){p.position.x+=e.velocity.x;p.position.y+=e.velocity.y}if(0!==e.angularVelocity){o.rotate(p.vertices,e.angularVelocity,e.position);c.rotate(p.axes,e.angularVelocity);d>0&&r.rotateAbout(p.position,e.angularVelocity,e.position,p.position)}l.update(p.bounds,p.vertices,e.velocity)}};\n/**\n         * Applies a force to a body from a given world-space position, including resulting torque.\n         * @method applyForce\n         * @param {body} body\n         * @param {vector} position\n         * @param {vector} force\n         */i.applyForce=function(e,t,n){e.force.x+=n.x;e.force.y+=n.y;var i={x:t.x-e.position.x,y:t.y-e.position.y};e.torque+=i.x*n.y-i.y*n.x};\n/**\n         * Returns the sums of the properties of all compound parts of the parent body.\n         * @method _totalProperties\n         * @private\n         * @param {body} body\n         * @return {}\n         */i._totalProperties=function(e){var t={mass:0,area:0,inertia:0,centre:{x:0,y:0}};for(var n=1===e.parts.length?0:1;n<e.parts.length;n++){var i=e.parts[n],o=Infinity!==i.mass?i.mass:1;t.mass+=o;t.area+=i.area;t.inertia+=i.inertia;t.centre=r.add(t.centre,r.mult(i.position,o))}t.centre=r.div(t.centre,t.mass);return t};\n/**\n        * Fired when a body starts sleeping (where `this` is the body).\n        *\n        * @event sleepStart\n        * @this {body} The body that has started sleeping\n        * @param {} event An event object\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired when a body ends sleeping (where `this` is the body).\n        *\n        * @event sleepEnd\n        * @this {body} The body that has ended sleeping\n        * @param {} event An event object\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n         * An integer `Number` uniquely identifying number generated in `Body.create` by `Common.nextId`.\n         *\n         * @property id\n         * @type number\n         */\n/**\n         * A `String` denoting the type of object.\n         *\n         * @property type\n         * @type string\n         * @default \"body\"\n         * @readOnly\n         */\n/**\n         * An arbitrary `String` name to help the user identify and manage bodies.\n         *\n         * @property label\n         * @type string\n         * @default \"Body\"\n         */\n/**\n         * An array of bodies that make up this body. \n         * The first body in the array must always be a self reference to the current body instance.\n         * All bodies in the `parts` array together form a single rigid compound body.\n         * Parts are allowed to overlap, have gaps or holes or even form concave bodies.\n         * Parts themselves should never be added to a `World`, only the parent body should be.\n         * Use `Body.setParts` when setting parts to ensure correct updates of all properties.\n         *\n         * @property parts\n         * @type body[]\n         */\n/**\n         * An object reserved for storing plugin-specific properties.\n         *\n         * @property plugin\n         * @type {}\n         */\n/**\n         * A self reference if the body is _not_ a part of another body.\n         * Otherwise this is a reference to the body that this is a part of.\n         * See `body.parts`.\n         *\n         * @property parent\n         * @type body\n         */\n/**\n         * A `Number` specifying the angle of the body, in radians.\n         *\n         * @property angle\n         * @type number\n         * @default 0\n         */\n/**\n         * An array of `Vector` objects that specify the convex hull of the rigid body.\n         * These should be provided about the origin `(0, 0)`. E.g.\n         *\n         *     [{ x: 0, y: 0 }, { x: 25, y: 50 }, { x: 50, y: 0 }]\n         *\n         * When passed via `Body.create`, the vertices are translated relative to `body.position` (i.e. world-space, and constantly updated by `Body.update` during simulation).\n         * The `Vector` objects are also augmented with additional properties required for efficient collision detection. \n         *\n         * Other properties such as `inertia` and `bounds` are automatically calculated from the passed vertices (unless provided via `options`).\n         * Concave hulls are not currently supported. The module `Matter.Vertices` contains useful methods for working with vertices.\n         *\n         * @property vertices\n         * @type vector[]\n         */\n/**\n         * A `Vector` that specifies the current world-space position of the body.\n         *\n         * @property position\n         * @type vector\n         * @default { x: 0, y: 0 }\n         */\n/**\n         * A `Vector` that specifies the force to apply in the current step. It is zeroed after every `Body.update`. See also `Body.applyForce`.\n         *\n         * @property force\n         * @type vector\n         * @default { x: 0, y: 0 }\n         */\n/**\n         * A `Number` that specifies the torque (turning force) to apply in the current step. It is zeroed after every `Body.update`.\n         *\n         * @property torque\n         * @type number\n         * @default 0\n         */\n/**\n         * A `Number` that _measures_ the current speed of the body after the last `Body.update`. It is read-only and always positive (it's the magnitude of `body.velocity`).\n         *\n         * @readOnly\n         * @property speed\n         * @type number\n         * @default 0\n         */\n/**\n         * A `Number` that _measures_ the current angular speed of the body after the last `Body.update`. It is read-only and always positive (it's the magnitude of `body.angularVelocity`).\n         *\n         * @readOnly\n         * @property angularSpeed\n         * @type number\n         * @default 0\n         */\n/**\n         * A `Vector` that _measures_ the current velocity of the body after the last `Body.update`. It is read-only. \n         * If you need to modify a body's velocity directly, you should either apply a force or simply change the body's `position` (as the engine uses position-Verlet integration).\n         *\n         * @readOnly\n         * @property velocity\n         * @type vector\n         * @default { x: 0, y: 0 }\n         */\n/**\n         * A `Number` that _measures_ the current angular velocity of the body after the last `Body.update`. It is read-only. \n         * If you need to modify a body's angular velocity directly, you should apply a torque or simply change the body's `angle` (as the engine uses position-Verlet integration).\n         *\n         * @readOnly\n         * @property angularVelocity\n         * @type number\n         * @default 0\n         */\n/**\n         * A flag that indicates whether a body is considered static. A static body can never change position or angle and is completely fixed.\n         * If you need to set a body as static after its creation, you should use `Body.setStatic` as this requires more than just setting this flag.\n         *\n         * @property isStatic\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag that indicates whether a body is a sensor. Sensor triggers collision events, but doesn't react with colliding body physically.\n         *\n         * @property isSensor\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag that indicates whether the body is considered sleeping. A sleeping body acts similar to a static body, except it is only temporary and can be awoken.\n         * If you need to set a body as sleeping, you should use `Sleeping.set` as this requires more than just setting this flag.\n         *\n         * @property isSleeping\n         * @type boolean\n         * @default false\n         */\n/**\n         * A `Number` that _measures_ the amount of movement a body currently has (a combination of `speed` and `angularSpeed`). It is read-only and always positive.\n         * It is used and updated by the `Matter.Sleeping` module during simulation to decide if a body has come to rest.\n         *\n         * @readOnly\n         * @property motion\n         * @type number\n         * @default 0\n         */\n/**\n         * A `Number` that defines the number of updates in which this body must have near-zero velocity before it is set as sleeping by the `Matter.Sleeping` module (if sleeping is enabled by the engine).\n         *\n         * @property sleepThreshold\n         * @type number\n         * @default 60\n         */\n/**\n         * A `Number` that defines the density of the body, that is its mass per unit area.\n         * If you pass the density via `Body.create` the `mass` property is automatically calculated for you based on the size (area) of the object.\n         * This is generally preferable to simply setting mass and allows for more intuitive definition of materials (e.g. rock has a higher density than wood).\n         *\n         * @property density\n         * @type number\n         * @default 0.001\n         */\n/**\n         * A `Number` that defines the mass of the body, although it may be more appropriate to specify the `density` property instead.\n         * If you modify this value, you must also modify the `body.inverseMass` property (`1 / mass`).\n         *\n         * @property mass\n         * @type number\n         */\n/**\n         * A `Number` that defines the inverse mass of the body (`1 / mass`).\n         * If you modify this value, you must also modify the `body.mass` property.\n         *\n         * @property inverseMass\n         * @type number\n         */\n/**\n         * A `Number` that defines the moment of inertia (i.e. second moment of area) of the body.\n         * It is automatically calculated from the given convex hull (`vertices` array) and density in `Body.create`.\n         * If you modify this value, you must also modify the `body.inverseInertia` property (`1 / inertia`).\n         *\n         * @property inertia\n         * @type number\n         */\n/**\n         * A `Number` that defines the inverse moment of inertia of the body (`1 / inertia`).\n         * If you modify this value, you must also modify the `body.inertia` property.\n         *\n         * @property inverseInertia\n         * @type number\n         */\n/**\n         * A `Number` that defines the restitution (elasticity) of the body. The value is always positive and is in the range `(0, 1)`.\n         * A value of `0` means collisions may be perfectly inelastic and no bouncing may occur. \n         * A value of `0.8` means the body may bounce back with approximately 80% of its kinetic energy.\n         * Note that collision response is based on _pairs_ of bodies, and that `restitution` values are _combined_ with the following formula:\n         *\n         *     Math.max(bodyA.restitution, bodyB.restitution)\n         *\n         * @property restitution\n         * @type number\n         * @default 0\n         */\n/**\n         * A `Number` that defines the friction of the body. The value is always positive and is in the range `(0, 1)`.\n         * A value of `0` means that the body may slide indefinitely.\n         * A value of `1` means the body may come to a stop almost instantly after a force is applied.\n         *\n         * The effects of the value may be non-linear. \n         * High values may be unstable depending on the body.\n         * The engine uses a Coulomb friction model including static and kinetic friction.\n         * Note that collision response is based on _pairs_ of bodies, and that `friction` values are _combined_ with the following formula:\n         *\n         *     Math.min(bodyA.friction, bodyB.friction)\n         *\n         * @property friction\n         * @type number\n         * @default 0.1\n         */\n/**\n         * A `Number` that defines the static friction of the body (in the Coulomb friction model). \n         * A value of `0` means the body will never 'stick' when it is nearly stationary and only dynamic `friction` is used.\n         * The higher the value (e.g. `10`), the more force it will take to initially get the body moving when nearly stationary.\n         * This value is multiplied with the `friction` property to make it easier to change `friction` and maintain an appropriate amount of static friction.\n         *\n         * @property frictionStatic\n         * @type number\n         * @default 0.5\n         */\n/**\n         * A `Number` that defines the air friction of the body (air resistance). \n         * A value of `0` means the body will never slow as it moves through space.\n         * The higher the value, the faster a body slows when moving through space.\n         * The effects of the value are non-linear. \n         *\n         * @property frictionAir\n         * @type number\n         * @default 0.01\n         */\n/**\n         * An `Object` that specifies the collision filtering properties of this body.\n         *\n         * Collisions between two bodies will obey the following rules:\n         * - If the two bodies have the same non-zero value of `collisionFilter.group`,\n         *   they will always collide if the value is positive, and they will never collide\n         *   if the value is negative.\n         * - If the two bodies have different values of `collisionFilter.group` or if one\n         *   (or both) of the bodies has a value of 0, then the category/mask rules apply as follows:\n         *\n         * Each body belongs to a collision category, given by `collisionFilter.category`. This\n         * value is used as a bit field and the category should have only one bit set, meaning that\n         * the value of this property is a power of two in the range [1, 2^31]. Thus, there are 32\n         * different collision categories available.\n         *\n         * Each body also defines a collision bitmask, given by `collisionFilter.mask` which specifies\n         * the categories it collides with (the value is the bitwise AND value of all these categories).\n         *\n         * Using the category/mask rules, two bodies `A` and `B` collide if each includes the other's\n         * category in its mask, i.e. `(categoryA & maskB) !== 0` and `(categoryB & maskA) !== 0`\n         * are both true.\n         *\n         * @property collisionFilter\n         * @type object\n         */\n/**\n         * An Integer `Number`, that specifies the collision group this body belongs to.\n         * See `body.collisionFilter` for more information.\n         *\n         * @property collisionFilter.group\n         * @type object\n         * @default 0\n         */\n/**\n         * A bit field that specifies the collision category this body belongs to.\n         * The category value should have only one bit set, for example `0x0001`.\n         * This means there are up to 32 unique collision categories available.\n         * See `body.collisionFilter` for more information.\n         *\n         * @property collisionFilter.category\n         * @type object\n         * @default 1\n         */\n/**\n         * A bit mask that specifies the collision categories this body may collide with.\n         * See `body.collisionFilter` for more information.\n         *\n         * @property collisionFilter.mask\n         * @type object\n         * @default -1\n         */\n/**\n         * A `Number` that specifies a tolerance on how far a body is allowed to 'sink' or rotate into other bodies.\n         * Avoid changing this value unless you understand the purpose of `slop` in physics engines.\n         * The default should generally suffice, although very large bodies may require larger values for stable stacking.\n         *\n         * @property slop\n         * @type number\n         * @default 0.05\n         */\n/**\n         * A `Number` that allows per-body time scaling, e.g. a force-field where bodies inside are in slow-motion, while others are at full speed.\n         *\n         * @property timeScale\n         * @type number\n         * @default 1\n         */\n/**\n         * An `Object` that defines the rendering properties to be consumed by the module `Matter.Render`.\n         *\n         * @property render\n         * @type object\n         */\n/**\n         * A flag that indicates if the body should be rendered.\n         *\n         * @property render.visible\n         * @type boolean\n         * @default true\n         */\n/**\n         * Sets the opacity to use when rendering.\n         *\n         * @property render.opacity\n         * @type number\n         * @default 1\n        */\n/**\n         * An `Object` that defines the sprite properties to use when rendering, if any.\n         *\n         * @property render.sprite\n         * @type object\n         */\n/**\n         * An `String` that defines the path to the image to use as the sprite texture, if any.\n         *\n         * @property render.sprite.texture\n         * @type string\n         */\n/**\n         * A `Number` that defines the scaling in the x-axis for the sprite, if any.\n         *\n         * @property render.sprite.xScale\n         * @type number\n         * @default 1\n         */\n/**\n         * A `Number` that defines the scaling in the y-axis for the sprite, if any.\n         *\n         * @property render.sprite.yScale\n         * @type number\n         * @default 1\n         */\n/**\n          * A `Number` that defines the offset in the x-axis for the sprite (normalised by texture width).\n          *\n          * @property render.sprite.xOffset\n          * @type number\n          * @default 0\n          */\n/**\n          * A `Number` that defines the offset in the y-axis for the sprite (normalised by texture height).\n          *\n          * @property render.sprite.yOffset\n          * @type number\n          * @default 0\n          */\n/**\n         * A `Number` that defines the line width to use when rendering the body outline (if a sprite is not defined).\n         * A value of `0` means no outline will be rendered.\n         *\n         * @property render.lineWidth\n         * @type number\n         * @default 0\n         */\n/**\n         * A `String` that defines the fill style to use when rendering the body (if a sprite is not defined).\n         * It is the same as when using a canvas, so it accepts CSS style property values.\n         *\n         * @property render.fillStyle\n         * @type string\n         * @default a random colour\n         */\n/**\n         * A `String` that defines the stroke style to use when rendering the body outline (if a sprite is not defined).\n         * It is the same as when using a canvas, so it accepts CSS style property values.\n         *\n         * @property render.strokeStyle\n         * @type string\n         * @default a random colour\n         */\n/**\n         * An array of unique axis vectors (edge normals) used for collision detection.\n         * These are automatically calculated from the given convex hull (`vertices` array) in `Body.create`.\n         * They are constantly updated by `Body.update` during the simulation.\n         *\n         * @property axes\n         * @type vector[]\n         */\n/**\n         * A `Number` that _measures_ the area of the body's convex hull, calculated at creation by `Body.create`.\n         *\n         * @property area\n         * @type string\n         * @default \n         */\n/**\n         * A `Bounds` object that defines the AABB region for the body.\n         * It is automatically calculated from the given convex hull (`vertices` array) in `Body.create` and constantly updated by `Body.update` during simulation.\n         *\n         * @property bounds\n         * @type bounds\n         */})()},function(e,t,n){var i={};e.exports=i;var o=n(4);(function(){i._motionWakeThreshold=.18;i._motionSleepThreshold=.08;i._minBias=.9;\n/**\n         * Puts bodies to sleep or wakes them up depending on their motion.\n         * @method update\n         * @param {body[]} bodies\n         * @param {number} timeScale\n         */i.update=function(e,t){var n=t*t*t;for(var o=0;o<e.length;o++){var r=e[o],a=r.speed*r.speed+r.angularSpeed*r.angularSpeed;if(0===r.force.x&&0===r.force.y){var s=Math.min(r.motion,a),l=Math.max(r.motion,a);r.motion=i._minBias*s+(1-i._minBias)*l;if(r.sleepThreshold>0&&r.motion<i._motionSleepThreshold*n){r.sleepCounter+=1;r.sleepCounter>=r.sleepThreshold&&i.set(r,true)}else r.sleepCounter>0&&(r.sleepCounter-=1)}else i.set(r,false)}};\n/**\n         * Given a set of colliding pairs, wakes the sleeping bodies involved.\n         * @method afterCollisions\n         * @param {pair[]} pairs\n         * @param {number} timeScale\n         */i.afterCollisions=function(e,t){var n=t*t*t;for(var o=0;o<e.length;o++){var r=e[o];if(r.isActive){var a=r.collision,s=a.bodyA.parent,l=a.bodyB.parent;if(!(s.isSleeping&&l.isSleeping||s.isStatic||l.isStatic)&&(s.isSleeping||l.isSleeping)){var c=s.isSleeping&&!s.isStatic?s:l,u=c===s?l:s;!c.isStatic&&u.motion>i._motionWakeThreshold*n&&i.set(c,false)}}}};\n/**\n         * Set a body as sleeping or awake.\n         * @method set\n         * @param {body} body\n         * @param {boolean} isSleeping\n         */i.set=function(e,t){var n=e.isSleeping;if(t){e.isSleeping=true;e.sleepCounter=e.sleepThreshold;e.positionImpulse.x=0;e.positionImpulse.y=0;e.positionPrev.x=e.position.x;e.positionPrev.y=e.position.y;e.anglePrev=e.angle;e.speed=0;e.angularSpeed=0;e.motion=0;n||o.trigger(e,\"sleepStart\")}else{e.isSleeping=false;e.sleepCounter=0;n&&o.trigger(e,\"sleepEnd\")}}})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(9);(function(){var e=[];var t={overlap:0,axis:null};var n={overlap:0,axis:null};\n/**\n         * Creates a new collision record.\n         * @method create\n         * @param {body} bodyA The first body part represented by the collision record\n         * @param {body} bodyB The second body part represented by the collision record\n         * @return {collision} A new collision record\n         */i.create=function(e,t){return{pair:null,collided:false,bodyA:e,bodyB:t,parentA:e.parent,parentB:t.parent,depth:0,normal:{x:0,y:0},tangent:{x:0,y:0},penetration:{x:0,y:0},supports:[]}};\n/**\n         * Detect collision between two bodies.\n         * @method collides\n         * @param {body} bodyA\n         * @param {body} bodyB\n         * @param {pairs} [pairs] Optionally reuse collision records from existing pairs.\n         * @return {collision|null} A collision record if detected, otherwise null\n         */i.collides=function(e,a,s){i._overlapAxes(t,e.vertices,a.vertices,e.axes);if(t.overlap<=0)return null;i._overlapAxes(n,a.vertices,e.vertices,a.axes);if(n.overlap<=0)return null;var l,c=s&&s.table[r.id(e,a)];if(c)l=c.collision;else{l=i.create(e,a);l.collided=true;l.bodyA=e.id<a.id?e:a;l.bodyB=e.id<a.id?a:e;l.parentA=l.bodyA.parent;l.parentB=l.bodyB.parent}e=l.bodyA;a=l.bodyB;var u;u=t.overlap<n.overlap?t:n;var f=l.normal,d=l.supports,p=u.axis,v=p.x,y=p.y;if(v*(a.position.x-e.position.x)+y*(a.position.y-e.position.y)<0){f.x=v;f.y=y}else{f.x=-v;f.y=-y}l.tangent.x=-f.y;l.tangent.y=f.x;l.depth=u.overlap;l.penetration.x=f.x*l.depth;l.penetration.y=f.y*l.depth;var m=i._findSupports(e,a,f,1),g=0;o.contains(e.vertices,m[0])&&(d[g++]=m[0]);o.contains(e.vertices,m[1])&&(d[g++]=m[1]);if(g<2){var x=i._findSupports(a,e,f,-1);o.contains(a.vertices,x[0])&&(d[g++]=x[0]);g<2&&o.contains(a.vertices,x[1])&&(d[g++]=x[1])}0===g&&(d[g++]=m[0]);d.length=g;return l};\n/**\n         * Find the overlap between two sets of vertices.\n         * @method _overlapAxes\n         * @private\n         * @param {object} result\n         * @param {vertices} verticesA\n         * @param {vertices} verticesB\n         * @param {axes} axes\n         */i._overlapAxes=function(e,t,n,i){var o,r,a,s,l,c,u=t.length,f=n.length,d=t[0].x,p=t[0].y,v=n[0].x,y=n[0].y,m=i.length,g=Number.MAX_VALUE,x=0;for(l=0;l<m;l++){var h=i[l],b=h.x,S=h.y,w=d*b+p*S,_=v*b+y*S,A=w,P=_;for(c=1;c<u;c+=1){s=t[c].x*b+t[c].y*S;s>A?A=s:s<w&&(w=s)}for(c=1;c<f;c+=1){s=n[c].x*b+n[c].y*S;s>P?P=s:s<_&&(_=s)}r=A-_;a=P-w;o=r<a?r:a;if(o<g){g=o;x=l;if(o<=0)break}}e.axis=i[x];e.overlap=g};\n/**\n         * Projects vertices on an axis and returns an interval.\n         * @method _projectToAxis\n         * @private\n         * @param {} projection\n         * @param {} vertices\n         * @param {} axis\n         */i._projectToAxis=function(e,t,n){var i=t[0].x*n.x+t[0].y*n.y,o=i;for(var r=1;r<t.length;r+=1){var a=t[r].x*n.x+t[r].y*n.y;a>o?o=a:a<i&&(i=a)}e.min=i;e.max=o};\n/**\n         * Finds supporting vertices given two bodies along a given direction using hill-climbing.\n         * @method _findSupports\n         * @private\n         * @param {body} bodyA\n         * @param {body} bodyB\n         * @param {vector} normal\n         * @param {number} direction\n         * @return [vector]\n         */i._findSupports=function(t,n,i,o){var r,a,s,l,c,u=n.vertices,f=u.length,d=t.position.x,p=t.position.y,v=i.x*o,y=i.y*o,m=Number.MAX_VALUE;for(c=0;c<f;c+=1){a=u[c];l=v*(d-a.x)+y*(p-a.y);if(l<m){m=l;r=a}}s=u[(f+r.index-1)%f];m=v*(d-s.x)+y*(p-s.y);a=u[(r.index+1)%f];if(v*(d-a.x)+y*(p-a.y)<m){e[0]=r;e[1]=a;return e}e[0]=r;e[1]=s;return e};\n/**\n         * A reference to the pair using this collision record, if there is one.\n         *\n         * @property pair\n         * @type {pair|null}\n         * @default null\n         */\n/**\n         * A flag that indicates if the bodies were colliding when the collision was last updated.\n         * \n         * @property collided\n         * @type boolean\n         * @default false\n         */\n/**\n         * The first body part represented by the collision (see also `collision.parentA`).\n         * \n         * @property bodyA\n         * @type body\n         */\n/**\n         * The second body part represented by the collision (see also `collision.parentB`).\n         * \n         * @property bodyB\n         * @type body\n         */\n/**\n         * The first body represented by the collision (i.e. `collision.bodyA.parent`).\n         * \n         * @property parentA\n         * @type body\n         */\n/**\n         * The second body represented by the collision (i.e. `collision.bodyB.parent`).\n         * \n         * @property parentB\n         * @type body\n         */\n/**\n         * A `Number` that represents the minimum separating distance between the bodies along the collision normal.\n         *\n         * @readOnly\n         * @property depth\n         * @type number\n         * @default 0\n         */\n/**\n         * A normalised `Vector` that represents the direction between the bodies that provides the minimum separating distance.\n         *\n         * @property normal\n         * @type vector\n         * @default { x: 0, y: 0 }\n         */\n/**\n         * A normalised `Vector` that is the tangent direction to the collision normal.\n         *\n         * @property tangent\n         * @type vector\n         * @default { x: 0, y: 0 }\n         */\n/**\n         * A `Vector` that represents the direction and depth of the collision.\n         *\n         * @property penetration\n         * @type vector\n         * @default { x: 0, y: 0 }\n         */\n/**\n         * An array of body vertices that represent the support points in the collision.\n         * These are the deepest vertices (along the collision normal) of each body that are contained by the other body's vertices.\n         *\n         * @property supports\n         * @type vector[]\n         * @default []\n         */})()},function(e,t,n){var i={};e.exports=i;var o=n(17);(function(){\n/**\n         * Creates a pair.\n         * @method create\n         * @param {collision} collision\n         * @param {number} timestamp\n         * @return {pair} A new pair\n         */\ni.create=function(e,t){var n=e.bodyA,o=e.bodyB;var r={id:i.id(n,o),bodyA:n,bodyB:o,collision:e,contacts:[],activeContacts:[],separation:0,isActive:true,confirmedActive:true,isSensor:n.isSensor||o.isSensor,timeCreated:t,timeUpdated:t,inverseMass:0,friction:0,frictionStatic:0,restitution:0,slop:0};i.update(r,e,t);return r};\n/**\n         * Updates a pair given a collision.\n         * @method update\n         * @param {pair} pair\n         * @param {collision} collision\n         * @param {number} timestamp\n         */i.update=function(e,t,n){var i=e.contacts,r=t.supports,a=e.activeContacts,s=t.parentA,l=t.parentB,c=s.vertices.length;e.isActive=true;e.timeUpdated=n;e.collision=t;e.separation=t.depth;e.inverseMass=s.inverseMass+l.inverseMass;e.friction=s.friction<l.friction?s.friction:l.friction;e.frictionStatic=s.frictionStatic>l.frictionStatic?s.frictionStatic:l.frictionStatic;e.restitution=s.restitution>l.restitution?s.restitution:l.restitution;e.slop=s.slop>l.slop?s.slop:l.slop;t.pair=e;a.length=0;for(var u=0;u<r.length;u++){var f=r[u],d=f.body===s?f.index:c+f.index,p=i[d];p?a.push(p):a.push(i[d]=o.create(f))}};\n/**\n         * Set a pair as active or inactive.\n         * @method setActive\n         * @param {pair} pair\n         * @param {bool} isActive\n         * @param {number} timestamp\n         */i.setActive=function(e,t,n){if(t){e.isActive=true;e.timeUpdated=n}else{e.isActive=false;e.activeContacts.length=0}};\n/**\n         * Get the id for the given pair.\n         * @method id\n         * @param {body} bodyA\n         * @param {body} bodyB\n         * @return {string} Unique pairId\n         */i.id=function(e,t){return e.id<t.id?\"A\"+e.id+\"B\"+t.id:\"A\"+t.id+\"B\"+e.id}})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(2);var a=n(7);var s=n(1);var l=n(11);var c=n(0);(function(){i._warming=.4;i._torqueDampen=1;i._minLength=1e-6;\n/**\n         * Creates a new constraint.\n         * All properties have default values, and many are pre-calculated automatically based on other properties.\n         * To simulate a revolute constraint (or pin joint) set `length: 0` and a high `stiffness` value (e.g. `0.7` or above).\n         * If the constraint is unstable, try lowering the `stiffness` value and / or increasing `engine.constraintIterations`.\n         * For compound bodies, constraints must be applied to the parent body (not one of its parts).\n         * See the properties section below for detailed information on what you can pass via the `options` object.\n         * @method create\n         * @param {} options\n         * @return {constraint} constraint\n         */i.create=function(e){var t=e;t.bodyA&&!t.pointA&&(t.pointA={x:0,y:0});t.bodyB&&!t.pointB&&(t.pointB={x:0,y:0});var n=t.bodyA?r.add(t.bodyA.position,t.pointA):t.pointA,i=t.bodyB?r.add(t.bodyB.position,t.pointB):t.pointB,o=r.magnitude(r.sub(n,i));t.length=\"undefined\"!==typeof t.length?t.length:o;t.id=t.id||c.nextId();t.label=t.label||\"Constraint\";t.type=\"constraint\";t.stiffness=t.stiffness||(t.length>0?1:.7);t.damping=t.damping||0;t.angularStiffness=t.angularStiffness||0;t.angleA=t.bodyA?t.bodyA.angle:t.angleA;t.angleB=t.bodyB?t.bodyB.angle:t.angleB;t.plugin={};var a={visible:true,lineWidth:2,strokeStyle:\"#ffffff\",type:\"line\",anchors:true};if(0===t.length&&t.stiffness>.1){a.type=\"pin\";a.anchors=false}else t.stiffness<.9&&(a.type=\"spring\");t.render=c.extend(a,t.render);return t};\n/**\n         * Prepares for solving by constraint warming.\n         * @private\n         * @method preSolveAll\n         * @param {body[]} bodies\n         */i.preSolveAll=function(e){for(var t=0;t<e.length;t+=1){var n=e[t],i=n.constraintImpulse;if(!(n.isStatic||0===i.x&&0===i.y&&0===i.angle)){n.position.x+=i.x;n.position.y+=i.y;n.angle+=i.angle}}};\n/**\n         * Solves all constraints in a list of collisions.\n         * @private\n         * @method solveAll\n         * @param {constraint[]} constraints\n         * @param {number} timeScale\n         */i.solveAll=function(e,t){for(var n=0;n<e.length;n+=1){var o=e[n],r=!o.bodyA||o.bodyA&&o.bodyA.isStatic,a=!o.bodyB||o.bodyB&&o.bodyB.isStatic;(r||a)&&i.solve(e[n],t)}for(n=0;n<e.length;n+=1){o=e[n];r=!o.bodyA||o.bodyA&&o.bodyA.isStatic;a=!o.bodyB||o.bodyB&&o.bodyB.isStatic;r||a||i.solve(e[n],t)}};\n/**\n         * Solves a distance constraint with Gauss-Siedel method.\n         * @private\n         * @method solve\n         * @param {constraint} constraint\n         * @param {number} timeScale\n         */i.solve=function(e,t){var n=e.bodyA,o=e.bodyB,a=e.pointA,s=e.pointB;if(n||o){if(n&&!n.isStatic){r.rotate(a,n.angle-e.angleA,a);e.angleA=n.angle}if(o&&!o.isStatic){r.rotate(s,o.angle-e.angleB,s);e.angleB=o.angle}var l=a,c=s;n&&(l=r.add(n.position,a));o&&(c=r.add(o.position,s));if(l&&c){var u=r.sub(l,c),f=r.magnitude(u);f<i._minLength&&(f=i._minLength);var d,p,v,y,m,g=(f-e.length)/f,x=e.stiffness<1?e.stiffness*t:e.stiffness,h=r.mult(u,g*x),b=(n?n.inverseMass:0)+(o?o.inverseMass:0),S=(n?n.inverseInertia:0)+(o?o.inverseInertia:0),w=b+S;if(e.damping){var _=r.create();v=r.div(u,f);m=r.sub(o&&r.sub(o.position,o.positionPrev)||_,n&&r.sub(n.position,n.positionPrev)||_);y=r.dot(v,m)}if(n&&!n.isStatic){p=n.inverseMass/b;n.constraintImpulse.x-=h.x*p;n.constraintImpulse.y-=h.y*p;n.position.x-=h.x*p;n.position.y-=h.y*p;if(e.damping){n.positionPrev.x-=e.damping*v.x*y*p;n.positionPrev.y-=e.damping*v.y*y*p}d=r.cross(a,h)/w*i._torqueDampen*n.inverseInertia*(1-e.angularStiffness);n.constraintImpulse.angle-=d;n.angle-=d}if(o&&!o.isStatic){p=o.inverseMass/b;o.constraintImpulse.x+=h.x*p;o.constraintImpulse.y+=h.y*p;o.position.x+=h.x*p;o.position.y+=h.y*p;if(e.damping){o.positionPrev.x+=e.damping*v.x*y*p;o.positionPrev.y+=e.damping*v.y*y*p}d=r.cross(s,h)/w*i._torqueDampen*o.inverseInertia*(1-e.angularStiffness);o.constraintImpulse.angle+=d;o.angle+=d}}}};\n/**\n         * Performs body updates required after solving constraints.\n         * @private\n         * @method postSolveAll\n         * @param {body[]} bodies\n         */i.postSolveAll=function(e){for(var t=0;t<e.length;t++){var n=e[t],c=n.constraintImpulse;if(!(n.isStatic||0===c.x&&0===c.y&&0===c.angle)){a.set(n,false);for(var u=0;u<n.parts.length;u++){var f=n.parts[u];o.translate(f.vertices,c);if(u>0){f.position.x+=c.x;f.position.y+=c.y}if(0!==c.angle){o.rotate(f.vertices,c.angle,n.position);l.rotate(f.axes,c.angle);u>0&&r.rotateAbout(f.position,c.angle,n.position,f.position)}s.update(f.bounds,f.vertices,n.velocity)}c.angle*=i._warming;c.x*=i._warming;c.y*=i._warming}}};\n/**\n         * Returns the world-space position of `constraint.pointA`, accounting for `constraint.bodyA`.\n         * @method pointAWorld\n         * @param {constraint} constraint\n         * @returns {vector} the world-space position\n         */i.pointAWorld=function(e){return{x:(e.bodyA?e.bodyA.position.x:0)+e.pointA.x,y:(e.bodyA?e.bodyA.position.y:0)+e.pointA.y}};\n/**\n         * Returns the world-space position of `constraint.pointB`, accounting for `constraint.bodyB`.\n         * @method pointBWorld\n         * @param {constraint} constraint\n         * @returns {vector} the world-space position\n         */i.pointBWorld=function(e){return{x:(e.bodyB?e.bodyB.position.x:0)+e.pointB.x,y:(e.bodyB?e.bodyB.position.y:0)+e.pointB.y}};\n/**\n         * An integer `Number` uniquely identifying number generated in `Composite.create` by `Common.nextId`.\n         *\n         * @property id\n         * @type number\n         */\n/**\n         * A `String` denoting the type of object.\n         *\n         * @property type\n         * @type string\n         * @default \"constraint\"\n         * @readOnly\n         */\n/**\n         * An arbitrary `String` name to help the user identify and manage bodies.\n         *\n         * @property label\n         * @type string\n         * @default \"Constraint\"\n         */\n/**\n         * An `Object` that defines the rendering properties to be consumed by the module `Matter.Render`.\n         *\n         * @property render\n         * @type object\n         */\n/**\n         * A flag that indicates if the constraint should be rendered.\n         *\n         * @property render.visible\n         * @type boolean\n         * @default true\n         */\n/**\n         * A `Number` that defines the line width to use when rendering the constraint outline.\n         * A value of `0` means no outline will be rendered.\n         *\n         * @property render.lineWidth\n         * @type number\n         * @default 2\n         */\n/**\n         * A `String` that defines the stroke style to use when rendering the constraint outline.\n         * It is the same as when using a canvas, so it accepts CSS style property values.\n         *\n         * @property render.strokeStyle\n         * @type string\n         * @default a random colour\n         */\n/**\n         * A `String` that defines the constraint rendering type. \n         * The possible values are 'line', 'pin', 'spring'.\n         * An appropriate render type will be automatically chosen unless one is given in options.\n         *\n         * @property render.type\n         * @type string\n         * @default 'line'\n         */\n/**\n         * A `Boolean` that defines if the constraint's anchor points should be rendered.\n         *\n         * @property render.anchors\n         * @type boolean\n         * @default true\n         */\n/**\n         * The first possible `Body` that this constraint is attached to.\n         *\n         * @property bodyA\n         * @type body\n         * @default null\n         */\n/**\n         * The second possible `Body` that this constraint is attached to.\n         *\n         * @property bodyB\n         * @type body\n         * @default null\n         */\n/**\n         * A `Vector` that specifies the offset of the constraint from center of the `constraint.bodyA` if defined, otherwise a world-space position.\n         *\n         * @property pointA\n         * @type vector\n         * @default { x: 0, y: 0 }\n         */\n/**\n         * A `Vector` that specifies the offset of the constraint from center of the `constraint.bodyB` if defined, otherwise a world-space position.\n         *\n         * @property pointB\n         * @type vector\n         * @default { x: 0, y: 0 }\n         */\n/**\n         * A `Number` that specifies the stiffness of the constraint, i.e. the rate at which it returns to its resting `constraint.length`.\n         * A value of `1` means the constraint should be very stiff.\n         * A value of `0.2` means the constraint acts like a soft spring.\n         *\n         * @property stiffness\n         * @type number\n         * @default 1\n         */\n/**\n         * A `Number` that specifies the damping of the constraint, \n         * i.e. the amount of resistance applied to each body based on their velocities to limit the amount of oscillation.\n         * Damping will only be apparent when the constraint also has a very low `stiffness`.\n         * A value of `0.1` means the constraint will apply heavy damping, resulting in little to no oscillation.\n         * A value of `0` means the constraint will apply no damping.\n         *\n         * @property damping\n         * @type number\n         * @default 0\n         */\n/**\n         * A `Number` that specifies the target resting length of the constraint. \n         * It is calculated automatically in `Constraint.create` from initial positions of the `constraint.bodyA` and `constraint.bodyB`.\n         *\n         * @property length\n         * @type number\n         */\n/**\n         * An object reserved for storing plugin-specific properties.\n         *\n         * @property plugin\n         * @type {}\n         */})()},function(e,t,n){var i={};e.exports=i;var o=n(2);var r=n(0);(function(){\n/**\n         * Creates a new set of axes from the given vertices.\n         * @method fromVertices\n         * @param {vertices} vertices\n         * @return {axes} A new axes from the given vertices\n         */\ni.fromVertices=function(e){var t={};for(var n=0;n<e.length;n++){var i=(n+1)%e.length,a=o.normalise({x:e[i].y-e[n].y,y:e[n].x-e[i].x}),s=0===a.y?Infinity:a.x/a.y;s=s.toFixed(3).toString();t[s]=a}return r.values(t)};\n/**\n         * Rotates a set of axes by the given angle.\n         * @method rotate\n         * @param {axes} axes\n         * @param {number} angle\n         */i.rotate=function(e,t){if(0!==t){var n=Math.cos(t),i=Math.sin(t);for(var o=0;o<e.length;o++){var r,a=e[o];r=a.x*n-a.y*i;a.y=a.x*i+a.y*n;a.x=r}}}})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(0);var a=n(6);var s=n(1);var l=n(2);(function(){\n/**\n         * Creates a new rigid body model with a rectangle hull. \n         * The options parameter is an object that specifies any properties you wish to override the defaults.\n         * See the properties section of the `Matter.Body` module for detailed information on what you can pass via the `options` object.\n         * @method rectangle\n         * @param {number} x\n         * @param {number} y\n         * @param {number} width\n         * @param {number} height\n         * @param {object} [options]\n         * @return {body} A new rectangle body\n         */\ni.rectangle=function(e,t,n,i,s){s=s||{};var l={label:\"Rectangle Body\",position:{x:e,y:t},vertices:o.fromPath(\"L 0 0 L \"+n+\" 0 L \"+n+\" \"+i+\" L 0 \"+i)};if(s.chamfer){var c=s.chamfer;l.vertices=o.chamfer(l.vertices,c.radius,c.quality,c.qualityMin,c.qualityMax);delete s.chamfer}return a.create(r.extend({},l,s))};\n/**\n         * Creates a new rigid body model with a trapezoid hull. \n         * The options parameter is an object that specifies any properties you wish to override the defaults.\n         * See the properties section of the `Matter.Body` module for detailed information on what you can pass via the `options` object.\n         * @method trapezoid\n         * @param {number} x\n         * @param {number} y\n         * @param {number} width\n         * @param {number} height\n         * @param {number} slope\n         * @param {object} [options]\n         * @return {body} A new trapezoid body\n         */i.trapezoid=function(e,t,n,i,s,l){l=l||{};s*=.5;var c=(1-2*s)*n;var u,f=n*s,d=f+c,p=d+f;u=s<.5?\"L 0 0 L \"+f+\" \"+-i+\" L \"+d+\" \"+-i+\" L \"+p+\" 0\":\"L 0 0 L \"+d+\" \"+-i+\" L \"+p+\" 0\";var v={label:\"Trapezoid Body\",position:{x:e,y:t},vertices:o.fromPath(u)};if(l.chamfer){var y=l.chamfer;v.vertices=o.chamfer(v.vertices,y.radius,y.quality,y.qualityMin,y.qualityMax);delete l.chamfer}return a.create(r.extend({},v,l))};\n/**\n         * Creates a new rigid body model with a circle hull. \n         * The options parameter is an object that specifies any properties you wish to override the defaults.\n         * See the properties section of the `Matter.Body` module for detailed information on what you can pass via the `options` object.\n         * @method circle\n         * @param {number} x\n         * @param {number} y\n         * @param {number} radius\n         * @param {object} [options]\n         * @param {number} [maxSides]\n         * @return {body} A new circle body\n         */i.circle=function(e,t,n,o,a){o=o||{};var s={label:\"Circle Body\",circleRadius:n};a=a||25;var l=Math.ceil(Math.max(10,Math.min(a,n)));l%2===1&&(l+=1);return i.polygon(e,t,l,n,r.extend({},s,o))};\n/**\n         * Creates a new rigid body model with a regular polygon hull with the given number of sides. \n         * The options parameter is an object that specifies any properties you wish to override the defaults.\n         * See the properties section of the `Matter.Body` module for detailed information on what you can pass via the `options` object.\n         * @method polygon\n         * @param {number} x\n         * @param {number} y\n         * @param {number} sides\n         * @param {number} radius\n         * @param {object} [options]\n         * @return {body} A new regular polygon body\n         */i.polygon=function(e,t,n,s,l){l=l||{};if(n<3)return i.circle(e,t,s,l);var c=2*Math.PI/n,u=\"\",f=.5*c;for(var d=0;d<n;d+=1){var p=f+d*c,v=Math.cos(p)*s,y=Math.sin(p)*s;u+=\"L \"+v.toFixed(3)+\" \"+y.toFixed(3)+\" \"}var m={label:\"Polygon Body\",position:{x:e,y:t},vertices:o.fromPath(u)};if(l.chamfer){var g=l.chamfer;m.vertices=o.chamfer(m.vertices,g.radius,g.quality,g.qualityMin,g.qualityMax);delete l.chamfer}return a.create(r.extend({},m,l))};\n/**\n         * Utility to create a compound body based on set(s) of vertices.\n         * \n         * _Note:_ To optionally enable automatic concave vertices decomposition the [poly-decomp](https://github.com/schteppe/poly-decomp.js) \n         * package must be first installed and provided see `Common.setDecomp`, otherwise the convex hull of each vertex set will be used.\n         * \n         * The resulting vertices are reorientated about their centre of mass,\n         * and offset such that `body.position` corresponds to this point.\n         * \n         * The resulting offset may be found if needed by subtracting `body.bounds` from the original input bounds.\n         * To later move the centre of mass see `Body.setCentre`.\n         * \n         * Note that automatic conconcave decomposition results are not always optimal. \n         * For best results, simplify the input vertices as much as possible first.\n         * By default this function applies some addtional simplification to help.\n         * \n         * Some outputs may also require further manual processing afterwards to be robust.\n         * In particular some parts may need to be overlapped to avoid collision gaps.\n         * Thin parts and sharp points should be avoided or removed where possible.\n         *\n         * The options parameter object specifies any `Matter.Body` properties you wish to override the defaults.\n         * \n         * See the properties section of the `Matter.Body` module for detailed information on what you can pass via the `options` object.\n         * @method fromVertices\n         * @param {number} x\n         * @param {number} y\n         * @param {array} vertexSets One or more arrays of vertex points e.g. `[[{ x: 0, y: 0 }...], ...]`.\n         * @param {object} [options] The body options.\n         * @param {bool} [flagInternal=false] Optionally marks internal edges with `isInternal`.\n         * @param {number} [removeCollinear=0.01] Threshold when simplifying vertices along the same edge.\n         * @param {number} [minimumArea=10] Threshold when removing small parts.\n         * @param {number} [removeDuplicatePoints=0.01] Threshold when simplifying nearby vertices.\n         * @return {body}\n         */i.fromVertices=function(e,t,n,i,c,u,f,d){var p,v,y,m,g,x,h,b,S,w,_,A=r.getDecomp();p=Boolean(A&&A.quickDecomp);i=i||{};y=[];c=\"undefined\"!==typeof c&&c;u=\"undefined\"!==typeof u?u:.01;f=\"undefined\"!==typeof f?f:10;d=\"undefined\"!==typeof d?d:.01;r.isArray(n[0])||(n=[n]);for(w=0;w<n.length;w+=1){x=n[w];m=o.isConvex(x);g=!m;g&&!p&&r.warnOnce(\"Bodies.fromVertices: Install the 'poly-decomp' library and use Common.setDecomp or provide 'decomp' as a global to decompose concave vertices.\");if(m||!p){x=m?o.clockwiseSort(x):o.hull(x);y.push({position:{x:e,y:t},vertices:x})}else{var P=x.map((function(e){return[e.x,e.y]}));A.makeCCW(P);false!==u&&A.removeCollinearPoints(P,u);false!==d&&A.removeDuplicatePoints&&A.removeDuplicatePoints(P,d);var C=A.quickDecomp(P);for(h=0;h<C.length;h++){var k=C[h];var M=k.map((function(e){return{x:e[0],y:e[1]}}));f>0&&o.area(M)<f||y.push({position:o.centre(M),vertices:M})}}}for(h=0;h<y.length;h++)y[h]=a.create(r.extend(y[h],i));if(c){var B=5;for(h=0;h<y.length;h++){var I=y[h];for(b=h+1;b<y.length;b++){var T=y[b];if(s.overlaps(I.bounds,T.bounds)){var R=I.vertices,E=T.vertices;for(S=0;S<I.vertices.length;S++)for(_=0;_<T.vertices.length;_++){var V=l.magnitudeSquared(l.sub(R[(S+1)%R.length],E[_])),L=l.magnitudeSquared(l.sub(R[S],E[(_+1)%E.length]));if(V<B&&L<B){R[S].isInternal=true;E[_].isInternal=true}}}}}}if(y.length>1){v=a.create(r.extend({parts:y.slice(0)},i));a.setPosition(v,{x:e,y:t});return v}return y[0]}})()},function(e,t,n){var i={};e.exports=i;var o=n(0);(function(){\n/**\n         * Creates a mouse input.\n         * @method create\n         * @param {HTMLElement} element\n         * @return {mouse} A new mouse\n         */\ni.create=function(e){var t={};e||o.log(\"Mouse.create: element was undefined, defaulting to document.body\",\"warn\");t.element=e||document.body;t.absolute={x:0,y:0};t.position={x:0,y:0};t.mousedownPosition={x:0,y:0};t.mouseupPosition={x:0,y:0};t.offset={x:0,y:0};t.scale={x:1,y:1};t.wheelDelta=0;t.button=-1;t.pixelRatio=parseInt(t.element.getAttribute(\"data-pixel-ratio\"),10)||1;t.sourceEvents={mousemove:null,mousedown:null,mouseup:null,mousewheel:null};t.mousemove=function(e){var n=i._getRelativeMousePosition(e,t.element,t.pixelRatio),o=e.changedTouches;if(o){t.button=0;e.preventDefault()}t.absolute.x=n.x;t.absolute.y=n.y;t.position.x=t.absolute.x*t.scale.x+t.offset.x;t.position.y=t.absolute.y*t.scale.y+t.offset.y;t.sourceEvents.mousemove=e};t.mousedown=function(e){var n=i._getRelativeMousePosition(e,t.element,t.pixelRatio),o=e.changedTouches;if(o){t.button=0;e.preventDefault()}else t.button=e.button;t.absolute.x=n.x;t.absolute.y=n.y;t.position.x=t.absolute.x*t.scale.x+t.offset.x;t.position.y=t.absolute.y*t.scale.y+t.offset.y;t.mousedownPosition.x=t.position.x;t.mousedownPosition.y=t.position.y;t.sourceEvents.mousedown=e};t.mouseup=function(e){var n=i._getRelativeMousePosition(e,t.element,t.pixelRatio),o=e.changedTouches;o&&e.preventDefault();t.button=-1;t.absolute.x=n.x;t.absolute.y=n.y;t.position.x=t.absolute.x*t.scale.x+t.offset.x;t.position.y=t.absolute.y*t.scale.y+t.offset.y;t.mouseupPosition.x=t.position.x;t.mouseupPosition.y=t.position.y;t.sourceEvents.mouseup=e};t.mousewheel=function(e){t.wheelDelta=Math.max(-1,Math.min(1,e.wheelDelta||-e.detail));e.preventDefault()};i.setElement(t,t.element);return t};\n/**\n         * Sets the element the mouse is bound to (and relative to).\n         * @method setElement\n         * @param {mouse} mouse\n         * @param {HTMLElement} element\n         */i.setElement=function(e,t){e.element=t;t.addEventListener(\"mousemove\",e.mousemove);t.addEventListener(\"mousedown\",e.mousedown);t.addEventListener(\"mouseup\",e.mouseup);t.addEventListener(\"mousewheel\",e.mousewheel);t.addEventListener(\"DOMMouseScroll\",e.mousewheel);t.addEventListener(\"touchmove\",e.mousemove);t.addEventListener(\"touchstart\",e.mousedown);t.addEventListener(\"touchend\",e.mouseup)};\n/**\n         * Clears all captured source events.\n         * @method clearSourceEvents\n         * @param {mouse} mouse\n         */i.clearSourceEvents=function(e){e.sourceEvents.mousemove=null;e.sourceEvents.mousedown=null;e.sourceEvents.mouseup=null;e.sourceEvents.mousewheel=null;e.wheelDelta=0};\n/**\n         * Sets the mouse position offset.\n         * @method setOffset\n         * @param {mouse} mouse\n         * @param {vector} offset\n         */i.setOffset=function(e,t){e.offset.x=t.x;e.offset.y=t.y;e.position.x=e.absolute.x*e.scale.x+e.offset.x;e.position.y=e.absolute.y*e.scale.y+e.offset.y};\n/**\n         * Sets the mouse position scale.\n         * @method setScale\n         * @param {mouse} mouse\n         * @param {vector} scale\n         */i.setScale=function(e,t){e.scale.x=t.x;e.scale.y=t.y;e.position.x=e.absolute.x*e.scale.x+e.offset.x;e.position.y=e.absolute.y*e.scale.y+e.offset.y};\n/**\n         * Gets the mouse position relative to an element given a screen pixel ratio.\n         * @method _getRelativeMousePosition\n         * @private\n         * @param {} event\n         * @param {} element\n         * @param {number} pixelRatio\n         * @return {}\n         */i._getRelativeMousePosition=function(e,t,n){var i,o,r=t.getBoundingClientRect(),a=document.documentElement||document.body.parentNode||document.body,s=void 0!==window.pageXOffset?window.pageXOffset:a.scrollLeft,l=void 0!==window.pageYOffset?window.pageYOffset:a.scrollTop,c=e.changedTouches;if(c){i=c[0].pageX-r.left-s;o=c[0].pageY-r.top-l}else{i=e.pageX-r.left-s;o=e.pageY-r.top-l}return{x:i/(t.clientWidth/(t.width||t.clientWidth)*n),y:o/(t.clientHeight/(t.height||t.clientHeight)*n)}}})()},function(e,t,n){var i={};e.exports=i;var o=n(0);var r=n(8);(function(){\n/**\n         * Creates a new collision detector.\n         * @method create\n         * @param {} options\n         * @return {detector} A new collision detector\n         */\ni.create=function(e){var t={bodies:[],pairs:null};return o.extend(t,e)};\n/**\n         * Sets the list of bodies in the detector.\n         * @method setBodies\n         * @param {detector} detector\n         * @param {body[]} bodies\n         */i.setBodies=function(e,t){e.bodies=t.slice(0)};\n/**\n         * Clears the detector including its list of bodies.\n         * @method clear\n         * @param {detector} detector\n         */i.clear=function(e){e.bodies=[]};\n/**\n         * Efficiently finds all collisions among all the bodies in `detector.bodies` using a broadphase algorithm.\n         * \n         * _Note:_ The specific ordering of collisions returned is not guaranteed between releases and may change for performance reasons.\n         * If a specific ordering is required then apply a sort to the resulting array.\n         * @method collisions\n         * @param {detector} detector\n         * @return {collision[]} collisions\n         */i.collisions=function(e){var t,n,o=[],a=e.pairs,s=e.bodies,l=s.length,c=i.canCollide,u=r.collides;s.sort(i._compareBoundsX);for(t=0;t<l;t++){var f=s[t],d=f.bounds,p=f.bounds.max.x,v=f.bounds.max.y,y=f.bounds.min.y,m=f.isStatic||f.isSleeping,g=f.parts.length,x=1===g;for(n=t+1;n<l;n++){var h=s[n],b=h.bounds;if(b.min.x>p)break;if(!(v<b.min.y||y>b.max.y)&&((!m||!h.isStatic&&!h.isSleeping)&&c(f.collisionFilter,h.collisionFilter))){var S=h.parts.length;if(x&&1===S){var w=u(f,h,a);w&&o.push(w)}else{var _=g>1?1:0,A=S>1?1:0;for(var P=_;P<g;P++){var C=f.parts[P];d=C.bounds;for(var k=A;k<S;k++){var M=h.parts[k];b=M.bounds;if(!(d.min.x>b.max.x||d.max.x<b.min.x||d.max.y<b.min.y||d.min.y>b.max.y)){w=u(C,M,a);w&&o.push(w)}}}}}}}return o};\n/**\n         * Returns `true` if both supplied collision filters will allow a collision to occur.\n         * See `body.collisionFilter` for more information.\n         * @method canCollide\n         * @param {} filterA\n         * @param {} filterB\n         * @return {bool} `true` if collision can occur\n         */i.canCollide=function(e,t){return e.group===t.group&&0!==e.group?e.group>0:0!==(e.mask&t.category)&&0!==(t.mask&e.category)};\n/**\n         * The comparison function used in the broadphase algorithm.\n         * Returns the signed delta of the bodies bounds on the x-axis.\n         * @private\n         * @method _sortCompare\n         * @param {body} bodyA\n         * @param {body} bodyB\n         * @return {number} The signed delta used for sorting\n         */i._compareBoundsX=function(e,t){return e.bounds.min.x-t.bounds.min.x};\n/**\n         * The array of `Matter.Body` between which the detector finds collisions.\n         * \n         * _Note:_ The order of bodies in this array _is not fixed_ and will be continually managed by the detector.\n         * @property bodies\n         * @type body[]\n         * @default []\n         */\n/**\n         * Optional. A `Matter.Pairs` object from which previous collision objects may be reused. Intended for internal `Matter.Engine` usage.\n         * @property pairs\n         * @type {pairs|null}\n         * @default null\n         */})()},function(e,t,n){var i={};e.exports=i;var o=n(0);(function(){i._registry={};\n/**\n         * Registers a plugin object so it can be resolved later by name.\n         * @method register\n         * @param plugin {} The plugin to register.\n         * @return {object} The plugin.\n         */i.register=function(e){i.isPlugin(e)||o.warn(\"Plugin.register:\",i.toString(e),\"does not implement all required fields.\");if(e.name in i._registry){var t=i._registry[e.name],n=i.versionParse(e.version).number,r=i.versionParse(t.version).number;if(n>r){o.warn(\"Plugin.register:\",i.toString(t),\"was upgraded to\",i.toString(e));i._registry[e.name]=e}else n<r?o.warn(\"Plugin.register:\",i.toString(t),\"can not be downgraded to\",i.toString(e)):e!==t&&o.warn(\"Plugin.register:\",i.toString(e),\"is already registered to different plugin object\")}else i._registry[e.name]=e;return e};\n/**\n         * Resolves a dependency to a plugin object from the registry if it exists. \n         * The `dependency` may contain a version, but only the name matters when resolving.\n         * @method resolve\n         * @param dependency {string} The dependency.\n         * @return {object} The plugin if resolved, otherwise `undefined`.\n         */i.resolve=function(e){return i._registry[i.dependencyParse(e).name]};\n/**\n         * Returns a pretty printed plugin name and version.\n         * @method toString\n         * @param plugin {} The plugin.\n         * @return {string} Pretty printed plugin name and version.\n         */i.toString=function(e){return\"string\"===typeof e?e:(e.name||\"anonymous\")+\"@\"+(e.version||e.range||\"0.0.0\")};\n/**\n         * Returns `true` if the object meets the minimum standard to be considered a plugin.\n         * This means it must define the following properties:\n         * - `name`\n         * - `version`\n         * - `install`\n         * @method isPlugin\n         * @param obj {} The obj to test.\n         * @return {boolean} `true` if the object can be considered a plugin otherwise `false`.\n         */i.isPlugin=function(e){return e&&e.name&&e.version&&e.install};\n/**\n         * Returns `true` if a plugin with the given `name` been installed on `module`.\n         * @method isUsed\n         * @param module {} The module.\n         * @param name {string} The plugin name.\n         * @return {boolean} `true` if a plugin with the given `name` been installed on `module`, otherwise `false`.\n         */i.isUsed=function(e,t){return e.used.indexOf(t)>-1};\n/**\n         * Returns `true` if `plugin.for` is applicable to `module` by comparing against `module.name` and `module.version`.\n         * If `plugin.for` is not specified then it is assumed to be applicable.\n         * The value of `plugin.for` is a string of the format `'module-name'` or `'module-name@version'`.\n         * @method isFor\n         * @param plugin {} The plugin.\n         * @param module {} The module.\n         * @return {boolean} `true` if `plugin.for` is applicable to `module`, otherwise `false`.\n         */i.isFor=function(e,t){var n=e.for&&i.dependencyParse(e.for);return!e.for||t.name===n.name&&i.versionSatisfies(t.version,n.range)};\n/**\n         * Installs the plugins by calling `plugin.install` on each plugin specified in `plugins` if passed, otherwise `module.uses`.\n         * For installing plugins on `Matter` see the convenience function `Matter.use`.\n         * Plugins may be specified either by their name or a reference to the plugin object.\n         * Plugins themselves may specify further dependencies, but each plugin is installed only once.\n         * Order is important, a topological sort is performed to find the best resulting order of installation.\n         * This sorting attempts to satisfy every dependency's requested ordering, but may not be exact in all cases.\n         * This function logs the resulting status of each dependency in the console, along with any warnings.\n         * - A green tick \u2705 indicates a dependency was resolved and installed.\n         * - An orange diamond \uD83D\uDD36 indicates a dependency was resolved but a warning was thrown for it or one if its dependencies.\n         * - A red cross \u274C indicates a dependency could not be resolved.\n         * Avoid calling this function multiple times on the same module unless you intend to manually control installation order.\n         * @method use\n         * @param module {} The module install plugins on.\n         * @param [plugins=module.uses] {} The plugins to install on module (optional, defaults to `module.uses`).\n         */i.use=function(e,t){e.uses=(e.uses||[]).concat(t||[]);if(0!==e.uses.length){var n=i.dependencies(e),r=o.topologicalSort(n),a=[];for(var s=0;s<r.length;s+=1)if(r[s]!==e.name){var l=i.resolve(r[s]);if(l){if(!i.isUsed(e,l.name)){if(!i.isFor(l,e)){o.warn(\"Plugin.use:\",i.toString(l),\"is for\",l.for,\"but installed on\",i.toString(e)+\".\");l._warned=true}if(l.install)l.install(e);else{o.warn(\"Plugin.use:\",i.toString(l),\"does not specify an install function.\");l._warned=true}if(l._warned){a.push(\"\uD83D\uDD36 \"+i.toString(l));delete l._warned}else a.push(\"\u2705 \"+i.toString(l));e.used.push(l.name)}}else a.push(\"\u274C \"+r[s])}a.length>0&&o.info(a.join(\"  \"))}else o.warn(\"Plugin.use:\",i.toString(e),\"does not specify any dependencies to install.\")};\n/**\n         * Recursively finds all of a module's dependencies and returns a flat dependency graph.\n         * @method dependencies\n         * @param module {} The module.\n         * @return {object} A dependency graph.\n         */i.dependencies=function(e,t){var n=i.dependencyParse(e),r=n.name;t=t||{};if(!(r in t)){e=i.resolve(e)||e;t[r]=o.map(e.uses||[],(function(t){i.isPlugin(t)&&i.register(t);var r=i.dependencyParse(t),a=i.resolve(t);if(a&&!i.versionSatisfies(a.version,r.range)){o.warn(\"Plugin.dependencies:\",i.toString(a),\"does not satisfy\",i.toString(r),\"used by\",i.toString(n)+\".\");a._warned=true;e._warned=true}else if(!a){o.warn(\"Plugin.dependencies:\",i.toString(t),\"used by\",i.toString(n),\"could not be resolved.\");e._warned=true}return r.name}));for(var a=0;a<t[r].length;a+=1)i.dependencies(t[r][a],t);return t}};\n/**\n         * Parses a dependency string into its components.\n         * The `dependency` is a string of the format `'module-name'` or `'module-name@version'`.\n         * See documentation for `Plugin.versionParse` for a description of the format.\n         * This function can also handle dependencies that are already resolved (e.g. a module object).\n         * @method dependencyParse\n         * @param dependency {string} The dependency of the format `'module-name'` or `'module-name@version'`.\n         * @return {object} The dependency parsed into its components.\n         */i.dependencyParse=function(e){if(o.isString(e)){var t=/^[\\w-]+(@(\\*|[\\^~]?\\d+\\.\\d+\\.\\d+(-[0-9A-Za-z-+]+)?))?$/;t.test(e)||o.warn(\"Plugin.dependencyParse:\",e,\"is not a valid dependency string.\");return{name:e.split(\"@\")[0],range:e.split(\"@\")[1]||\"*\"}}return{name:e.name,range:e.range||e.version}};\n/**\n         * Parses a version string into its components.  \n         * Versions are strictly of the format `x.y.z` (as in [semver](http://semver.org/)).\n         * Versions may optionally have a prerelease tag in the format `x.y.z-alpha`.\n         * Ranges are a strict subset of [npm ranges](https://docs.npmjs.com/misc/semver#advanced-range-syntax).\n         * Only the following range types are supported:\n         * - Tilde ranges e.g. `~1.2.3`\n         * - Caret ranges e.g. `^1.2.3`\n         * - Greater than ranges e.g. `>1.2.3`\n         * - Greater than or equal ranges e.g. `>=1.2.3`\n         * - Exact version e.g. `1.2.3`\n         * - Any version `*`\n         * @method versionParse\n         * @param range {string} The version string.\n         * @return {object} The version range parsed into its components.\n         */i.versionParse=function(e){var t=/^(\\*)|(\\^|~|>=|>)?\\s*((\\d+)\\.(\\d+)\\.(\\d+))(-[0-9A-Za-z-+]+)?$/;t.test(e)||o.warn(\"Plugin.versionParse:\",e,\"is not a valid version or range.\");var n=t.exec(e);var i=Number(n[4]);var r=Number(n[5]);var a=Number(n[6]);return{isRange:Boolean(n[1]||n[2]),version:n[3],range:e,operator:n[1]||n[2]||\"\",major:i,minor:r,patch:a,parts:[i,r,a],prerelease:n[7],number:1e8*i+1e4*r+a}};\n/**\n         * Returns `true` if `version` satisfies the given `range`.\n         * See documentation for `Plugin.versionParse` for a description of the format.\n         * If a version or range is not specified, then any version (`*`) is assumed to satisfy.\n         * @method versionSatisfies\n         * @param version {string} The version string.\n         * @param range {string} The range string.\n         * @return {boolean} `true` if `version` satisfies `range`, otherwise `false`.\n         */i.versionSatisfies=function(e,t){t=t||\"*\";var n=i.versionParse(t),o=i.versionParse(e);if(n.isRange){if(\"*\"===n.operator||\"*\"===e)return true;if(\">\"===n.operator)return o.number>n.number;if(\">=\"===n.operator)return o.number>=n.number;if(\"~\"===n.operator)return o.major===n.major&&o.minor===n.minor&&o.patch>=n.patch;if(\"^\"===n.operator)return n.major>0?o.major===n.major&&o.number>=n.number:n.minor>0?o.minor===n.minor&&o.patch>=n.patch:o.patch===n.patch}return e===t||\"*\"===e}})()},function(e,t,n){var i={};e.exports=i;var o=n(0);var r=n(5);var a=n(1);var s=n(4);var l=n(2);var c=n(13);(function(){var e,t;if(\"undefined\"!==typeof window){e=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.msRequestAnimationFrame||function(e){window.setTimeout((function(){e(o.now())}),1e3/60)};t=window.cancelAnimationFrame||window.mozCancelAnimationFrame||window.webkitCancelAnimationFrame||window.msCancelAnimationFrame}i._goodFps=30;i._goodDelta=1e3/60;\n/**\n         * Creates a new renderer. The options parameter is an object that specifies any properties you wish to override the defaults.\n         * All properties have default values, and many are pre-calculated automatically based on other properties.\n         * See the properties section below for detailed information on what you can pass via the `options` object.\n         * @method create\n         * @param {object} [options]\n         * @return {render} A new renderer\n         */i.create=function(e){var t={controller:i,engine:null,element:null,canvas:null,mouse:null,frameRequestId:null,timing:{historySize:60,delta:0,deltaHistory:[],lastTime:0,lastTimestamp:0,lastElapsed:0,timestampElapsed:0,timestampElapsedHistory:[],engineDeltaHistory:[],engineElapsedHistory:[],elapsedHistory:[]},options:{width:800,height:600,pixelRatio:1,background:\"#14151f\",wireframeBackground:\"#14151f\",hasBounds:!!e.bounds,enabled:true,wireframes:true,showSleeping:true,showDebug:false,showStats:false,showPerformance:false,showBounds:false,showVelocity:false,showCollisions:false,showSeparations:false,showAxes:false,showPositions:false,showAngleIndicator:false,showIds:false,showVertexNumbers:false,showConvexHulls:false,showInternalEdges:false,showMousePosition:false}};var n=o.extend(t,e);if(n.canvas){n.canvas.width=n.options.width||n.canvas.width;n.canvas.height=n.options.height||n.canvas.height}n.mouse=e.mouse;n.engine=e.engine;n.canvas=n.canvas||_createCanvas(n.options.width,n.options.height);n.context=n.canvas.getContext(\"2d\");n.textures={};n.bounds=n.bounds||{min:{x:0,y:0},max:{x:n.canvas.width,y:n.canvas.height}};n.options.showBroadphase=false;1!==n.options.pixelRatio&&i.setPixelRatio(n,n.options.pixelRatio);o.isElement(n.element)?n.element.appendChild(n.canvas):n.canvas.parentNode||o.log(\"Render.create: options.element was undefined, render.canvas was created but not appended\",\"warn\");return n};\n/**\n         * Continuously updates the render canvas on the `requestAnimationFrame` event.\n         * @method run\n         * @param {render} render\n         */i.run=function(t){(function loop(n){t.frameRequestId=e(loop);_updateTiming(t,n);i.world(t,n);(t.options.showStats||t.options.showDebug)&&i.stats(t,t.context,n);(t.options.showPerformance||t.options.showDebug)&&i.performance(t,t.context,n)})()};\n/**\n         * Ends execution of `Render.run` on the given `render`, by canceling the animation frame request event loop.\n         * @method stop\n         * @param {render} render\n         */i.stop=function(e){t(e.frameRequestId)};\n/**\n         * Sets the pixel ratio of the renderer and updates the canvas.\n         * To automatically detect the correct ratio, pass the string `'auto'` for `pixelRatio`.\n         * @method setPixelRatio\n         * @param {render} render\n         * @param {number} pixelRatio\n         */i.setPixelRatio=function(e,t){var n=e.options,i=e.canvas;\"auto\"===t&&(t=_getPixelRatio(i));n.pixelRatio=t;i.setAttribute(\"data-pixel-ratio\",t);i.width=n.width*t;i.height=n.height*t;i.style.width=n.width+\"px\";i.style.height=n.height+\"px\"};\n/**\n         * Positions and sizes the viewport around the given object bounds.\n         * Objects must have at least one of the following properties:\n         * - `object.bounds`\n         * - `object.position`\n         * - `object.min` and `object.max`\n         * - `object.x` and `object.y`\n         * @method lookAt\n         * @param {render} render\n         * @param {object[]} objects\n         * @param {vector} [padding]\n         * @param {bool} [center=true]\n         */i.lookAt=function(e,t,n,i){i=\"undefined\"===typeof i||i;t=o.isArray(t)?t:[t];n=n||{x:0,y:0};var r={min:{x:Infinity,y:Infinity},max:{x:-Infinity,y:-Infinity}};for(var a=0;a<t.length;a+=1){var s=t[a],l=s.bounds?s.bounds.min:s.min||s.position||s,u=s.bounds?s.bounds.max:s.max||s.position||s;if(l&&u){l.x<r.min.x&&(r.min.x=l.x);u.x>r.max.x&&(r.max.x=u.x);l.y<r.min.y&&(r.min.y=l.y);u.y>r.max.y&&(r.max.y=u.y)}}var f=r.max.x-r.min.x+2*n.x,d=r.max.y-r.min.y+2*n.y,p=e.canvas.height,v=e.canvas.width,y=v/p,m=f/d,g=1,x=1;m>y?x=m/y:g=y/m;e.options.hasBounds=true;e.bounds.min.x=r.min.x;e.bounds.max.x=r.min.x+f*g;e.bounds.min.y=r.min.y;e.bounds.max.y=r.min.y+d*x;if(i){e.bounds.min.x+=.5*f-f*g*.5;e.bounds.max.x+=.5*f-f*g*.5;e.bounds.min.y+=.5*d-d*x*.5;e.bounds.max.y+=.5*d-d*x*.5}e.bounds.min.x-=n.x;e.bounds.max.x-=n.x;e.bounds.min.y-=n.y;e.bounds.max.y-=n.y;if(e.mouse){c.setScale(e.mouse,{x:(e.bounds.max.x-e.bounds.min.x)/e.canvas.width,y:(e.bounds.max.y-e.bounds.min.y)/e.canvas.height});c.setOffset(e.mouse,e.bounds.min)}};\n/**\n         * Applies viewport transforms based on `render.bounds` to a render context.\n         * @method startViewTransform\n         * @param {render} render\n         */i.startViewTransform=function(e){var t=e.bounds.max.x-e.bounds.min.x,n=e.bounds.max.y-e.bounds.min.y,i=t/e.options.width,o=n/e.options.height;e.context.setTransform(e.options.pixelRatio/i,0,0,e.options.pixelRatio/o,0,0);e.context.translate(-e.bounds.min.x,-e.bounds.min.y)};\n/**\n         * Resets all transforms on the render context.\n         * @method endViewTransform\n         * @param {render} render\n         */i.endViewTransform=function(e){e.context.setTransform(e.options.pixelRatio,0,0,e.options.pixelRatio,0,0)};\n/**\n         * Renders the given `engine`'s `Matter.World` object.\n         * This is the entry point for all rendering and should be called every time the scene changes.\n         * @method world\n         * @param {render} render\n         */i.world=function(e,t){var n=o.now(),u=e.engine,f=u.world,d=e.canvas,p=e.context,v=e.options,y=e.timing;var m,g=r.allBodies(f),x=r.allConstraints(f),h=v.wireframes?v.wireframeBackground:v.background,b=[],S=[];var w={timestamp:u.timing.timestamp};s.trigger(e,\"beforeRender\",w);e.currentBackground!==h&&_applyBackground(e,h);p.globalCompositeOperation=\"source-in\";p.fillStyle=\"transparent\";p.fillRect(0,0,d.width,d.height);p.globalCompositeOperation=\"source-over\";if(v.hasBounds){for(m=0;m<g.length;m++){var _=g[m];a.overlaps(_.bounds,e.bounds)&&b.push(_)}for(m=0;m<x.length;m++){var A=x[m],P=A.bodyA,C=A.bodyB,k=A.pointA,M=A.pointB;P&&(k=l.add(P.position,A.pointA));C&&(M=l.add(C.position,A.pointB));k&&M&&((a.contains(e.bounds,k)||a.contains(e.bounds,M))&&S.push(A))}i.startViewTransform(e);if(e.mouse){c.setScale(e.mouse,{x:(e.bounds.max.x-e.bounds.min.x)/e.options.width,y:(e.bounds.max.y-e.bounds.min.y)/e.options.height});c.setOffset(e.mouse,e.bounds.min)}}else{S=x;b=g;1!==e.options.pixelRatio&&e.context.setTransform(e.options.pixelRatio,0,0,e.options.pixelRatio,0,0)}if(!v.wireframes||u.enableSleeping&&v.showSleeping)i.bodies(e,b,p);else{v.showConvexHulls&&i.bodyConvexHulls(e,b,p);i.bodyWireframes(e,b,p)}v.showBounds&&i.bodyBounds(e,b,p);(v.showAxes||v.showAngleIndicator)&&i.bodyAxes(e,b,p);v.showPositions&&i.bodyPositions(e,b,p);v.showVelocity&&i.bodyVelocity(e,b,p);v.showIds&&i.bodyIds(e,b,p);v.showSeparations&&i.separations(e,u.pairs.list,p);v.showCollisions&&i.collisions(e,u.pairs.list,p);v.showVertexNumbers&&i.vertexNumbers(e,b,p);v.showMousePosition&&i.mousePosition(e,e.mouse,p);i.constraints(S,p);v.hasBounds&&i.endViewTransform(e);s.trigger(e,\"afterRender\",w);y.lastElapsed=o.now()-n};\n/**\n         * Renders statistics about the engine and world useful for debugging.\n         * @private\n         * @method stats\n         * @param {render} render\n         * @param {RenderingContext} context\n         * @param {Number} time\n         */i.stats=function(e,t,n){var i=e.engine,o=i.world,a=r.allBodies(o),s=0,l=55,c=44,u=0,f=0;for(var d=0;d<a.length;d+=1)s+=a[d].parts.length;var p={Part:s,Body:a.length,Cons:r.allConstraints(o).length,Comp:r.allComposites(o).length,Pair:i.pairs.list.length};t.fillStyle=\"#0e0f19\";t.fillRect(u,f,5.5*l,c);t.font=\"12px Arial\";t.textBaseline=\"top\";t.textAlign=\"right\";for(var v in p){var y=p[v];t.fillStyle=\"#aaa\";t.fillText(v,u+l,f+8);t.fillStyle=\"#eee\";t.fillText(y,u+l,f+26);u+=l}};\n/**\n         * Renders engine and render performance information.\n         * @private\n         * @method performance\n         * @param {render} render\n         * @param {RenderingContext} context\n         */i.performance=function(e,t){var n=e.engine,o=e.timing,r=o.deltaHistory,a=o.elapsedHistory,s=o.timestampElapsedHistory,l=o.engineDeltaHistory,c=o.engineElapsedHistory,u=n.timing.lastDelta;var f=_mean(r),d=_mean(a),p=_mean(l),v=_mean(c),y=_mean(s),m=y/f||0,g=1e3/f||0;var x=4,h=12,b=60,S=34,w=10,_=69;t.fillStyle=\"#0e0f19\";t.fillRect(0,50,4*h+5*b+22,S);i.status(t,w,_,b,x,r.length,Math.round(g)+\" fps\",g/i._goodFps,(function(e){return r[e]/f-1}));i.status(t,w+h+b,_,b,x,l.length,u.toFixed(2)+\" dt\",i._goodDelta/u,(function(e){return l[e]/p-1}));i.status(t,w+2*(h+b),_,b,x,c.length,v.toFixed(2)+\" ut\",1-v/i._goodFps,(function(e){return c[e]/v-1}));i.status(t,w+3*(h+b),_,b,x,a.length,d.toFixed(2)+\" rt\",1-d/i._goodFps,(function(e){return a[e]/d-1}));i.status(t,w+4*(h+b),_,b,x,s.length,m.toFixed(2)+\" x\",m*m*m,(function(e){return(s[e]/r[e]/m||0)-1}))};\n/**\n         * Renders a label, indicator and a chart.\n         * @private\n         * @method status\n         * @param {RenderingContext} context\n         * @param {number} x\n         * @param {number} y\n         * @param {number} width\n         * @param {number} height\n         * @param {number} count\n         * @param {string} label\n         * @param {string} indicator\n         * @param {function} plotY\n         */i.status=function(e,t,n,i,r,a,s,l,c){e.strokeStyle=\"#888\";e.fillStyle=\"#444\";e.lineWidth=1;e.fillRect(t,n+7,i,1);e.beginPath();e.moveTo(t,n+7-r*o.clamp(.4*c(0),-2,2));for(var u=0;u<i;u+=1)e.lineTo(t+u,n+7-(u<a?r*o.clamp(.4*c(u),-2,2):0));e.stroke();e.fillStyle=\"hsl(\"+o.clamp(25+95*l,0,120)+\",100%,60%)\";e.fillRect(t,n-7,4,4);e.font=\"12px Arial\";e.textBaseline=\"middle\";e.textAlign=\"right\";e.fillStyle=\"#eee\";e.fillText(s,t+i,n-5)};\n/**\n         * Description\n         * @private\n         * @method constraints\n         * @param {constraint[]} constraints\n         * @param {RenderingContext} context\n         */i.constraints=function(e,t){var n=t;for(var i=0;i<e.length;i++){var r=e[i];if(r.render.visible&&r.pointA&&r.pointB){var a,s,c=r.bodyA,u=r.bodyB;a=c?l.add(c.position,r.pointA):r.pointA;if(\"pin\"===r.render.type){n.beginPath();n.arc(a.x,a.y,3,0,2*Math.PI);n.closePath()}else{s=u?l.add(u.position,r.pointB):r.pointB;n.beginPath();n.moveTo(a.x,a.y);if(\"spring\"===r.render.type){var f,d=l.sub(s,a),p=l.perp(l.normalise(d)),v=Math.ceil(o.clamp(r.length/5,12,20));for(var y=1;y<v;y+=1){f=y%2===0?1:-1;n.lineTo(a.x+d.x*(y/v)+p.x*f*4,a.y+d.y*(y/v)+p.y*f*4)}}n.lineTo(s.x,s.y)}if(r.render.lineWidth){n.lineWidth=r.render.lineWidth;n.strokeStyle=r.render.strokeStyle;n.stroke()}if(r.render.anchors){n.fillStyle=r.render.strokeStyle;n.beginPath();n.arc(a.x,a.y,3,0,2*Math.PI);n.arc(s.x,s.y,3,0,2*Math.PI);n.closePath();n.fill()}}}};\n/**\n         * Description\n         * @private\n         * @method bodies\n         * @param {render} render\n         * @param {body[]} bodies\n         * @param {RenderingContext} context\n         */i.bodies=function(e,t,n){var i,o,r,a,s=n,l=(e.engine,e.options),c=l.showInternalEdges||!l.wireframes;for(r=0;r<t.length;r++){i=t[r];if(i.render.visible)for(a=i.parts.length>1?1:0;a<i.parts.length;a++){o=i.parts[a];if(o.render.visible){l.showSleeping&&i.isSleeping?s.globalAlpha=.5*o.render.opacity:1!==o.render.opacity&&(s.globalAlpha=o.render.opacity);if(o.render.sprite&&o.render.sprite.texture&&!l.wireframes){var u=o.render.sprite,f=_getTexture(e,u.texture);s.translate(o.position.x,o.position.y);s.rotate(o.angle);s.drawImage(f,f.width*-u.xOffset*u.xScale,f.height*-u.yOffset*u.yScale,f.width*u.xScale,f.height*u.yScale);s.rotate(-o.angle);s.translate(-o.position.x,-o.position.y)}else{if(o.circleRadius){s.beginPath();s.arc(o.position.x,o.position.y,o.circleRadius,0,2*Math.PI)}else{s.beginPath();s.moveTo(o.vertices[0].x,o.vertices[0].y);for(var d=1;d<o.vertices.length;d++){!o.vertices[d-1].isInternal||c?s.lineTo(o.vertices[d].x,o.vertices[d].y):s.moveTo(o.vertices[d].x,o.vertices[d].y);o.vertices[d].isInternal&&!c&&s.moveTo(o.vertices[(d+1)%o.vertices.length].x,o.vertices[(d+1)%o.vertices.length].y)}s.lineTo(o.vertices[0].x,o.vertices[0].y);s.closePath()}if(l.wireframes){s.lineWidth=1;s.strokeStyle=\"#bbb\";s.stroke()}else{s.fillStyle=o.render.fillStyle;if(o.render.lineWidth){s.lineWidth=o.render.lineWidth;s.strokeStyle=o.render.strokeStyle;s.stroke()}s.fill()}}s.globalAlpha=1}}}};\n/**\n         * Optimised method for drawing body wireframes in one pass\n         * @private\n         * @method bodyWireframes\n         * @param {render} render\n         * @param {body[]} bodies\n         * @param {RenderingContext} context\n         */i.bodyWireframes=function(e,t,n){var i,o,r,a,s,l=n,c=e.options.showInternalEdges;l.beginPath();for(r=0;r<t.length;r++){i=t[r];if(i.render.visible)for(s=i.parts.length>1?1:0;s<i.parts.length;s++){o=i.parts[s];l.moveTo(o.vertices[0].x,o.vertices[0].y);for(a=1;a<o.vertices.length;a++){!o.vertices[a-1].isInternal||c?l.lineTo(o.vertices[a].x,o.vertices[a].y):l.moveTo(o.vertices[a].x,o.vertices[a].y);o.vertices[a].isInternal&&!c&&l.moveTo(o.vertices[(a+1)%o.vertices.length].x,o.vertices[(a+1)%o.vertices.length].y)}l.lineTo(o.vertices[0].x,o.vertices[0].y)}}l.lineWidth=1;l.strokeStyle=\"#bbb\";l.stroke()};\n/**\n         * Optimised method for drawing body convex hull wireframes in one pass\n         * @private\n         * @method bodyConvexHulls\n         * @param {render} render\n         * @param {body[]} bodies\n         * @param {RenderingContext} context\n         */i.bodyConvexHulls=function(e,t,n){var i,o,r,a=n;a.beginPath();for(o=0;o<t.length;o++){i=t[o];if(i.render.visible&&1!==i.parts.length){a.moveTo(i.vertices[0].x,i.vertices[0].y);for(r=1;r<i.vertices.length;r++)a.lineTo(i.vertices[r].x,i.vertices[r].y);a.lineTo(i.vertices[0].x,i.vertices[0].y)}}a.lineWidth=1;a.strokeStyle=\"rgba(255,255,255,0.2)\";a.stroke()};\n/**\n         * Renders body vertex numbers.\n         * @private\n         * @method vertexNumbers\n         * @param {render} render\n         * @param {body[]} bodies\n         * @param {RenderingContext} context\n         */i.vertexNumbers=function(e,t,n){var i,o,r,a=n;for(i=0;i<t.length;i++){var s=t[i].parts;for(r=s.length>1?1:0;r<s.length;r++){var l=s[r];for(o=0;o<l.vertices.length;o++){a.fillStyle=\"rgba(255,255,255,0.2)\";a.fillText(i+\"_\"+o,l.position.x+.8*(l.vertices[o].x-l.position.x),l.position.y+.8*(l.vertices[o].y-l.position.y))}}}};\n/**\n         * Renders mouse position.\n         * @private\n         * @method mousePosition\n         * @param {render} render\n         * @param {mouse} mouse\n         * @param {RenderingContext} context\n         */i.mousePosition=function(e,t,n){var i=n;i.fillStyle=\"rgba(255,255,255,0.8)\";i.fillText(t.position.x+\"  \"+t.position.y,t.position.x+5,t.position.y-5)};\n/**\n         * Draws body bounds\n         * @private\n         * @method bodyBounds\n         * @param {render} render\n         * @param {body[]} bodies\n         * @param {RenderingContext} context\n         */i.bodyBounds=function(e,t,n){var i=n,o=(e.engine,e.options);i.beginPath();for(var r=0;r<t.length;r++){var a=t[r];if(a.render.visible){var s=t[r].parts;for(var l=s.length>1?1:0;l<s.length;l++){var c=s[l];i.rect(c.bounds.min.x,c.bounds.min.y,c.bounds.max.x-c.bounds.min.x,c.bounds.max.y-c.bounds.min.y)}}}o.wireframes?i.strokeStyle=\"rgba(255,255,255,0.08)\":i.strokeStyle=\"rgba(0,0,0,0.1)\";i.lineWidth=1;i.stroke()};\n/**\n         * Draws body angle indicators and axes\n         * @private\n         * @method bodyAxes\n         * @param {render} render\n         * @param {body[]} bodies\n         * @param {RenderingContext} context\n         */i.bodyAxes=function(e,t,n){var i,o,r,a,s=n,l=(e.engine,e.options);s.beginPath();for(o=0;o<t.length;o++){var c=t[o],u=c.parts;if(c.render.visible)if(l.showAxes)for(r=u.length>1?1:0;r<u.length;r++){i=u[r];for(a=0;a<i.axes.length;a++){var f=i.axes[a];s.moveTo(i.position.x,i.position.y);s.lineTo(i.position.x+20*f.x,i.position.y+20*f.y)}}else for(r=u.length>1?1:0;r<u.length;r++){i=u[r];for(a=0;a<i.axes.length;a++){s.moveTo(i.position.x,i.position.y);s.lineTo((i.vertices[0].x+i.vertices[i.vertices.length-1].x)/2,(i.vertices[0].y+i.vertices[i.vertices.length-1].y)/2)}}}if(l.wireframes){s.strokeStyle=\"indianred\";s.lineWidth=1}else{s.strokeStyle=\"rgba(255, 255, 255, 0.4)\";s.globalCompositeOperation=\"overlay\";s.lineWidth=2}s.stroke();s.globalCompositeOperation=\"source-over\"};\n/**\n         * Draws body positions\n         * @private\n         * @method bodyPositions\n         * @param {render} render\n         * @param {body[]} bodies\n         * @param {RenderingContext} context\n         */i.bodyPositions=function(e,t,n){var i,o,r,a,s=n,l=(e.engine,e.options);s.beginPath();for(r=0;r<t.length;r++){i=t[r];if(i.render.visible)for(a=0;a<i.parts.length;a++){o=i.parts[a];s.arc(o.position.x,o.position.y,3,0,2*Math.PI,false);s.closePath()}}l.wireframes?s.fillStyle=\"indianred\":s.fillStyle=\"rgba(0,0,0,0.5)\";s.fill();s.beginPath();for(r=0;r<t.length;r++){i=t[r];if(i.render.visible){s.arc(i.positionPrev.x,i.positionPrev.y,2,0,2*Math.PI,false);s.closePath()}}s.fillStyle=\"rgba(255,165,0,0.8)\";s.fill()};\n/**\n         * Draws body velocity\n         * @private\n         * @method bodyVelocity\n         * @param {render} render\n         * @param {body[]} bodies\n         * @param {RenderingContext} context\n         */i.bodyVelocity=function(e,t,n){var i=n;i.beginPath();for(var o=0;o<t.length;o++){var r=t[o];if(r.render.visible){i.moveTo(r.position.x,r.position.y);i.lineTo(r.position.x+2*(r.position.x-r.positionPrev.x),r.position.y+2*(r.position.y-r.positionPrev.y))}}i.lineWidth=3;i.strokeStyle=\"cornflowerblue\";i.stroke()};\n/**\n         * Draws body ids\n         * @private\n         * @method bodyIds\n         * @param {render} render\n         * @param {body[]} bodies\n         * @param {RenderingContext} context\n         */i.bodyIds=function(e,t,n){var i,o,r=n;for(i=0;i<t.length;i++)if(t[i].render.visible){var a=t[i].parts;for(o=a.length>1?1:0;o<a.length;o++){var s=a[o];r.font=\"12px Arial\";r.fillStyle=\"rgba(255,255,255,0.5)\";r.fillText(s.id,s.position.x+10,s.position.y-10)}}};\n/**\n         * Description\n         * @private\n         * @method collisions\n         * @param {render} render\n         * @param {pair[]} pairs\n         * @param {RenderingContext} context\n         */i.collisions=function(e,t,n){var i,o,r,a,s=n,l=e.options;s.beginPath();for(r=0;r<t.length;r++){i=t[r];if(i.isActive){o=i.collision;for(a=0;a<i.activeContacts.length;a++){var c=i.activeContacts[a],u=c.vertex;s.rect(u.x-1.5,u.y-1.5,3.5,3.5)}}}l.wireframes?s.fillStyle=\"rgba(255,255,255,0.7)\":s.fillStyle=\"orange\";s.fill();s.beginPath();for(r=0;r<t.length;r++){i=t[r];if(i.isActive){o=i.collision;if(i.activeContacts.length>0){var f=i.activeContacts[0].vertex.x,d=i.activeContacts[0].vertex.y;if(2===i.activeContacts.length){f=(i.activeContacts[0].vertex.x+i.activeContacts[1].vertex.x)/2;d=(i.activeContacts[0].vertex.y+i.activeContacts[1].vertex.y)/2}o.bodyB===o.supports[0].body||true===o.bodyA.isStatic?s.moveTo(f-8*o.normal.x,d-8*o.normal.y):s.moveTo(f+8*o.normal.x,d+8*o.normal.y);s.lineTo(f,d)}}}l.wireframes?s.strokeStyle=\"rgba(255,165,0,0.7)\":s.strokeStyle=\"orange\";s.lineWidth=1;s.stroke()};\n/**\n         * Description\n         * @private\n         * @method separations\n         * @param {render} render\n         * @param {pair[]} pairs\n         * @param {RenderingContext} context\n         */i.separations=function(e,t,n){var i,o,r,a,s,l=n,c=e.options;l.beginPath();for(s=0;s<t.length;s++){i=t[s];if(i.isActive){o=i.collision;r=o.bodyA;a=o.bodyB;var u=1;a.isStatic||r.isStatic||(u=.5);a.isStatic&&(u=0);l.moveTo(a.position.x,a.position.y);l.lineTo(a.position.x-o.penetration.x*u,a.position.y-o.penetration.y*u);u=1;a.isStatic||r.isStatic||(u=.5);r.isStatic&&(u=0);l.moveTo(r.position.x,r.position.y);l.lineTo(r.position.x+o.penetration.x*u,r.position.y+o.penetration.y*u)}}c.wireframes?l.strokeStyle=\"rgba(255,165,0,0.5)\":l.strokeStyle=\"orange\";l.stroke()};\n/**\n         * Description\n         * @private\n         * @method inspector\n         * @param {inspector} inspector\n         * @param {RenderingContext} context\n         */i.inspector=function(e,t){e.engine;var n,i=e.selected,o=e.render,r=o.options;if(r.hasBounds){var a=o.bounds.max.x-o.bounds.min.x,s=o.bounds.max.y-o.bounds.min.y,l=a/o.options.width,c=s/o.options.height;t.scale(1/l,1/c);t.translate(-o.bounds.min.x,-o.bounds.min.y)}for(var u=0;u<i.length;u++){var f=i[u].data;t.translate(.5,.5);t.lineWidth=1;t.strokeStyle=\"rgba(255,165,0,0.9)\";t.setLineDash([1,2]);switch(f.type){case\"body\":n=f.bounds;t.beginPath();t.rect(Math.floor(n.min.x-3),Math.floor(n.min.y-3),Math.floor(n.max.x-n.min.x+6),Math.floor(n.max.y-n.min.y+6));t.closePath();t.stroke();break;case\"constraint\":var d=f.pointA;f.bodyA&&(d=f.pointB);t.beginPath();t.arc(d.x,d.y,10,0,2*Math.PI);t.closePath();t.stroke();break}t.setLineDash([]);t.translate(-.5,-.5)}if(null!==e.selectStart){t.translate(.5,.5);t.lineWidth=1;t.strokeStyle=\"rgba(255,165,0,0.6)\";t.fillStyle=\"rgba(255,165,0,0.1)\";n=e.selectBounds;t.beginPath();t.rect(Math.floor(n.min.x),Math.floor(n.min.y),Math.floor(n.max.x-n.min.x),Math.floor(n.max.y-n.min.y));t.closePath();t.stroke();t.fill();t.translate(-.5,-.5)}r.hasBounds&&t.setTransform(1,0,0,1,0,0)};\n/**\n         * Updates render timing.\n         * @method _updateTiming\n         * @private\n         * @param {render} render\n         * @param {number} time\n         */var _updateTiming=function(e,t){var n=e.engine,o=e.timing,r=o.historySize,a=n.timing.timestamp;o.delta=t-o.lastTime||i._goodDelta;o.lastTime=t;o.timestampElapsed=a-o.lastTimestamp||0;o.lastTimestamp=a;o.deltaHistory.unshift(o.delta);o.deltaHistory.length=Math.min(o.deltaHistory.length,r);o.engineDeltaHistory.unshift(n.timing.lastDelta);o.engineDeltaHistory.length=Math.min(o.engineDeltaHistory.length,r);o.timestampElapsedHistory.unshift(o.timestampElapsed);o.timestampElapsedHistory.length=Math.min(o.timestampElapsedHistory.length,r);o.engineElapsedHistory.unshift(n.timing.lastElapsed);o.engineElapsedHistory.length=Math.min(o.engineElapsedHistory.length,r);o.elapsedHistory.unshift(o.lastElapsed);o.elapsedHistory.length=Math.min(o.elapsedHistory.length,r)};\n/**\n         * Returns the mean value of the given numbers.\n         * @method _mean\n         * @private\n         * @param {Number[]} values\n         * @return {Number} the mean of given values\n         */var _mean=function(e){var t=0;for(var n=0;n<e.length;n+=1)t+=e[n];return t/e.length||0};\n/**\n         * @method _createCanvas\n         * @private\n         * @param {} width\n         * @param {} height\n         * @return canvas\n         */var _createCanvas=function(e,t){var n=document.createElement(\"canvas\");n.width=e;n.height=t;n.oncontextmenu=function(){return false};n.onselectstart=function(){return false};return n};\n/**\n         * Gets the pixel ratio of the canvas.\n         * @method _getPixelRatio\n         * @private\n         * @param {HTMLElement} canvas\n         * @return {Number} pixel ratio\n         */var _getPixelRatio=function(e){var t=e.getContext(\"2d\"),n=window.devicePixelRatio||1,i=t.webkitBackingStorePixelRatio||t.mozBackingStorePixelRatio||t.msBackingStorePixelRatio||t.oBackingStorePixelRatio||t.backingStorePixelRatio||1;return n/i};\n/**\n         * Gets the requested texture (an Image) via its path\n         * @method _getTexture\n         * @private\n         * @param {render} render\n         * @param {string} imagePath\n         * @return {Image} texture\n         */var _getTexture=function(e,t){var n=e.textures[t];if(n)return n;n=e.textures[t]=new Image;n.src=t;return n};\n/**\n         * Applies the background to the canvas using CSS.\n         * @method applyBackground\n         * @private\n         * @param {render} render\n         * @param {string} background\n         */var _applyBackground=function(e,t){var n=t;/(jpg|gif|png)$/.test(t)&&(n=\"url(\"+t+\")\");e.canvas.style.background=n;e.canvas.style.backgroundSize=\"contain\";e.currentBackground=t};\n/**\n        * Fired before rendering\n        *\n        * @event beforeRender\n        * @param {} event An event object\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired after rendering\n        *\n        * @event afterRender\n        * @param {} event An event object\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n         * A back-reference to the `Matter.Render` module.\n         *\n         * @property controller\n         * @type render\n         */\n/**\n         * A reference to the `Matter.Engine` instance to be used.\n         *\n         * @property engine\n         * @type engine\n         */\n/**\n         * A reference to the element where the canvas is to be inserted (if `render.canvas` has not been specified)\n         *\n         * @property element\n         * @type HTMLElement\n         * @default null\n         */\n/**\n         * The canvas element to render to. If not specified, one will be created if `render.element` has been specified.\n         *\n         * @property canvas\n         * @type HTMLCanvasElement\n         * @default null\n         */\n/**\n         * A `Bounds` object that specifies the drawing view region.\n         * Rendering will be automatically transformed and scaled to fit within the canvas size (`render.options.width` and `render.options.height`).\n         * This allows for creating views that can pan or zoom around the scene.\n         * You must also set `render.options.hasBounds` to `true` to enable bounded rendering.\n         *\n         * @property bounds\n         * @type bounds\n         */\n/**\n         * The 2d rendering context from the `render.canvas` element.\n         *\n         * @property context\n         * @type CanvasRenderingContext2D\n         */\n/**\n         * The sprite texture cache.\n         *\n         * @property textures\n         * @type {}\n         */\n/**\n         * The mouse to render if `render.options.showMousePosition` is enabled.\n         *\n         * @property mouse\n         * @type mouse\n         * @default null\n         */\n/**\n         * The configuration options of the renderer.\n         *\n         * @property options\n         * @type {}\n         */\n/**\n         * The target width in pixels of the `render.canvas` to be created.\n         * See also the `options.pixelRatio` property to change render quality.\n         *\n         * @property options.width\n         * @type number\n         * @default 800\n         */\n/**\n         * The target height in pixels of the `render.canvas` to be created.\n         * See also the `options.pixelRatio` property to change render quality.\n         *\n         * @property options.height\n         * @type number\n         * @default 600\n         */\n/**\n         * The [pixel ratio](https://developer.mozilla.org/en-US/docs/Web/API/Window/devicePixelRatio) to use when rendering.\n         *\n         * @property options.pixelRatio\n         * @type number\n         * @default 1\n         */\n/**\n         * A CSS background color string to use when `render.options.wireframes` is disabled.\n         * This may be also set to `'transparent'` or equivalent.\n         *\n         * @property options.background\n         * @type string\n         * @default '#14151f'\n         */\n/**\n         * A CSS background color string to use when `render.options.wireframes` is enabled.\n         * This may be also set to `'transparent'` or equivalent.\n         *\n         * @property options.wireframeBackground\n         * @type string\n         * @default '#14151f'\n         */\n/**\n         * A flag that specifies if `render.bounds` should be used when rendering.\n         *\n         * @property options.hasBounds\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable all debug information overlays together.  \n         * This includes and has priority over the values of:\n         *\n         * - `render.options.showStats`\n         * - `render.options.showPerformance`\n         *\n         * @property options.showDebug\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the engine stats info overlay.  \n         * From left to right, the values shown are:\n         *\n         * - body parts total\n         * - body total\n         * - constraints total\n         * - composites total\n         * - collision pairs total\n         *\n         * @property options.showStats\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable performance charts.  \n         * From left to right, the values shown are:\n         *\n         * - average render frequency (e.g. 60 fps)\n         * - exact engine delta time used for last update (e.g. 16.66ms)\n         * - average engine execution duration (e.g. 5.00ms)\n         * - average render execution duration (e.g. 0.40ms)\n         * - average effective play speed (e.g. '1.00x' is 'real-time')\n         *\n         * Each value is recorded over a fixed sample of past frames (60 frames).\n         *\n         * A chart shown below each value indicates the variance from the average over the sample.\n         * The more stable or fixed the value is the flatter the chart will appear.\n         *\n         * @property options.showPerformance\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable rendering entirely.\n         *\n         * @property options.enabled\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to toggle wireframe rendering otherwise solid fill rendering is used.\n         *\n         * @property options.wireframes\n         * @type boolean\n         * @default true\n         */\n/**\n         * A flag to enable or disable sleeping bodies indicators.\n         *\n         * @property options.showSleeping\n         * @type boolean\n         * @default true\n         */\n/**\n         * A flag to enable or disable the debug information overlay.\n         *\n         * @property options.showDebug\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the collision broadphase debug overlay.\n         *\n         * @deprecated no longer implemented\n         * @property options.showBroadphase\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the body bounds debug overlay.\n         *\n         * @property options.showBounds\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the body velocity debug overlay.\n         *\n         * @property options.showVelocity\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the body collisions debug overlay.\n         *\n         * @property options.showCollisions\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the collision resolver separations debug overlay.\n         *\n         * @property options.showSeparations\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the body axes debug overlay.\n         *\n         * @property options.showAxes\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the body positions debug overlay.\n         *\n         * @property options.showPositions\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the body angle debug overlay.\n         *\n         * @property options.showAngleIndicator\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the body and part ids debug overlay.\n         *\n         * @property options.showIds\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the body vertex numbers debug overlay.\n         *\n         * @property options.showVertexNumbers\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the body convex hulls debug overlay.\n         *\n         * @property options.showConvexHulls\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the body internal edges debug overlay.\n         *\n         * @property options.showInternalEdges\n         * @type boolean\n         * @default false\n         */\n/**\n         * A flag to enable or disable the mouse position debug overlay.\n         *\n         * @property options.showMousePosition\n         * @type boolean\n         * @default false\n         */})()},function(e,t){var n={};e.exports=n;(function(){\n/**\n         * Creates a new contact.\n         * @method create\n         * @param {vertex} vertex\n         * @return {contact} A new contact\n         */\nn.create=function(e){return{vertex:e,normalImpulse:0,tangentImpulse:0}}})()},function(e,t,n){var i={};e.exports=i;var o=n(7);var r=n(19);var a=n(14);var s=n(20);var l=n(4);var c=n(5);var u=n(10);var f=n(0);var d=n(6);(function(){\n/**\n         * Creates a new engine. The options parameter is an object that specifies any properties you wish to override the defaults.\n         * All properties have default values, and many are pre-calculated automatically based on other properties.\n         * See the properties section below for detailed information on what you can pass via the `options` object.\n         * @method create\n         * @param {object} [options]\n         * @return {engine} engine\n         */\ni.create=function(e){e=e||{};var t={positionIterations:6,velocityIterations:4,constraintIterations:2,enableSleeping:false,events:[],plugin:{},gravity:{x:0,y:1,scale:.001},timing:{timestamp:0,timeScale:1,lastDelta:0,lastElapsed:0}};var n=f.extend(t,e);n.world=e.world||c.create({label:\"World\"});n.pairs=e.pairs||s.create();n.detector=e.detector||a.create();n.grid={buckets:[]};n.world.gravity=n.gravity;n.broadphase=n.grid;n.metrics={};return n};\n/**\n         * Moves the simulation forward in time by `delta` ms.\n         * The `correction` argument is an optional `Number` that specifies the time correction factor to apply to the update.\n         * This can help improve the accuracy of the simulation in cases where `delta` is changing between updates.\n         * The value of `correction` is defined as `delta / lastDelta`, i.e. the percentage change of `delta` over the last step.\n         * Therefore the value is always `1` (no correction) when `delta` constant (or when no correction is desired, which is the default).\n         * See the paper on <a href=\"http://lonesock.net/article/verlet.html\">Time Corrected Verlet</a> for more information.\n         *\n         * Triggers `beforeUpdate` and `afterUpdate` events.\n         * Triggers `collisionStart`, `collisionActive` and `collisionEnd` events.\n         * @method update\n         * @param {engine} engine\n         * @param {number} [delta=16.666]\n         * @param {number} [correction=1]\n         */i.update=function(e,t,n){var d=f.now();t=t||1e3/60;n=n||1;var p,v=e.world,y=e.detector,m=e.pairs,g=e.timing,x=g.timestamp;g.timestamp+=t*g.timeScale;g.lastDelta=t*g.timeScale;var h={timestamp:g.timestamp};l.trigger(e,\"beforeUpdate\",h);var b=c.allBodies(v),S=c.allConstraints(v);v.isModified&&a.setBodies(y,b);v.isModified&&c.setModified(v,false,false,true);e.enableSleeping&&o.update(b,g.timeScale);i._bodiesApplyGravity(b,e.gravity);i._bodiesUpdate(b,t,g.timeScale,n,v.bounds);u.preSolveAll(b);for(p=0;p<e.constraintIterations;p++)u.solveAll(S,g.timeScale);u.postSolveAll(b);y.pairs=e.pairs;var w=a.collisions(y);s.update(m,w,x);e.enableSleeping&&o.afterCollisions(m.list,g.timeScale);m.collisionStart.length>0&&l.trigger(e,\"collisionStart\",{pairs:m.collisionStart});r.preSolvePosition(m.list);for(p=0;p<e.positionIterations;p++)r.solvePosition(m.list,g.timeScale);r.postSolvePosition(b);u.preSolveAll(b);for(p=0;p<e.constraintIterations;p++)u.solveAll(S,g.timeScale);u.postSolveAll(b);r.preSolveVelocity(m.list);for(p=0;p<e.velocityIterations;p++)r.solveVelocity(m.list,g.timeScale);m.collisionActive.length>0&&l.trigger(e,\"collisionActive\",{pairs:m.collisionActive});m.collisionEnd.length>0&&l.trigger(e,\"collisionEnd\",{pairs:m.collisionEnd});i._bodiesClearForces(b);l.trigger(e,\"afterUpdate\",h);e.timing.lastElapsed=f.now()-d;return e};\n/**\n         * Merges two engines by keeping the configuration of `engineA` but replacing the world with the one from `engineB`.\n         * @method merge\n         * @param {engine} engineA\n         * @param {engine} engineB\n         */i.merge=function(e,t){f.extend(e,t);if(t.world){e.world=t.world;i.clear(e);var n=c.allBodies(e.world);for(var r=0;r<n.length;r++){var a=n[r];o.set(a,false);a.id=f.nextId()}}};\n/**\n         * Clears the engine pairs and detector.\n         * @method clear\n         * @param {engine} engine\n         */i.clear=function(e){s.clear(e.pairs);a.clear(e.detector)};\n/**\n         * Zeroes the `body.force` and `body.torque` force buffers.\n         * @method _bodiesClearForces\n         * @private\n         * @param {body[]} bodies\n         */i._bodiesClearForces=function(e){for(var t=0;t<e.length;t++){var n=e[t];n.force.x=0;n.force.y=0;n.torque=0}};\n/**\n         * Applys a mass dependant force to all given bodies.\n         * @method _bodiesApplyGravity\n         * @private\n         * @param {body[]} bodies\n         * @param {vector} gravity\n         */i._bodiesApplyGravity=function(e,t){var n=\"undefined\"!==typeof t.scale?t.scale:.001;if((0!==t.x||0!==t.y)&&0!==n)for(var i=0;i<e.length;i++){var o=e[i];if(!o.isStatic&&!o.isSleeping){o.force.y+=o.mass*t.y*n;o.force.x+=o.mass*t.x*n}}};\n/**\n         * Applys `Body.update` to all given `bodies`.\n         * @method _bodiesUpdate\n         * @private\n         * @param {body[]} bodies\n         * @param {number} deltaTime \n         * The amount of time elapsed between updates\n         * @param {number} timeScale\n         * @param {number} correction \n         * The Verlet correction factor (deltaTime / lastDeltaTime)\n         * @param {bounds} worldBounds\n         */i._bodiesUpdate=function(e,t,n,i,o){for(var r=0;r<e.length;r++){var a=e[r];a.isStatic||a.isSleeping||d.update(a,t,n,i)}};\n/**\n         * A deprecated alias for `Runner.run`, use `Matter.Runner.run(engine)` instead and see `Matter.Runner` for more information.\n         * @deprecated use Matter.Runner.run(engine) instead\n         * @method run\n         * @param {engine} engine\n         */\n/**\n        * Fired just before an update\n        *\n        * @event beforeUpdate\n        * @param {object} event An event object\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {engine} event.source The source object of the event\n        * @param {string} event.name The name of the event\n        */\n/**\n        * Fired after engine update and all collision events\n        *\n        * @event afterUpdate\n        * @param {object} event An event object\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {engine} event.source The source object of the event\n        * @param {string} event.name The name of the event\n        */\n/**\n        * Fired after engine update, provides a list of all pairs that have started to collide in the current tick (if any)\n        *\n        * @event collisionStart\n        * @param {object} event An event object\n        * @param {pair[]} event.pairs List of affected pairs\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {engine} event.source The source object of the event\n        * @param {string} event.name The name of the event\n        */\n/**\n        * Fired after engine update, provides a list of all pairs that are colliding in the current tick (if any)\n        *\n        * @event collisionActive\n        * @param {object} event An event object\n        * @param {pair[]} event.pairs List of affected pairs\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {engine} event.source The source object of the event\n        * @param {string} event.name The name of the event\n        */\n/**\n        * Fired after engine update, provides a list of all pairs that have ended collision in the current tick (if any)\n        *\n        * @event collisionEnd\n        * @param {object} event An event object\n        * @param {pair[]} event.pairs List of affected pairs\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {engine} event.source The source object of the event\n        * @param {string} event.name The name of the event\n        */\n/**\n         * An integer `Number` that specifies the number of position iterations to perform each update.\n         * The higher the value, the higher quality the simulation will be at the expense of performance.\n         *\n         * @property positionIterations\n         * @type number\n         * @default 6\n         */\n/**\n         * An integer `Number` that specifies the number of velocity iterations to perform each update.\n         * The higher the value, the higher quality the simulation will be at the expense of performance.\n         *\n         * @property velocityIterations\n         * @type number\n         * @default 4\n         */\n/**\n         * An integer `Number` that specifies the number of constraint iterations to perform each update.\n         * The higher the value, the higher quality the simulation will be at the expense of performance.\n         * The default value of `2` is usually very adequate.\n         *\n         * @property constraintIterations\n         * @type number\n         * @default 2\n         */\n/**\n         * A flag that specifies whether the engine should allow sleeping via the `Matter.Sleeping` module.\n         * Sleeping can improve stability and performance, but often at the expense of accuracy.\n         *\n         * @property enableSleeping\n         * @type boolean\n         * @default false\n         */\n/**\n         * An `Object` containing properties regarding the timing systems of the engine. \n         *\n         * @property timing\n         * @type object\n         */\n/**\n         * A `Number` that specifies the global scaling factor of time for all bodies.\n         * A value of `0` freezes the simulation.\n         * A value of `0.1` gives a slow-motion effect.\n         * A value of `1.2` gives a speed-up effect.\n         *\n         * @property timing.timeScale\n         * @type number\n         * @default 1\n         */\n/**\n         * A `Number` that specifies the current simulation-time in milliseconds starting from `0`. \n         * It is incremented on every `Engine.update` by the given `delta` argument. \n         *\n         * @property timing.timestamp\n         * @type number\n         * @default 0\n         */\n/**\n         * A `Number` that represents the total execution time elapsed during the last `Engine.update` in milliseconds.\n         * It is updated by timing from the start of the last `Engine.update` call until it ends.\n         *\n         * This value will also include the total execution time of all event handlers directly or indirectly triggered by the engine update.\n         *\n         * @property timing.lastElapsed\n         * @type number\n         * @default 0\n         */\n/**\n         * A `Number` that represents the `delta` value used in the last engine update.\n         *\n         * @property timing.lastDelta\n         * @type number\n         * @default 0\n         */\n/**\n         * A `Matter.Detector` instance.\n         *\n         * @property detector\n         * @type detector\n         * @default a Matter.Detector instance\n         */\n/**\n         * A `Matter.Grid` instance.\n         *\n         * @deprecated replaced by `engine.detector`\n         * @property grid\n         * @type grid\n         * @default a Matter.Grid instance\n         */\n/**\n         * Replaced by and now alias for `engine.grid`.\n         *\n         * @deprecated replaced by `engine.detector`\n         * @property broadphase\n         * @type grid\n         * @default a Matter.Grid instance\n         */\n/**\n         * The root `Matter.Composite` instance that will contain all bodies, constraints and other composites to be simulated by this engine.\n         *\n         * @property world\n         * @type composite\n         * @default a Matter.Composite instance\n         */\n/**\n         * An object reserved for storing plugin-specific properties.\n         *\n         * @property plugin\n         * @type {}\n         */\n/**\n         * The gravity to apply on all bodies in `engine.world`.\n         *\n         * @property gravity\n         * @type object\n         */\n/**\n         * The gravity x component.\n         *\n         * @property gravity.x\n         * @type object\n         * @default 0\n         */\n/**\n         * The gravity y component.\n         *\n         * @property gravity.y\n         * @type object\n         * @default 1\n         */\n/**\n         * The gravity scale factor.\n         *\n         * @property gravity.scale\n         * @type object\n         * @default 0.001\n         */})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(1);(function(){i._restingThresh=4;i._restingThreshTangent=6;i._positionDampen=.9;i._positionWarming=.8;i._frictionNormalMultiplier=5;\n/**\n         * Prepare pairs for position solving.\n         * @method preSolvePosition\n         * @param {pair[]} pairs\n         */i.preSolvePosition=function(e){var t,n,i,o=e.length;for(t=0;t<o;t++){n=e[t];if(n.isActive){i=n.activeContacts.length;n.collision.parentA.totalContacts+=i;n.collision.parentB.totalContacts+=i}}};\n/**\n         * Find a solution for pair positions.\n         * @method solvePosition\n         * @param {pair[]} pairs\n         * @param {number} timeScale\n         */i.solvePosition=function(e,t){var n,o,r,a,s,l,c,u,f=i._positionDampen,d=e.length;for(n=0;n<d;n++){o=e[n];if(o.isActive&&!o.isSensor){r=o.collision;a=r.parentA;s=r.parentB;l=r.normal;o.separation=l.x*(s.positionImpulse.x+r.penetration.x-a.positionImpulse.x)+l.y*(s.positionImpulse.y+r.penetration.y-a.positionImpulse.y)}}for(n=0;n<d;n++){o=e[n];if(o.isActive&&!o.isSensor){r=o.collision;a=r.parentA;s=r.parentB;l=r.normal;u=(o.separation-o.slop)*t;(a.isStatic||s.isStatic)&&(u*=2);if(!(a.isStatic||a.isSleeping)){c=f/a.totalContacts;a.positionImpulse.x+=l.x*u*c;a.positionImpulse.y+=l.y*u*c}if(!(s.isStatic||s.isSleeping)){c=f/s.totalContacts;s.positionImpulse.x-=l.x*u*c;s.positionImpulse.y-=l.y*u*c}}}};\n/**\n         * Apply position resolution.\n         * @method postSolvePosition\n         * @param {body[]} bodies\n         */i.postSolvePosition=function(e){var t=i._positionWarming,n=e.length,a=o.translate,s=r.update;for(var l=0;l<n;l++){var c=e[l],u=c.positionImpulse,f=u.x,d=u.y,p=c.velocity;c.totalContacts=0;if(0!==f||0!==d){for(var v=0;v<c.parts.length;v++){var y=c.parts[v];a(y.vertices,u);s(y.bounds,y.vertices,p);y.position.x+=f;y.position.y+=d}c.positionPrev.x+=f;c.positionPrev.y+=d;if(f*p.x+d*p.y<0){u.x=0;u.y=0}else{u.x*=t;u.y*=t}}}};\n/**\n         * Prepare pairs for velocity solving.\n         * @method preSolveVelocity\n         * @param {pair[]} pairs\n         */i.preSolveVelocity=function(e){var t,n,i=e.length;for(t=0;t<i;t++){var o=e[t];if(o.isActive&&!o.isSensor){var r=o.activeContacts,a=r.length,s=o.collision,l=s.parentA,c=s.parentB,u=s.normal,f=s.tangent;for(n=0;n<a;n++){var d=r[n],p=d.vertex,v=d.normalImpulse,y=d.tangentImpulse;if(0!==v||0!==y){var m=u.x*v+f.x*y,g=u.y*v+f.y*y;if(!(l.isStatic||l.isSleeping)){l.positionPrev.x+=m*l.inverseMass;l.positionPrev.y+=g*l.inverseMass;l.anglePrev+=l.inverseInertia*((p.x-l.position.x)*g-(p.y-l.position.y)*m)}if(!(c.isStatic||c.isSleeping)){c.positionPrev.x-=m*c.inverseMass;c.positionPrev.y-=g*c.inverseMass;c.anglePrev-=c.inverseInertia*((p.x-c.position.x)*g-(p.y-c.position.y)*m)}}}}}};\n/**\n         * Find a solution for pair velocities.\n         * @method solveVelocity\n         * @param {pair[]} pairs\n         * @param {number} timeScale\n         */i.solveVelocity=function(e,t){var n,o,r,a,s=t*t,l=i._restingThresh*s,c=i._frictionNormalMultiplier,u=i._restingThreshTangent*s,f=Number.MAX_VALUE,d=e.length;for(r=0;r<d;r++){var p=e[r];if(p.isActive&&!p.isSensor){var v=p.collision,y=v.parentA,m=v.parentB,g=y.velocity,x=m.velocity,h=v.normal.x,b=v.normal.y,S=v.tangent.x,w=v.tangent.y,_=p.activeContacts,A=_.length,P=1/A,C=y.inverseMass+m.inverseMass,k=p.friction*p.frictionStatic*c*s;g.x=y.position.x-y.positionPrev.x;g.y=y.position.y-y.positionPrev.y;x.x=m.position.x-m.positionPrev.x;x.y=m.position.y-m.positionPrev.y;y.angularVelocity=y.angle-y.anglePrev;m.angularVelocity=m.angle-m.anglePrev;for(a=0;a<A;a++){var M=_[a],B=M.vertex;var I=B.x-y.position.x,T=B.y-y.position.y,R=B.x-m.position.x,E=B.y-m.position.y;var V=g.x-T*y.angularVelocity,L=g.y+I*y.angularVelocity,q=x.x-E*m.angularVelocity,O=x.y+R*m.angularVelocity;var D=V-q,F=L-O;var H=h*D+b*F,j=S*D+w*F;var W=p.separation+H;var G=Math.min(W,1);G=W<0?0:G;var N=G*k;if(j>N||-j>N){o=j>0?j:-j;n=p.friction*(j>0?1:-1)*s;n<-o?n=-o:n>o&&(n=o)}else{n=j;o=f}var U=I*b-T*h,z=R*b-E*h,X=P/(C+y.inverseInertia*U*U+m.inverseInertia*z*z);var Q=(1+p.restitution)*H*X;n*=X;if(H*H>l&&H<0)M.normalImpulse=0;else{var Y=M.normalImpulse;M.normalImpulse+=Q;M.normalImpulse=Math.min(M.normalImpulse,0);Q=M.normalImpulse-Y}if(j*j>u)M.tangentImpulse=0;else{var Z=M.tangentImpulse;M.tangentImpulse+=n;M.tangentImpulse<-o&&(M.tangentImpulse=-o);M.tangentImpulse>o&&(M.tangentImpulse=o);n=M.tangentImpulse-Z}var $=h*Q+S*n,J=b*Q+w*n;if(!(y.isStatic||y.isSleeping)){y.positionPrev.x+=$*y.inverseMass;y.positionPrev.y+=J*y.inverseMass;y.anglePrev+=(I*J-T*$)*y.inverseInertia}if(!(m.isStatic||m.isSleeping)){m.positionPrev.x-=$*m.inverseMass;m.positionPrev.y-=J*m.inverseMass;m.anglePrev-=(R*J-E*$)*m.inverseInertia}}}}}})()},function(e,t,n){var i={};e.exports=i;var o=n(9);var r=n(0);(function(){\n/**\n         * Creates a new pairs structure.\n         * @method create\n         * @param {object} options\n         * @return {pairs} A new pairs structure\n         */\ni.create=function(e){return r.extend({table:{},list:[],collisionStart:[],collisionActive:[],collisionEnd:[]},e)};\n/**\n         * Updates pairs given a list of collisions.\n         * @method update\n         * @param {object} pairs\n         * @param {collision[]} collisions\n         * @param {number} timestamp\n         */i.update=function(e,t,n){var i,r,a,s,l=e.list,c=l.length,u=e.table,f=t.length,d=e.collisionStart,p=e.collisionEnd,v=e.collisionActive;d.length=0;p.length=0;v.length=0;for(s=0;s<c;s++)l[s].confirmedActive=false;for(s=0;s<f;s++){i=t[s];a=i.pair;if(a){a.isActive?v.push(a):d.push(a);o.update(a,i,n);a.confirmedActive=true}else{a=o.create(i,n);u[a.id]=a;d.push(a);l.push(a)}}var y=[];c=l.length;for(s=0;s<c;s++){a=l[s];if(!a.confirmedActive){o.setActive(a,false,n);p.push(a);a.collision.bodyA.isSleeping||a.collision.bodyB.isSleeping||y.push(s)}}for(s=0;s<y.length;s++){r=y[s]-s;a=l[r];l.splice(r,1);delete u[a.id]}};\n/**\n         * Clears the given pairs structure.\n         * @method clear\n         * @param {pairs} pairs\n         * @return {pairs} pairs\n         */i.clear=function(e){e.table={};e.list.length=0;e.collisionStart.length=0;e.collisionActive.length=0;e.collisionEnd.length=0;return e}})()},function(e,t,n){var i=e.exports=n(22);i.Axes=n(11);i.Bodies=n(12);i.Body=n(6);i.Bounds=n(1);i.Collision=n(8);i.Common=n(0);i.Composite=n(5);i.Composites=n(23);i.Constraint=n(10);i.Contact=n(17);i.Detector=n(14);i.Engine=n(18);i.Events=n(4);i.Grid=n(24);i.Mouse=n(13);i.MouseConstraint=n(25);i.Pair=n(9);i.Pairs=n(20);i.Plugin=n(15);i.Query=n(26);i.Render=n(16);i.Resolver=n(19);i.Runner=n(27);i.SAT=n(28);i.Sleeping=n(7);i.Svg=n(29);i.Vector=n(2);i.Vertices=n(3);i.World=n(30);i.Engine.run=i.Runner.run;i.Common.deprecated(i.Engine,\"run\",\"Engine.run \u27A4 use Matter.Runner.run(engine) instead\")},function(e,t,n){var i={};e.exports=i;var o=n(15);var r=n(0);(function(){\n/**\n         * The library name.\n         * @property name\n         * @readOnly\n         * @type {String}\n         */\ni.name=\"matter-js\";\n/**\n         * The library version.\n         * @property version\n         * @readOnly\n         * @type {String}\n         */i.version=\"0.18.0\";\n/**\n         * A list of plugin dependencies to be installed. These are normally set and installed through `Matter.use`.\n         * Alternatively you may set `Matter.uses` manually and install them by calling `Plugin.use(Matter)`.\n         * @property uses\n         * @type {Array}\n         */i.uses=[];\n/**\n         * The plugins that have been installed through `Matter.Plugin.install`. Read only.\n         * @property used\n         * @readOnly\n         * @type {Array}\n         */i.used=[];\n/**\n         * Installs the given plugins on the `Matter` namespace.\n         * This is a short-hand for `Plugin.use`, see it for more information.\n         * Call this function once at the start of your code, with all of the plugins you wish to install as arguments.\n         * Avoid calling this function multiple times unless you intend to manually control installation order.\n         * @method use\n         * @param ...plugin {Function} The plugin(s) to install on `base` (multi-argument).\n         */i.use=function(){o.use(i,Array.prototype.slice.call(arguments))};\n/**\n         * Chains a function to excute before the original function on the given `path` relative to `Matter`.\n         * See also docs for `Common.chain`.\n         * @method before\n         * @param {string} path The path relative to `Matter`\n         * @param {function} func The function to chain before the original\n         * @return {function} The chained function that replaced the original\n         */i.before=function(e,t){e=e.replace(/^Matter./,\"\");return r.chainPathBefore(i,e,t)};\n/**\n         * Chains a function to excute after the original function on the given `path` relative to `Matter`.\n         * See also docs for `Common.chain`.\n         * @method after\n         * @param {string} path The path relative to `Matter`\n         * @param {function} func The function to chain after the original\n         * @return {function} The chained function that replaced the original\n         */i.after=function(e,t){e=e.replace(/^Matter./,\"\");return r.chainPathAfter(i,e,t)}})()},function(e,t,n){var i={};e.exports=i;var o=n(5);var r=n(10);var a=n(0);var s=n(6);var l=n(12);var c=a.deprecated;(function(){\n/**\n         * Create a new composite containing bodies created in the callback in a grid arrangement.\n         * This function uses the body's bounds to prevent overlaps.\n         * @method stack\n         * @param {number} xx\n         * @param {number} yy\n         * @param {number} columns\n         * @param {number} rows\n         * @param {number} columnGap\n         * @param {number} rowGap\n         * @param {function} callback\n         * @return {composite} A new composite containing objects created in the callback\n         */\ni.stack=function(e,t,n,i,r,a,l){var c,u=o.create({label:\"Stack\"}),f=e,d=t,p=0;for(var v=0;v<i;v++){var y=0;for(var m=0;m<n;m++){var g=l(f,d,m,v,c,p);if(g){var x=g.bounds.max.y-g.bounds.min.y,h=g.bounds.max.x-g.bounds.min.x;x>y&&(y=x);s.translate(g,{x:.5*h,y:.5*x});f=g.bounds.max.x+r;o.addBody(u,g);c=g;p+=1}else f+=r}d+=y+a;f=e}return u};\n/**\n         * Chains all bodies in the given composite together using constraints.\n         * @method chain\n         * @param {composite} composite\n         * @param {number} xOffsetA\n         * @param {number} yOffsetA\n         * @param {number} xOffsetB\n         * @param {number} yOffsetB\n         * @param {object} options\n         * @return {composite} A new composite containing objects chained together with constraints\n         */i.chain=function(e,t,n,i,s,l){var c=e.bodies;for(var u=1;u<c.length;u++){var f=c[u-1],d=c[u],p=f.bounds.max.y-f.bounds.min.y,v=f.bounds.max.x-f.bounds.min.x,y=d.bounds.max.y-d.bounds.min.y,m=d.bounds.max.x-d.bounds.min.x;var g={bodyA:f,pointA:{x:v*t,y:p*n},bodyB:d,pointB:{x:m*i,y:y*s}};var x=a.extend(g,l);o.addConstraint(e,r.create(x))}e.label+=\" Chain\";return e};\n/**\n         * Connects bodies in the composite with constraints in a grid pattern, with optional cross braces.\n         * @method mesh\n         * @param {composite} composite\n         * @param {number} columns\n         * @param {number} rows\n         * @param {boolean} crossBrace\n         * @param {object} options\n         * @return {composite} The composite containing objects meshed together with constraints\n         */i.mesh=function(e,t,n,i,s){var l,c,u,f,d,p=e.bodies;for(l=0;l<n;l++){for(c=1;c<t;c++){u=p[c-1+l*t];f=p[c+l*t];o.addConstraint(e,r.create(a.extend({bodyA:u,bodyB:f},s)))}if(l>0)for(c=0;c<t;c++){u=p[c+(l-1)*t];f=p[c+l*t];o.addConstraint(e,r.create(a.extend({bodyA:u,bodyB:f},s)));if(i&&c>0){d=p[c-1+(l-1)*t];o.addConstraint(e,r.create(a.extend({bodyA:d,bodyB:f},s)))}if(i&&c<t-1){d=p[c+1+(l-1)*t];o.addConstraint(e,r.create(a.extend({bodyA:d,bodyB:f},s)))}}}e.label+=\" Mesh\";return e};\n/**\n         * Create a new composite containing bodies created in the callback in a pyramid arrangement.\n         * This function uses the body's bounds to prevent overlaps.\n         * @method pyramid\n         * @param {number} xx\n         * @param {number} yy\n         * @param {number} columns\n         * @param {number} rows\n         * @param {number} columnGap\n         * @param {number} rowGap\n         * @param {function} callback\n         * @return {composite} A new composite containing objects created in the callback\n         */i.pyramid=function(e,t,n,o,r,a,l){return i.stack(e,t,n,o,r,a,(function(t,i,a,c,u,f){var d=Math.min(o,Math.ceil(n/2)),p=u?u.bounds.max.x-u.bounds.min.x:0;if(!(c>d)){c=d-c;var v=c,y=n-1-c;if(!(a<v||a>y)){1===f&&s.translate(u,{x:(a+(n%2===1?1:-1))*p,y:0});var m=u?a*p:0;return l(e+m+a*r,i,a,c,u,f)}}}))};\n/**\n         * This has now moved to the [newtonsCradle example](https://github.com/liabru/matter-js/blob/master/examples/newtonsCradle.js), follow that instead as this function is deprecated here.\n         * @deprecated moved to newtonsCradle example\n         * @method newtonsCradle\n         * @param {number} xx\n         * @param {number} yy\n         * @param {number} number\n         * @param {number} size\n         * @param {number} length\n         * @return {composite} A new composite newtonsCradle body\n         */i.newtonsCradle=function(e,t,n,i,a){var s=o.create({label:\"Newtons Cradle\"});for(var c=0;c<n;c++){var u=1.9,f=l.circle(e+c*(i*u),t+a,i,{inertia:Infinity,restitution:1,friction:0,frictionAir:1e-4,slop:1}),d=r.create({pointA:{x:e+c*(i*u),y:t},bodyB:f});o.addBody(s,f);o.addConstraint(s,d)}return s};c(i,\"newtonsCradle\",\"Composites.newtonsCradle \u27A4 moved to newtonsCradle example\");\n/**\n         * This has now moved to the [car example](https://github.com/liabru/matter-js/blob/master/examples/car.js), follow that instead as this function is deprecated here.\n         * @deprecated moved to car example\n         * @method car\n         * @param {number} xx\n         * @param {number} yy\n         * @param {number} width\n         * @param {number} height\n         * @param {number} wheelSize\n         * @return {composite} A new composite car body\n         */i.car=function(e,t,n,i,a){var c=s.nextGroup(true),u=20,f=.5*-n+u,d=.5*n-u,p=0;var v=o.create({label:\"Car\"}),y=l.rectangle(e,t,n,i,{collisionFilter:{group:c},chamfer:{radius:.5*i},density:2e-4});var m=l.circle(e+f,t+p,a,{collisionFilter:{group:c},friction:.8});var g=l.circle(e+d,t+p,a,{collisionFilter:{group:c},friction:.8});var x=r.create({bodyB:y,pointB:{x:f,y:p},bodyA:m,stiffness:1,length:0});var h=r.create({bodyB:y,pointB:{x:d,y:p},bodyA:g,stiffness:1,length:0});o.addBody(v,y);o.addBody(v,m);o.addBody(v,g);o.addConstraint(v,x);o.addConstraint(v,h);return v};c(i,\"car\",\"Composites.car \u27A4 moved to car example\");\n/**\n         * This has now moved to the [softBody example](https://github.com/liabru/matter-js/blob/master/examples/softBody.js)\n         * and the [cloth example](https://github.com/liabru/matter-js/blob/master/examples/cloth.js), follow those instead as this function is deprecated here.\n         * @deprecated moved to softBody and cloth examples\n         * @method softBody\n         * @param {number} xx\n         * @param {number} yy\n         * @param {number} columns\n         * @param {number} rows\n         * @param {number} columnGap\n         * @param {number} rowGap\n         * @param {boolean} crossBrace\n         * @param {number} particleRadius\n         * @param {} particleOptions\n         * @param {} constraintOptions\n         * @return {composite} A new composite softBody\n         */i.softBody=function(e,t,n,o,r,s,c,u,f,d){f=a.extend({inertia:Infinity},f);d=a.extend({stiffness:.2,render:{type:\"line\",anchors:false}},d);var p=i.stack(e,t,n,o,r,s,(function(e,t){return l.circle(e,t,u,f)}));i.mesh(p,n,o,c,d);p.label=\"Soft Body\";return p};c(i,\"softBody\",\"Composites.softBody \u27A4 moved to softBody and cloth examples\")})()},function(e,t,n){\n/**\n      * This module has now been replaced by `Matter.Detector`.\n      *\n      * All usage should be migrated to `Matter.Detector` or another alternative.\n      * For back-compatibility purposes this module will remain for a short term and then later removed in a future release.\n      *\n      * The `Matter.Grid` module contains methods for creating and manipulating collision broadphase grid structures.\n      *\n      * @class Grid\n      * @deprecated\n      */\nvar i={};e.exports=i;var o=n(9);var r=n(0);var a=r.deprecated;(function(){\n/**\n         * Creates a new grid.\n         * @deprecated replaced by Matter.Detector\n         * @method create\n         * @param {} options\n         * @return {grid} A new grid\n         */\ni.create=function(e){var t={buckets:{},pairs:{},pairsList:[],bucketWidth:48,bucketHeight:48};return r.extend(t,e)};\n/**\n         * The width of a single grid bucket.\n         *\n         * @property bucketWidth\n         * @type number\n         * @default 48\n         */\n/**\n         * The height of a single grid bucket.\n         *\n         * @property bucketHeight\n         * @type number\n         * @default 48\n         */\n/**\n         * Updates the grid.\n         * @deprecated replaced by Matter.Detector\n         * @method update\n         * @param {grid} grid\n         * @param {body[]} bodies\n         * @param {engine} engine\n         * @param {boolean} forceUpdate\n         */i.update=function(e,t,n,o){var r,a,s,l,c,u=n.world,f=e.buckets,d=false;for(r=0;r<t.length;r++){var p=t[r];if((!p.isSleeping||o)&&(!u.bounds||!(p.bounds.max.x<u.bounds.min.x||p.bounds.min.x>u.bounds.max.x||p.bounds.max.y<u.bounds.min.y||p.bounds.min.y>u.bounds.max.y))){var v=i._getRegion(e,p);if(!p.region||v.id!==p.region.id||o){p.region&&!o||(p.region=v);var y=i._regionUnion(v,p.region);for(a=y.startCol;a<=y.endCol;a++)for(s=y.startRow;s<=y.endRow;s++){c=i._getBucketId(a,s);l=f[c];var m=a>=v.startCol&&a<=v.endCol&&s>=v.startRow&&s<=v.endRow;var g=a>=p.region.startCol&&a<=p.region.endCol&&s>=p.region.startRow&&s<=p.region.endRow;!m&&g&&g&&l&&i._bucketRemoveBody(e,l,p);if(p.region===v||m&&!g||o){l||(l=i._createBucket(f,c));i._bucketAddBody(e,l,p)}}p.region=v;d=true}}}d&&(e.pairsList=i._createActivePairsList(e))};a(i,\"update\",\"Grid.update \u27A4 replaced by Matter.Detector\");\n/**\n         * Clears the grid.\n         * @deprecated replaced by Matter.Detector\n         * @method clear\n         * @param {grid} grid\n         */i.clear=function(e){e.buckets={};e.pairs={};e.pairsList=[]};a(i,\"clear\",\"Grid.clear \u27A4 replaced by Matter.Detector\");\n/**\n         * Finds the union of two regions.\n         * @method _regionUnion\n         * @deprecated replaced by Matter.Detector\n         * @private\n         * @param {} regionA\n         * @param {} regionB\n         * @return {} region\n         */i._regionUnion=function(e,t){var n=Math.min(e.startCol,t.startCol),o=Math.max(e.endCol,t.endCol),r=Math.min(e.startRow,t.startRow),a=Math.max(e.endRow,t.endRow);return i._createRegion(n,o,r,a)};\n/**\n         * Gets the region a given body falls in for a given grid.\n         * @method _getRegion\n         * @deprecated replaced by Matter.Detector\n         * @private\n         * @param {} grid\n         * @param {} body\n         * @return {} region\n         */i._getRegion=function(e,t){var n=t.bounds,o=Math.floor(n.min.x/e.bucketWidth),r=Math.floor(n.max.x/e.bucketWidth),a=Math.floor(n.min.y/e.bucketHeight),s=Math.floor(n.max.y/e.bucketHeight);return i._createRegion(o,r,a,s)};\n/**\n         * Creates a region.\n         * @method _createRegion\n         * @deprecated replaced by Matter.Detector\n         * @private\n         * @param {} startCol\n         * @param {} endCol\n         * @param {} startRow\n         * @param {} endRow\n         * @return {} region\n         */i._createRegion=function(e,t,n,i){return{id:e+\",\"+t+\",\"+n+\",\"+i,startCol:e,endCol:t,startRow:n,endRow:i}};\n/**\n         * Gets the bucket id at the given position.\n         * @method _getBucketId\n         * @deprecated replaced by Matter.Detector\n         * @private\n         * @param {} column\n         * @param {} row\n         * @return {string} bucket id\n         */i._getBucketId=function(e,t){return\"C\"+e+\"R\"+t};\n/**\n         * Creates a bucket.\n         * @method _createBucket\n         * @deprecated replaced by Matter.Detector\n         * @private\n         * @param {} buckets\n         * @param {} bucketId\n         * @return {} bucket\n         */i._createBucket=function(e,t){var n=e[t]=[];return n};\n/**\n         * Adds a body to a bucket.\n         * @method _bucketAddBody\n         * @deprecated replaced by Matter.Detector\n         * @private\n         * @param {} grid\n         * @param {} bucket\n         * @param {} body\n         */i._bucketAddBody=function(e,t,n){var i,r=e.pairs,a=o.id,s=t.length;for(i=0;i<s;i++){var l=t[i];if(!(n.id===l.id||n.isStatic&&l.isStatic)){var c=a(n,l),u=r[c];u?u[2]+=1:r[c]=[n,l,1]}}t.push(n)};\n/**\n         * Removes a body from a bucket.\n         * @method _bucketRemoveBody\n         * @deprecated replaced by Matter.Detector\n         * @private\n         * @param {} grid\n         * @param {} bucket\n         * @param {} body\n         */i._bucketRemoveBody=function(e,t,n){var i,a=e.pairs,s=o.id;t.splice(r.indexOf(t,n),1);var l=t.length;for(i=0;i<l;i++){var c=a[s(n,t[i])];c&&(c[2]-=1)}};\n/**\n         * Generates a list of the active pairs in the grid.\n         * @method _createActivePairsList\n         * @deprecated replaced by Matter.Detector\n         * @private\n         * @param {} grid\n         * @return [] pairs\n         */i._createActivePairsList=function(e){var t,n,i=e.pairs,o=r.keys(i),a=o.length,s=[];for(n=0;n<a;n++){t=i[o[n]];t[2]>0?s.push(t):delete i[o[n]]}return s}})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(7);var a=n(13);var s=n(4);var l=n(14);var c=n(10);var u=n(5);var f=n(0);var d=n(1);(function(){\n/**\n         * Creates a new mouse constraint.\n         * All properties have default values, and many are pre-calculated automatically based on other properties.\n         * See the properties section below for detailed information on what you can pass via the `options` object.\n         * @method create\n         * @param {engine} engine\n         * @param {} options\n         * @return {MouseConstraint} A new MouseConstraint\n         */\ni.create=function(e,t){var n=(e?e.mouse:null)||(t?t.mouse:null);if(!n)if(e&&e.render&&e.render.canvas)n=a.create(e.render.canvas);else if(t&&t.element)n=a.create(t.element);else{n=a.create();f.warn(\"MouseConstraint.create: options.mouse was undefined, options.element was undefined, may not function as expected\")}var o=c.create({label:\"Mouse Constraint\",pointA:n.position,pointB:{x:0,y:0},length:.01,stiffness:.1,angularStiffness:1,render:{strokeStyle:\"#90EE90\",lineWidth:3}});var r={type:\"mouseConstraint\",mouse:n,element:null,body:null,constraint:o,collisionFilter:{category:1,mask:4294967295,group:0}};var l=f.extend(r,t);s.on(e,\"beforeUpdate\",(function(){var t=u.allBodies(e.world);i.update(l,t);i._triggerEvents(l)}));return l};\n/**\n         * Updates the given mouse constraint.\n         * @private\n         * @method update\n         * @param {MouseConstraint} mouseConstraint\n         * @param {body[]} bodies\n         */i.update=function(e,t){var n=e.mouse,i=e.constraint,a=e.body;if(0===n.button)if(i.bodyB){r.set(i.bodyB,false);i.pointA=n.position}else for(var c=0;c<t.length;c++){a=t[c];if(d.contains(a.bounds,n.position)&&l.canCollide(a.collisionFilter,e.collisionFilter))for(var u=a.parts.length>1?1:0;u<a.parts.length;u++){var f=a.parts[u];if(o.contains(f.vertices,n.position)){i.pointA=n.position;i.bodyB=e.body=a;i.pointB={x:n.position.x-a.position.x,y:n.position.y-a.position.y};i.angleB=a.angle;r.set(a,false);s.trigger(e,\"startdrag\",{mouse:n,body:a});break}}}else{i.bodyB=e.body=null;i.pointB=null;a&&s.trigger(e,\"enddrag\",{mouse:n,body:a})}};\n/**\n         * Triggers mouse constraint events.\n         * @method _triggerEvents\n         * @private\n         * @param {mouse} mouseConstraint\n         */i._triggerEvents=function(e){var t=e.mouse,n=t.sourceEvents;n.mousemove&&s.trigger(e,\"mousemove\",{mouse:t});n.mousedown&&s.trigger(e,\"mousedown\",{mouse:t});n.mouseup&&s.trigger(e,\"mouseup\",{mouse:t});a.clearSourceEvents(t)};\n/**\n        * Fired when the mouse has moved (or a touch moves) during the last step\n        *\n        * @event mousemove\n        * @param {} event An event object\n        * @param {mouse} event.mouse The engine's mouse instance\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired when the mouse is down (or a touch has started) during the last step\n        *\n        * @event mousedown\n        * @param {} event An event object\n        * @param {mouse} event.mouse The engine's mouse instance\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired when the mouse is up (or a touch has ended) during the last step\n        *\n        * @event mouseup\n        * @param {} event An event object\n        * @param {mouse} event.mouse The engine's mouse instance\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired when the user starts dragging a body\n        *\n        * @event startdrag\n        * @param {} event An event object\n        * @param {mouse} event.mouse The engine's mouse instance\n        * @param {body} event.body The body being dragged\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired when the user ends dragging a body\n        *\n        * @event enddrag\n        * @param {} event An event object\n        * @param {mouse} event.mouse The engine's mouse instance\n        * @param {body} event.body The body that has stopped being dragged\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n         * A `String` denoting the type of object.\n         *\n         * @property type\n         * @type string\n         * @default \"constraint\"\n         * @readOnly\n         */\n/**\n         * The `Mouse` instance in use. If not supplied in `MouseConstraint.create`, one will be created.\n         *\n         * @property mouse\n         * @type mouse\n         * @default mouse\n         */\n/**\n         * The `Body` that is currently being moved by the user, or `null` if no body.\n         *\n         * @property body\n         * @type body\n         * @default null\n         */\n/**\n         * The `Constraint` object that is used to move the body during interaction.\n         *\n         * @property constraint\n         * @type constraint\n         */\n/**\n         * An `Object` that specifies the collision filter properties.\n         * The collision filter allows the user to define which types of body this mouse constraint can interact with.\n         * See `body.collisionFilter` for more information.\n         *\n         * @property collisionFilter\n         * @type object\n         */})()},function(e,t,n){var i={};e.exports=i;var o=n(2);var r=n(8);var a=n(1);var s=n(12);var l=n(3);(function(){\n/**\n         * Returns a list of collisions between `body` and `bodies`.\n         * @method collides\n         * @param {body} body\n         * @param {body[]} bodies\n         * @return {collision[]} Collisions\n         */\ni.collides=function(e,t){var n=[],i=t.length,o=e.bounds,s=r.collides,l=a.overlaps;for(var c=0;c<i;c++){var u=t[c],f=u.parts.length,d=1===f?0:1;if(l(u.bounds,o))for(var p=d;p<f;p++){var v=u.parts[p];if(l(v.bounds,o)){var y=s(v,e);if(y){n.push(y);break}}}}return n};\n/**\n         * Casts a ray segment against a set of bodies and returns all collisions, ray width is optional. Intersection points are not provided.\n         * @method ray\n         * @param {body[]} bodies\n         * @param {vector} startPoint\n         * @param {vector} endPoint\n         * @param {number} [rayWidth]\n         * @return {collision[]} Collisions\n         */i.ray=function(e,t,n,r){r=r||1e-100;var a=o.angle(t,n),l=o.magnitude(o.sub(t,n)),c=.5*(n.x+t.x),u=.5*(n.y+t.y),f=s.rectangle(c,u,l,r,{angle:a}),d=i.collides(f,e);for(var p=0;p<d.length;p+=1){var v=d[p];v.body=v.bodyB=v.bodyA}return d};\n/**\n         * Returns all bodies whose bounds are inside (or outside if set) the given set of bounds, from the given set of bodies.\n         * @method region\n         * @param {body[]} bodies\n         * @param {bounds} bounds\n         * @param {bool} [outside=false]\n         * @return {body[]} The bodies matching the query\n         */i.region=function(e,t,n){var i=[];for(var o=0;o<e.length;o++){var r=e[o],s=a.overlaps(r.bounds,t);(s&&!n||!s&&n)&&i.push(r)}return i};\n/**\n         * Returns all bodies whose vertices contain the given point, from the given set of bodies.\n         * @method point\n         * @param {body[]} bodies\n         * @param {vector} point\n         * @return {body[]} The bodies matching the query\n         */i.point=function(e,t){var n=[];for(var i=0;i<e.length;i++){var o=e[i];if(a.contains(o.bounds,t))for(var r=1===o.parts.length?0:1;r<o.parts.length;r++){var s=o.parts[r];if(a.contains(s.bounds,t)&&l.contains(s.vertices,t)){n.push(o);break}}}return n}})()},function(e,t,n){var i={};e.exports=i;var o=n(4);var r=n(18);var a=n(0);(function(){var e,t;if(\"undefined\"!==typeof window){e=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.msRequestAnimationFrame;t=window.cancelAnimationFrame||window.mozCancelAnimationFrame||window.webkitCancelAnimationFrame||window.msCancelAnimationFrame}if(!e){var n;e=function(e){n=setTimeout((function(){e(a.now())}),1e3/60)};t=function(){clearTimeout(n)}}\n/**\n         * Creates a new Runner. The options parameter is an object that specifies any properties you wish to override the defaults.\n         * @method create\n         * @param {} options\n         */i.create=function(e){var t={fps:60,correction:1,deltaSampleSize:60,counterTimestamp:0,frameCounter:0,deltaHistory:[],timePrev:null,timeScalePrev:1,frameRequestId:null,isFixed:false,enabled:true};var n=a.extend(t,e);n.delta=n.delta||1e3/n.fps;n.deltaMin=n.deltaMin||1e3/n.fps;n.deltaMax=n.deltaMax||1e3/(.5*n.fps);n.fps=1e3/n.delta;return n};\n/**\n         * Continuously ticks a `Matter.Engine` by calling `Runner.tick` on the `requestAnimationFrame` event.\n         * @method run\n         * @param {engine} engine\n         */i.run=function(t,n){if(\"undefined\"!==typeof t.positionIterations){n=t;t=i.create()}(function render(o){t.frameRequestId=e(render);o&&t.enabled&&i.tick(t,n,o)})();return t};\n/**\n         * A game loop utility that updates the engine and renderer by one step (a 'tick').\n         * Features delta smoothing, time correction and fixed or dynamic timing.\n         * Consider just `Engine.update(engine, delta)` if you're using your own loop.\n         * @method tick\n         * @param {runner} runner\n         * @param {engine} engine\n         * @param {number} time\n         */i.tick=function(e,t,n){var i,a=t.timing,s=1;var l={timestamp:a.timestamp};o.trigger(e,\"beforeTick\",l);if(e.isFixed)i=e.delta;else{i=n-e.timePrev||e.delta;e.timePrev=n;e.deltaHistory.push(i);e.deltaHistory=e.deltaHistory.slice(-e.deltaSampleSize);i=Math.min.apply(null,e.deltaHistory);i=i<e.deltaMin?e.deltaMin:i;i=i>e.deltaMax?e.deltaMax:i;s=i/e.delta;e.delta=i}0!==e.timeScalePrev&&(s*=a.timeScale/e.timeScalePrev);0===a.timeScale&&(s=0);e.timeScalePrev=a.timeScale;e.correction=s;e.frameCounter+=1;if(n-e.counterTimestamp>=1e3){e.fps=e.frameCounter*((n-e.counterTimestamp)/1e3);e.counterTimestamp=n;e.frameCounter=0}o.trigger(e,\"tick\",l);o.trigger(e,\"beforeUpdate\",l);r.update(t,i,s);o.trigger(e,\"afterUpdate\",l);o.trigger(e,\"afterTick\",l)};\n/**\n         * Ends execution of `Runner.run` on the given `runner`, by canceling the animation frame request event loop.\n         * If you wish to only temporarily pause the engine, see `engine.enabled` instead.\n         * @method stop\n         * @param {runner} runner\n         */i.stop=function(e){t(e.frameRequestId)};\n/**\n         * Alias for `Runner.run`.\n         * @method start\n         * @param {runner} runner\n         * @param {engine} engine\n         */i.start=function(e,t){i.run(e,t)};\n/**\n        * Fired at the start of a tick, before any updates to the engine or timing\n        *\n        * @event beforeTick\n        * @param {} event An event object\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired after engine timing updated, but just before update\n        *\n        * @event tick\n        * @param {} event An event object\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired at the end of a tick, after engine update and after rendering\n        *\n        * @event afterTick\n        * @param {} event An event object\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired before update\n        *\n        * @event beforeUpdate\n        * @param {} event An event object\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n        * Fired after update\n        *\n        * @event afterUpdate\n        * @param {} event An event object\n        * @param {number} event.timestamp The engine.timing.timestamp of the event\n        * @param {} event.source The source object of the event\n        * @param {} event.name The name of the event\n        */\n/**\n         * A flag that specifies whether the runner is running or not.\n         *\n         * @property enabled\n         * @type boolean\n         * @default true\n         */\n/**\n         * A `Boolean` that specifies if the runner should use a fixed timestep (otherwise it is variable).\n         * If timing is fixed, then the apparent simulation speed will change depending on the frame rate (but behaviour will be deterministic).\n         * If the timing is variable, then the apparent simulation speed will be constant (approximately, but at the cost of determininism).\n         *\n         * @property isFixed\n         * @type boolean\n         * @default false\n         */\n/**\n         * A `Number` that specifies the time step between updates in milliseconds.\n         * If `engine.timing.isFixed` is set to `true`, then `delta` is fixed.\n         * If it is `false`, then `delta` can dynamically change to maintain the correct apparent simulation speed.\n         *\n         * @property delta\n         * @type number\n         * @default 1000 / 60\n         */})()},function(e,t,n){\n/**\n      * This module has now been replaced by `Matter.Collision`.\n      *\n      * All usage should be migrated to `Matter.Collision`.\n      * For back-compatibility purposes this module will remain for a short term and then later removed in a future release.\n      *\n      * The `Matter.SAT` module contains methods for detecting collisions using the Separating Axis Theorem.\n      *\n      * @class SAT\n      * @deprecated\n      */\nvar i={};e.exports=i;var o=n(8);var r=n(0);var a=r.deprecated;(function(){\n/**\n         * Detect collision between two bodies using the Separating Axis Theorem.\n         * @deprecated replaced by Collision.collides\n         * @method collides\n         * @param {body} bodyA\n         * @param {body} bodyB\n         * @return {collision} collision\n         */\ni.collides=function(e,t){return o.collides(e,t)};a(i,\"collides\",\"SAT.collides \u27A4 replaced by Collision.collides\")})()},function(e,t,n){var i={};e.exports=i;n(1);var o=n(0);(function(){\n/**\n         * Converts an SVG path into an array of vector points.\n         * If the input path forms a concave shape, you must decompose the result into convex parts before use.\n         * See `Bodies.fromVertices` which provides support for this.\n         * Note that this function is not guaranteed to support complex paths (such as those with holes).\n         * You must load the `pathseg.js` polyfill on newer browsers.\n         * @method pathToVertices\n         * @param {SVGPathElement} path\n         * @param {Number} [sampleLength=15]\n         * @return {Vector[]} points\n         */\ni.pathToVertices=function(e,t){\"undefined\"===typeof window||\"SVGPathSeg\"in window||o.warn(\"Svg.pathToVertices: SVGPathSeg not defined, a polyfill is required.\");var n,r,a,s,l,c,u,f,d,p,v,y,m=[],g=0,x=0,h=0;t=t||15;var addPoint=function(e,t,n){var i=n%2===1&&n>1;if(!d||e!=d.x||t!=d.y){if(d&&i){v=d.x;y=d.y}else{v=0;y=0}var o={x:v+e,y:y+t};!i&&d||(d=o);m.push(o);x=v+e;h=y+t}};var addSegmentPoint=function(e){var t=e.pathSegTypeAsLetter.toUpperCase();if(\"Z\"!==t){switch(t){case\"M\":case\"L\":case\"T\":case\"C\":case\"S\":case\"Q\":x=e.x;h=e.y;break;case\"H\":x=e.x;break;case\"V\":h=e.y;break}addPoint(x,h,e.pathSegType)}};i._svgPathToAbsolute(e);a=e.getTotalLength();c=[];for(n=0;n<e.pathSegList.numberOfItems;n+=1)c.push(e.pathSegList.getItem(n));u=c.concat();while(g<a){p=e.getPathSegAtLength(g);l=c[p];if(l!=f){while(u.length&&u[0]!=l)addSegmentPoint(u.shift());f=l}switch(l.pathSegTypeAsLetter.toUpperCase()){case\"C\":case\"T\":case\"S\":case\"Q\":case\"A\":s=e.getPointAtLength(g);addPoint(s.x,s.y,0);break}g+=t}for(n=0,r=u.length;n<r;++n)addSegmentPoint(u[n]);return m};i._svgPathToAbsolute=function(e){var t,n,i,o,r,a,s=e.pathSegList,l=0,c=0,u=s.numberOfItems;for(var f=0;f<u;++f){var d=s.getItem(f),p=d.pathSegTypeAsLetter;if(/[MLHVCSQTA]/.test(p)){\"x\"in d&&(l=d.x);\"y\"in d&&(c=d.y)}else{\"x1\"in d&&(i=l+d.x1);\"x2\"in d&&(r=l+d.x2);\"y1\"in d&&(o=c+d.y1);\"y2\"in d&&(a=c+d.y2);\"x\"in d&&(l+=d.x);\"y\"in d&&(c+=d.y);switch(p){case\"m\":s.replaceItem(e.createSVGPathSegMovetoAbs(l,c),f);break;case\"l\":s.replaceItem(e.createSVGPathSegLinetoAbs(l,c),f);break;case\"h\":s.replaceItem(e.createSVGPathSegLinetoHorizontalAbs(l),f);break;case\"v\":s.replaceItem(e.createSVGPathSegLinetoVerticalAbs(c),f);break;case\"c\":s.replaceItem(e.createSVGPathSegCurvetoCubicAbs(l,c,i,o,r,a),f);break;case\"s\":s.replaceItem(e.createSVGPathSegCurvetoCubicSmoothAbs(l,c,r,a),f);break;case\"q\":s.replaceItem(e.createSVGPathSegCurvetoQuadraticAbs(l,c,i,o),f);break;case\"t\":s.replaceItem(e.createSVGPathSegCurvetoQuadraticSmoothAbs(l,c),f);break;case\"a\":s.replaceItem(e.createSVGPathSegArcAbs(l,c,d.r1,d.r2,d.angle,d.largeArcFlag,d.sweepFlag),f);break;case\"z\":case\"Z\":l=t;c=n;break}}if(\"M\"==p||\"m\"==p){t=l;n=c}}}})()},function(e,t,n){var i={};e.exports=i;var o=n(5);n(0);(function(){i.create=o.create;i.add=o.add;i.remove=o.remove;i.clear=o.clear;i.addComposite=o.addComposite;i.addBody=o.addBody;i.addConstraint=o.addConstraint})()}])}));var n=t;const i=t.Matter,o=t.__esModule;export{i as Matter,o as __esModule,n as default};\n\n//# sourceMappingURL=matter.js.map", "import Matter from\"matter-js\";const opts={isStatic:true,friction:2};export function makeWalls(conainerBounding,engine,wallOptions){var Bodies=Matter.Bodies;let bottom,top,wLeft,wRight;if(wallOptions.bottom){bottom=Bodies.rectangle(conainerBounding.width/2,conainerBounding.height+50,conainerBounding.width+100,100,opts);Matter.World.add(engine,bottom);}if(wallOptions.top){top=Bodies.rectangle(conainerBounding.width/2,-50,conainerBounding.width+100,100,opts);Matter.World.add(engine,top);}if(wallOptions.right){wRight=Bodies.rectangle(conainerBounding.width+50,conainerBounding.height/2,100,conainerBounding.height,opts);Matter.World.add(engine,wRight);}if(wallOptions.bottom){wLeft=Bodies.rectangle(-50,conainerBounding.height/2,100,conainerBounding.height,opts);Matter.World.add(engine,wLeft);}}\nexport const __FramerMetadata__ = {\"exports\":{\"makeWalls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MakeWalls.map", "import Matter from\"matter-js\";export function makeBodies(container,world,elements,frictionOpts,densityOpts){const conainerBounding=container.getBoundingClientRect();let stack=Matter.Composites.stack(0,0,elements.length,1,0,0,(xx,yy,i)=>{const{x,y,width,height}=elements[i].getBoundingClientRect();var maxLeft=conainerBounding.width-width;var maxTop=conainerBounding.height-height;// Places the elements at random locations\n// Could be expanded to allow control of body placement from property controls\nvar tLeft=Math.floor(Math.random()*maxLeft),tTop=Math.floor(Math.random()*maxTop);return Matter.Bodies.rectangle(tLeft,tTop,width,height,{isStatic:false,density:densityOpts.enable?densityOpts.density:0,friction:frictionOpts.friction,frictionAir:frictionOpts.frictionAir});});Matter.World.add(world,stack);return stack;}\nexport const __FramerMetadata__ = {\"exports\":{\"makeBodies\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MakeBodies.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import React from\"react\";import Matter from\"matter-js\";import{addPropertyControls,ControlType}from\"framer\";import{makeWalls}from\"https://framer.com/m/MakeWalls-36kf.js@Ok6wam0uM9G4VUuXWgpR\";import{makeBodies}from\"https://framer.com/m/MakeBodies-Lkv1.js@LTuIQWugGJr30ZUS1CV9\";export default function Physics(props){var _props_children;const[isVisible,setIsVisible]=React.useState(false);const[engine,setEngine]=React.useState(null);const containerRef=React.useRef(null);const observerRef=React.useRef(null);// Setup intersection observer\nReact.useEffect(()=>{if(!containerRef.current)return;observerRef.current=new IntersectionObserver(entries=>{const[entry]=entries;setIsVisible(entry.isIntersecting);},{threshold:.2,rootMargin:\"50px\"});observerRef.current.observe(containerRef.current);return()=>{if(observerRef.current){observerRef.current.disconnect();}};},[]);// Physics setup and animation\nReact.useEffect(()=>{if(!isVisible||!containerRef.current)return;if(!engine){const newEngine=Matter.Engine.create({enableSleeping:props.sleeping,gravity:{y:props.gravY,x:props.gravX}});setEngine(newEngine);const containerBounding=containerRef.current.getBoundingClientRect();makeWalls(containerBounding,newEngine.world,props.wallOptions);if(props.debug){var render=Matter.Render.create({element:containerRef.current,engine:newEngine,options:{height:containerBounding.height,width:containerBounding.width,showAngleIndicator:true,showVelocity:true}});Matter.Render.run(render);}let mouseConstraint=null;if(props.mouseOptions.enable){let mouse=Matter.Mouse.create(containerRef.current);mouseConstraint=Matter.MouseConstraint.create(newEngine,{mouse:mouse,constraint:{angularStiffness:props.mouseOptions.angularStiffness,stiffness:props.mouseOptions.stiffness}});Matter.Composite.add(newEngine.world,mouseConstraint);// Remove the many event listeners preventing scroll/drag\nmouseConstraint.mouse.element.removeEventListener(\"mousewheel\",mouseConstraint.mouse.mousewheel);mouseConstraint.mouse.element.removeEventListener(\"DOMMouseScroll\",mouseConstraint.mouse.mousewheel);mouseConstraint.mouse.element.removeEventListener(\"touchstart\",mouseConstraint.mouse.mousedown);mouseConstraint.mouse.element.removeEventListener(\"touchmove\",mouseConstraint.mouse.mousemove);mouseConstraint.mouse.element.removeEventListener(\"touchend\",mouseConstraint.mouse.mouseup);mouseConstraint.mouse.element.addEventListener(\"touchstart\",mouseConstraint.mouse.mousedown,{passive:true});mouseConstraint.mouse.element.addEventListener(\"touchmove\",e=>{if(mouseConstraint.body){mouseConstraint.mouse.mousemove(e);}});mouseConstraint.mouse.element.addEventListener(\"touchend\",e=>{if(mouseConstraint.body){mouseConstraint.mouse.mouseup(e);}});containerRef.current.addEventListener(\"mouseleave\",()=>{mouseConstraint.mouse.mouseup(event);});}let stack=makeBodies(containerRef.current,newEngine.world,containerRef.current.children,props.frictionOptions,props.densityOptions);(function update(){if(!isVisible)return;// Stop animation if not visible\nrequestAnimationFrame(update);stack.bodies.forEach((block,i)=>{let el=containerRef.current.children[i];let{x,y}=block.vertices[0];el.style.visibility=\"visible\";el.style.top=`${y}px`;el.style.left=`${x}px`;el.style.transform=`\n                          translate(-50%, -50%)\n                          rotate(${block.angle}rad)\n                          translate(50%, 50%)\n                          `;});Matter.Engine.update(newEngine);})();}// Cleanup function\nreturn()=>{if(engine){Matter.Engine.clear(engine);setEngine(null);}};},[isVisible]);return /*#__PURE__*/_jsx(\"div\",{style:containerStyle,ref:containerRef,draggable:\"false\",onDragStart:e=>{e.preventDefault();},children:((_props_children=props.children)===null||_props_children===void 0?void 0:_props_children.length)>0?props.children.map((el,i)=>{return /*#__PURE__*/_jsx(\"div\",{style:bodyStyle,id:\"physics-body\",draggable:\"false\",children:el});}):/*#__PURE__*/_jsx(\"div\",{style:bodyStyle,id:\"physics-body\",draggable:\"false\",children:props.children})});}const containerStyle={height:\"100%\",width:\"100%\",overflow:\"hidden\"};const bodyStyle={position:\"absolute\",visibility:\"hidden\"};Physics.defaultProps={gravX:0,gravY:1,children:{},wallOptions:{top:true,bottom:true,right:true,left:true},frictionOptions:{friction:.1,frictionAir:.01},mouseOptions:{angularStiffness:0,stiffness:.2,enable:true},densityOptions:{enable:true,density:.001},sleeping:false};addPropertyControls(Physics,{children:{type:ControlType.Array,control:{type:ControlType.ComponentInstance}},gravY:{type:ControlType.Number,defaultValue:1,max:5,min:-5,step:.25,title:\"Gravity Y\"},gravX:{type:ControlType.Number,defaultValue:0,max:5,min:-5,step:.25,title:\"Gravity X\"},wallOptions:{title:\"Walls\",type:ControlType.Object,controls:{top:{type:ControlType.Boolean,defaultValue:true},bottom:{type:ControlType.Boolean,defaultValue:true},right:{type:ControlType.Boolean,defaultValue:true},left:{type:ControlType.Boolean,defaultValue:true}}},mouseOptions:{title:\"Mouse\",type:ControlType.Object,controls:{enable:{title:\"Enable\",type:ControlType.Boolean,defaultValue:true},angularStiffness:{title:\"Angular stiffness\",description:\"A value of 0 allows objects to swing when held by the mouse\",type:ControlType.Number,defaultValue:0,min:0,max:1,step:.01},stiffness:{title:\"Stiffness\",description:\"Click + drag creates a moving constraint (spring) that follows the mouse. This describes the stiffness of that spring\",type:ControlType.Number,defaultValue:.2,min:.001,max:1,step:.01}}},friction:{type:ControlType.Object,controls:{friction:{title:\"Body friction\",type:ControlType.Number,min:0,max:1,defaultValue:.1,step:.01},frictionAir:{title:\"Air friction\",type:ControlType.Number,min:0,max:1,defaultValue:.01,step:.01}}},densityOptions:{title:\"Density\",type:ControlType.Object,controls:{enable:{type:ControlType.Boolean,defaultValue:true,description:\"Enabling density will cause mass to be calculated based on width and height\"},density:{type:ControlType.Number,defaultValue:.001,min:.001,max:1,step:.01}}},sleeping:{title:\"Sleeping\",description:\"Improves performance at the cost of simulation accuracy\",type:ControlType.Boolean,defaultValue:false}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Physics\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Physics_1.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ymwyAK8TA\",\"hIGEtuPWW\",\"aOgMEcFiQ\",\"n7VbRaspn\",\"XRi3NGVQA\",\"NJPJDD0Vk\",\"pfOxZdZGO\",\"dETDNRHTY\",\"gtsSNnZUB\",\"dTnugu0Zu\",\"FW6FKOhDL\",\"cJMKacz0Y\",\"mYnQ45VW1\",\"cCTr_1LOU\",\"Oz0nvn5Oz\",\"HmqiOX0H7\",\"QLwW5SwDX\",\"osXsMuK7N\",\"TtVG1Pbx5\",\"A_x4D6krf\",\"x42aS2tR3\",\"xvn8WY6nV\",\"wEy_23n43\",\"XLjvyh6lI\",\"t0L_vFMVz\",\"L_MoF1gF0\",\"CawXG8AYr\",\"mPnhKw05W\",\"DO9heuGZg\",\"n4bdhc7FW\"];const serializationHash=\"framer-2U9Qu\";const variantClassNames={A_x4D6krf:\"framer-v-1cg2r7\",aOgMEcFiQ:\"framer-v-1h2355l\",CawXG8AYr:\"framer-v-1p53lfd\",cCTr_1LOU:\"framer-v-13rxk82\",cJMKacz0Y:\"framer-v-1ucbz4a\",dETDNRHTY:\"framer-v-179fo9j\",DO9heuGZg:\"framer-v-9rh062\",dTnugu0Zu:\"framer-v-15gyfu8\",FW6FKOhDL:\"framer-v-4i9kgc\",gtsSNnZUB:\"framer-v-tdvp22\",hIGEtuPWW:\"framer-v-szaelb\",HmqiOX0H7:\"framer-v-7rhm9b\",L_MoF1gF0:\"framer-v-15lomcw\",mPnhKw05W:\"framer-v-sg1w72\",mYnQ45VW1:\"framer-v-6xnmtv\",n4bdhc7FW:\"framer-v-8wb11h\",n7VbRaspn:\"framer-v-ka44v0\",NJPJDD0Vk:\"framer-v-pq0vbt\",osXsMuK7N:\"framer-v-1046chl\",Oz0nvn5Oz:\"framer-v-lzzd8a\",pfOxZdZGO:\"framer-v-2kvz4v\",QLwW5SwDX:\"framer-v-148ypax\",t0L_vFMVz:\"framer-v-1m34myp\",TtVG1Pbx5:\"framer-v-vd23o7\",wEy_23n43:\"framer-v-grsk28\",x42aS2tR3:\"framer-v-tuvnhm\",XLjvyh6lI:\"framer-v-waq296\",XRi3NGVQA:\"framer-v-1lj8643\",xvn8WY6nV:\"framer-v-1xcn2po\",ymwyAK8TA:\"framer-v-1jzb9zy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"ymwyAK8TA\",\"Variant 10\":\"dTnugu0Zu\",\"Variant 11\":\"FW6FKOhDL\",\"Variant 12\":\"cJMKacz0Y\",\"Variant 13\":\"mYnQ45VW1\",\"Variant 14\":\"cCTr_1LOU\",\"Variant 15\":\"Oz0nvn5Oz\",\"Variant 16\":\"HmqiOX0H7\",\"Variant 17\":\"QLwW5SwDX\",\"Variant 18\":\"osXsMuK7N\",\"Variant 19\":\"TtVG1Pbx5\",\"Variant 2\":\"hIGEtuPWW\",\"Variant 20\":\"A_x4D6krf\",\"Variant 21\":\"x42aS2tR3\",\"Variant 22\":\"xvn8WY6nV\",\"Variant 23\":\"wEy_23n43\",\"Variant 24\":\"XLjvyh6lI\",\"Variant 25\":\"t0L_vFMVz\",\"Variant 26\":\"L_MoF1gF0\",\"Variant 27\":\"CawXG8AYr\",\"Variant 28\":\"mPnhKw05W\",\"Variant 29\":\"DO9heuGZg\",\"Variant 3\":\"aOgMEcFiQ\",\"Variant 30\":\"n4bdhc7FW\",\"Variant 4\":\"n7VbRaspn\",\"Variant 5\":\"XRi3NGVQA\",\"Variant 6\":\"NJPJDD0Vk\",\"Variant 7\":\"pfOxZdZGO\",\"Variant 8\":\"dETDNRHTY\",\"Variant 9\":\"gtsSNnZUB\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ymwyAK8TA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ymwyAK8TA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"n4bdhc7FW\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"DO9heuGZg\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"mPnhKw05W\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"CawXG8AYr\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"L_MoF1gF0\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"t0L_vFMVz\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"XLjvyh6lI\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"wEy_23n43\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"xvn8WY6nV\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"x42aS2tR3\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"A_x4D6krf\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"TtVG1Pbx5\")return true;return false;};const isDisplayed12=()=>{if(baseVariant===\"osXsMuK7N\")return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"QLwW5SwDX\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"HmqiOX0H7\")return true;return false;};const isDisplayed15=()=>{if([\"hIGEtuPWW\",\"aOgMEcFiQ\",\"n7VbRaspn\",\"XRi3NGVQA\",\"NJPJDD0Vk\",\"pfOxZdZGO\",\"dETDNRHTY\",\"gtsSNnZUB\",\"dTnugu0Zu\",\"FW6FKOhDL\",\"cJMKacz0Y\",\"mYnQ45VW1\",\"cCTr_1LOU\",\"Oz0nvn5Oz\",\"HmqiOX0H7\",\"QLwW5SwDX\",\"osXsMuK7N\",\"TtVG1Pbx5\",\"A_x4D6krf\",\"x42aS2tR3\",\"xvn8WY6nV\",\"wEy_23n43\",\"XLjvyh6lI\",\"t0L_vFMVz\",\"L_MoF1gF0\",\"CawXG8AYr\",\"mPnhKw05W\",\"DO9heuGZg\",\"n4bdhc7FW\"].includes(baseVariant))return false;return true;};const isDisplayed16=()=>{if(baseVariant===\"hIGEtuPWW\")return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"aOgMEcFiQ\")return true;return false;};const isDisplayed18=()=>{if(baseVariant===\"n7VbRaspn\")return true;return false;};const isDisplayed19=()=>{if(baseVariant===\"XRi3NGVQA\")return true;return false;};const isDisplayed20=()=>{if(baseVariant===\"NJPJDD0Vk\")return true;return false;};const isDisplayed21=()=>{if(baseVariant===\"pfOxZdZGO\")return true;return false;};const isDisplayed22=()=>{if(baseVariant===\"dETDNRHTY\")return true;return false;};const isDisplayed23=()=>{if(baseVariant===\"gtsSNnZUB\")return true;return false;};const isDisplayed24=()=>{if(baseVariant===\"dTnugu0Zu\")return true;return false;};const isDisplayed25=()=>{if(baseVariant===\"FW6FKOhDL\")return true;return false;};const isDisplayed26=()=>{if(baseVariant===\"cJMKacz0Y\")return true;return false;};const isDisplayed27=()=>{if(baseVariant===\"mYnQ45VW1\")return true;return false;};const isDisplayed28=()=>{if(baseVariant===\"cCTr_1LOU\")return true;return false;};const isDisplayed29=()=>{if(baseVariant===\"Oz0nvn5Oz\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jzb9zy\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ymwyAK8TA\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({A_x4D6krf:{\"data-framer-name\":\"Variant 20\"},aOgMEcFiQ:{\"data-framer-name\":\"Variant 3\"},CawXG8AYr:{\"data-framer-name\":\"Variant 27\"},cCTr_1LOU:{\"data-framer-name\":\"Variant 14\"},cJMKacz0Y:{\"data-framer-name\":\"Variant 12\"},dETDNRHTY:{\"data-framer-name\":\"Variant 8\"},DO9heuGZg:{\"data-framer-name\":\"Variant 29\"},dTnugu0Zu:{\"data-framer-name\":\"Variant 10\"},FW6FKOhDL:{\"data-framer-name\":\"Variant 11\"},gtsSNnZUB:{\"data-framer-name\":\"Variant 9\"},hIGEtuPWW:{\"data-framer-name\":\"Variant 2\"},HmqiOX0H7:{\"data-framer-name\":\"Variant 16\"},L_MoF1gF0:{\"data-framer-name\":\"Variant 26\"},mPnhKw05W:{\"data-framer-name\":\"Variant 28\"},mYnQ45VW1:{\"data-framer-name\":\"Variant 13\"},n4bdhc7FW:{\"data-framer-name\":\"Variant 30\"},n7VbRaspn:{\"data-framer-name\":\"Variant 4\"},NJPJDD0Vk:{\"data-framer-name\":\"Variant 6\"},osXsMuK7N:{\"data-framer-name\":\"Variant 18\"},Oz0nvn5Oz:{\"data-framer-name\":\"Variant 15\"},pfOxZdZGO:{\"data-framer-name\":\"Variant 7\"},QLwW5SwDX:{\"data-framer-name\":\"Variant 17\"},t0L_vFMVz:{\"data-framer-name\":\"Variant 25\"},TtVG1Pbx5:{\"data-framer-name\":\"Variant 19\"},wEy_23n43:{\"data-framer-name\":\"Variant 23\"},x42aS2tR3:{\"data-framer-name\":\"Variant 21\"},XLjvyh6lI:{\"data-framer-name\":\"Variant 24\"},XRi3NGVQA:{\"data-framer-name\":\"Variant 5\"},xvn8WY6nV:{\"data-framer-name\":\"Variant 22\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1313yf1\",\"data-framer-name\":\"Asset 67\",fill:\"black\",intrinsicHeight:225,intrinsicWidth:225,layoutDependency:layoutDependency,layoutId:\"FOps3HQ8t\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 225.39 225.39\"><rect width=\"225.39\" height=\"225.39\" rx=\"50\" ry=\"50\" style=\"fill:#7b80ed\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-knpyyf\",\"data-framer-name\":\"Asset 64\",fill:\"black\",intrinsicHeight:233,intrinsicWidth:233,layoutDependency:layoutDependency,layoutId:\"URe0yNtfT\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 233.14 233.14\"><path d=\"M175.39 0h7.75c27.6 0 50 22.4 50 50v133.14c0 27.6-22.4 50-50 50H50c-27.6 0-50-22.4-50-50v-7.75C0 78.59 78.59 0 175.39 0Z\" style=\"fill:#ffba33\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-36qfic\",\"data-framer-name\":\"Asset 44\",fill:\"black\",intrinsicHeight:219,intrinsicWidth:318,layoutDependency:layoutDependency,layoutId:\"LhckmEr6t\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 317.96 218.59\"><path d=\"M162.62 218.59H46.81c-39.89 0-61.43-46.76-35.51-77.08l106-123.98A50.035 50.035 0 0 1 155.35 0h115.81c39.89 0 61.43 46.76 35.51 77.08l-106 123.98a50.069 50.069 0 0 1-38.05 17.53Z\" style=\"fill:#35afd4\"/></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-2brls4\",\"data-framer-name\":\"Asset 25\",fill:\"black\",intrinsicHeight:247,intrinsicWidth:247,layoutDependency:layoutDependency,layoutId:\"RcKSx0UGc\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 246.55 247.11\"><path d=\"M204.02 123.55c24.76-8.68 42.52-32.26 42.52-59.99 0-35.1-28.46-63.56-63.56-63.56-27.43 0-50.81 17.38-59.71 41.73C114.37 17.38 90.99 0 63.56 0 28.46 0 0 28.46 0 63.56c0 27.73 17.76 51.31 42.52 59.99C17.76 132.24 0 155.81 0 183.54c0 35.1 28.46 63.56 63.56 63.56 27.43 0 50.81-17.38 59.71-41.73 8.91 24.35 32.28 41.73 59.71 41.73 35.1 0 63.56-28.46 63.56-63.56 0-27.73-17.76-51.31-42.52-59.99Z\" style=\"fill:#35afd4\"/></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1fuwoav\",\"data-framer-name\":\"Asset 38\",fill:\"black\",intrinsicHeight:301,intrinsicWidth:359,layoutDependency:layoutDependency,layoutId:\"AP_iB_H9U\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.35 300.83\"><path d=\"M287.36 0c-21.42 0-40.65 19.55-53.84 50.58C220.33 19.55 201.1 0 179.67 0s-40.65 19.55-53.84 50.58C112.65 19.55 93.41 0 71.99 0 32.23 0 0 67.34 0 150.41s32.23 150.41 71.99 150.41c21.42 0 40.65-19.56 53.84-50.58 13.19 31.02 32.42 50.58 53.84 50.58s40.65-19.56 53.84-50.58c13.19 31.02 32.42 50.58 53.84 50.58 39.76 0 71.99-67.34 71.99-150.41S327.12 0 287.36 0Z\" style=\"fill:#ff8a31\"/></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-11vhxon\",\"data-framer-name\":\"Asset 36\",fill:\"black\",intrinsicHeight:301,intrinsicWidth:359,layoutDependency:layoutDependency,layoutId:\"H5XXkTFBw\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.35 300.83\"><path d=\"M287.36 0c-21.42 0-40.65 19.55-53.84 50.58C220.33 19.55 201.1 0 179.67 0s-40.65 19.55-53.84 50.58C112.65 19.55 93.41 0 71.99 0 32.23 0 0 67.34 0 150.41s32.23 150.41 71.99 150.41c21.42 0 40.65-19.56 53.84-50.58 13.19 31.02 32.42 50.58 53.84 50.58s40.65-19.56 53.84-50.58c13.19 31.02 32.42 50.58 53.84 50.58 39.76 0 71.99-67.34 71.99-150.41S327.12 0 287.36 0Z\" style=\"fill:#3bcd9e\"/></svg>',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-25q44x\",\"data-framer-name\":\"Asset 41\",fill:\"black\",intrinsicHeight:219,intrinsicWidth:318,layoutDependency:layoutDependency,layoutId:\"zfOeaiKd2\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 317.96 218.59\"><path d=\"M162.62 218.59H46.81c-39.89 0-61.43-46.76-35.51-77.08l106-123.98A50.035 50.035 0 0 1 155.35 0h115.81c39.89 0 61.43 46.76 35.51 77.08l-106 123.98a50.069 50.069 0 0 1-38.05 17.53Z\" style=\"fill:#ffda92\"/></svg>',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12abycv\",\"data-framer-name\":\"Asset 61\",fill:\"black\",intrinsicHeight:233,intrinsicWidth:233,layoutDependency:layoutDependency,layoutId:\"c4tOyJ5mJ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 233.14 233.14\"><path d=\"M175.39 0h7.75c27.6 0 50 22.4 50 50v133.14c0 27.6-22.4 50-50 50H50c-27.6 0-50-22.4-50-50v-7.75C0 78.59 78.59 0 175.39 0Z\" style=\"fill:#518c75\"/></svg>',withExternalLayout:true}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-lqh7hn\",\"data-framer-name\":\"Asset 54\",fill:\"black\",intrinsicHeight:225,intrinsicWidth:225,layoutDependency:layoutDependency,layoutId:\"XjlAPe5L7\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 225.39 225.39\"><rect width=\"225.39\" height=\"225.39\" rx=\"50\" ry=\"50\" style=\"fill:#35afd4\"/></svg>',withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1brn9sa\",\"data-framer-name\":\"Asset 55\",fill:\"black\",intrinsicHeight:225,intrinsicWidth:225,layoutDependency:layoutDependency,layoutId:\"sQ87Cn9gM\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 225.39 225.39\"><rect width=\"225.39\" height=\"225.39\" rx=\"50\" ry=\"50\" style=\"fill:#3bcd9e\"/></svg>',withExternalLayout:true}),isDisplayed10()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-7p4k21\",\"data-framer-name\":\"Asset 73\",fill:\"black\",intrinsicHeight:227,intrinsicWidth:227,layoutDependency:layoutDependency,layoutId:\"zxaaZFQmn\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 226.73 226.73\"><circle cx=\"113.37\" cy=\"113.37\" r=\"113.37\" style=\"fill:#7b80ed\"/></svg>',withExternalLayout:true}),isDisplayed11()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15ljsuw\",\"data-framer-name\":\"Asset 68\",fill:\"black\",intrinsicHeight:227,intrinsicWidth:227,layoutDependency:layoutDependency,layoutId:\"S1LGcDSJQ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 226.73 226.73\"><circle cx=\"113.37\" cy=\"113.37\" r=\"113.37\" style=\"fill:#35afd4\"/></svg>',withExternalLayout:true}),isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-13s5m5\",\"data-framer-name\":\"Asset 70\",fill:\"black\",intrinsicHeight:227,intrinsicWidth:227,layoutDependency:layoutDependency,layoutId:\"Ws9qiU3Fl\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 226.73 226.73\"><circle cx=\"113.37\" cy=\"113.37\" r=\"113.37\" style=\"fill:#ffba33\"/></svg>',withExternalLayout:true}),isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1y3kc4k\",\"data-framer-name\":\"Asset 34\",fill:\"black\",intrinsicHeight:301,intrinsicWidth:359,layoutDependency:layoutDependency,layoutId:\"hvlO60poI\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.35 300.83\"><path d=\"M287.36 0c-21.42 0-40.65 19.55-53.84 50.58C220.33 19.55 201.1 0 179.67 0s-40.65 19.55-53.84 50.58C112.65 19.55 93.41 0 71.99 0 32.23 0 0 67.34 0 150.41s32.23 150.41 71.99 150.41c21.42 0 40.65-19.56 53.84-50.58 13.19 31.02 32.42 50.58 53.84 50.58s40.65-19.56 53.84-50.58c13.19 31.02 32.42 50.58 53.84 50.58 39.76 0 71.99-67.34 71.99-150.41S327.12 0 287.36 0Z\" style=\"fill:#518c75\"/></svg>',withExternalLayout:true}),isDisplayed14()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-rqdt1d\",\"data-framer-name\":\"Asset 19\",fill:\"black\",intrinsicHeight:247,intrinsicWidth:247,layoutDependency:layoutDependency,layoutId:\"uP5ElWAuj\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 246.55 247.11\"><path d=\"M204.02 123.55c24.76-8.68 42.52-32.26 42.52-59.99 0-35.1-28.46-63.56-63.56-63.56-27.43 0-50.81 17.38-59.71 41.73C114.37 17.38 90.99 0 63.56 0 28.46 0 0 28.46 0 63.56c0 27.73 17.76 51.31 42.52 59.99C17.76 132.24 0 155.81 0 183.54c0 35.1 28.46 63.56 63.56 63.56 27.43 0 50.81-17.38 59.71-41.73 8.91 24.35 32.28 41.73 59.71 41.73 35.1 0 63.56-28.46 63.56-63.56 0-27.73-17.76-51.31-42.52-59.99Z\" style=\"fill:#ffda92\"/></svg>',withExternalLayout:true}),isDisplayed15()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1dxnkfa\",\"data-framer-name\":\"Asset 35\",fill:\"black\",intrinsicHeight:301,intrinsicWidth:359,layoutDependency:layoutDependency,layoutId:\"NuVV875D6\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.35 300.83\"><path d=\"M287.36 0c-21.42 0-40.65 19.55-53.84 50.58C220.33 19.55 201.1 0 179.67 0s-40.65 19.55-53.84 50.58C112.65 19.55 93.41 0 71.99 0 32.23 0 0 67.34 0 150.41s32.23 150.41 71.99 150.41c21.42 0 40.65-19.56 53.84-50.58 13.19 31.02 32.42 50.58 53.84 50.58s40.65-19.56 53.84-50.58c13.19 31.02 32.42 50.58 53.84 50.58 39.76 0 71.99-67.34 71.99-150.41S327.12 0 287.36 0Z\" style=\"fill:#35afd4\"/></svg>',withExternalLayout:true}),isDisplayed16()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-3nd2cc\",\"data-framer-name\":\"Asset 31\",fill:\"black\",intrinsicHeight:247,intrinsicWidth:247,layoutDependency:layoutDependency,layoutId:\"r57qobBFx\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 246.55 247.11\"><path d=\"M204.02 123.55c24.76-8.68 42.52-32.26 42.52-59.99 0-35.1-28.46-63.56-63.56-63.56-27.43 0-50.81 17.38-59.71 41.73C114.37 17.38 90.99 0 63.56 0 28.46 0 0 28.46 0 63.56c0 27.73 17.76 51.31 42.52 59.99C17.76 132.24 0 155.81 0 183.54c0 35.1 28.46 63.56 63.56 63.56 27.43 0 50.81-17.38 59.71-41.73 8.91 24.35 32.28 41.73 59.71 41.73 35.1 0 63.56-28.46 63.56-63.56 0-27.73-17.76-51.31-42.52-59.99Z\" style=\"fill:#ff8a31\"/></svg>',withExternalLayout:true}),isDisplayed17()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vgdpfo\",\"data-framer-name\":\"Asset 39\",fill:\"black\",intrinsicHeight:301,intrinsicWidth:359,layoutDependency:layoutDependency,layoutId:\"rM8LsdO7a\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 359.35 300.83\"><path d=\"M287.36 0c-21.42 0-40.65 19.55-53.84 50.58C220.33 19.55 201.1 0 179.67 0s-40.65 19.55-53.84 50.58C112.65 19.55 93.41 0 71.99 0 32.23 0 0 67.34 0 150.41s32.23 150.41 71.99 150.41c21.42 0 40.65-19.56 53.84-50.58 13.19 31.02 32.42 50.58 53.84 50.58s40.65-19.56 53.84-50.58c13.19 31.02 32.42 50.58 53.84 50.58 39.76 0 71.99-67.34 71.99-150.41S327.12 0 287.36 0Z\" style=\"fill:#7b80ed\"/></svg>',withExternalLayout:true}),isDisplayed18()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-qewuz5\",\"data-framer-name\":\"Asset 65\",fill:\"black\",intrinsicHeight:233,intrinsicWidth:233,layoutDependency:layoutDependency,layoutId:\"WM6BDABWs\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 233.14 233.14\"><path d=\"M175.39 0h7.75c27.6 0 50 22.4 50 50v133.14c0 27.6-22.4 50-50 50H50c-27.6 0-50-22.4-50-50v-7.75C0 78.59 78.59 0 175.39 0Z\" style=\"fill:#ff8a31\"/></svg>',withExternalLayout:true}),isDisplayed19()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ioot4a\",\"data-framer-name\":\"Asset 72\",fill:\"black\",intrinsicHeight:247,intrinsicWidth:247,layoutDependency:layoutDependency,layoutId:\"fO98_SMFT\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 246.55 247.11\"><path d=\"M204.02 123.55c24.76-8.68 42.52-32.26 42.52-59.99 0-35.1-28.46-63.56-63.56-63.56-27.43 0-50.81 17.38-59.71 41.73C114.37 17.38 90.99 0 63.56 0 28.46 0 0 28.46 0 63.56c0 27.73 17.76 51.31 42.52 59.99C17.76 132.24 0 155.81 0 183.54c0 35.1 28.46 63.56 63.56 63.56 27.43 0 50.81-17.38 59.71-41.73 8.91 24.35 32.28 41.73 59.71 41.73 35.1 0 63.56-28.46 63.56-63.56 0-27.73-17.76-51.31-42.52-59.99Z\" style=\"fill:#7b80ed\"/></svg>',withExternalLayout:true}),isDisplayed20()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vd5jz1\",\"data-framer-name\":\"Asset 69\",fill:\"black\",intrinsicHeight:227,intrinsicWidth:227,layoutDependency:layoutDependency,layoutId:\"XbJRNsQmN\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 226.73 226.73\"><circle cx=\"113.37\" cy=\"113.37\" r=\"113.37\" style=\"fill:#3bcd9e\"/></svg>',withExternalLayout:true}),isDisplayed21()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-d58fv0\",\"data-framer-name\":\"Asset 46\",fill:\"black\",intrinsicHeight:219,intrinsicWidth:318,layoutDependency:layoutDependency,layoutId:\"WBBYAjEKL\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 317.96 218.59\"><path d=\"M162.62 218.59H46.81c-39.89 0-61.43-46.76-35.51-77.08l106-123.98A50.035 50.035 0 0 1 155.35 0h115.81c39.89 0 61.43 46.76 35.51 77.08l-106 123.98a50.069 50.069 0 0 1-38.05 17.53Z\" style=\"fill:#ffba33\"/></svg>',withExternalLayout:true}),isDisplayed22()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-13ddd8z\",\"data-framer-name\":\"Asset 63\",fill:\"black\",intrinsicHeight:233,intrinsicWidth:233,layoutDependency:layoutDependency,layoutId:\"xxJbrIgNZ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 233.14 233.14\"><path d=\"M175.39 0h7.75c27.6 0 50 22.4 50 50v133.14c0 27.6-22.4 50-50 50H50c-27.6 0-50-22.4-50-50v-7.75C0 78.59 78.59 0 175.39 0Z\" style=\"fill:#3bcd9e\"/></svg>',withExternalLayout:true}),isDisplayed23()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-s0nh7a\",\"data-framer-name\":\"Asset 42\",fill:\"black\",intrinsicHeight:219,intrinsicWidth:318,layoutDependency:layoutDependency,layoutId:\"zxOZ97SsE\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 317.96 218.59\"><path d=\"M162.62 218.59H46.81c-39.89 0-61.43-46.76-35.51-77.08l106-123.98A50.035 50.035 0 0 1 155.35 0h115.81c39.89 0 61.43 46.76 35.51 77.08l-106 123.98a50.069 50.069 0 0 1-38.05 17.53Z\" style=\"fill:#484875\"/></svg>',withExternalLayout:true}),isDisplayed24()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-19bsoht\",\"data-framer-name\":\"Asset 53\",fill:\"black\",intrinsicHeight:227,intrinsicWidth:227,layoutDependency:layoutDependency,layoutId:\"AhysDoGry\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 226.73 226.73\"><circle cx=\"113.37\" cy=\"113.37\" r=\"113.37\" style=\"fill:#518c75\"/></svg>',withExternalLayout:true}),isDisplayed25()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-s9ri2x\",\"data-framer-name\":\"Asset 20\",fill:\"black\",intrinsicHeight:221,intrinsicWidth:346,layoutDependency:layoutDependency,layoutId:\"oLWp0r1St\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 346.45 221.21\"><ellipse cx=\"173.22\" cy=\"110.6\" rx=\"173.22\" ry=\"110.6\" style=\"fill:#484875\"/></svg>',withExternalLayout:true}),isDisplayed26()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-5wio9v\",\"data-framer-name\":\"Asset 24\",fill:\"black\",intrinsicHeight:221,intrinsicWidth:346,layoutDependency:layoutDependency,layoutId:\"eMiN60h6z\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 346.45 221.21\"><ellipse cx=\"173.22\" cy=\"110.6\" rx=\"173.22\" ry=\"110.6\" style=\"fill:#35afd4\"/></svg>',withExternalLayout:true}),isDisplayed27()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-zuenig\",\"data-framer-name\":\"Asset 50\",fill:\"black\",intrinsicHeight:227,intrinsicWidth:227,layoutDependency:layoutDependency,layoutId:\"TxinNckfk\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 226.73 226.73\"><circle cx=\"113.37\" cy=\"113.37\" r=\"113.37\" style=\"fill:#ffda92\"/></svg>',withExternalLayout:true}),isDisplayed28()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1x8bxpi\",\"data-framer-name\":\"Asset 58\",fill:\"black\",intrinsicHeight:225,intrinsicWidth:225,layoutDependency:layoutDependency,layoutId:\"x7BPJtzGu\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 225.39 225.39\"><rect width=\"225.39\" height=\"225.39\" rx=\"50\" ry=\"50\" style=\"fill:#ffba33\"/></svg>',withExternalLayout:true}),isDisplayed29()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-eh8pnu\",\"data-framer-name\":\"Asset 49\",fill:\"black\",intrinsicHeight:225,intrinsicWidth:225,layoutDependency:layoutDependency,layoutId:\"jAeyQ2cdU\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 225.39 225.39\"><rect width=\"225.39\" height=\"225.39\" rx=\"50\" ry=\"50\" style=\"fill:#ffda92\"/></svg>',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2U9Qu.framer-77orok, .framer-2U9Qu .framer-77orok { display: block; }\",\".framer-2U9Qu.framer-1jzb9zy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 89px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 106px; }\",\".framer-2U9Qu .framer-1313yf1, .framer-2U9Qu .framer-knpyyf, .framer-2U9Qu .framer-12abycv, .framer-2U9Qu .framer-lqh7hn, .framer-2U9Qu .framer-1brn9sa { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 89px); position: relative; width: 89px; }\",\".framer-2U9Qu .framer-36qfic, .framer-2U9Qu .framer-25q44x, .framer-2U9Qu .framer-d58fv0, .framer-2U9Qu .framer-s0nh7a { aspect-ratio: 1.452054794520548 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 73px); position: relative; width: 106px; }\",\".framer-2U9Qu .framer-2brls4, .framer-2U9Qu .framer-7p4k21, .framer-2U9Qu .framer-15ljsuw, .framer-2U9Qu .framer-13s5m5, .framer-2U9Qu .framer-1ioot4a, .framer-2U9Qu .framer-1vd5jz1, .framer-2U9Qu .framer-zuenig { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 87px); position: relative; width: 87px; }\",\".framer-2U9Qu .framer-1fuwoav, .framer-2U9Qu .framer-11vhxon, .framer-2U9Qu .framer-1y3kc4k, .framer-2U9Qu .framer-vgdpfo { aspect-ratio: 1.1926910299003322 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); position: relative; width: 105px; }\",\".framer-2U9Qu .framer-rqdt1d, .framer-2U9Qu .framer-3nd2cc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 71px); position: relative; width: 71px; }\",\".framer-2U9Qu .framer-1dxnkfa { flex: none; height: 89px; position: relative; width: 106px; }\",\".framer-2U9Qu .framer-qewuz5, .framer-2U9Qu .framer-13ddd8z, .framer-2U9Qu .framer-19bsoht, .framer-2U9Qu .framer-1x8bxpi, .framer-2U9Qu .framer-eh8pnu { aspect-ratio: 1 / 1; flex: none; height: 89px; position: relative; width: var(--framer-aspect-ratio-supported, 89px); }\",\".framer-2U9Qu .framer-s9ri2x, .framer-2U9Qu .framer-5wio9v { aspect-ratio: 1.5656108597285068 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); position: relative; width: 106px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2U9Qu.framer-1jzb9zy { gap: 0px; } .framer-2U9Qu.framer-1jzb9zy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2U9Qu.framer-1jzb9zy > :first-child { margin-left: 0px; } .framer-2U9Qu.framer-1jzb9zy > :last-child { margin-right: 0px; } }\",\".framer-2U9Qu.framer-v-szaelb.framer-1jzb9zy, .framer-2U9Qu.framer-v-ka44v0.framer-1jzb9zy, .framer-2U9Qu.framer-v-1lj8643.framer-1jzb9zy, .framer-2U9Qu.framer-v-pq0vbt.framer-1jzb9zy, .framer-2U9Qu.framer-v-2kvz4v.framer-1jzb9zy, .framer-2U9Qu.framer-v-179fo9j.framer-1jzb9zy, .framer-2U9Qu.framer-v-tdvp22.framer-1jzb9zy, .framer-2U9Qu.framer-v-15gyfu8.framer-1jzb9zy, .framer-2U9Qu.framer-v-4i9kgc.framer-1jzb9zy, .framer-2U9Qu.framer-v-1ucbz4a.framer-1jzb9zy, .framer-2U9Qu.framer-v-6xnmtv.framer-1jzb9zy, .framer-2U9Qu.framer-v-13rxk82.framer-1jzb9zy, .framer-2U9Qu.framer-v-lzzd8a.framer-1jzb9zy, .framer-2U9Qu.framer-v-7rhm9b.framer-1jzb9zy, .framer-2U9Qu.framer-v-148ypax.framer-1jzb9zy, .framer-2U9Qu.framer-v-1046chl.framer-1jzb9zy, .framer-2U9Qu.framer-v-vd23o7.framer-1jzb9zy, .framer-2U9Qu.framer-v-1cg2r7.framer-1jzb9zy, .framer-2U9Qu.framer-v-tuvnhm.framer-1jzb9zy, .framer-2U9Qu.framer-v-1xcn2po.framer-1jzb9zy, .framer-2U9Qu.framer-v-grsk28.framer-1jzb9zy, .framer-2U9Qu.framer-v-waq296.framer-1jzb9zy, .framer-2U9Qu.framer-v-1m34myp.framer-1jzb9zy, .framer-2U9Qu.framer-v-15lomcw.framer-1jzb9zy, .framer-2U9Qu.framer-v-1p53lfd.framer-1jzb9zy, .framer-2U9Qu.framer-v-sg1w72.framer-1jzb9zy, .framer-2U9Qu.framer-v-9rh062.framer-1jzb9zy, .framer-2U9Qu.framer-v-8wb11h.framer-1jzb9zy { height: min-content; width: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 89\n * @framerIntrinsicWidth 106\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hIGEtuPWW\":{\"layout\":[\"auto\",\"auto\"]},\"aOgMEcFiQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"n7VbRaspn\":{\"layout\":[\"auto\",\"auto\"]},\"XRi3NGVQA\":{\"layout\":[\"auto\",\"auto\"]},\"NJPJDD0Vk\":{\"layout\":[\"auto\",\"auto\"]},\"pfOxZdZGO\":{\"layout\":[\"auto\",\"auto\"]},\"dETDNRHTY\":{\"layout\":[\"auto\",\"auto\"]},\"gtsSNnZUB\":{\"layout\":[\"auto\",\"auto\"]},\"dTnugu0Zu\":{\"layout\":[\"auto\",\"auto\"]},\"FW6FKOhDL\":{\"layout\":[\"auto\",\"auto\"]},\"cJMKacz0Y\":{\"layout\":[\"auto\",\"auto\"]},\"mYnQ45VW1\":{\"layout\":[\"auto\",\"auto\"]},\"cCTr_1LOU\":{\"layout\":[\"auto\",\"auto\"]},\"Oz0nvn5Oz\":{\"layout\":[\"auto\",\"auto\"]},\"HmqiOX0H7\":{\"layout\":[\"auto\",\"auto\"]},\"QLwW5SwDX\":{\"layout\":[\"auto\",\"auto\"]},\"osXsMuK7N\":{\"layout\":[\"auto\",\"auto\"]},\"TtVG1Pbx5\":{\"layout\":[\"auto\",\"auto\"]},\"A_x4D6krf\":{\"layout\":[\"auto\",\"auto\"]},\"x42aS2tR3\":{\"layout\":[\"auto\",\"auto\"]},\"xvn8WY6nV\":{\"layout\":[\"auto\",\"auto\"]},\"wEy_23n43\":{\"layout\":[\"auto\",\"auto\"]},\"XLjvyh6lI\":{\"layout\":[\"auto\",\"auto\"]},\"t0L_vFMVz\":{\"layout\":[\"auto\",\"auto\"]},\"L_MoF1gF0\":{\"layout\":[\"auto\",\"auto\"]},\"CawXG8AYr\":{\"layout\":[\"auto\",\"auto\"]},\"mPnhKw05W\":{\"layout\":[\"auto\",\"auto\"]},\"DO9heuGZg\":{\"layout\":[\"auto\",\"auto\"]},\"n4bdhc7FW\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertqqsK7FPC=withCSS(Component,css,\"framer-2U9Qu\");export default FramertqqsK7FPC;FramertqqsK7FPC.displayName=\"Shapes\";FramertqqsK7FPC.defaultProps={height:89,width:106};addPropertyControls(FramertqqsK7FPC,{variant:{options:[\"ymwyAK8TA\",\"hIGEtuPWW\",\"aOgMEcFiQ\",\"n7VbRaspn\",\"XRi3NGVQA\",\"NJPJDD0Vk\",\"pfOxZdZGO\",\"dETDNRHTY\",\"gtsSNnZUB\",\"dTnugu0Zu\",\"FW6FKOhDL\",\"cJMKacz0Y\",\"mYnQ45VW1\",\"cCTr_1LOU\",\"Oz0nvn5Oz\",\"HmqiOX0H7\",\"QLwW5SwDX\",\"osXsMuK7N\",\"TtVG1Pbx5\",\"A_x4D6krf\",\"x42aS2tR3\",\"xvn8WY6nV\",\"wEy_23n43\",\"XLjvyh6lI\",\"t0L_vFMVz\",\"L_MoF1gF0\",\"CawXG8AYr\",\"mPnhKw05W\",\"DO9heuGZg\",\"n4bdhc7FW\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\",\"Variant 11\",\"Variant 12\",\"Variant 13\",\"Variant 14\",\"Variant 15\",\"Variant 16\",\"Variant 17\",\"Variant 18\",\"Variant 19\",\"Variant 20\",\"Variant 21\",\"Variant 22\",\"Variant 23\",\"Variant 24\",\"Variant 25\",\"Variant 26\",\"Variant 27\",\"Variant 28\",\"Variant 29\",\"Variant 30\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramertqqsK7FPC,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertqqsK7FPC\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"106\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hIGEtuPWW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aOgMEcFiQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n7VbRaspn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XRi3NGVQA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NJPJDD0Vk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pfOxZdZGO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dETDNRHTY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gtsSNnZUB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dTnugu0Zu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FW6FKOhDL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cJMKacz0Y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mYnQ45VW1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cCTr_1LOU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Oz0nvn5Oz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HmqiOX0H7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QLwW5SwDX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"osXsMuK7N\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TtVG1Pbx5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"A_x4D6krf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"x42aS2tR3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xvn8WY6nV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wEy_23n43\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XLjvyh6lI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"t0L_vFMVz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"L_MoF1gF0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CawXG8AYr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mPnhKw05W\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DO9heuGZg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"n4bdhc7FW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"89\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tqqsK7FPC.map", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Physics from\"https://framerusercontent.com/modules/8VVgbG1flQ1tceOVOBM1/0JLfKUN6gfqt1GEFRIwS/Physics_1.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/jYK5Wk0SRCZc086NLPnW/w4bU07yPcxUKAjfnPX7U/fEbDKcdOJ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tZCgnUjgaeeEmArF42lE/cLvzbwUfYl9MzSmvcpG6/pp9YuUcyg.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pZQpXB1h9P8dAPyylLs6/X0sI6tWXMMdevinuXDL4/vWN4mibfc.js\";import PrimaryButtons from\"https://framerusercontent.com/modules/wXiPrz1sDxuc8bQS7H9L/GikPy3QBA1y45hUt1the/KtaQZsULF.js\";import Shapes from\"https://framerusercontent.com/modules/bARI95K0qe1bAsDzWKNm/4tAnxua8sIFe3WfkJ4bJ/tqqsK7FPC.js\";const PrimaryButtonsFonts=getFonts(PrimaryButtons);const ShapesFonts=getFonts(Shapes);const PhysicsFonts=getFonts(Physics);const cycleOrder=[\"N1HWHJbxD\",\"G4UZvj6IY\",\"qFxkpNjzd\",\"D5MKPxl_w\",\"nIG1w0FWX\"];const serializationHash=\"framer-abwYV\";const variantClassNames={D5MKPxl_w:\"framer-v-1vzeera\",G4UZvj6IY:\"framer-v-wyaawr\",N1HWHJbxD:\"framer-v-wh7qo5\",nIG1w0FWX:\"framer-v-xreh7h\",qFxkpNjzd:\"framer-v-2cagof\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"L Desktop\":\"N1HWHJbxD\",\"M Desktop\":\"G4UZvj6IY\",\"S Desktop\":\"qFxkpNjzd\",Mobile:\"nIG1w0FWX\",Tablet:\"D5MKPxl_w\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"N1HWHJbxD\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"N1HWHJbxD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"G4UZvj6IY\",\"qFxkpNjzd\",\"D5MKPxl_w\",\"nIG1w0FWX\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"G4UZvj6IY\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"qFxkpNjzd\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"D5MKPxl_w\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"nIG1w0FWX\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wh7qo5\",className,classNames),\"data-framer-name\":\"L Desktop\",layoutDependency:layoutDependency,layoutId:\"N1HWHJbxD\",ref:refBinding,style:{backgroundColor:\"var(--token-2c27a761-ada3-4e81-996c-c7c170da2922, rgb(244, 244, 239))\",...style},...addPropertyOverrides({D5MKPxl_w:{\"data-framer-name\":\"Tablet\"},G4UZvj6IY:{\"data-framer-name\":\"M Desktop\"},nIG1w0FWX:{\"data-framer-name\":\"Mobile\"},qFxkpNjzd:{\"data-framer-name\":\"S Desktop\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-eq06dn\",layoutDependency:layoutDependency,layoutId:\"gXe4r5moI\",style:{backgroundColor:\"var(--token-218974e8-06b1-4994-a5a6-496bd3e9c9e0, rgb(12, 14, 15))\",borderTopLeftRadius:48,borderTopRightRadius:48},variants:{nIG1w0FWX:{borderTopLeftRadius:8,borderTopRightRadius:8}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15whe1i\",layoutDependency:layoutDependency,layoutId:\"WRZCD9qJ6\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},variants:{nIG1w0FWX:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pzj0xk\",layoutDependency:layoutDependency,layoutId:\"OVWtsBEso\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uo77ps\",layoutDependency:layoutDependency,layoutId:\"rz1FvLqJR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1krxhtw\",\"data-styles-preset\":\"vWN4mibfc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-218974e8-06b1-4994-a5a6-496bd3e9c9e0, rgb(12, 14, 15)))\"},children:\"More Success in Less Time\"})}),className:\"framer-o5l2wp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PvU_v5zYM\",style:{\"--extracted-gdpscs\":\"var(--token-218974e8-06b1-4994-a5a6-496bd3e9c9e0, rgb(12, 14, 15))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D5MKPxl_w:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-j8kdmv\",\"data-styles-preset\":\"pp9YuUcyg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-218974e8-06b1-4994-a5a6-496bd3e9c9e0, rgb(12, 14, 15)))\"},children:\"More Success in Less Time\"})})},nIG1w0FWX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-218974e8-06b1-4994-a5a6-496bd3e9c9e0, rgb(12, 14, 15)))\"},children:[\"More leads,\",/*#__PURE__*/_jsx(motion.br,{}),\"cost free.\"]})}),fonts:[\"FS;Space Grotesk-bold\"]},qFxkpNjzd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-j8kdmv\",\"data-styles-preset\":\"pp9YuUcyg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-218974e8-06b1-4994-a5a6-496bd3e9c9e0, rgb(12, 14, 15)))\"},children:\"More Success in Less Time\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-d42xiz\",\"data-styles-preset\":\"fEbDKcdOJ\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Create the go-to-market moments you dreamed of \\u2028\\u2028\",/*#__PURE__*/_jsx(motion.br,{}),\"and accelerate your pipeline - in minutes!\"]})}),className:\"framer-vumo2p\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"izsXRwAO2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{nIG1w0FWX:{\"--extracted-r6o4lv\":\"rgb(35, 36, 37)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nIG1w0FWX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(35, 36, 37))\"},children:\"Create the go-to-market moments you dreamed of and accelerate your pipeline - in minutes!\"})}),fonts:[\"GF;Rethink Sans-regular\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j7a1ic\",layoutDependency:layoutDependency,layoutId:\"d6RdTA8ne\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-132pvlr\",layoutDependency:layoutDependency,layoutId:\"LLwgQSSPA\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-560)/2+0+0)+123.6+0+138.8+0+0+0,...addPropertyOverrides({D5MKPxl_w:{height:42,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-350)/2+0+0)+70.6+0+130+0+0+0},G4UZvj6IY:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||450)-0-450)/2+0+0)+68.6+0+138.8+0+0+0},nIG1w0FWX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-24-380)/2+0+0)+18.4+0+169.2+0+0+0},qFxkpNjzd:{height:42,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-420)/2+0+0)+105.6+0+130+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13fvb8j-container\",layoutDependency:layoutDependency,layoutId:\"zw7Xzu2Wu-container\",nodeId:\"zw7Xzu2Wu\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(PrimaryButtons,{AhCeTXqMO:\"Try for free\",dFAF7en_l:20,dlZhFRRsF:\"var(--token-218974e8-06b1-4994-a5a6-496bd3e9c9e0, rgb(12, 14, 15))\",ebCN30jDW:false,gsqXntqNr:8,H9nd1YtzC:\"16px 24px 16px 24px\",height:\"100%\",id:\"zw7Xzu2Wu\",Jimeo7imH:{borderColor:'var(--token-0984b053-cc99-4564-b24e-8d85522d7d46, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',borderStyle:\"solid\",borderWidth:1},layoutId:\"zw7Xzu2Wu\",Lljrg3Ss5:false,lsaFeIfkt:\"var(--token-0984b053-cc99-4564-b24e-8d85522d7d46, rgb(255, 255, 255))\",q4gJOExSN:\"ArrowRight\",smCgXtV0z:false,variant:\"cuPy6D5FW\",VML30pA4M:\"var(--token-2c27a761-ada3-4e81-996c-c7c170da2922, rgb(244, 244, 239))\",width:\"100%\",zLVmw4tLz:\"https://app.sendr.io/signup\",...addPropertyOverrides({D5MKPxl_w:{dFAF7en_l:16,style:{height:\"100%\"}},qFxkpNjzd:{dFAF7en_l:16,style:{height:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-218974e8-06b1-4994-a5a6-496bd3e9c9e0, rgb(12, 14, 15)))\"},children:\" No card required.\"})}),className:\"framer-4opfpq\",fonts:[\"GF;Rethink Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"F6OJpHPei\",style:{\"--extracted-r6o4lv\":\"var(--token-218974e8-06b1-4994-a5a6-496bd3e9c9e0, rgb(12, 14, 15))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qcrzo-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"O3QPYmOr5-container\",nodeId:\"O3QPYmOr5\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsxs(Physics,{densityOptions:{density:.001,enable:true},friction:{friction:.1,frictionAir:.01},gravX:0,gravY:5,height:\"100%\",id:\"O3QPYmOr5\",layoutId:\"O3QPYmOr5\",mouseOptions:{angularStiffness:0,enable:true,stiffness:.2},sleeping:false,style:{height:\"100%\",width:\"100%\"},wallOptions:{bottom:true,left:true,right:true,top:true},width:\"100%\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jy2bkb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"CZAcZNiwu-container\",nodeId:\"CZAcZNiwu\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"CZAcZNiwu\",layoutId:\"CZAcZNiwu\",variant:\"dTnugu0Zu\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p7adob-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LwRBiEA4a-container\",nodeId:\"LwRBiEA4a\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"LwRBiEA4a\",layoutId:\"LwRBiEA4a\",variant:\"Oz0nvn5Oz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bribnb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"uYk66v4RB-container\",nodeId:\"uYk66v4RB\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"uYk66v4RB\",layoutId:\"uYk66v4RB\",variant:\"A_x4D6krf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yqz3fm-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"db84uNsRH-container\",nodeId:\"db84uNsRH\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"db84uNsRH\",layoutId:\"db84uNsRH\",variant:\"n7VbRaspn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15ieeg3-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ho45r2Zai-container\",nodeId:\"Ho45r2Zai\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"Ho45r2Zai\",layoutId:\"Ho45r2Zai\",variant:\"NJPJDD0Vk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rvdi9q-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q51OdGPUo-container\",nodeId:\"Q51OdGPUo\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"Q51OdGPUo\",layoutId:\"Q51OdGPUo\",variant:\"pfOxZdZGO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13pa5z2-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jHD6p4DVh-container\",nodeId:\"jHD6p4DVh\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"jHD6p4DVh\",layoutId:\"jHD6p4DVh\",variant:\"dETDNRHTY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-168gdyw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"IJ_HNncXp-container\",nodeId:\"IJ_HNncXp\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"IJ_HNncXp\",layoutId:\"IJ_HNncXp\",variant:\"gtsSNnZUB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vclipl-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"RJCvufcy9-container\",nodeId:\"RJCvufcy9\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"RJCvufcy9\",layoutId:\"RJCvufcy9\",variant:\"cCTr_1LOU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-191p733-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"dhKPS0hBX-container\",nodeId:\"dhKPS0hBX\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"dhKPS0hBX\",layoutId:\"dhKPS0hBX\",variant:\"TtVG1Pbx5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q9waa1-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GUi0e7jkD-container\",nodeId:\"GUi0e7jkD\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"GUi0e7jkD\",layoutId:\"GUi0e7jkD\",variant:\"mYnQ45VW1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yfisuv-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"lf6bLvC0E-container\",nodeId:\"lf6bLvC0E\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"lf6bLvC0E\",layoutId:\"lf6bLvC0E\",variant:\"osXsMuK7N\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kunsob-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pEXjwpQ8N-container\",nodeId:\"pEXjwpQ8N\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"pEXjwpQ8N\",layoutId:\"pEXjwpQ8N\",variant:\"cJMKacz0Y\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1knrx81-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"U8OpDOm0i-container\",nodeId:\"U8OpDOm0i\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"U8OpDOm0i\",layoutId:\"U8OpDOm0i\",variant:\"FW6FKOhDL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kjeyqn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vOXOw2uCX-container\",nodeId:\"vOXOw2uCX\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"vOXOw2uCX\",layoutId:\"vOXOw2uCX\",variant:\"x42aS2tR3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fm4awo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GDhBJmU1E-container\",nodeId:\"GDhBJmU1E\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"GDhBJmU1E\",layoutId:\"GDhBJmU1E\",variant:\"xvn8WY6nV\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nz9j2v-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"P5APHPiXc-container\",nodeId:\"P5APHPiXc\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"P5APHPiXc\",layoutId:\"P5APHPiXc\",variant:\"wEy_23n43\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ur2ycp-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QrGKdqdlz-container\",nodeId:\"QrGKdqdlz\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"QrGKdqdlz\",layoutId:\"QrGKdqdlz\",variant:\"XLjvyh6lI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kw8rgb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jQSRbeGZq-container\",nodeId:\"jQSRbeGZq\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"jQSRbeGZq\",layoutId:\"jQSRbeGZq\",variant:\"mPnhKw05W\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jcky0p-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"c2q4Qiy2Q-container\",nodeId:\"c2q4Qiy2Q\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"c2q4Qiy2Q\",layoutId:\"c2q4Qiy2Q\",variant:\"DO9heuGZg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12504bw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Dp44kYn4j-container\",nodeId:\"Dp44kYn4j\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"Dp44kYn4j\",layoutId:\"Dp44kYn4j\",variant:\"n4bdhc7FW\",width:\"100%\"})})})]})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jmryag-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"bmbxzuQ5t-container\",nodeId:\"bmbxzuQ5t\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsxs(Physics,{densityOptions:{density:.001,enable:true},friction:{friction:.1,frictionAir:.01},gravX:0,gravY:5,height:\"100%\",id:\"bmbxzuQ5t\",layoutId:\"bmbxzuQ5t\",mouseOptions:{angularStiffness:0,enable:true,stiffness:.2},sleeping:false,style:{height:\"100%\",width:\"100%\"},wallOptions:{bottom:true,left:true,right:true,top:true},width:\"100%\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jy2bkb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"CZAcZNiwu-container\",nodeId:\"CZAcZNiwu\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"CZAcZNiwu\",layoutId:\"CZAcZNiwu\",variant:\"dTnugu0Zu\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bribnb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"uYk66v4RB-container\",nodeId:\"uYk66v4RB\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"uYk66v4RB\",layoutId:\"uYk66v4RB\",variant:\"A_x4D6krf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vclipl-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"RJCvufcy9-container\",nodeId:\"RJCvufcy9\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"RJCvufcy9\",layoutId:\"RJCvufcy9\",variant:\"cCTr_1LOU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-191p733-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"dhKPS0hBX-container\",nodeId:\"dhKPS0hBX\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"dhKPS0hBX\",layoutId:\"dhKPS0hBX\",variant:\"TtVG1Pbx5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q9waa1-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GUi0e7jkD-container\",nodeId:\"GUi0e7jkD\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"GUi0e7jkD\",layoutId:\"GUi0e7jkD\",variant:\"mYnQ45VW1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yfisuv-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"lf6bLvC0E-container\",nodeId:\"lf6bLvC0E\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"lf6bLvC0E\",layoutId:\"lf6bLvC0E\",variant:\"osXsMuK7N\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1knrx81-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"U8OpDOm0i-container\",nodeId:\"U8OpDOm0i\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"U8OpDOm0i\",layoutId:\"U8OpDOm0i\",variant:\"FW6FKOhDL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kjeyqn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vOXOw2uCX-container\",nodeId:\"vOXOw2uCX\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"vOXOw2uCX\",layoutId:\"vOXOw2uCX\",variant:\"x42aS2tR3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fm4awo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GDhBJmU1E-container\",nodeId:\"GDhBJmU1E\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"GDhBJmU1E\",layoutId:\"GDhBJmU1E\",variant:\"xvn8WY6nV\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nz9j2v-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"P5APHPiXc-container\",nodeId:\"P5APHPiXc\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"P5APHPiXc\",layoutId:\"P5APHPiXc\",variant:\"wEy_23n43\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ur2ycp-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QrGKdqdlz-container\",nodeId:\"QrGKdqdlz\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"QrGKdqdlz\",layoutId:\"QrGKdqdlz\",variant:\"XLjvyh6lI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kw8rgb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jQSRbeGZq-container\",nodeId:\"jQSRbeGZq\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"jQSRbeGZq\",layoutId:\"jQSRbeGZq\",variant:\"mPnhKw05W\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jcky0p-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"c2q4Qiy2Q-container\",nodeId:\"c2q4Qiy2Q\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"c2q4Qiy2Q\",layoutId:\"c2q4Qiy2Q\",variant:\"DO9heuGZg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12504bw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Dp44kYn4j-container\",nodeId:\"Dp44kYn4j\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"Dp44kYn4j\",layoutId:\"Dp44kYn4j\",variant:\"n4bdhc7FW\",width:\"100%\"})})})]})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ifswp4-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"lZ9pDUf0Q-container\",nodeId:\"lZ9pDUf0Q\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsxs(Physics,{densityOptions:{density:.001,enable:true},friction:{friction:.1,frictionAir:.01},gravX:0,gravY:5,height:\"100%\",id:\"lZ9pDUf0Q\",layoutId:\"lZ9pDUf0Q\",mouseOptions:{angularStiffness:0,enable:true,stiffness:.2},sleeping:false,style:{height:\"100%\",width:\"100%\"},wallOptions:{bottom:true,left:true,right:true,top:true},width:\"100%\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jy2bkb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"CZAcZNiwu-container\",nodeId:\"CZAcZNiwu\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"CZAcZNiwu\",layoutId:\"CZAcZNiwu\",variant:\"dTnugu0Zu\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p7adob-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LwRBiEA4a-container\",nodeId:\"LwRBiEA4a\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"LwRBiEA4a\",layoutId:\"LwRBiEA4a\",variant:\"Oz0nvn5Oz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bribnb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"uYk66v4RB-container\",nodeId:\"uYk66v4RB\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"uYk66v4RB\",layoutId:\"uYk66v4RB\",variant:\"A_x4D6krf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rvdi9q-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q51OdGPUo-container\",nodeId:\"Q51OdGPUo\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"Q51OdGPUo\",layoutId:\"Q51OdGPUo\",variant:\"pfOxZdZGO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13pa5z2-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jHD6p4DVh-container\",nodeId:\"jHD6p4DVh\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"jHD6p4DVh\",layoutId:\"jHD6p4DVh\",variant:\"dETDNRHTY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vclipl-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"RJCvufcy9-container\",nodeId:\"RJCvufcy9\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"RJCvufcy9\",layoutId:\"RJCvufcy9\",variant:\"cCTr_1LOU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q9waa1-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GUi0e7jkD-container\",nodeId:\"GUi0e7jkD\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"GUi0e7jkD\",layoutId:\"GUi0e7jkD\",variant:\"mYnQ45VW1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kunsob-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pEXjwpQ8N-container\",nodeId:\"pEXjwpQ8N\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"pEXjwpQ8N\",layoutId:\"pEXjwpQ8N\",variant:\"cJMKacz0Y\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1knrx81-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"U8OpDOm0i-container\",nodeId:\"U8OpDOm0i\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"U8OpDOm0i\",layoutId:\"U8OpDOm0i\",variant:\"FW6FKOhDL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kjeyqn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vOXOw2uCX-container\",nodeId:\"vOXOw2uCX\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"vOXOw2uCX\",layoutId:\"vOXOw2uCX\",variant:\"x42aS2tR3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nz9j2v-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"P5APHPiXc-container\",nodeId:\"P5APHPiXc\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"P5APHPiXc\",layoutId:\"P5APHPiXc\",variant:\"wEy_23n43\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ur2ycp-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QrGKdqdlz-container\",nodeId:\"QrGKdqdlz\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"QrGKdqdlz\",layoutId:\"QrGKdqdlz\",variant:\"XLjvyh6lI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kw8rgb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jQSRbeGZq-container\",nodeId:\"jQSRbeGZq\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"jQSRbeGZq\",layoutId:\"jQSRbeGZq\",variant:\"mPnhKw05W\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jcky0p-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"c2q4Qiy2Q-container\",nodeId:\"c2q4Qiy2Q\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"c2q4Qiy2Q\",layoutId:\"c2q4Qiy2Q\",variant:\"DO9heuGZg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12504bw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Dp44kYn4j-container\",nodeId:\"Dp44kYn4j\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"Dp44kYn4j\",layoutId:\"Dp44kYn4j\",variant:\"n4bdhc7FW\",width:\"100%\"})})})]})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mc8c22-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"MbAbzJArw-container\",nodeId:\"MbAbzJArw\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsxs(Physics,{densityOptions:{density:.001,enable:true},friction:{friction:.1,frictionAir:.01},gravX:0,gravY:5,height:\"100%\",id:\"MbAbzJArw\",layoutId:\"MbAbzJArw\",mouseOptions:{angularStiffness:0,enable:true,stiffness:.2},sleeping:false,style:{height:\"100%\",width:\"100%\"},wallOptions:{bottom:true,left:true,right:true,top:true},width:\"100%\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rvdi9q-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q51OdGPUo-container\",nodeId:\"Q51OdGPUo\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"Q51OdGPUo\",layoutId:\"Q51OdGPUo\",variant:\"pfOxZdZGO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13pa5z2-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jHD6p4DVh-container\",nodeId:\"jHD6p4DVh\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"jHD6p4DVh\",layoutId:\"jHD6p4DVh\",variant:\"dETDNRHTY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kunsob-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pEXjwpQ8N-container\",nodeId:\"pEXjwpQ8N\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"pEXjwpQ8N\",layoutId:\"pEXjwpQ8N\",variant:\"cJMKacz0Y\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1knrx81-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"U8OpDOm0i-container\",nodeId:\"U8OpDOm0i\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"U8OpDOm0i\",layoutId:\"U8OpDOm0i\",variant:\"FW6FKOhDL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kjeyqn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vOXOw2uCX-container\",nodeId:\"vOXOw2uCX\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"vOXOw2uCX\",layoutId:\"vOXOw2uCX\",variant:\"x42aS2tR3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nz9j2v-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"P5APHPiXc-container\",nodeId:\"P5APHPiXc\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"P5APHPiXc\",layoutId:\"P5APHPiXc\",variant:\"wEy_23n43\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kw8rgb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jQSRbeGZq-container\",nodeId:\"jQSRbeGZq\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"jQSRbeGZq\",layoutId:\"jQSRbeGZq\",variant:\"mPnhKw05W\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12504bw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Dp44kYn4j-container\",nodeId:\"Dp44kYn4j\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"Dp44kYn4j\",layoutId:\"Dp44kYn4j\",variant:\"n4bdhc7FW\",width:\"100%\"})})})]})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c6gxzv-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"ZXKJ2VIyf-container\",nodeId:\"ZXKJ2VIyf\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsxs(Physics,{densityOptions:{density:.001,enable:true},friction:{friction:.1,frictionAir:.01},gravX:0,gravY:5,height:\"100%\",id:\"ZXKJ2VIyf\",layoutId:\"ZXKJ2VIyf\",mouseOptions:{angularStiffness:0,enable:true,stiffness:.2},sleeping:false,style:{height:\"100%\",width:\"100%\"},wallOptions:{bottom:true,left:true,right:true,top:true},width:\"100%\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rvdi9q-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q51OdGPUo-container\",nodeId:\"Q51OdGPUo\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"Q51OdGPUo\",layoutId:\"Q51OdGPUo\",variant:\"pfOxZdZGO\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1knrx81-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"U8OpDOm0i-container\",nodeId:\"U8OpDOm0i\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"U8OpDOm0i\",layoutId:\"U8OpDOm0i\",variant:\"FW6FKOhDL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kjeyqn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vOXOw2uCX-container\",nodeId:\"vOXOw2uCX\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"vOXOw2uCX\",layoutId:\"vOXOw2uCX\",variant:\"x42aS2tR3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nz9j2v-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"P5APHPiXc-container\",nodeId:\"P5APHPiXc\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"P5APHPiXc\",layoutId:\"P5APHPiXc\",variant:\"wEy_23n43\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kw8rgb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jQSRbeGZq-container\",nodeId:\"jQSRbeGZq\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"jQSRbeGZq\",layoutId:\"jQSRbeGZq\",variant:\"mPnhKw05W\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12504bw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Dp44kYn4j-container\",nodeId:\"Dp44kYn4j\",rendersWithMotion:true,scopeId:\"niUZQEQ1G\",children:/*#__PURE__*/_jsx(Shapes,{height:\"100%\",id:\"Dp44kYn4j\",layoutId:\"Dp44kYn4j\",variant:\"n4bdhc7FW\",width:\"100%\"})})})]})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-abwYV.framer-1tlzzso, .framer-abwYV .framer-1tlzzso { display: block; }\",\".framer-abwYV.framer-wh7qo5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 560px; justify-content: center; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 1396px; }\",\".framer-abwYV .framer-eq06dn { bottom: 0px; flex: none; height: 280px; left: 0px; overflow: hidden; position: absolute; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-abwYV .framer-15whe1i { flex: none; height: 560px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-abwYV .framer-1pzj0xk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-abwYV .framer-uo77ps { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-abwYV .framer-o5l2wp, .framer-abwYV .framer-vumo2p { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-abwYV .framer-j7a1ic { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: min-content; }\",\".framer-abwYV .framer-132pvlr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-abwYV .framer-13fvb8j-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-abwYV .framer-4opfpq { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-abwYV .framer-qcrzo-container, .framer-abwYV .framer-1jmryag-container, .framer-abwYV .framer-ifswp4-container, .framer-abwYV .framer-mc8c22-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-abwYV .framer-jy2bkb-container, .framer-abwYV .framer-p7adob-container, .framer-abwYV .framer-bribnb-container, .framer-abwYV .framer-yqz3fm-container, .framer-abwYV .framer-15ieeg3-container, .framer-abwYV .framer-rvdi9q-container, .framer-abwYV .framer-13pa5z2-container, .framer-abwYV .framer-168gdyw-container, .framer-abwYV .framer-1vclipl-container, .framer-abwYV .framer-191p733-container, .framer-abwYV .framer-q9waa1-container, .framer-abwYV .framer-yfisuv-container, .framer-abwYV .framer-1kunsob-container, .framer-abwYV .framer-1knrx81-container, .framer-abwYV .framer-1kjeyqn-container, .framer-abwYV .framer-1fm4awo-container, .framer-abwYV .framer-1nz9j2v-container, .framer-abwYV .framer-1ur2ycp-container, .framer-abwYV .framer-1kw8rgb-container, .framer-abwYV .framer-jcky0p-container, .framer-abwYV .framer-12504bw-container { height: auto; position: relative; width: auto; }\",\".framer-abwYV .framer-c6gxzv-container { flex: none; height: 480px; left: 0px; position: absolute; top: 0px; width: 359px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-abwYV.framer-wh7qo5, .framer-abwYV .framer-1pzj0xk, .framer-abwYV .framer-uo77ps, .framer-abwYV .framer-j7a1ic, .framer-abwYV .framer-132pvlr { gap: 0px; } .framer-abwYV.framer-wh7qo5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-abwYV.framer-wh7qo5 > :first-child, .framer-abwYV .framer-1pzj0xk > :first-child, .framer-abwYV .framer-uo77ps > :first-child, .framer-abwYV .framer-j7a1ic > :first-child { margin-top: 0px; } .framer-abwYV.framer-wh7qo5 > :last-child, .framer-abwYV .framer-1pzj0xk > :last-child, .framer-abwYV .framer-uo77ps > :last-child, .framer-abwYV .framer-j7a1ic > :last-child { margin-bottom: 0px; } .framer-abwYV .framer-1pzj0xk > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-abwYV .framer-uo77ps > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-abwYV .framer-j7a1ic > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-abwYV .framer-132pvlr > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-abwYV .framer-132pvlr > :first-child { margin-left: 0px; } .framer-abwYV .framer-132pvlr > :last-child { margin-right: 0px; } }\",\".framer-abwYV.framer-v-wyaawr.framer-wh7qo5 { height: min-content; width: 1164px; }\",\".framer-abwYV.framer-v-wyaawr .framer-15whe1i { height: 450px; }\",\".framer-abwYV.framer-v-2cagof.framer-wh7qo5 { height: min-content; width: 993px; }\",\".framer-abwYV.framer-v-2cagof .framer-15whe1i { height: 420px; }\",\".framer-abwYV.framer-v-2cagof .framer-13fvb8j-container, .framer-abwYV.framer-v-1vzeera .framer-13fvb8j-container { height: 42px; }\",\".framer-abwYV.framer-v-2cagof .framer-4opfpq, .framer-abwYV.framer-v-1vzeera .framer-4opfpq { align-self: unset; white-space: pre; }\",\".framer-abwYV.framer-v-1vzeera.framer-wh7qo5 { height: min-content; padding: 0px 40px 0px 40px; width: 786px; }\",\".framer-abwYV.framer-v-1vzeera .framer-eq06dn { height: 200px; }\",\".framer-abwYV.framer-v-1vzeera .framer-15whe1i { height: 350px; }\",\".framer-abwYV.framer-v-xreh7h.framer-wh7qo5 { height: min-content; padding: 0px 20px 24px 20px; width: 359px; }\",\".framer-abwYV.framer-v-xreh7h .framer-15whe1i { height: 380px; }\",\".framer-abwYV.framer-v-xreh7h .framer-1pzj0xk { gap: 24px; width: 100%; }\",\".framer-abwYV.framer-v-xreh7h .framer-uo77ps, .framer-abwYV.framer-v-xreh7h .framer-j7a1ic { width: 100%; }\",\".framer-abwYV.framer-v-xreh7h .framer-o5l2wp { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-abwYV.framer-v-xreh7h .framer-vumo2p { white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-abwYV.framer-v-xreh7h .framer-4opfpq { align-self: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-abwYV.framer-v-xreh7h .framer-1pzj0xk { gap: 0px; } .framer-abwYV.framer-v-xreh7h .framer-1pzj0xk > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-abwYV.framer-v-xreh7h .framer-1pzj0xk > :first-child { margin-top: 0px; } .framer-abwYV.framer-v-xreh7h .framer-1pzj0xk > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 560\n * @framerIntrinsicWidth 1396\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"G4UZvj6IY\":{\"layout\":[\"fixed\",\"auto\"]},\"qFxkpNjzd\":{\"layout\":[\"fixed\",\"auto\"]},\"D5MKPxl_w\":{\"layout\":[\"fixed\",\"auto\"]},\"nIG1w0FWX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerniUZQEQ1G=withCSS(Component,css,\"framer-abwYV\");export default FramerniUZQEQ1G;FramerniUZQEQ1G.displayName=\"Call to action Banner\";FramerniUZQEQ1G.defaultProps={height:560,width:1396};addPropertyControls(FramerniUZQEQ1G,{variant:{options:[\"N1HWHJbxD\",\"G4UZvj6IY\",\"qFxkpNjzd\",\"D5MKPxl_w\",\"nIG1w0FWX\"],optionTitles:[\"L Desktop\",\"M Desktop\",\"S Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerniUZQEQ1G,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkmFRCEvmma-aua4.woff2\",weight:\"400\"}]},...PrimaryButtonsFonts,...ShapesFonts,...PhysicsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerniUZQEQ1G\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1396\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"560\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G4UZvj6IY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qFxkpNjzd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D5MKPxl_w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nIG1w0FWX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./niUZQEQ1G.map"],
  "mappings": "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",
  "names": ["e", "global", "t", "n", "__webpack_require__", "i", "o", "r", "a", "s", "window", "_seededRandom", "l", "chain", "c", "u", "f", "d", "p", "v", "m", "g", "x", "h", "b", "w", "_initProperties", "y", "S", "_", "A", "P", "C", "k", "M", "B", "I", "T", "R", "E", "V", "L", "_createCanvas", "loop", "_updateTiming", "_getPixelRatio", "_applyBackground", "_mean", "_getTexture", "O", "D", "F", "H", "j", "W", "G", "N", "U", "z", "X", "Q", "Y", "Z", "$", "J", "render", "addPoint", "addSegmentPoint", "opts", "makeWalls", "conainerBounding", "engine", "wallOptions", "Bodies", "n", "bottom", "top", "wLeft", "wRight", "makeBodies", "container", "world", "elements", "frictionOpts", "densityOpts", "conainerBounding", "stack", "n", "xx", "yy", "i", "x", "y", "width", "height", "maxLeft", "maxTop", "tLeft", "tTop", "Physics", "props", "_props_children", "isVisible", "setIsVisible", "e", "engine", "setEngine", "containerRef", "observerRef", "entries", "entry", "newEngine", "n", "containerBounding", "makeWalls", "render", "mouseConstraint", "mouse", "stack", "makeBodies", "update", "block", "i", "el", "x", "y", "p", "containerStyle", "bodyStyle", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "isDisplayed20", "isDisplayed21", "isDisplayed22", "isDisplayed23", "isDisplayed24", "isDisplayed25", "isDisplayed26", "isDisplayed27", "isDisplayed28", "isDisplayed29", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramertqqsK7FPC", "withCSS", "tqqsK7FPC_default", "addPropertyControls", "ControlType", "addFonts", "PrimaryButtonsFonts", "getFonts", "KtaQZsULF_default", "ShapesFonts", "tqqsK7FPC_default", "PhysicsFonts", "Physics", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerniUZQEQ1G", "withCSS", "niUZQEQ1G_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
