easy-file-system 5.0.45 → 5.0.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/button/toggle.js +42 -164
- package/lib/constants.js +6 -6
- package/lib/customEventTypes.js +9 -9
- package/lib/div/item/entry/drag/directoryName.js +24 -122
- package/lib/div/item/entry/drag/fileName.js +15 -112
- package/lib/div/item/entry/drag.js +19 -120
- package/lib/div/item/entry/marker.js +10 -107
- package/lib/div/item/entry.js +25 -187
- package/lib/entryTypes.js +5 -5
- package/lib/example/preamble.js +2 -2
- package/lib/example/view/button.js +12 -23
- package/lib/example/view/explorer/first.js +20 -120
- package/lib/example/view/explorer/second.js +17 -117
- package/lib/example/view/rubbishBin.js +10 -88
- package/lib/example/view.js +88 -233
- package/lib/example.js +6 -6
- package/lib/explorer.js +393 -740
- package/lib/index.js +17 -17
- package/lib/item/entry/drag/directoryName.js +130 -289
- package/lib/item/entry/drag/fileName.js +61 -182
- package/lib/item/entry/drag.js +179 -375
- package/lib/item/entry/marker/directoryName.js +20 -117
- package/lib/item/entry/marker/fileName.js +21 -118
- package/lib/item/entry/marker.js +13 -110
- package/lib/item/entry.js +54 -249
- package/lib/list/entries.js +464 -808
- package/lib/mixins/dragEntryItem.js +19 -19
- package/lib/mixins/explorer.js +28 -28
- package/lib/mixins/nameSpan.js +12 -12
- package/lib/mixins/rubbishBin.js +8 -8
- package/lib/rubbishBin.js +180 -415
- package/lib/span/name.js +93 -262
- package/lib/styles.js +14 -14
- package/lib/svg/directoryName.js +31 -142
- package/lib/svg/fileName.js +32 -143
- package/lib/svg/marker.js +25 -136
- package/lib/svg/rubbishBin/closed.js +48 -163
- package/lib/svg/rubbishBin/open.js +52 -167
- package/lib/svg/toggle/down.js +29 -145
- package/lib/svg/toggle/up.js +30 -146
- package/lib/svg.js +12 -149
- package/lib/utilities/name.js +12 -12
- package/lib/utilities/path.js +5 -5
- package/lib/utilities/pathMap.js +7 -7
- package/package.json +8 -4
- package/.aiignore +0 -14
- package/.swcrc +0 -11
- package/bin/main.js +0 -15
- package/example.js +0 -41953
- package/index.html +0 -46
package/lib/item/entry.js
CHANGED
|
@@ -8,264 +8,69 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
function _assert_this_initialized(self) {
|
|
15
|
-
if (self === void 0) {
|
|
16
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17
|
-
}
|
|
18
|
-
return self;
|
|
19
|
-
}
|
|
20
|
-
function _call_super(_this, derived, args) {
|
|
21
|
-
derived = _get_prototype_of(derived);
|
|
22
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
23
|
-
}
|
|
24
|
-
function _class_call_check(instance, Constructor) {
|
|
25
|
-
if (!(instance instanceof Constructor)) {
|
|
26
|
-
throw new TypeError("Cannot call a class as a function");
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
function _construct(Parent, args, Class) {
|
|
30
|
-
if (_is_native_reflect_construct()) {
|
|
31
|
-
_construct = Reflect.construct;
|
|
32
|
-
} else {
|
|
33
|
-
_construct = function construct(Parent, args, Class) {
|
|
34
|
-
var a = [
|
|
35
|
-
null
|
|
36
|
-
];
|
|
37
|
-
a.push.apply(a, args);
|
|
38
|
-
var Constructor = Function.bind.apply(Parent, a);
|
|
39
|
-
var instance = new Constructor();
|
|
40
|
-
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
41
|
-
return instance;
|
|
42
|
-
};
|
|
43
|
-
}
|
|
44
|
-
return _construct.apply(null, arguments);
|
|
45
|
-
}
|
|
46
|
-
function _defineProperties(target, props) {
|
|
47
|
-
for(var i = 0; i < props.length; i++){
|
|
48
|
-
var descriptor = props[i];
|
|
49
|
-
descriptor.enumerable = descriptor.enumerable || false;
|
|
50
|
-
descriptor.configurable = true;
|
|
51
|
-
if ("value" in descriptor) descriptor.writable = true;
|
|
52
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
function _create_class(Constructor, protoProps, staticProps) {
|
|
56
|
-
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
57
|
-
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
58
|
-
return Constructor;
|
|
59
|
-
}
|
|
60
|
-
function _define_property(obj, key, value) {
|
|
61
|
-
if (key in obj) {
|
|
62
|
-
Object.defineProperty(obj, key, {
|
|
63
|
-
value: value,
|
|
64
|
-
enumerable: true,
|
|
65
|
-
configurable: true,
|
|
66
|
-
writable: true
|
|
67
|
-
});
|
|
68
|
-
} else {
|
|
69
|
-
obj[key] = value;
|
|
70
|
-
}
|
|
71
|
-
return obj;
|
|
72
|
-
}
|
|
73
|
-
function _get(target, property, receiver) {
|
|
74
|
-
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
75
|
-
_get = Reflect.get;
|
|
76
|
-
} else {
|
|
77
|
-
_get = function get(target, property, receiver) {
|
|
78
|
-
var base = _super_prop_base(target, property);
|
|
79
|
-
if (!base) return;
|
|
80
|
-
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
81
|
-
if (desc.get) {
|
|
82
|
-
return desc.get.call(receiver || target);
|
|
83
|
-
}
|
|
84
|
-
return desc.value;
|
|
85
|
-
};
|
|
86
|
-
}
|
|
87
|
-
return _get(target, property, receiver || target);
|
|
88
|
-
}
|
|
89
|
-
function _get_prototype_of(o) {
|
|
90
|
-
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
91
|
-
return o.__proto__ || Object.getPrototypeOf(o);
|
|
92
|
-
};
|
|
93
|
-
return _get_prototype_of(o);
|
|
94
|
-
}
|
|
95
|
-
function _inherits(subClass, superClass) {
|
|
96
|
-
if (typeof superClass !== "function" && superClass !== null) {
|
|
97
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
98
|
-
}
|
|
99
|
-
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
100
|
-
constructor: {
|
|
101
|
-
value: subClass,
|
|
102
|
-
writable: true,
|
|
103
|
-
configurable: true
|
|
104
|
-
}
|
|
105
|
-
});
|
|
106
|
-
if (superClass) _set_prototype_of(subClass, superClass);
|
|
107
|
-
}
|
|
11
|
+
const _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
|
+
const _necessary = require("necessary");
|
|
13
|
+
const _easy = require("easy");
|
|
108
14
|
function _interop_require_default(obj) {
|
|
109
15
|
return obj && obj.__esModule ? obj : {
|
|
110
16
|
default: obj
|
|
111
17
|
};
|
|
112
18
|
}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
19
|
+
const { first } = _necessary.arrayUtilities, { concatenatePaths } = _necessary.pathUtilities;
|
|
20
|
+
class EntryItem extends _easy.Element {
|
|
21
|
+
getParentDirectoryNameDragEntryItem() {
|
|
22
|
+
let parentDirectoryNameDragEntryItem = null;
|
|
23
|
+
const height = 2, ascendantDirectoryNameDragEntryItemElements = this.getAscendantElements("li.entry.drag.directory-name", height), ascendantDirectoryNameDragEntryItemElementsLength = ascendantDirectoryNameDragEntryItemElements.length;
|
|
24
|
+
if (ascendantDirectoryNameDragEntryItemElementsLength > 0) {
|
|
25
|
+
const firstAscendantDirectoryNameDragEntryItemElement = first(ascendantDirectoryNameDragEntryItemElements);
|
|
26
|
+
parentDirectoryNameDragEntryItem = firstAscendantDirectoryNameDragEntryItemElement; ///
|
|
27
|
+
}
|
|
28
|
+
return parentDirectoryNameDragEntryItem;
|
|
119
29
|
}
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
while(!Object.prototype.hasOwnProperty.call(object, property)){
|
|
131
|
-
object = _get_prototype_of(object);
|
|
132
|
-
if (object === null) break;
|
|
30
|
+
getPath() {
|
|
31
|
+
let path;
|
|
32
|
+
const name = this.getName(), parentDirectoryNameDragEntryItem = this.getParentDirectoryNameDragEntryItem();
|
|
33
|
+
if (parentDirectoryNameDragEntryItem === null) {
|
|
34
|
+
path = name; ///
|
|
35
|
+
} else {
|
|
36
|
+
const parentDirectoryNameDragEntryItemPath = parentDirectoryNameDragEntryItem.getPath();
|
|
37
|
+
path = concatenatePaths(parentDirectoryNameDragEntryItemPath, name);
|
|
38
|
+
}
|
|
39
|
+
return path;
|
|
133
40
|
}
|
|
134
|
-
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
if (!raw) {
|
|
138
|
-
raw = strings.slice(0);
|
|
41
|
+
getType() {
|
|
42
|
+
const { type } = this.constructor;
|
|
43
|
+
return type;
|
|
139
44
|
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
153
|
-
if (Class === null || !_is_native_function(Class)) return Class;
|
|
154
|
-
if (typeof Class !== "function") {
|
|
155
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
156
|
-
}
|
|
157
|
-
if (typeof _cache !== "undefined") {
|
|
158
|
-
if (_cache.has(Class)) return _cache.get(Class);
|
|
159
|
-
_cache.set(Class, Wrapper);
|
|
160
|
-
}
|
|
161
|
-
function Wrapper() {
|
|
162
|
-
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
45
|
+
getName() {
|
|
46
|
+
const { name } = this.properties;
|
|
47
|
+
return name;
|
|
48
|
+
}
|
|
49
|
+
getExplorer() {
|
|
50
|
+
const { explorer } = this.properties;
|
|
51
|
+
return explorer;
|
|
52
|
+
}
|
|
53
|
+
remove(element = null) {
|
|
54
|
+
super.remove(element);
|
|
55
|
+
if (element === null) {
|
|
56
|
+
this.destroy();
|
|
163
57
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
return _set_prototype_of(Wrapper, Class);
|
|
173
|
-
};
|
|
174
|
-
return _wrap_native_super(Class);
|
|
175
|
-
}
|
|
176
|
-
function _is_native_reflect_construct() {
|
|
177
|
-
try {
|
|
178
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
179
|
-
} catch (_) {}
|
|
180
|
-
return (_is_native_reflect_construct = function() {
|
|
181
|
-
return !!result;
|
|
182
|
-
})();
|
|
183
|
-
}
|
|
184
|
-
function _templateObject() {
|
|
185
|
-
var data = _tagged_template_literal([
|
|
186
|
-
"\n\n width: fit-content;\n display: block;\n list-style: none;\n \n"
|
|
187
|
-
]);
|
|
188
|
-
_templateObject = function _templateObject() {
|
|
189
|
-
return data;
|
|
58
|
+
}
|
|
59
|
+
static tagName = "li";
|
|
60
|
+
static ignoredProperties = [
|
|
61
|
+
"name",
|
|
62
|
+
"explorer"
|
|
63
|
+
];
|
|
64
|
+
static defaultProperties = {
|
|
65
|
+
className: "entry"
|
|
190
66
|
};
|
|
191
|
-
return data;
|
|
192
67
|
}
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
_create_class(EntryItem, [
|
|
201
|
-
{
|
|
202
|
-
key: "getParentDirectoryNameDragEntryItem",
|
|
203
|
-
value: function getParentDirectoryNameDragEntryItem() {
|
|
204
|
-
var parentDirectoryNameDragEntryItem = null;
|
|
205
|
-
var height = 2, ascendantDirectoryNameDragEntryItemElements = this.getAscendantElements("li.entry.drag.directory-name", height), ascendantDirectoryNameDragEntryItemElementsLength = ascendantDirectoryNameDragEntryItemElements.length;
|
|
206
|
-
if (ascendantDirectoryNameDragEntryItemElementsLength > 0) {
|
|
207
|
-
var firstAscendantDirectoryNameDragEntryItemElement = first(ascendantDirectoryNameDragEntryItemElements);
|
|
208
|
-
parentDirectoryNameDragEntryItem = firstAscendantDirectoryNameDragEntryItemElement; ///
|
|
209
|
-
}
|
|
210
|
-
return parentDirectoryNameDragEntryItem;
|
|
211
|
-
}
|
|
212
|
-
},
|
|
213
|
-
{
|
|
214
|
-
key: "getPath",
|
|
215
|
-
value: function getPath() {
|
|
216
|
-
var path;
|
|
217
|
-
var name = this.getName(), parentDirectoryNameDragEntryItem = this.getParentDirectoryNameDragEntryItem();
|
|
218
|
-
if (parentDirectoryNameDragEntryItem === null) {
|
|
219
|
-
path = name; ///
|
|
220
|
-
} else {
|
|
221
|
-
var parentDirectoryNameDragEntryItemPath = parentDirectoryNameDragEntryItem.getPath();
|
|
222
|
-
path = concatenatePaths(parentDirectoryNameDragEntryItemPath, name);
|
|
223
|
-
}
|
|
224
|
-
return path;
|
|
225
|
-
}
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
key: "getType",
|
|
229
|
-
value: function getType() {
|
|
230
|
-
var type = this.constructor.type;
|
|
231
|
-
return type;
|
|
232
|
-
}
|
|
233
|
-
},
|
|
234
|
-
{
|
|
235
|
-
key: "getName",
|
|
236
|
-
value: function getName() {
|
|
237
|
-
var name = this.properties.name;
|
|
238
|
-
return name;
|
|
239
|
-
}
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
key: "getExplorer",
|
|
243
|
-
value: function getExplorer() {
|
|
244
|
-
var explorer = this.properties.explorer;
|
|
245
|
-
return explorer;
|
|
246
|
-
}
|
|
247
|
-
},
|
|
248
|
-
{
|
|
249
|
-
key: "remove",
|
|
250
|
-
value: function remove() {
|
|
251
|
-
var element = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : null;
|
|
252
|
-
_get(_get_prototype_of(EntryItem.prototype), "remove", this).call(this, element);
|
|
253
|
-
if (element === null) {
|
|
254
|
-
this.destroy();
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
]);
|
|
259
|
-
return EntryItem;
|
|
260
|
-
}(_wrap_native_super(_easy.Element));
|
|
261
|
-
_define_property(EntryItem, "tagName", "li");
|
|
262
|
-
_define_property(EntryItem, "ignoredProperties", [
|
|
263
|
-
"name",
|
|
264
|
-
"explorer"
|
|
265
|
-
]);
|
|
266
|
-
_define_property(EntryItem, "defaultProperties", {
|
|
267
|
-
className: "entry"
|
|
268
|
-
});
|
|
269
|
-
var _default = (0, _easywithstyle.default)(EntryItem)(_templateObject());
|
|
68
|
+
const _default = (0, _easywithstyle.default)(EntryItem)`
|
|
69
|
+
|
|
70
|
+
width: fit-content;
|
|
71
|
+
display: block;
|
|
72
|
+
list-style: none;
|
|
73
|
+
|
|
74
|
+
`;
|
|
270
75
|
|
|
271
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
76
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9pdGVtL2VudHJ5LmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgd2l0aFN0eWxlIGZyb20gXCJlYXN5LXdpdGgtc3R5bGVcIjsgIC8vL1xuXG5pbXBvcnQgeyBwYXRoVXRpbGl0aWVzLCBhcnJheVV0aWxpdGllcyB9IGZyb20gXCJuZWNlc3NhcnlcIjtcblxuaW1wb3J0IHsgRWxlbWVudCB9IGZyb20gXCJlYXN5XCI7XG5cbmNvbnN0IHsgZmlyc3QgfSA9IGFycmF5VXRpbGl0aWVzLFxuICAgICAgeyBjb25jYXRlbmF0ZVBhdGhzIH0gPSBwYXRoVXRpbGl0aWVzO1xuXG5jbGFzcyBFbnRyeUl0ZW0gZXh0ZW5kcyBFbGVtZW50IHtcbiAgZ2V0UGFyZW50RGlyZWN0b3J5TmFtZURyYWdFbnRyeUl0ZW0oKSB7XG4gICAgbGV0IHBhcmVudERpcmVjdG9yeU5hbWVEcmFnRW50cnlJdGVtID0gbnVsbDtcblxuICAgIGNvbnN0IGhlaWdodCA9IDIsXG4gICAgICAgICAgYXNjZW5kYW50RGlyZWN0b3J5TmFtZURyYWdFbnRyeUl0ZW1FbGVtZW50cyA9IHRoaXMuZ2V0QXNjZW5kYW50RWxlbWVudHMoXCJsaS5lbnRyeS5kcmFnLmRpcmVjdG9yeS1uYW1lXCIsIGhlaWdodCksXG4gICAgICAgICAgYXNjZW5kYW50RGlyZWN0b3J5TmFtZURyYWdFbnRyeUl0ZW1FbGVtZW50c0xlbmd0aCA9IGFzY2VuZGFudERpcmVjdG9yeU5hbWVEcmFnRW50cnlJdGVtRWxlbWVudHMubGVuZ3RoO1xuXG4gICAgaWYgKGFzY2VuZGFudERpcmVjdG9yeU5hbWVEcmFnRW50cnlJdGVtRWxlbWVudHNMZW5ndGggPiAwKSB7XG4gICAgICBjb25zdCBmaXJzdEFzY2VuZGFudERpcmVjdG9yeU5hbWVEcmFnRW50cnlJdGVtRWxlbWVudCA9IGZpcnN0KGFzY2VuZGFudERpcmVjdG9yeU5hbWVEcmFnRW50cnlJdGVtRWxlbWVudHMpO1xuXG4gICAgICBwYXJlbnREaXJlY3RvcnlOYW1lRHJhZ0VudHJ5SXRlbSA9IGZpcnN0QXNjZW5kYW50RGlyZWN0b3J5TmFtZURyYWdFbnRyeUl0ZW1FbGVtZW50OyAgLy8vXG4gICAgfVxuXG4gICAgcmV0dXJuIHBhcmVudERpcmVjdG9yeU5hbWVEcmFnRW50cnlJdGVtO1xuICB9XG5cbiAgZ2V0UGF0aCgpIHtcbiAgXHRsZXQgcGF0aDtcblxuICBcdGNvbnN0IG5hbWUgPSB0aGlzLmdldE5hbWUoKSxcbiAgICBcdFx0XHRwYXJlbnREaXJlY3RvcnlOYW1lRHJhZ0VudHJ5SXRlbSA9IHRoaXMuZ2V0UGFyZW50RGlyZWN0b3J5TmFtZURyYWdFbnRyeUl0ZW0oKTtcblxuICBcdGlmIChwYXJlbnREaXJlY3RvcnlOYW1lRHJhZ0VudHJ5SXRlbSA9PT0gbnVsbCkge1xuICBcdFx0cGF0aCA9IG5hbWU7ICAvLy9cbiAgXHR9IGVsc2Uge1xuICBcdFx0Y29uc3QgcGFyZW50RGlyZWN0b3J5TmFtZURyYWdFbnRyeUl0ZW1QYXRoID0gcGFyZW50RGlyZWN0b3J5TmFtZURyYWdFbnRyeUl0ZW0uZ2V0UGF0aCgpO1xuXG4gIFx0XHRwYXRoID0gY29uY2F0ZW5hdGVQYXRocyhwYXJlbnREaXJlY3RvcnlOYW1lRHJhZ0VudHJ5SXRlbVBhdGgsIG5hbWUpO1xuICBcdH1cblxuICBcdHJldHVybiBwYXRoO1xuICB9XG5cbiAgZ2V0VHlwZSgpIHtcbiAgICBjb25zdCB7IHR5cGUgfSA9IHRoaXMuY29uc3RydWN0b3I7XG5cbiAgICByZXR1cm4gdHlwZTtcbiAgfVxuXG4gIGdldE5hbWUoKSB7XG4gICAgY29uc3QgeyBuYW1lIH0gPSB0aGlzLnByb3BlcnRpZXM7XG5cbiAgICByZXR1cm4gbmFtZTtcbiAgfVxuXG4gIGdldEV4cGxvcmVyKCkge1xuICAgIGNvbnN0IHsgZXhwbG9yZXIgfSA9IHRoaXMucHJvcGVydGllcztcblxuICAgIHJldHVybiBleHBsb3JlcjtcbiAgfVxuXG4gIHJlbW92ZShlbGVtZW50ID0gbnVsbCkge1xuICAgIHN1cGVyLnJlbW92ZShlbGVtZW50KTtcblxuICAgIGlmIChlbGVtZW50ID09PSBudWxsKSB7XG4gICAgICB0aGlzLmRlc3Ryb3koKTtcbiAgICB9XG4gIH1cblxuICBzdGF0aWMgdGFnTmFtZSA9IFwibGlcIjtcblxuICBzdGF0aWMgaWdub3JlZFByb3BlcnRpZXMgPSBbXG4gICAgXCJuYW1lXCIsXG4gICAgXCJleHBsb3JlclwiXG4gIF07XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJlbnRyeVwiXG4gIH07XG59XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShFbnRyeUl0ZW0pYFxuXG4gIHdpZHRoOiBmaXQtY29udGVudDtcbiAgZGlzcGxheTogYmxvY2s7XG4gIGxpc3Qtc3R5bGU6IG5vbmU7XG4gIFxuYDtcbiJdLCJuYW1lcyI6WyJmaXJzdCIsImFycmF5VXRpbGl0aWVzIiwiY29uY2F0ZW5hdGVQYXRocyIsInBhdGhVdGlsaXRpZXMiLCJFbnRyeUl0ZW0iLCJFbGVtZW50IiwiZ2V0UGFyZW50RGlyZWN0b3J5TmFtZURyYWdFbnRyeUl0ZW0iLCJwYXJlbnREaXJlY3RvcnlOYW1lRHJhZ0VudHJ5SXRlbSIsImhlaWdodCIsImFzY2VuZGFudERpcmVjdG9yeU5hbWVEcmFnRW50cnlJdGVtRWxlbWVudHMiLCJnZXRBc2NlbmRhbnRFbGVtZW50cyIsImFzY2VuZGFudERpcmVjdG9yeU5hbWVEcmFnRW50cnlJdGVtRWxlbWVudHNMZW5ndGgiLCJsZW5ndGgiLCJmaXJzdEFzY2VuZGFudERpcmVjdG9yeU5hbWVEcmFnRW50cnlJdGVtRWxlbWVudCIsImdldFBhdGgiLCJwYXRoIiwibmFtZSIsImdldE5hbWUiLCJwYXJlbnREaXJlY3RvcnlOYW1lRHJhZ0VudHJ5SXRlbVBhdGgiLCJnZXRUeXBlIiwidHlwZSIsInByb3BlcnRpZXMiLCJnZXRFeHBsb3JlciIsImV4cGxvcmVyIiwicmVtb3ZlIiwiZWxlbWVudCIsImRlc3Ryb3kiLCJ0YWdOYW1lIiwiaWdub3JlZFByb3BlcnRpZXMiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSIsIndpdGhTdHlsZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBbUZBOzs7ZUFBQTs7O3NFQWpGc0I7MkJBRXdCO3NCQUV0Qjs7Ozs7O0FBRXhCLE1BQU0sRUFBRUEsS0FBSyxFQUFFLEdBQUdDLHlCQUFjLEVBQzFCLEVBQUVDLGdCQUFnQixFQUFFLEdBQUdDLHdCQUFhO0FBRTFDLE1BQU1DLGtCQUFrQkMsYUFBTztJQUM3QkMsc0NBQXNDO1FBQ3BDLElBQUlDLG1DQUFtQztRQUV2QyxNQUFNQyxTQUFTLEdBQ1RDLDhDQUE4QyxJQUFJLENBQUNDLG9CQUFvQixDQUFDLGdDQUFnQ0YsU0FDeEdHLG9EQUFvREYsNENBQTRDRyxNQUFNO1FBRTVHLElBQUlELG9EQUFvRCxHQUFHO1lBQ3pELE1BQU1FLGtEQUFrRGIsTUFBTVM7WUFFOURGLG1DQUFtQ00saURBQWtELEdBQUc7UUFDMUY7UUFFQSxPQUFPTjtJQUNUO0lBRUFPLFVBQVU7UUFDVCxJQUFJQztRQUVKLE1BQU1DLE9BQU8sSUFBSSxDQUFDQyxPQUFPLElBQ3JCVixtQ0FBbUMsSUFBSSxDQUFDRCxtQ0FBbUM7UUFFL0UsSUFBSUMscUNBQXFDLE1BQU07WUFDOUNRLE9BQU9DLE1BQU8sR0FBRztRQUNsQixPQUFPO1lBQ04sTUFBTUUsdUNBQXVDWCxpQ0FBaUNPLE9BQU87WUFFckZDLE9BQU9iLGlCQUFpQmdCLHNDQUFzQ0Y7UUFDL0Q7UUFFQSxPQUFPRDtJQUNSO0lBRUFJLFVBQVU7UUFDUixNQUFNLEVBQUVDLElBQUksRUFBRSxHQUFHLElBQUksQ0FBQyxXQUFXO1FBRWpDLE9BQU9BO0lBQ1Q7SUFFQUgsVUFBVTtRQUNSLE1BQU0sRUFBRUQsSUFBSSxFQUFFLEdBQUcsSUFBSSxDQUFDSyxVQUFVO1FBRWhDLE9BQU9MO0lBQ1Q7SUFFQU0sY0FBYztRQUNaLE1BQU0sRUFBRUMsUUFBUSxFQUFFLEdBQUcsSUFBSSxDQUFDRixVQUFVO1FBRXBDLE9BQU9FO0lBQ1Q7SUFFQUMsT0FBT0MsVUFBVSxJQUFJLEVBQUU7UUFDckIsS0FBSyxDQUFDRCxPQUFPQztRQUViLElBQUlBLFlBQVksTUFBTTtZQUNwQixJQUFJLENBQUNDLE9BQU87UUFDZDtJQUNGO0lBRUEsT0FBT0MsVUFBVSxLQUFLO0lBRXRCLE9BQU9DLG9CQUFvQjtRQUN6QjtRQUNBO0tBQ0QsQ0FBQztJQUVGLE9BQU9DLG9CQUFvQjtRQUN6QkMsV0FBVztJQUNiLEVBQUU7QUFDSjtNQUVBLFdBQWVDLElBQUFBLHNCQUFTLEVBQUMzQixVQUFVLENBQUM7Ozs7OztBQU1wQyxDQUFDIn0=
|