lepu-test-platform-web/node_modules/escope/powered-test/es6-destructuring-assignmen...

504 lines
115 KiB
JavaScript
Raw Normal View History

(function() {
var escope, expect, harmony;
expect = require('chai').expect;
harmony = require('../third_party/esprima');
escope = require('..');
describe('ES6 destructuring assignments', function() {
it('Pattern in var in ForInStatement', function() {
var ast, globalScope, scope, scopeManager;
ast = harmony.parse("(function () {\n for (var [a, b, c] in array);\n}());");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(0);
expect(scope.implicit.left).to.have.length(1);
expect(scope.implicit.left[0].identifier.name).to.be.equal('array');
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(4);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.variables[1].name).to.be.equal('a');
expect(scope.variables[2].name).to.be.equal('b');
expect(scope.variables[3].name).to.be.equal('c');
expect(scope.references).to.have.length(4);
expect(scope.references[0].identifier.name).to.be.equal('a');
expect(scope.references[0].isWrite()).to.be["true"];
expect(scope.references[0].partial).to.be["true"];
expect(scope.references[0].resolved).to.be.equal(scope.variables[1]);
expect(scope.references[1].identifier.name).to.be.equal('b');
expect(scope.references[1].isWrite()).to.be["true"];
expect(scope.references[1].partial).to.be["true"];
expect(scope.references[1].resolved).to.be.equal(scope.variables[2]);
expect(scope.references[2].identifier.name).to.be.equal('c');
expect(scope.references[2].isWrite()).to.be["true"];
expect(scope.references[2].partial).to.be["true"];
expect(scope.references[2].resolved).to.be.equal(scope.variables[3]);
expect(scope.references[3].identifier.name).to.be.equal('array');
return expect(scope.references[3].isWrite()).to.be["false"];
});
it('ArrayPattern in var', function() {
var ast, globalScope, scope, scopeManager;
ast = harmony.parse("(function () {\n var [a, b, c] = array;\n}());");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(0);
expect(scope.implicit.left).to.have.length(1);
expect(scope.implicit.left[0].identifier.name).to.be.equal('array');
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(4);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.variables[1].name).to.be.equal('a');
expect(scope.variables[2].name).to.be.equal('b');
expect(scope.variables[3].name).to.be.equal('c');
expect(scope.references).to.have.length(4);
expect(scope.references[0].identifier.name).to.be.equal('a');
expect(scope.references[0].isWrite()).to.be["true"];
expect(scope.references[0].partial).to.be["true"];
expect(scope.references[0].resolved).to.be.equal(scope.variables[1]);
expect(scope.references[1].identifier.name).to.be.equal('b');
expect(scope.references[1].isWrite()).to.be["true"];
expect(scope.references[1].partial).to.be["true"];
expect(scope.references[1].resolved).to.be.equal(scope.variables[2]);
expect(scope.references[2].identifier.name).to.be.equal('c');
expect(scope.references[2].isWrite()).to.be["true"];
expect(scope.references[2].partial).to.be["true"];
expect(scope.references[2].resolved).to.be.equal(scope.variables[3]);
expect(scope.references[3].identifier.name).to.be.equal('array');
return expect(scope.references[3].isWrite()).to.be["false"];
});
it('SpreadElement in var', function() {
var ast, globalScope, index, name, scope, scopeManager, _i, _j, _len, _len1, _ref, _ref1;
ast = harmony.parse("(function () {\n var [a, b, ...rest] = array;\n}());");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(0);
expect(scope.implicit.left).to.have.length(1);
expect(scope.implicit.left[0].identifier.name).to.be.equal('array');
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(4);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.variables[1].name).to.be.equal('a');
expect(scope.variables[2].name).to.be.equal('b');
expect(scope.variables[3].name).to.be.equal('rest');
expect(scope.references).to.have.length(4);
expect(scope.references[0].identifier.name).to.be.equal('a');
expect(scope.references[0].isWrite()).to.be["true"];
expect(scope.references[0].partial).to.be["true"];
expect(scope.references[0].resolved).to.be.equal(scope.variables[1]);
expect(scope.references[1].identifier.name).to.be.equal('b');
expect(scope.references[1].isWrite()).to.be["true"];
expect(scope.references[1].partial).to.be["true"];
expect(scope.references[1].resolved).to.be.equal(scope.variables[2]);
expect(scope.references[2].identifier.name).to.be.equal('rest');
expect(scope.references[2].isWrite()).to.be["true"];
expect(scope.references[2].partial).to.be["true"];
expect(scope.references[2].resolved).to.be.equal(scope.variables[3]);
expect(scope.references[3].identifier.name).to.be.equal('array');
expect(scope.references[3].isWrite()).to.be["false"];
ast = harmony.parse("(function () {\n var [a, b, ...[c, d, ...rest]] = array;\n}());");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(0);
expect(scope.implicit.left).to.have.length(1);
expect(scope.implicit.left[0].identifier.name).to.be.equal('array');
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(6);
_ref = ['arguments', 'a', 'b', 'c', 'd', 'rest'];
for (index = _i = 0, _len = _ref.length; _i < _len; index = ++_i) {
name = _ref[index];
expect(scope.variables[index].name).to.be.equal(name);
}
expect(scope.references).to.have.length(6);
_ref1 = ['a', 'b', 'c', 'd', 'rest'];
for (index = _j = 0, _len1 = _ref1.length; _j < _len1; index = ++_j) {
name = _ref1[index];
expect(scope.references[index].identifier.name).to.be.equal(name);
expect(scope.references[index].isWrite()).to.be["true"];
expect(scope.references[index].partial).to.be["true"];
}
expect(scope.references[5].identifier.name).to.be.equal('array');
return expect(scope.references[5].isWrite()).to.be["false"];
});
it('ObjectPattern in var', function() {
var ast, globalScope, scope, scopeManager;
ast = harmony.parse("(function () {\n var {\n shorthand,\n key: value,\n hello: {\n world\n }\n } = object;\n}());");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(0);
expect(scope.implicit.left).to.have.length(1);
expect(scope.implicit.left[0].identifier.name).to.be.equal('object');
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(4);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.variables[1].name).to.be.equal('shorthand');
expect(scope.variables[2].name).to.be.equal('value');
expect(scope.variables[3].name).to.be.equal('world');
expect(scope.references).to.have.length(4);
expect(scope.references[0].identifier.name).to.be.equal('shorthand');
expect(scope.references[0].isWrite()).to.be["true"];
expect(scope.references[0].partial).to.be["true"];
expect(scope.references[0].resolved).to.be.equal(scope.variables[1]);
expect(scope.references[1].identifier.name).to.be.equal('value');
expect(scope.references[1].isWrite()).to.be["true"];
expect(scope.references[1].partial).to.be["true"];
expect(scope.references[1].resolved).to.be.equal(scope.variables[2]);
expect(scope.references[2].identifier.name).to.be.equal('world');
expect(scope.references[2].isWrite()).to.be["true"];
expect(scope.references[2].partial).to.be["true"];
expect(scope.references[2].resolved).to.be.equal(scope.variables[3]);
expect(scope.references[3].identifier.name).to.be.equal('object');
return expect(scope.references[3].isWrite()).to.be["false"];
});
it('complex pattern in var', function() {
var ast, globalScope, index, name, scope, scopeManager, _i, _j, _len, _len1, _ref, _ref1;
ast = harmony.parse("(function () {\n var {\n shorthand,\n key: [ a, b, c, d, e ],\n hello: {\n world\n }\n } = object;\n}());");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(0);
expect(scope.implicit.left).to.have.length(1);
expect(scope.implicit.left[0].identifier.name).to.be.equal('object');
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(8);
_ref = ['arguments', 'shorthand', 'a', 'b', 'c', 'd', 'e', 'world'];
for (index = _i = 0, _len = _ref.length; _i < _len; index = ++_i) {
name = _ref[index];
expect(scope.variables[index].name).to.be.equal(name);
}
expect(scope.references).to.have.length(8);
_ref1 = ['shorthand', 'a', 'b', 'c', 'd', 'e', 'world'];
for (index = _j = 0, _len1 = _ref1.length; _j < _len1; index = ++_j) {
name = _ref1[index];
expect(scope.references[index].identifier.name).to.be.equal(name);
expect(scope.references[index].isWrite()).to.be["true"];
expect(scope.references[index].partial).to.be["true"];
}
expect(scope.references[7].identifier.name).to.be.equal('object');
return expect(scope.references[7].isWrite()).to.be["false"];
});
it('ArrayPattern in AssignmentExpression', function() {
var ast, globalScope, scope, scopeManager;
ast = harmony.parse("(function () {\n [a, b, c] = array;\n}());");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(0);
expect(scope.implicit.left).to.have.length(4);
expect(scope.implicit.left.map((function(_this) {
return function(ref) {
return ref.identifier.name;
};
})(this))).to.deep.equal(['a', 'b', 'c', 'array']);
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(1);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.references).to.have.length(4);
expect(scope.references[0].identifier.name).to.be.equal('a');
expect(scope.references[0].isWrite()).to.be["true"];
expect(scope.references[0].partial).to.be["true"];
expect(scope.references[0].resolved).to.be["null"];
expect(scope.references[1].identifier.name).to.be.equal('b');
expect(scope.references[1].isWrite()).to.be["true"];
expect(scope.references[1].partial).to.be["true"];
expect(scope.references[1].resolved).to.be["null"];
expect(scope.references[2].identifier.name).to.be.equal('c');
expect(scope.references[2].isWrite()).to.be["true"];
expect(scope.references[2].partial).to.be["true"];
expect(scope.references[2].resolved).to.be["null"];
expect(scope.references[3].identifier.name).to.be.equal('array');
return expect(scope.references[3].isWrite()).to.be["false"];
});
it('SpreadElement in AssignmentExpression', function() {
var ast, globalScope, index, name, scope, scopeManager, _i, _len, _ref;
ast = harmony.parse("(function () {\n [a, b, ...rest] = array;\n}());");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(0);
expect(scope.implicit.left).to.have.length(4);
expect(scope.implicit.left.map((function(_this) {
return function(ref) {
return ref.identifier.name;
};
})(this))).to.deep.equal(['a', 'b', 'rest', 'array']);
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(1);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.references).to.have.length(4);
expect(scope.references[0].identifier.name).to.be.equal('a');
expect(scope.references[0].isWrite()).to.be["true"];
expect(scope.references[0].partial).to.be["true"];
expect(scope.references[0].resolved).to.be["null"];
expect(scope.references[1].identifier.name).to.be.equal('b');
expect(scope.references[1].isWrite()).to.be["true"];
expect(scope.references[1].partial).to.be["true"];
expect(scope.references[1].resolved).to.be["null"];
expect(scope.references[2].identifier.name).to.be.equal('rest');
expect(scope.references[2].isWrite()).to.be["true"];
expect(scope.references[2].partial).to.be["true"];
expect(scope.references[2].resolved).to.be["null"];
expect(scope.references[3].identifier.name).to.be.equal('array');
expect(scope.references[3].isWrite()).to.be["false"];
ast = harmony.parse("(function () {\n [a, b, ...[c, d, ...rest]] = array;\n}());");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(0);
expect(scope.implicit.left).to.have.length(6);
expect(scope.implicit.left.map((function(_this) {
return function(ref) {
return ref.identifier.name;
};
})(this))).to.deep.equal(['a', 'b', 'c', 'd', 'rest', 'array']);
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(1);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.references).to.have.length(6);
_ref = ['a', 'b', 'c', 'd', 'rest'];
for (index = _i = 0, _len = _ref.length; _i < _len; index = ++_i) {
name = _ref[index];
expect(scope.references[index].identifier.name).to.be.equal(name);
expect(scope.references[index].isWrite()).to.be["true"];
expect(scope.references[index].partial).to.be["true"];
expect(scope.references[index].resolved).to.be["null"];
}
expect(scope.references[5].identifier.name).to.be.equal('array');
return expect(scope.references[5].isWrite()).to.be["false"];
});
it('ObjectPattern in AssignmentExpression', function() {
var ast, globalScope, scope, scopeManager;
ast = harmony.parse("(function () {\n ({\n shorthand,\n key: value,\n hello: {\n world\n }\n }) = object;\n}());");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(0);
expect(scope.implicit.left).to.have.length(4);
expect(scope.implicit.left.map((function(_this) {
return function(ref) {
return ref.identifier.name;
};
})(this))).to.deep.equal(['shorthand', 'value', 'world', 'object']);
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(1);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.references).to.have.length(4);
expect(scope.references[0].identifier.name).to.be.equal('shorthand');
expect(scope.references[0].isWrite()).to.be["true"];
expect(scope.references[0].partial).to.be["true"];
expect(scope.references[0].resolved).to["null"];
expect(scope.references[1].identifier.name).to.be.equal('value');
expect(scope.references[1].isWrite()).to.be["true"];
expect(scope.references[1].partial).to.be["true"];
expect(scope.references[1].resolved).to["null"];
expect(scope.references[2].identifier.name).to.be.equal('world');
expect(scope.references[2].isWrite()).to.be["true"];
expect(scope.references[2].partial).to.be["true"];
expect(scope.references[2].resolved).to["null"];
expect(scope.references[3].identifier.name).to.be.equal('object');
return expect(scope.references[3].isWrite()).to.be["false"];
});
it('complex pattern in AssignmentExpression', function() {
var ast, globalScope, index, name, scope, scopeManager, _i, _len, _ref;
ast = harmony.parse("(function () {\n ({\n shorthand,\n key: [ a, b, c, d, e ],\n hello: {\n world\n }\n }) = object;\n}());");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(0);
expect(scope.implicit.left).to.have.length(8);
expect(scope.implicit.left.map((function(_this) {
return function(ref) {
return ref.identifier.name;
};
})(this))).to.deep.equal(['shorthand', 'a', 'b', 'c', 'd', 'e', 'world', 'object']);
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(1);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.references).to.have.length(8);
_ref = ['shorthand', 'a', 'b', 'c', 'd', 'e', 'world'];
for (index = _i = 0, _len = _ref.length; _i < _len; index = ++_i) {
name = _ref[index];
expect(scope.references[index].identifier.name).to.be.equal(name);
expect(scope.references[index].isWrite()).to.be["true"];
expect(scope.references[index].partial).to.be["true"];
}
expect(scope.references[7].identifier.name).to.be.equal('object');
return expect(scope.references[7].isWrite()).to.be["false"];
});
it('ArrayPattern in parameters', function() {
var ast, globalScope, scope, scopeManager;
ast = harmony.parse("(function ([a, b, c]) {\n}(array));");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(1);
expect(scope.references[0].identifier.name).to.be.equal('array');
expect(scope.implicit.left).to.have.length(1);
expect(scope.implicit.left[0].identifier.name).to.be.equal('array');
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(4);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.variables[1].name).to.be.equal('a');
expect(scope.variables[2].name).to.be.equal('b');
expect(scope.variables[3].name).to.be.equal('c');
return expect(scope.references).to.have.length(0);
});
it('SpreadElement in parameters', function() {
var ast, globalScope, scope, scopeManager;
ast = harmony.parse("(function ([a, b, ...rest], ...rest2) {\n}(array));");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(1);
expect(scope.references[0].identifier.name).to.be.equal('array');
expect(scope.implicit.left).to.have.length(1);
expect(scope.implicit.left[0].identifier.name).to.be.equal('array');
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(5);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.variables[1].name).to.be.equal('a');
expect(scope.variables[2].name).to.be.equal('b');
expect(scope.variables[3].name).to.be.equal('rest');
expect(scope.variables[3].defs[0].rest).to.be["false"];
expect(scope.variables[4].name).to.be.equal('rest2');
expect(scope.variables[4].defs[0].rest).to.be["true"];
return expect(scope.references).to.have.length(0);
});
it('ObjectPattern in parameters', function() {
var ast, globalScope, scope, scopeManager;
ast = harmony.parse("(function ({\n shorthand,\n key: value,\n hello: {\n world\n }\n }) {\n}(object));");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(1);
expect(scope.references[0].identifier.name).to.be.equal('object');
expect(scope.implicit.left).to.have.length(1);
expect(scope.implicit.left[0].identifier.name).to.be.equal('object');
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(4);
expect(scope.variables[0].name).to.be.equal('arguments');
expect(scope.variables[1].name).to.be.equal('shorthand');
expect(scope.variables[2].name).to.be.equal('value');
expect(scope.variables[3].name).to.be.equal('world');
return expect(scope.references).to.have.length(0);
});
return it('complex pattern in parameters', function() {
var ast, globalScope, index, name, scope, scopeManager, _i, _len, _ref;
ast = harmony.parse("(function ({\n shorthand,\n key: [ a, b, c, d, e ],\n hello: {\n world\n }\n }) {\n}(object));");
scopeManager = escope.analyze(ast, {
ecmaVersion: 6
});
expect(scopeManager.scopes).to.have.length(2);
scope = scopeManager.scopes[0];
globalScope = scope;
expect(scope.type).to.be.equal('global');
expect(scope.variables).to.have.length(0);
expect(scope.references).to.have.length(1);
expect(scope.references[0].identifier.name).to.be.equal('object');
expect(scope.implicit.left).to.have.length(1);
expect(scope.implicit.left[0].identifier.name).to.be.equal('object');
scope = scopeManager.scopes[1];
expect(scope.type).to.be.equal('function');
expect(scope.variables).to.have.length(8);
_ref = ['arguments', 'shorthand', 'a', 'b', 'c', 'd', 'e', 'world'];
for (index = _i = 0, _len = _ref.length; _i < _len; index = ++_i) {
name = _ref[index];
expect(scope.variables[index].name).to.be.equal(name);
}
return expect(scope.references).to.have.length(0);
});
});
}).call(this);
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImVzNi1kZXN0cnVjdHVyaW5nLWFzc2lnbm1lbnRzLmNvZmZlZSJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUF1QkE7QUFBQSxNQUFBLHVCQUFBOztBQUFBLEVBQUEsTUFBQSxHQUFTLE9BQUEsQ0FBUyxNQUFULENBQWUsQ0FBQyxNQUF6QixDQUFBOztBQUFBLEVBQ0EsT0FBQSxHQUFVLE9BQUEsQ0FBUyx3QkFBVCxDQURWLENBQUE7O0FBQUEsRUFFQSxNQUFBLEdBQVMsT0FBQSxDQUFTLElBQVQsQ0FGVCxDQUFBOztBQUFBLEVBSUEsUUFBQSxDQUFVLCtCQUFWLEVBQTBDLFNBQUEsR0FBQTtBQUN0QyxJQUFBLEVBQUEsQ0FBSSxrQ0FBSixFQUF1QyxTQUFBLEdBQUE7QUFDbkMsVUFBQSxxQ0FBQTtBQUFBLE1BQUEsR0FBQSxHQUFNLE9BQU8sQ0FBQyxLQUFSLENBQWlCLDBEQUFqQixDQUFOLENBQUE7QUFBQSxNQU1BLFlBQUEsR0FBZSxNQUFNLENBQUMsT0FBUCxDQUFlLEdBQWYsRUFBb0I7QUFBQSxRQUFBLFdBQUEsRUFBYSxDQUFiO09BQXBCLENBTmYsQ0FBQTtBQUFBLE1BT0EsTUFBQSxDQUFPLFlBQVksQ0FBQyxNQUFwQixDQUEyQixDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsTUFBcEMsQ0FBMkMsQ0FBM0MsQ0FQQSxDQUFBO0FBQUEsTUFTQSxLQUFBLEdBQVEsWUFBWSxDQUFDLE1BQU8sQ0FBQSxDQUFBLENBVDVCLENBQUE7QUFBQSxNQVVBLFdBQUEsR0FBYyxLQVZkLENBQUE7QUFBQSxNQVdBLE1BQUEsQ0FBTyxLQUFLLENBQUMsSUFBYixDQUFrQixDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsS0FBekIsQ0FBZ0MsUUFBaEMsQ0FYQSxDQUFBO0FBQUEsTUFZQSxNQUFBLENBQU8sS0FBSyxDQUFDLFNBQWIsQ0FBdUIsQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLE1BQWhDLENBQXVDLENBQXZDLENBWkEsQ0FBQTtBQUFBLE1BYUEsTUFBQSxDQUFP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