@mongodb-js/compass-shell 3.1.1 → 3.3.0
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/1.js +7659 -10280
- package/lib/2.js +41 -92
- package/lib/index.js +765 -844
- package/package.json +9 -10
package/lib/index.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
exports["CompassShellPlugin"] = factory(require("react"), require("@mongodb-js/compass-logging"), require("@mongodb-js/compass-utils"), require("@mongodb-js/compass-components"));
|
|
8
8
|
else
|
|
9
9
|
root["CompassShellPlugin"] = factory(root["react"], root["@mongodb-js/compass-logging"], root["@mongodb-js/compass-utils"], root["@mongodb-js/compass-components"]);
|
|
10
|
-
})(window, function(__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__132__,
|
|
10
|
+
})(window, function(__WEBPACK_EXTERNAL_MODULE__2__, __WEBPACK_EXTERNAL_MODULE__132__, __WEBPACK_EXTERNAL_MODULE__240__, __WEBPACK_EXTERNAL_MODULE__242__) {
|
|
11
11
|
return /******/ (function(modules) { // webpackBootstrap
|
|
12
12
|
/******/ // install a JSONP callback for chunk loading
|
|
13
13
|
/******/ function webpackJsonpCallback(data) {
|
|
@@ -206,7 +206,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
206
206
|
/******/
|
|
207
207
|
/******/
|
|
208
208
|
/******/ // Load entry module and return exports
|
|
209
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
209
|
+
/******/ return __webpack_require__(__webpack_require__.s = 241);
|
|
210
210
|
/******/ })
|
|
211
211
|
/************************************************************************/
|
|
212
212
|
/******/ ([
|
|
@@ -1029,7 +1029,7 @@ const crypto = __webpack_require__(15);
|
|
|
1029
1029
|
const os = __webpack_require__(88);
|
|
1030
1030
|
const url_1 = __webpack_require__(33);
|
|
1031
1031
|
const bson_1 = __webpack_require__(4);
|
|
1032
|
-
const constants_1 = __webpack_require__(
|
|
1032
|
+
const constants_1 = __webpack_require__(28);
|
|
1033
1033
|
const constants_2 = __webpack_require__(7);
|
|
1034
1034
|
const error_1 = __webpack_require__(0);
|
|
1035
1035
|
const promise_provider_1 = __webpack_require__(22);
|
|
@@ -1552,7 +1552,7 @@ function makeStateMachine(stateTable) {
|
|
|
1552
1552
|
}
|
|
1553
1553
|
exports.makeStateMachine = makeStateMachine;
|
|
1554
1554
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
1555
|
-
const NODE_DRIVER_VERSION = __webpack_require__(
|
|
1555
|
+
const NODE_DRIVER_VERSION = __webpack_require__(189).version;
|
|
1556
1556
|
function makeClientMetadata(options) {
|
|
1557
1557
|
options = options !== null && options !== void 0 ? options : {};
|
|
1558
1558
|
const metadata = {
|
|
@@ -2013,7 +2013,7 @@ function getMongoDBClientEncryption() {
|
|
|
2013
2013
|
// NOTE(NODE-3199): Ensure you always wrap an optional require literally in the try block
|
|
2014
2014
|
// Cannot be moved to helper utility function, bundlers search and replace the actual require call
|
|
2015
2015
|
// in a way that makes this line throw at bundle time, not runtime, catching here will make bundling succeed
|
|
2016
|
-
mongodbClientEncryption = __webpack_require__(
|
|
2016
|
+
mongodbClientEncryption = __webpack_require__(190)(process.env.MONGODB_CLIENT_ENCRYPTION_OVERRIDE);
|
|
2017
2017
|
}
|
|
2018
2018
|
catch {
|
|
2019
2019
|
// ignore
|
|
@@ -2146,7 +2146,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
2146
2146
|
exports.resolveBSONOptions = exports.pluckBSONSerializeOptions = exports.BSON = exports.Timestamp = exports.ObjectId = exports.MinKey = exports.MaxKey = exports.Map = exports.Long = exports.Int32 = exports.Double = exports.Decimal128 = exports.DBRef = exports.Code = exports.BSONSymbol = exports.BSONRegExp = exports.Binary = exports.calculateObjectSize = exports.serialize = exports.deserialize = void 0;
|
|
2147
2147
|
/** @internal */
|
|
2148
2148
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
2149
|
-
let BSON = __webpack_require__(
|
|
2149
|
+
let BSON = __webpack_require__(49);
|
|
2150
2150
|
exports.BSON = BSON;
|
|
2151
2151
|
try {
|
|
2152
2152
|
// Ensure you always wrap an optional require in the try block NODE-3199
|
|
@@ -2159,7 +2159,7 @@ exports.deserialize = BSON.deserialize;
|
|
|
2159
2159
|
exports.serialize = BSON.serialize;
|
|
2160
2160
|
/** @internal */
|
|
2161
2161
|
exports.calculateObjectSize = BSON.calculateObjectSize;
|
|
2162
|
-
var bson_1 = __webpack_require__(
|
|
2162
|
+
var bson_1 = __webpack_require__(49);
|
|
2163
2163
|
Object.defineProperty(exports, "Binary", { enumerable: true, get: function () { return bson_1.Binary; } });
|
|
2164
2164
|
Object.defineProperty(exports, "BSONRegExp", { enumerable: true, get: function () { return bson_1.BSONRegExp; } });
|
|
2165
2165
|
Object.defineProperty(exports, "BSONSymbol", { enumerable: true, get: function () { return bson_1.BSONSymbol; } });
|
|
@@ -3149,8 +3149,8 @@ const bson_1 = __webpack_require__(4);
|
|
|
3149
3149
|
const error_1 = __webpack_require__(0);
|
|
3150
3150
|
const mongo_types_1 = __webpack_require__(8);
|
|
3151
3151
|
const execute_operation_1 = __webpack_require__(12);
|
|
3152
|
-
const get_more_1 = __webpack_require__(
|
|
3153
|
-
const kill_cursors_1 = __webpack_require__(
|
|
3152
|
+
const get_more_1 = __webpack_require__(193);
|
|
3153
|
+
const kill_cursors_1 = __webpack_require__(194);
|
|
3154
3154
|
const read_concern_1 = __webpack_require__(9);
|
|
3155
3155
|
const read_preference_1 = __webpack_require__(6);
|
|
3156
3156
|
const sessions_1 = __webpack_require__(37);
|
|
@@ -4145,25 +4145,25 @@ exports.Collection = void 0;
|
|
|
4145
4145
|
const bson_1 = __webpack_require__(4);
|
|
4146
4146
|
const ordered_1 = __webpack_require__(91);
|
|
4147
4147
|
const unordered_1 = __webpack_require__(97);
|
|
4148
|
-
const change_stream_1 = __webpack_require__(
|
|
4149
|
-
const aggregation_cursor_1 = __webpack_require__(
|
|
4148
|
+
const change_stream_1 = __webpack_require__(29);
|
|
4149
|
+
const aggregation_cursor_1 = __webpack_require__(56);
|
|
4150
4150
|
const find_cursor_1 = __webpack_require__(102);
|
|
4151
4151
|
const list_indexes_cursor_1 = __webpack_require__(104);
|
|
4152
4152
|
const error_1 = __webpack_require__(0);
|
|
4153
4153
|
const bulk_write_1 = __webpack_require__(94);
|
|
4154
4154
|
const count_1 = __webpack_require__(103);
|
|
4155
|
-
const count_documents_1 = __webpack_require__(
|
|
4155
|
+
const count_documents_1 = __webpack_require__(196);
|
|
4156
4156
|
const delete_1 = __webpack_require__(92);
|
|
4157
|
-
const distinct_1 = __webpack_require__(
|
|
4157
|
+
const distinct_1 = __webpack_require__(197);
|
|
4158
4158
|
const drop_1 = __webpack_require__(105);
|
|
4159
|
-
const estimated_document_count_1 = __webpack_require__(
|
|
4159
|
+
const estimated_document_count_1 = __webpack_require__(198);
|
|
4160
4160
|
const execute_operation_1 = __webpack_require__(12);
|
|
4161
4161
|
const find_and_modify_1 = __webpack_require__(106);
|
|
4162
4162
|
const indexes_1 = __webpack_require__(39);
|
|
4163
4163
|
const insert_1 = __webpack_require__(93);
|
|
4164
|
-
const is_capped_1 = __webpack_require__(
|
|
4165
|
-
const map_reduce_1 = __webpack_require__(
|
|
4166
|
-
const options_operation_1 = __webpack_require__(
|
|
4164
|
+
const is_capped_1 = __webpack_require__(199);
|
|
4165
|
+
const map_reduce_1 = __webpack_require__(200);
|
|
4166
|
+
const options_operation_1 = __webpack_require__(201);
|
|
4167
4167
|
const rename_1 = __webpack_require__(107);
|
|
4168
4168
|
const stats_1 = __webpack_require__(108);
|
|
4169
4169
|
const update_1 = __webpack_require__(96);
|
|
@@ -4735,233 +4735,6 @@ module.exports = require("events");
|
|
|
4735
4735
|
/* 28 */
|
|
4736
4736
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4737
4737
|
|
|
4738
|
-
/**
|
|
4739
|
-
* Module dependencies.
|
|
4740
|
-
*/
|
|
4741
|
-
|
|
4742
|
-
var fs = __webpack_require__(13),
|
|
4743
|
-
path = __webpack_require__(19),
|
|
4744
|
-
fileURLToPath = __webpack_require__(169),
|
|
4745
|
-
join = path.join,
|
|
4746
|
-
dirname = path.dirname,
|
|
4747
|
-
exists =
|
|
4748
|
-
(fs.accessSync &&
|
|
4749
|
-
function(path) {
|
|
4750
|
-
try {
|
|
4751
|
-
fs.accessSync(path);
|
|
4752
|
-
} catch (e) {
|
|
4753
|
-
return false;
|
|
4754
|
-
}
|
|
4755
|
-
return true;
|
|
4756
|
-
}) ||
|
|
4757
|
-
fs.existsSync ||
|
|
4758
|
-
path.existsSync,
|
|
4759
|
-
defaults = {
|
|
4760
|
-
arrow: process.env.NODE_BINDINGS_ARROW || ' → ',
|
|
4761
|
-
compiled: process.env.NODE_BINDINGS_COMPILED_DIR || 'compiled',
|
|
4762
|
-
platform: process.platform,
|
|
4763
|
-
arch: process.arch,
|
|
4764
|
-
nodePreGyp:
|
|
4765
|
-
'node-v' +
|
|
4766
|
-
process.versions.modules +
|
|
4767
|
-
'-' +
|
|
4768
|
-
process.platform +
|
|
4769
|
-
'-' +
|
|
4770
|
-
process.arch,
|
|
4771
|
-
version: process.versions.node,
|
|
4772
|
-
bindings: 'bindings.node',
|
|
4773
|
-
try: [
|
|
4774
|
-
// node-gyp's linked version in the "build" dir
|
|
4775
|
-
['module_root', 'build', 'bindings'],
|
|
4776
|
-
// node-waf and gyp_addon (a.k.a node-gyp)
|
|
4777
|
-
['module_root', 'build', 'Debug', 'bindings'],
|
|
4778
|
-
['module_root', 'build', 'Release', 'bindings'],
|
|
4779
|
-
// Debug files, for development (legacy behavior, remove for node v0.9)
|
|
4780
|
-
['module_root', 'out', 'Debug', 'bindings'],
|
|
4781
|
-
['module_root', 'Debug', 'bindings'],
|
|
4782
|
-
// Release files, but manually compiled (legacy behavior, remove for node v0.9)
|
|
4783
|
-
['module_root', 'out', 'Release', 'bindings'],
|
|
4784
|
-
['module_root', 'Release', 'bindings'],
|
|
4785
|
-
// Legacy from node-waf, node <= 0.4.x
|
|
4786
|
-
['module_root', 'build', 'default', 'bindings'],
|
|
4787
|
-
// Production "Release" buildtype binary (meh...)
|
|
4788
|
-
['module_root', 'compiled', 'version', 'platform', 'arch', 'bindings'],
|
|
4789
|
-
// node-qbs builds
|
|
4790
|
-
['module_root', 'addon-build', 'release', 'install-root', 'bindings'],
|
|
4791
|
-
['module_root', 'addon-build', 'debug', 'install-root', 'bindings'],
|
|
4792
|
-
['module_root', 'addon-build', 'default', 'install-root', 'bindings'],
|
|
4793
|
-
// node-pre-gyp path ./lib/binding/{node_abi}-{platform}-{arch}
|
|
4794
|
-
['module_root', 'lib', 'binding', 'nodePreGyp', 'bindings']
|
|
4795
|
-
]
|
|
4796
|
-
};
|
|
4797
|
-
|
|
4798
|
-
/**
|
|
4799
|
-
* The main `bindings()` function loads the compiled bindings for a given module.
|
|
4800
|
-
* It uses V8's Error API to determine the parent filename that this function is
|
|
4801
|
-
* being invoked from, which is then used to find the root directory.
|
|
4802
|
-
*/
|
|
4803
|
-
|
|
4804
|
-
function bindings(opts) {
|
|
4805
|
-
// Argument surgery
|
|
4806
|
-
if (typeof opts == 'string') {
|
|
4807
|
-
opts = { bindings: opts };
|
|
4808
|
-
} else if (!opts) {
|
|
4809
|
-
opts = {};
|
|
4810
|
-
}
|
|
4811
|
-
|
|
4812
|
-
// maps `defaults` onto `opts` object
|
|
4813
|
-
Object.keys(defaults).map(function(i) {
|
|
4814
|
-
if (!(i in opts)) opts[i] = defaults[i];
|
|
4815
|
-
});
|
|
4816
|
-
|
|
4817
|
-
// Get the module root
|
|
4818
|
-
if (!opts.module_root) {
|
|
4819
|
-
opts.module_root = exports.getRoot(exports.getFileName());
|
|
4820
|
-
}
|
|
4821
|
-
|
|
4822
|
-
// Ensure the given bindings name ends with .node
|
|
4823
|
-
if (path.extname(opts.bindings) != '.node') {
|
|
4824
|
-
opts.bindings += '.node';
|
|
4825
|
-
}
|
|
4826
|
-
|
|
4827
|
-
// https://github.com/webpack/webpack/issues/4175#issuecomment-342931035
|
|
4828
|
-
var requireFunc =
|
|
4829
|
-
true
|
|
4830
|
-
? require
|
|
4831
|
-
: undefined;
|
|
4832
|
-
|
|
4833
|
-
var tries = [],
|
|
4834
|
-
i = 0,
|
|
4835
|
-
l = opts.try.length,
|
|
4836
|
-
n,
|
|
4837
|
-
b,
|
|
4838
|
-
err;
|
|
4839
|
-
|
|
4840
|
-
for (; i < l; i++) {
|
|
4841
|
-
n = join.apply(
|
|
4842
|
-
null,
|
|
4843
|
-
opts.try[i].map(function(p) {
|
|
4844
|
-
return opts[p] || p;
|
|
4845
|
-
})
|
|
4846
|
-
);
|
|
4847
|
-
tries.push(n);
|
|
4848
|
-
try {
|
|
4849
|
-
b = opts.path ? requireFunc.resolve(n) : requireFunc(n);
|
|
4850
|
-
if (!opts.path) {
|
|
4851
|
-
b.path = n;
|
|
4852
|
-
}
|
|
4853
|
-
return b;
|
|
4854
|
-
} catch (e) {
|
|
4855
|
-
if (e.code !== 'MODULE_NOT_FOUND' &&
|
|
4856
|
-
e.code !== 'QUALIFIED_PATH_RESOLUTION_FAILED' &&
|
|
4857
|
-
!/not find/i.test(e.message)) {
|
|
4858
|
-
throw e;
|
|
4859
|
-
}
|
|
4860
|
-
}
|
|
4861
|
-
}
|
|
4862
|
-
|
|
4863
|
-
err = new Error(
|
|
4864
|
-
'Could not locate the bindings file. Tried:\n' +
|
|
4865
|
-
tries
|
|
4866
|
-
.map(function(a) {
|
|
4867
|
-
return opts.arrow + a;
|
|
4868
|
-
})
|
|
4869
|
-
.join('\n')
|
|
4870
|
-
);
|
|
4871
|
-
err.tries = tries;
|
|
4872
|
-
throw err;
|
|
4873
|
-
}
|
|
4874
|
-
module.exports = exports = bindings;
|
|
4875
|
-
|
|
4876
|
-
/**
|
|
4877
|
-
* Gets the filename of the JavaScript file that invokes this function.
|
|
4878
|
-
* Used to help find the root directory of a module.
|
|
4879
|
-
* Optionally accepts an filename argument to skip when searching for the invoking filename
|
|
4880
|
-
*/
|
|
4881
|
-
|
|
4882
|
-
exports.getFileName = function getFileName(calling_file) {
|
|
4883
|
-
var origPST = Error.prepareStackTrace,
|
|
4884
|
-
origSTL = Error.stackTraceLimit,
|
|
4885
|
-
dummy = {},
|
|
4886
|
-
fileName;
|
|
4887
|
-
|
|
4888
|
-
Error.stackTraceLimit = 10;
|
|
4889
|
-
|
|
4890
|
-
Error.prepareStackTrace = function(e, st) {
|
|
4891
|
-
for (var i = 0, l = st.length; i < l; i++) {
|
|
4892
|
-
fileName = st[i].getFileName();
|
|
4893
|
-
if (fileName !== __filename) {
|
|
4894
|
-
if (calling_file) {
|
|
4895
|
-
if (fileName !== calling_file) {
|
|
4896
|
-
return;
|
|
4897
|
-
}
|
|
4898
|
-
} else {
|
|
4899
|
-
return;
|
|
4900
|
-
}
|
|
4901
|
-
}
|
|
4902
|
-
}
|
|
4903
|
-
};
|
|
4904
|
-
|
|
4905
|
-
// run the 'prepareStackTrace' function above
|
|
4906
|
-
Error.captureStackTrace(dummy);
|
|
4907
|
-
dummy.stack;
|
|
4908
|
-
|
|
4909
|
-
// cleanup
|
|
4910
|
-
Error.prepareStackTrace = origPST;
|
|
4911
|
-
Error.stackTraceLimit = origSTL;
|
|
4912
|
-
|
|
4913
|
-
// handle filename that starts with "file://"
|
|
4914
|
-
var fileSchema = 'file://';
|
|
4915
|
-
if (fileName.indexOf(fileSchema) === 0) {
|
|
4916
|
-
fileName = fileURLToPath(fileName);
|
|
4917
|
-
}
|
|
4918
|
-
|
|
4919
|
-
return fileName;
|
|
4920
|
-
};
|
|
4921
|
-
|
|
4922
|
-
/**
|
|
4923
|
-
* Gets the root directory of a module, given an arbitrary filename
|
|
4924
|
-
* somewhere in the module tree. The "root directory" is the directory
|
|
4925
|
-
* containing the `package.json` file.
|
|
4926
|
-
*
|
|
4927
|
-
* In: /home/nate/node-native-module/lib/index.js
|
|
4928
|
-
* Out: /home/nate/node-native-module
|
|
4929
|
-
*/
|
|
4930
|
-
|
|
4931
|
-
exports.getRoot = function getRoot(file) {
|
|
4932
|
-
var dir = dirname(file),
|
|
4933
|
-
prev;
|
|
4934
|
-
while (true) {
|
|
4935
|
-
if (dir === '.') {
|
|
4936
|
-
// Avoids an infinite loop in rare cases, like the REPL
|
|
4937
|
-
dir = process.cwd();
|
|
4938
|
-
}
|
|
4939
|
-
if (
|
|
4940
|
-
exists(join(dir, 'package.json')) ||
|
|
4941
|
-
exists(join(dir, 'node_modules'))
|
|
4942
|
-
) {
|
|
4943
|
-
// Found the 'package.json' file or 'node_modules' dir; we're done
|
|
4944
|
-
return dir;
|
|
4945
|
-
}
|
|
4946
|
-
if (prev === dir) {
|
|
4947
|
-
// Got to the top
|
|
4948
|
-
throw new Error(
|
|
4949
|
-
'Could not find module root given file: "' +
|
|
4950
|
-
file +
|
|
4951
|
-
'". Do you have a `package.json` file? '
|
|
4952
|
-
);
|
|
4953
|
-
}
|
|
4954
|
-
// Try the parent dir next
|
|
4955
|
-
prev = dir;
|
|
4956
|
-
dir = join(dir, '..');
|
|
4957
|
-
}
|
|
4958
|
-
};
|
|
4959
|
-
|
|
4960
|
-
|
|
4961
|
-
/***/ }),
|
|
4962
|
-
/* 29 */
|
|
4963
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
4964
|
-
|
|
4965
4738
|
"use strict";
|
|
4966
4739
|
|
|
4967
4740
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -4980,7 +4753,7 @@ exports.OP_MSG = 2013;
|
|
|
4980
4753
|
//# sourceMappingURL=constants.js.map
|
|
4981
4754
|
|
|
4982
4755
|
/***/ }),
|
|
4983
|
-
/*
|
|
4756
|
+
/* 29 */
|
|
4984
4757
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4985
4758
|
|
|
4986
4759
|
"use strict";
|
|
@@ -4991,9 +4764,9 @@ const util_1 = __webpack_require__(14);
|
|
|
4991
4764
|
const collection_1 = __webpack_require__(24);
|
|
4992
4765
|
const constants_1 = __webpack_require__(7);
|
|
4993
4766
|
const change_stream_cursor_1 = __webpack_require__(109);
|
|
4994
|
-
const db_1 = __webpack_require__(
|
|
4767
|
+
const db_1 = __webpack_require__(59);
|
|
4995
4768
|
const error_1 = __webpack_require__(0);
|
|
4996
|
-
const mongo_client_1 = __webpack_require__(
|
|
4769
|
+
const mongo_client_1 = __webpack_require__(30);
|
|
4997
4770
|
const mongo_types_1 = __webpack_require__(8);
|
|
4998
4771
|
const utils_1 = __webpack_require__(1);
|
|
4999
4772
|
/** @internal */
|
|
@@ -5360,7 +5133,7 @@ ChangeStream.RESUME_TOKEN_CHANGED = constants_1.RESUME_TOKEN_CHANGED;
|
|
|
5360
5133
|
//# sourceMappingURL=change_stream.js.map
|
|
5361
5134
|
|
|
5362
5135
|
/***/ }),
|
|
5363
|
-
/*
|
|
5136
|
+
/* 30 */
|
|
5364
5137
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5365
5138
|
|
|
5366
5139
|
"use strict";
|
|
@@ -5368,12 +5141,12 @@ ChangeStream.RESUME_TOKEN_CHANGED = constants_1.RESUME_TOKEN_CHANGED;
|
|
|
5368
5141
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5369
5142
|
exports.MongoClient = exports.ServerApiVersion = void 0;
|
|
5370
5143
|
const bson_1 = __webpack_require__(4);
|
|
5371
|
-
const change_stream_1 = __webpack_require__(
|
|
5372
|
-
const connection_string_1 = __webpack_require__(
|
|
5373
|
-
const db_1 = __webpack_require__(
|
|
5144
|
+
const change_stream_1 = __webpack_require__(29);
|
|
5145
|
+
const connection_string_1 = __webpack_require__(60);
|
|
5146
|
+
const db_1 = __webpack_require__(59);
|
|
5374
5147
|
const error_1 = __webpack_require__(0);
|
|
5375
5148
|
const mongo_types_1 = __webpack_require__(8);
|
|
5376
|
-
const connect_1 = __webpack_require__(
|
|
5149
|
+
const connect_1 = __webpack_require__(213);
|
|
5377
5150
|
const promise_provider_1 = __webpack_require__(22);
|
|
5378
5151
|
const read_preference_1 = __webpack_require__(6);
|
|
5379
5152
|
const server_selection_1 = __webpack_require__(34);
|
|
@@ -5658,7 +5431,7 @@ exports.MongoClient = MongoClient;
|
|
|
5658
5431
|
//# sourceMappingURL=mongo_client.js.map
|
|
5659
5432
|
|
|
5660
5433
|
/***/ }),
|
|
5661
|
-
/*
|
|
5434
|
+
/* 31 */
|
|
5662
5435
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5663
5436
|
|
|
5664
5437
|
"use strict";
|
|
@@ -5713,7 +5486,7 @@ catch { } // eslint-disable-line
|
|
|
5713
5486
|
exports.aws4 = makeErrorModule(new error_1.MongoMissingDependencyError('Optional module `aws4` not found. Please install it to enable AWS authentication'));
|
|
5714
5487
|
try {
|
|
5715
5488
|
// Ensure you always wrap an optional require in the try block NODE-3199
|
|
5716
|
-
exports.aws4 = __webpack_require__(
|
|
5489
|
+
exports.aws4 = __webpack_require__(209);
|
|
5717
5490
|
}
|
|
5718
5491
|
catch { } // eslint-disable-line
|
|
5719
5492
|
/** @public */
|
|
@@ -5726,6 +5499,233 @@ exports.AutoEncryptionLoggerLevel = Object.freeze({
|
|
|
5726
5499
|
});
|
|
5727
5500
|
//# sourceMappingURL=deps.js.map
|
|
5728
5501
|
|
|
5502
|
+
/***/ }),
|
|
5503
|
+
/* 32 */
|
|
5504
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
5505
|
+
|
|
5506
|
+
/**
|
|
5507
|
+
* Module dependencies.
|
|
5508
|
+
*/
|
|
5509
|
+
|
|
5510
|
+
var fs = __webpack_require__(13),
|
|
5511
|
+
path = __webpack_require__(19),
|
|
5512
|
+
fileURLToPath = __webpack_require__(180),
|
|
5513
|
+
join = path.join,
|
|
5514
|
+
dirname = path.dirname,
|
|
5515
|
+
exists =
|
|
5516
|
+
(fs.accessSync &&
|
|
5517
|
+
function(path) {
|
|
5518
|
+
try {
|
|
5519
|
+
fs.accessSync(path);
|
|
5520
|
+
} catch (e) {
|
|
5521
|
+
return false;
|
|
5522
|
+
}
|
|
5523
|
+
return true;
|
|
5524
|
+
}) ||
|
|
5525
|
+
fs.existsSync ||
|
|
5526
|
+
path.existsSync,
|
|
5527
|
+
defaults = {
|
|
5528
|
+
arrow: process.env.NODE_BINDINGS_ARROW || ' → ',
|
|
5529
|
+
compiled: process.env.NODE_BINDINGS_COMPILED_DIR || 'compiled',
|
|
5530
|
+
platform: process.platform,
|
|
5531
|
+
arch: process.arch,
|
|
5532
|
+
nodePreGyp:
|
|
5533
|
+
'node-v' +
|
|
5534
|
+
process.versions.modules +
|
|
5535
|
+
'-' +
|
|
5536
|
+
process.platform +
|
|
5537
|
+
'-' +
|
|
5538
|
+
process.arch,
|
|
5539
|
+
version: process.versions.node,
|
|
5540
|
+
bindings: 'bindings.node',
|
|
5541
|
+
try: [
|
|
5542
|
+
// node-gyp's linked version in the "build" dir
|
|
5543
|
+
['module_root', 'build', 'bindings'],
|
|
5544
|
+
// node-waf and gyp_addon (a.k.a node-gyp)
|
|
5545
|
+
['module_root', 'build', 'Debug', 'bindings'],
|
|
5546
|
+
['module_root', 'build', 'Release', 'bindings'],
|
|
5547
|
+
// Debug files, for development (legacy behavior, remove for node v0.9)
|
|
5548
|
+
['module_root', 'out', 'Debug', 'bindings'],
|
|
5549
|
+
['module_root', 'Debug', 'bindings'],
|
|
5550
|
+
// Release files, but manually compiled (legacy behavior, remove for node v0.9)
|
|
5551
|
+
['module_root', 'out', 'Release', 'bindings'],
|
|
5552
|
+
['module_root', 'Release', 'bindings'],
|
|
5553
|
+
// Legacy from node-waf, node <= 0.4.x
|
|
5554
|
+
['module_root', 'build', 'default', 'bindings'],
|
|
5555
|
+
// Production "Release" buildtype binary (meh...)
|
|
5556
|
+
['module_root', 'compiled', 'version', 'platform', 'arch', 'bindings'],
|
|
5557
|
+
// node-qbs builds
|
|
5558
|
+
['module_root', 'addon-build', 'release', 'install-root', 'bindings'],
|
|
5559
|
+
['module_root', 'addon-build', 'debug', 'install-root', 'bindings'],
|
|
5560
|
+
['module_root', 'addon-build', 'default', 'install-root', 'bindings'],
|
|
5561
|
+
// node-pre-gyp path ./lib/binding/{node_abi}-{platform}-{arch}
|
|
5562
|
+
['module_root', 'lib', 'binding', 'nodePreGyp', 'bindings']
|
|
5563
|
+
]
|
|
5564
|
+
};
|
|
5565
|
+
|
|
5566
|
+
/**
|
|
5567
|
+
* The main `bindings()` function loads the compiled bindings for a given module.
|
|
5568
|
+
* It uses V8's Error API to determine the parent filename that this function is
|
|
5569
|
+
* being invoked from, which is then used to find the root directory.
|
|
5570
|
+
*/
|
|
5571
|
+
|
|
5572
|
+
function bindings(opts) {
|
|
5573
|
+
// Argument surgery
|
|
5574
|
+
if (typeof opts == 'string') {
|
|
5575
|
+
opts = { bindings: opts };
|
|
5576
|
+
} else if (!opts) {
|
|
5577
|
+
opts = {};
|
|
5578
|
+
}
|
|
5579
|
+
|
|
5580
|
+
// maps `defaults` onto `opts` object
|
|
5581
|
+
Object.keys(defaults).map(function(i) {
|
|
5582
|
+
if (!(i in opts)) opts[i] = defaults[i];
|
|
5583
|
+
});
|
|
5584
|
+
|
|
5585
|
+
// Get the module root
|
|
5586
|
+
if (!opts.module_root) {
|
|
5587
|
+
opts.module_root = exports.getRoot(exports.getFileName());
|
|
5588
|
+
}
|
|
5589
|
+
|
|
5590
|
+
// Ensure the given bindings name ends with .node
|
|
5591
|
+
if (path.extname(opts.bindings) != '.node') {
|
|
5592
|
+
opts.bindings += '.node';
|
|
5593
|
+
}
|
|
5594
|
+
|
|
5595
|
+
// https://github.com/webpack/webpack/issues/4175#issuecomment-342931035
|
|
5596
|
+
var requireFunc =
|
|
5597
|
+
true
|
|
5598
|
+
? require
|
|
5599
|
+
: undefined;
|
|
5600
|
+
|
|
5601
|
+
var tries = [],
|
|
5602
|
+
i = 0,
|
|
5603
|
+
l = opts.try.length,
|
|
5604
|
+
n,
|
|
5605
|
+
b,
|
|
5606
|
+
err;
|
|
5607
|
+
|
|
5608
|
+
for (; i < l; i++) {
|
|
5609
|
+
n = join.apply(
|
|
5610
|
+
null,
|
|
5611
|
+
opts.try[i].map(function(p) {
|
|
5612
|
+
return opts[p] || p;
|
|
5613
|
+
})
|
|
5614
|
+
);
|
|
5615
|
+
tries.push(n);
|
|
5616
|
+
try {
|
|
5617
|
+
b = opts.path ? requireFunc.resolve(n) : requireFunc(n);
|
|
5618
|
+
if (!opts.path) {
|
|
5619
|
+
b.path = n;
|
|
5620
|
+
}
|
|
5621
|
+
return b;
|
|
5622
|
+
} catch (e) {
|
|
5623
|
+
if (e.code !== 'MODULE_NOT_FOUND' &&
|
|
5624
|
+
e.code !== 'QUALIFIED_PATH_RESOLUTION_FAILED' &&
|
|
5625
|
+
!/not find/i.test(e.message)) {
|
|
5626
|
+
throw e;
|
|
5627
|
+
}
|
|
5628
|
+
}
|
|
5629
|
+
}
|
|
5630
|
+
|
|
5631
|
+
err = new Error(
|
|
5632
|
+
'Could not locate the bindings file. Tried:\n' +
|
|
5633
|
+
tries
|
|
5634
|
+
.map(function(a) {
|
|
5635
|
+
return opts.arrow + a;
|
|
5636
|
+
})
|
|
5637
|
+
.join('\n')
|
|
5638
|
+
);
|
|
5639
|
+
err.tries = tries;
|
|
5640
|
+
throw err;
|
|
5641
|
+
}
|
|
5642
|
+
module.exports = exports = bindings;
|
|
5643
|
+
|
|
5644
|
+
/**
|
|
5645
|
+
* Gets the filename of the JavaScript file that invokes this function.
|
|
5646
|
+
* Used to help find the root directory of a module.
|
|
5647
|
+
* Optionally accepts an filename argument to skip when searching for the invoking filename
|
|
5648
|
+
*/
|
|
5649
|
+
|
|
5650
|
+
exports.getFileName = function getFileName(calling_file) {
|
|
5651
|
+
var origPST = Error.prepareStackTrace,
|
|
5652
|
+
origSTL = Error.stackTraceLimit,
|
|
5653
|
+
dummy = {},
|
|
5654
|
+
fileName;
|
|
5655
|
+
|
|
5656
|
+
Error.stackTraceLimit = 10;
|
|
5657
|
+
|
|
5658
|
+
Error.prepareStackTrace = function(e, st) {
|
|
5659
|
+
for (var i = 0, l = st.length; i < l; i++) {
|
|
5660
|
+
fileName = st[i].getFileName();
|
|
5661
|
+
if (fileName !== __filename) {
|
|
5662
|
+
if (calling_file) {
|
|
5663
|
+
if (fileName !== calling_file) {
|
|
5664
|
+
return;
|
|
5665
|
+
}
|
|
5666
|
+
} else {
|
|
5667
|
+
return;
|
|
5668
|
+
}
|
|
5669
|
+
}
|
|
5670
|
+
}
|
|
5671
|
+
};
|
|
5672
|
+
|
|
5673
|
+
// run the 'prepareStackTrace' function above
|
|
5674
|
+
Error.captureStackTrace(dummy);
|
|
5675
|
+
dummy.stack;
|
|
5676
|
+
|
|
5677
|
+
// cleanup
|
|
5678
|
+
Error.prepareStackTrace = origPST;
|
|
5679
|
+
Error.stackTraceLimit = origSTL;
|
|
5680
|
+
|
|
5681
|
+
// handle filename that starts with "file://"
|
|
5682
|
+
var fileSchema = 'file://';
|
|
5683
|
+
if (fileName.indexOf(fileSchema) === 0) {
|
|
5684
|
+
fileName = fileURLToPath(fileName);
|
|
5685
|
+
}
|
|
5686
|
+
|
|
5687
|
+
return fileName;
|
|
5688
|
+
};
|
|
5689
|
+
|
|
5690
|
+
/**
|
|
5691
|
+
* Gets the root directory of a module, given an arbitrary filename
|
|
5692
|
+
* somewhere in the module tree. The "root directory" is the directory
|
|
5693
|
+
* containing the `package.json` file.
|
|
5694
|
+
*
|
|
5695
|
+
* In: /home/nate/node-native-module/lib/index.js
|
|
5696
|
+
* Out: /home/nate/node-native-module
|
|
5697
|
+
*/
|
|
5698
|
+
|
|
5699
|
+
exports.getRoot = function getRoot(file) {
|
|
5700
|
+
var dir = dirname(file),
|
|
5701
|
+
prev;
|
|
5702
|
+
while (true) {
|
|
5703
|
+
if (dir === '.') {
|
|
5704
|
+
// Avoids an infinite loop in rare cases, like the REPL
|
|
5705
|
+
dir = process.cwd();
|
|
5706
|
+
}
|
|
5707
|
+
if (
|
|
5708
|
+
exists(join(dir, 'package.json')) ||
|
|
5709
|
+
exists(join(dir, 'node_modules'))
|
|
5710
|
+
) {
|
|
5711
|
+
// Found the 'package.json' file or 'node_modules' dir; we're done
|
|
5712
|
+
return dir;
|
|
5713
|
+
}
|
|
5714
|
+
if (prev === dir) {
|
|
5715
|
+
// Got to the top
|
|
5716
|
+
throw new Error(
|
|
5717
|
+
'Could not find module root given file: "' +
|
|
5718
|
+
file +
|
|
5719
|
+
'". Do you have a `package.json` file? '
|
|
5720
|
+
);
|
|
5721
|
+
}
|
|
5722
|
+
// Try the parent dir next
|
|
5723
|
+
prev = dir;
|
|
5724
|
+
dir = join(dir, '..');
|
|
5725
|
+
}
|
|
5726
|
+
};
|
|
5727
|
+
|
|
5728
|
+
|
|
5729
5729
|
/***/ }),
|
|
5730
5730
|
/* 33 */
|
|
5731
5731
|
/***/ (function(module, exports) {
|
|
@@ -8220,9 +8220,9 @@ const mongo_types_1 = __webpack_require__(8);
|
|
|
8220
8220
|
const sessions_1 = __webpack_require__(37);
|
|
8221
8221
|
const utils_1 = __webpack_require__(1);
|
|
8222
8222
|
const command_monitoring_events_1 = __webpack_require__(117);
|
|
8223
|
-
const commands_1 = __webpack_require__(
|
|
8224
|
-
const message_stream_1 = __webpack_require__(
|
|
8225
|
-
const stream_description_1 = __webpack_require__(
|
|
8223
|
+
const commands_1 = __webpack_require__(64);
|
|
8224
|
+
const message_stream_1 = __webpack_require__(215);
|
|
8225
|
+
const stream_description_1 = __webpack_require__(216);
|
|
8226
8226
|
const shared_1 = __webpack_require__(99);
|
|
8227
8227
|
/** @internal */
|
|
8228
8228
|
const kStream = Symbol('stream');
|
|
@@ -8817,24 +8817,25 @@ function _objectWithoutPropertiesLoose(source, excluded) {
|
|
|
8817
8817
|
* The prefix.
|
|
8818
8818
|
*/
|
|
8819
8819
|
const PREFIX = '@mongodb-js/mongodb-redux-common/app-registry';
|
|
8820
|
+
|
|
8820
8821
|
/**
|
|
8821
8822
|
* Local app registry activated.
|
|
8822
8823
|
*/
|
|
8823
|
-
|
|
8824
8824
|
const LOCAL_APP_REGISTRY_ACTIVATED = `${PREFIX}/LOCAL_APP_REGISTRY_ACTIVATED`;
|
|
8825
|
+
|
|
8825
8826
|
/**
|
|
8826
8827
|
* Global app registry activated.
|
|
8827
8828
|
*/
|
|
8828
|
-
|
|
8829
8829
|
const GLOBAL_APP_REGISTRY_ACTIVATED = `${PREFIX}/GLOBAL_APP_REGISTRY_ACTIVATED`;
|
|
8830
|
+
|
|
8830
8831
|
/**
|
|
8831
8832
|
* The initial state.
|
|
8832
8833
|
*/
|
|
8833
|
-
|
|
8834
8834
|
const INITIAL_STATE = {
|
|
8835
8835
|
localAppRegistry: null,
|
|
8836
8836
|
globalAppRegistry: null
|
|
8837
8837
|
};
|
|
8838
|
+
|
|
8838
8839
|
/**
|
|
8839
8840
|
* Reducer function for handle state changes to the app registry.
|
|
8840
8841
|
*
|
|
@@ -8843,20 +8844,21 @@ const INITIAL_STATE = {
|
|
|
8843
8844
|
*
|
|
8844
8845
|
* @returns {String} The new state.
|
|
8845
8846
|
*/
|
|
8846
|
-
|
|
8847
8847
|
const reducer = (state = INITIAL_STATE, action) => {
|
|
8848
8848
|
if (action.type === LOCAL_APP_REGISTRY_ACTIVATED) {
|
|
8849
|
-
return {
|
|
8849
|
+
return {
|
|
8850
|
+
...state,
|
|
8850
8851
|
localAppRegistry: action.appRegistry
|
|
8851
8852
|
};
|
|
8852
8853
|
} else if (action.type === GLOBAL_APP_REGISTRY_ACTIVATED) {
|
|
8853
|
-
return {
|
|
8854
|
+
return {
|
|
8855
|
+
...state,
|
|
8854
8856
|
globalAppRegistry: action.appRegistry
|
|
8855
8857
|
};
|
|
8856
8858
|
}
|
|
8857
|
-
|
|
8858
8859
|
return state;
|
|
8859
8860
|
};
|
|
8861
|
+
|
|
8860
8862
|
/**
|
|
8861
8863
|
* Action creator for local app registry activated events.
|
|
8862
8864
|
*
|
|
@@ -8864,12 +8866,11 @@ const reducer = (state = INITIAL_STATE, action) => {
|
|
|
8864
8866
|
*
|
|
8865
8867
|
* @returns {Object} The app registry activated event.
|
|
8866
8868
|
*/
|
|
8867
|
-
|
|
8868
|
-
|
|
8869
8869
|
const localAppRegistryActivated = appRegistry => ({
|
|
8870
8870
|
type: LOCAL_APP_REGISTRY_ACTIVATED,
|
|
8871
8871
|
appRegistry: appRegistry
|
|
8872
8872
|
});
|
|
8873
|
+
|
|
8873
8874
|
/**
|
|
8874
8875
|
* Action creator for global app registry activated events.
|
|
8875
8876
|
*
|
|
@@ -8877,12 +8878,11 @@ const localAppRegistryActivated = appRegistry => ({
|
|
|
8877
8878
|
*
|
|
8878
8879
|
* @returns {Object} The app registry activated event.
|
|
8879
8880
|
*/
|
|
8880
|
-
|
|
8881
|
-
|
|
8882
8881
|
const globalAppRegistryActivated = appRegistry => ({
|
|
8883
8882
|
type: GLOBAL_APP_REGISTRY_ACTIVATED,
|
|
8884
8883
|
appRegistry: appRegistry
|
|
8885
8884
|
});
|
|
8885
|
+
|
|
8886
8886
|
/**
|
|
8887
8887
|
* Emit an event on the provided app registry.
|
|
8888
8888
|
*
|
|
@@ -8890,13 +8890,12 @@ const globalAppRegistryActivated = appRegistry => ({
|
|
|
8890
8890
|
* @param {String} name - The event name.
|
|
8891
8891
|
* @param {Object} metadata - The event metadata.
|
|
8892
8892
|
*/
|
|
8893
|
-
|
|
8894
|
-
|
|
8895
8893
|
const appRegistryEmit = (appRegistry, name, ...metadata) => {
|
|
8896
8894
|
if (appRegistry) {
|
|
8897
8895
|
appRegistry.emit(name, ...metadata);
|
|
8898
8896
|
}
|
|
8899
8897
|
};
|
|
8898
|
+
|
|
8900
8899
|
/**
|
|
8901
8900
|
* Emit an event to the local app registry.
|
|
8902
8901
|
*
|
|
@@ -8905,13 +8904,12 @@ const appRegistryEmit = (appRegistry, name, ...metadata) => {
|
|
|
8905
8904
|
*
|
|
8906
8905
|
* @returns {Function} The thunk function.
|
|
8907
8906
|
*/
|
|
8908
|
-
|
|
8909
|
-
|
|
8910
8907
|
const localAppRegistryEmit = (name, ...metadata) => {
|
|
8911
8908
|
return (dispatch, getState) => {
|
|
8912
8909
|
appRegistryEmit(getState().appRegistry.localAppRegistry, name, ...metadata);
|
|
8913
8910
|
};
|
|
8914
8911
|
};
|
|
8912
|
+
|
|
8915
8913
|
/**
|
|
8916
8914
|
* Emit an event to the app registry.
|
|
8917
8915
|
*
|
|
@@ -8920,14 +8918,11 @@ const localAppRegistryEmit = (name, ...metadata) => {
|
|
|
8920
8918
|
*
|
|
8921
8919
|
* @returns {Function} The thunk function.
|
|
8922
8920
|
*/
|
|
8923
|
-
|
|
8924
|
-
|
|
8925
8921
|
const globalAppRegistryEmit = (name, ...metadata) => {
|
|
8926
8922
|
return (dispatch, getState) => {
|
|
8927
8923
|
appRegistryEmit(getState().appRegistry.globalAppRegistry, name, ...metadata);
|
|
8928
8924
|
};
|
|
8929
8925
|
};
|
|
8930
|
-
|
|
8931
8926
|
module.exports = reducer;
|
|
8932
8927
|
module.exports.LOCAL_APP_REGISTRY_ACTIVATED = LOCAL_APP_REGISTRY_ACTIVATED;
|
|
8933
8928
|
module.exports.GLOBAL_APP_REGISTRY_ACTIVATED = GLOBAL_APP_REGISTRY_ACTIVATED;
|
|
@@ -8943,116 +8938,6 @@ module.exports.globalAppRegistryEmit = globalAppRegistryEmit;
|
|
|
8943
8938
|
|
|
8944
8939
|
"use strict";
|
|
8945
8940
|
|
|
8946
|
-
|
|
8947
|
-
var reactIs = __webpack_require__(140);
|
|
8948
|
-
|
|
8949
|
-
/**
|
|
8950
|
-
* Copyright 2015, Yahoo! Inc.
|
|
8951
|
-
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
|
|
8952
|
-
*/
|
|
8953
|
-
var REACT_STATICS = {
|
|
8954
|
-
childContextTypes: true,
|
|
8955
|
-
contextType: true,
|
|
8956
|
-
contextTypes: true,
|
|
8957
|
-
defaultProps: true,
|
|
8958
|
-
displayName: true,
|
|
8959
|
-
getDefaultProps: true,
|
|
8960
|
-
getDerivedStateFromError: true,
|
|
8961
|
-
getDerivedStateFromProps: true,
|
|
8962
|
-
mixins: true,
|
|
8963
|
-
propTypes: true,
|
|
8964
|
-
type: true
|
|
8965
|
-
};
|
|
8966
|
-
var KNOWN_STATICS = {
|
|
8967
|
-
name: true,
|
|
8968
|
-
length: true,
|
|
8969
|
-
prototype: true,
|
|
8970
|
-
caller: true,
|
|
8971
|
-
callee: true,
|
|
8972
|
-
arguments: true,
|
|
8973
|
-
arity: true
|
|
8974
|
-
};
|
|
8975
|
-
var FORWARD_REF_STATICS = {
|
|
8976
|
-
'$$typeof': true,
|
|
8977
|
-
render: true,
|
|
8978
|
-
defaultProps: true,
|
|
8979
|
-
displayName: true,
|
|
8980
|
-
propTypes: true
|
|
8981
|
-
};
|
|
8982
|
-
var MEMO_STATICS = {
|
|
8983
|
-
'$$typeof': true,
|
|
8984
|
-
compare: true,
|
|
8985
|
-
defaultProps: true,
|
|
8986
|
-
displayName: true,
|
|
8987
|
-
propTypes: true,
|
|
8988
|
-
type: true
|
|
8989
|
-
};
|
|
8990
|
-
var TYPE_STATICS = {};
|
|
8991
|
-
TYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS;
|
|
8992
|
-
TYPE_STATICS[reactIs.Memo] = MEMO_STATICS;
|
|
8993
|
-
|
|
8994
|
-
function getStatics(component) {
|
|
8995
|
-
// React v16.11 and below
|
|
8996
|
-
if (reactIs.isMemo(component)) {
|
|
8997
|
-
return MEMO_STATICS;
|
|
8998
|
-
} // React v16.12 and above
|
|
8999
|
-
|
|
9000
|
-
|
|
9001
|
-
return TYPE_STATICS[component['$$typeof']] || REACT_STATICS;
|
|
9002
|
-
}
|
|
9003
|
-
|
|
9004
|
-
var defineProperty = Object.defineProperty;
|
|
9005
|
-
var getOwnPropertyNames = Object.getOwnPropertyNames;
|
|
9006
|
-
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
9007
|
-
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
9008
|
-
var getPrototypeOf = Object.getPrototypeOf;
|
|
9009
|
-
var objectPrototype = Object.prototype;
|
|
9010
|
-
function hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {
|
|
9011
|
-
if (typeof sourceComponent !== 'string') {
|
|
9012
|
-
// don't hoist over string (html) components
|
|
9013
|
-
if (objectPrototype) {
|
|
9014
|
-
var inheritedComponent = getPrototypeOf(sourceComponent);
|
|
9015
|
-
|
|
9016
|
-
if (inheritedComponent && inheritedComponent !== objectPrototype) {
|
|
9017
|
-
hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);
|
|
9018
|
-
}
|
|
9019
|
-
}
|
|
9020
|
-
|
|
9021
|
-
var keys = getOwnPropertyNames(sourceComponent);
|
|
9022
|
-
|
|
9023
|
-
if (getOwnPropertySymbols) {
|
|
9024
|
-
keys = keys.concat(getOwnPropertySymbols(sourceComponent));
|
|
9025
|
-
}
|
|
9026
|
-
|
|
9027
|
-
var targetStatics = getStatics(targetComponent);
|
|
9028
|
-
var sourceStatics = getStatics(sourceComponent);
|
|
9029
|
-
|
|
9030
|
-
for (var i = 0; i < keys.length; ++i) {
|
|
9031
|
-
var key = keys[i];
|
|
9032
|
-
|
|
9033
|
-
if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {
|
|
9034
|
-
var descriptor = getOwnPropertyDescriptor(sourceComponent, key);
|
|
9035
|
-
|
|
9036
|
-
try {
|
|
9037
|
-
// Avoid failures from read-only properties
|
|
9038
|
-
defineProperty(targetComponent, key, descriptor);
|
|
9039
|
-
} catch (e) {}
|
|
9040
|
-
}
|
|
9041
|
-
}
|
|
9042
|
-
}
|
|
9043
|
-
|
|
9044
|
-
return targetComponent;
|
|
9045
|
-
}
|
|
9046
|
-
|
|
9047
|
-
module.exports = hoistNonReactStatics;
|
|
9048
|
-
|
|
9049
|
-
|
|
9050
|
-
/***/ }),
|
|
9051
|
-
/* 45 */
|
|
9052
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
9053
|
-
|
|
9054
|
-
"use strict";
|
|
9055
|
-
|
|
9056
8941
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9057
8942
|
exports.CommaAndColonSeparatedRecord = exports.ConnectionString = exports.redactConnectionString = void 0;
|
|
9058
8943
|
const whatwg_url_1 = __webpack_require__(149);
|
|
@@ -9267,7 +9152,7 @@ exports.default = ConnectionString;
|
|
|
9267
9152
|
//# sourceMappingURL=index.js.map
|
|
9268
9153
|
|
|
9269
9154
|
/***/ }),
|
|
9270
|
-
/*
|
|
9155
|
+
/* 45 */
|
|
9271
9156
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9272
9157
|
|
|
9273
9158
|
"use strict";
|
|
@@ -9724,7 +9609,7 @@ exports.DOMTimeStamp = exports["unsigned long long"];
|
|
|
9724
9609
|
|
|
9725
9610
|
|
|
9726
9611
|
/***/ }),
|
|
9727
|
-
/*
|
|
9612
|
+
/* 46 */
|
|
9728
9613
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9729
9614
|
|
|
9730
9615
|
"use strict";
|
|
@@ -9921,7 +9806,7 @@ module.exports = exports = {
|
|
|
9921
9806
|
|
|
9922
9807
|
|
|
9923
9808
|
/***/ }),
|
|
9924
|
-
/*
|
|
9809
|
+
/* 47 */
|
|
9925
9810
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9926
9811
|
|
|
9927
9812
|
"use strict";
|
|
@@ -9944,13 +9829,13 @@ module.exports = {
|
|
|
9944
9829
|
|
|
9945
9830
|
|
|
9946
9831
|
/***/ }),
|
|
9947
|
-
/*
|
|
9832
|
+
/* 48 */
|
|
9948
9833
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9949
9834
|
|
|
9950
9835
|
"use strict";
|
|
9951
9836
|
|
|
9952
9837
|
const { isASCIIHex } = __webpack_require__(74);
|
|
9953
|
-
const { utf8Encode } = __webpack_require__(
|
|
9838
|
+
const { utf8Encode } = __webpack_require__(47);
|
|
9954
9839
|
|
|
9955
9840
|
function p(char) {
|
|
9956
9841
|
return char.codePointAt(0);
|
|
@@ -10093,7 +9978,7 @@ module.exports = {
|
|
|
10093
9978
|
|
|
10094
9979
|
|
|
10095
9980
|
/***/ }),
|
|
10096
|
-
/*
|
|
9981
|
+
/* 49 */
|
|
10097
9982
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
10098
9983
|
|
|
10099
9984
|
"use strict";
|
|
@@ -17631,19 +17516,19 @@ var BSON = {
|
|
|
17631
17516
|
|
|
17632
17517
|
|
|
17633
17518
|
/***/ }),
|
|
17634
|
-
/*
|
|
17519
|
+
/* 50 */
|
|
17635
17520
|
/***/ (function(module, exports) {
|
|
17636
17521
|
|
|
17637
17522
|
module.exports = require("zlib");
|
|
17638
17523
|
|
|
17639
17524
|
/***/ }),
|
|
17640
|
-
/*
|
|
17525
|
+
/* 51 */
|
|
17641
17526
|
/***/ (function(module, exports) {
|
|
17642
17527
|
|
|
17643
17528
|
module.exports = require("tls");
|
|
17644
17529
|
|
|
17645
17530
|
/***/ }),
|
|
17646
|
-
/*
|
|
17531
|
+
/* 52 */
|
|
17647
17532
|
/***/ (function(module, exports, __webpack_require__) {
|
|
17648
17533
|
|
|
17649
17534
|
"use strict";
|
|
@@ -18100,7 +17985,7 @@ exports.DOMTimeStamp = exports["unsigned long long"];
|
|
|
18100
17985
|
|
|
18101
17986
|
|
|
18102
17987
|
/***/ }),
|
|
18103
|
-
/*
|
|
17988
|
+
/* 53 */
|
|
18104
17989
|
/***/ (function(module, exports, __webpack_require__) {
|
|
18105
17990
|
|
|
18106
17991
|
"use strict";
|
|
@@ -18297,7 +18182,7 @@ module.exports = exports = {
|
|
|
18297
18182
|
|
|
18298
18183
|
|
|
18299
18184
|
/***/ }),
|
|
18300
|
-
/*
|
|
18185
|
+
/* 54 */
|
|
18301
18186
|
/***/ (function(module, exports, __webpack_require__) {
|
|
18302
18187
|
|
|
18303
18188
|
"use strict";
|
|
@@ -18320,13 +18205,13 @@ module.exports = {
|
|
|
18320
18205
|
|
|
18321
18206
|
|
|
18322
18207
|
/***/ }),
|
|
18323
|
-
/*
|
|
18208
|
+
/* 55 */
|
|
18324
18209
|
/***/ (function(module, exports, __webpack_require__) {
|
|
18325
18210
|
|
|
18326
18211
|
"use strict";
|
|
18327
18212
|
|
|
18328
18213
|
const { isASCIIHex } = __webpack_require__(79);
|
|
18329
|
-
const { utf8Encode } = __webpack_require__(
|
|
18214
|
+
const { utf8Encode } = __webpack_require__(54);
|
|
18330
18215
|
|
|
18331
18216
|
function p(char) {
|
|
18332
18217
|
return char.codePointAt(0);
|
|
@@ -18469,14 +18354,14 @@ module.exports = {
|
|
|
18469
18354
|
|
|
18470
18355
|
|
|
18471
18356
|
/***/ }),
|
|
18472
|
-
/*
|
|
18357
|
+
/* 56 */
|
|
18473
18358
|
/***/ (function(module, exports, __webpack_require__) {
|
|
18474
18359
|
|
|
18475
18360
|
"use strict";
|
|
18476
18361
|
|
|
18477
18362
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18478
18363
|
exports.AggregationCursor = void 0;
|
|
18479
|
-
const aggregate_1 = __webpack_require__(
|
|
18364
|
+
const aggregate_1 = __webpack_require__(57);
|
|
18480
18365
|
const execute_operation_1 = __webpack_require__(12);
|
|
18481
18366
|
const utils_1 = __webpack_require__(1);
|
|
18482
18367
|
const abstract_cursor_1 = __webpack_require__(16);
|
|
@@ -18647,7 +18532,7 @@ exports.AggregationCursor = AggregationCursor;
|
|
|
18647
18532
|
//# sourceMappingURL=aggregation_cursor.js.map
|
|
18648
18533
|
|
|
18649
18534
|
/***/ }),
|
|
18650
|
-
/*
|
|
18535
|
+
/* 57 */
|
|
18651
18536
|
/***/ (function(module, exports, __webpack_require__) {
|
|
18652
18537
|
|
|
18653
18538
|
"use strict";
|
|
@@ -18743,7 +18628,7 @@ exports.AggregateOperation = AggregateOperation;
|
|
|
18743
18628
|
//# sourceMappingURL=aggregate.js.map
|
|
18744
18629
|
|
|
18745
18630
|
/***/ }),
|
|
18746
|
-
/*
|
|
18631
|
+
/* 58 */
|
|
18747
18632
|
/***/ (function(module, exports, __webpack_require__) {
|
|
18748
18633
|
|
|
18749
18634
|
"use strict";
|
|
@@ -18846,7 +18731,7 @@ exports.formatSort = formatSort;
|
|
|
18846
18731
|
//# sourceMappingURL=sort.js.map
|
|
18847
18732
|
|
|
18848
18733
|
/***/ }),
|
|
18849
|
-
/*
|
|
18734
|
+
/* 59 */
|
|
18850
18735
|
/***/ (function(module, exports, __webpack_require__) {
|
|
18851
18736
|
|
|
18852
18737
|
"use strict";
|
|
@@ -18855,20 +18740,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18855
18740
|
exports.Db = void 0;
|
|
18856
18741
|
const admin_1 = __webpack_require__(86);
|
|
18857
18742
|
const bson_1 = __webpack_require__(4);
|
|
18858
|
-
const change_stream_1 = __webpack_require__(
|
|
18743
|
+
const change_stream_1 = __webpack_require__(29);
|
|
18859
18744
|
const collection_1 = __webpack_require__(24);
|
|
18860
18745
|
const CONSTANTS = __webpack_require__(7);
|
|
18861
|
-
const aggregation_cursor_1 = __webpack_require__(
|
|
18746
|
+
const aggregation_cursor_1 = __webpack_require__(56);
|
|
18862
18747
|
const list_collections_cursor_1 = __webpack_require__(110);
|
|
18863
18748
|
const error_1 = __webpack_require__(0);
|
|
18864
18749
|
const logger_1 = __webpack_require__(17);
|
|
18865
18750
|
const add_user_1 = __webpack_require__(87);
|
|
18866
|
-
const collections_1 = __webpack_require__(
|
|
18867
|
-
const create_collection_1 = __webpack_require__(
|
|
18751
|
+
const collections_1 = __webpack_require__(203);
|
|
18752
|
+
const create_collection_1 = __webpack_require__(204);
|
|
18868
18753
|
const drop_1 = __webpack_require__(105);
|
|
18869
18754
|
const execute_operation_1 = __webpack_require__(12);
|
|
18870
18755
|
const indexes_1 = __webpack_require__(39);
|
|
18871
|
-
const profiling_level_1 = __webpack_require__(
|
|
18756
|
+
const profiling_level_1 = __webpack_require__(205);
|
|
18872
18757
|
const remove_user_1 = __webpack_require__(90);
|
|
18873
18758
|
const rename_1 = __webpack_require__(107);
|
|
18874
18759
|
const run_command_1 = __webpack_require__(35);
|
|
@@ -19189,7 +19074,7 @@ function validateDatabaseName(databaseName) {
|
|
|
19189
19074
|
//# sourceMappingURL=db.js.map
|
|
19190
19075
|
|
|
19191
19076
|
/***/ }),
|
|
19192
|
-
/*
|
|
19077
|
+
/* 60 */
|
|
19193
19078
|
/***/ (function(module, exports, __webpack_require__) {
|
|
19194
19079
|
|
|
19195
19080
|
"use strict";
|
|
@@ -19198,15 +19083,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19198
19083
|
exports.FEATURE_FLAGS = exports.DEFAULT_OPTIONS = exports.OPTIONS = exports.parseOptions = exports.checkTLSOptions = exports.resolveSRVRecord = void 0;
|
|
19199
19084
|
const dns = __webpack_require__(21);
|
|
19200
19085
|
const fs = __webpack_require__(13);
|
|
19201
|
-
const mongodb_connection_string_url_1 = __webpack_require__(
|
|
19086
|
+
const mongodb_connection_string_url_1 = __webpack_require__(44);
|
|
19202
19087
|
const url_1 = __webpack_require__(33);
|
|
19203
19088
|
const mongo_credentials_1 = __webpack_require__(112);
|
|
19204
19089
|
const providers_1 = __webpack_require__(25);
|
|
19205
|
-
const compression_1 = __webpack_require__(
|
|
19206
|
-
const encrypter_1 = __webpack_require__(
|
|
19090
|
+
const compression_1 = __webpack_require__(62);
|
|
19091
|
+
const encrypter_1 = __webpack_require__(212);
|
|
19207
19092
|
const error_1 = __webpack_require__(0);
|
|
19208
19093
|
const logger_1 = __webpack_require__(17);
|
|
19209
|
-
const mongo_client_1 = __webpack_require__(
|
|
19094
|
+
const mongo_client_1 = __webpack_require__(30);
|
|
19210
19095
|
const promise_provider_1 = __webpack_require__(22);
|
|
19211
19096
|
const read_concern_1 = __webpack_require__(9);
|
|
19212
19097
|
const read_preference_1 = __webpack_require__(6);
|
|
@@ -20293,7 +20178,7 @@ exports.FEATURE_FLAGS = new Set([Symbol.for('@@mdb.skipPingOnConnect')]);
|
|
|
20293
20178
|
//# sourceMappingURL=connection_string.js.map
|
|
20294
20179
|
|
|
20295
20180
|
/***/ }),
|
|
20296
|
-
/*
|
|
20181
|
+
/* 61 */
|
|
20297
20182
|
/***/ (function(module, exports, __webpack_require__) {
|
|
20298
20183
|
|
|
20299
20184
|
"use strict";
|
|
@@ -20301,7 +20186,7 @@ exports.FEATURE_FLAGS = new Set([Symbol.for('@@mdb.skipPingOnConnect')]);
|
|
|
20301
20186
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20302
20187
|
exports.resolveCname = exports.performGSSAPICanonicalizeHostName = exports.GSSAPI = exports.GSSAPICanonicalizationValue = void 0;
|
|
20303
20188
|
const dns = __webpack_require__(21);
|
|
20304
|
-
const deps_1 = __webpack_require__(
|
|
20189
|
+
const deps_1 = __webpack_require__(31);
|
|
20305
20190
|
const error_1 = __webpack_require__(0);
|
|
20306
20191
|
const utils_1 = __webpack_require__(1);
|
|
20307
20192
|
const auth_provider_1 = __webpack_require__(18);
|
|
@@ -20489,16 +20374,16 @@ exports.resolveCname = resolveCname;
|
|
|
20489
20374
|
//# sourceMappingURL=gssapi.js.map
|
|
20490
20375
|
|
|
20491
20376
|
/***/ }),
|
|
20492
|
-
/*
|
|
20377
|
+
/* 62 */
|
|
20493
20378
|
/***/ (function(module, exports, __webpack_require__) {
|
|
20494
20379
|
|
|
20495
20380
|
"use strict";
|
|
20496
20381
|
|
|
20497
20382
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20498
20383
|
exports.decompress = exports.compress = exports.uncompressibleCommands = exports.Compressor = void 0;
|
|
20499
|
-
const zlib = __webpack_require__(
|
|
20384
|
+
const zlib = __webpack_require__(50);
|
|
20500
20385
|
const constants_1 = __webpack_require__(7);
|
|
20501
|
-
const deps_1 = __webpack_require__(
|
|
20386
|
+
const deps_1 = __webpack_require__(31);
|
|
20502
20387
|
const error_1 = __webpack_require__(0);
|
|
20503
20388
|
/** @public */
|
|
20504
20389
|
exports.Compressor = Object.freeze({
|
|
@@ -20591,7 +20476,7 @@ exports.decompress = decompress;
|
|
|
20591
20476
|
//# sourceMappingURL=compression.js.map
|
|
20592
20477
|
|
|
20593
20478
|
/***/ }),
|
|
20594
|
-
/*
|
|
20479
|
+
/* 63 */
|
|
20595
20480
|
/***/ (function(module, exports, __webpack_require__) {
|
|
20596
20481
|
|
|
20597
20482
|
"use strict";
|
|
@@ -20722,7 +20607,7 @@ exports.ServerHeartbeatFailedEvent = ServerHeartbeatFailedEvent;
|
|
|
20722
20607
|
//# sourceMappingURL=events.js.map
|
|
20723
20608
|
|
|
20724
20609
|
/***/ }),
|
|
20725
|
-
/*
|
|
20610
|
+
/* 64 */
|
|
20726
20611
|
/***/ (function(module, exports, __webpack_require__) {
|
|
20727
20612
|
|
|
20728
20613
|
"use strict";
|
|
@@ -20733,7 +20618,7 @@ const BSON = __webpack_require__(4);
|
|
|
20733
20618
|
const error_1 = __webpack_require__(0);
|
|
20734
20619
|
const read_preference_1 = __webpack_require__(6);
|
|
20735
20620
|
const utils_1 = __webpack_require__(1);
|
|
20736
|
-
const constants_1 = __webpack_require__(
|
|
20621
|
+
const constants_1 = __webpack_require__(28);
|
|
20737
20622
|
// Incrementing request id
|
|
20738
20623
|
let _requestId = 0;
|
|
20739
20624
|
// Query flags
|
|
@@ -21209,19 +21094,19 @@ exports.BinMsg = BinMsg;
|
|
|
21209
21094
|
//# sourceMappingURL=commands.js.map
|
|
21210
21095
|
|
|
21211
21096
|
/***/ }),
|
|
21212
|
-
/*
|
|
21097
|
+
/* 65 */
|
|
21213
21098
|
/***/ (function(module, exports) {
|
|
21214
21099
|
|
|
21215
21100
|
module.exports = require("net");
|
|
21216
21101
|
|
|
21217
21102
|
/***/ }),
|
|
21218
|
-
/*
|
|
21103
|
+
/* 66 */
|
|
21219
21104
|
/***/ (function(module) {
|
|
21220
21105
|
|
|
21221
|
-
module.exports = JSON.parse("{\"name\":\"@mongodb-js/compass-shell\",\"productName\":\"Compass Shell plugin\",\"version\":\"3.
|
|
21106
|
+
module.exports = JSON.parse("{\"name\":\"@mongodb-js/compass-shell\",\"productName\":\"Compass Shell plugin\",\"version\":\"3.3.0\",\"apiVersion\":\"3.0.0\",\"description\":\"Compass Shell Plugin\",\"main\":\"lib/index.js\",\"compass:main\":\"src/index.js\",\"compass:exports\":{\".\":\"./src/index.js\"},\"scripts\":{\"prepublishOnly\":\"npm run compile && compass-scripts check-exports-exist\",\"clean\":\"rimraf lib\",\"precompile\":\"npm run clean\",\"compile\":\"cross-env NODE_ENV=production webpack --config ./config/webpack.prod.config.js\",\"compile:watch\":\"cross-env NODE_ENV=production webpack --config ./config/webpack.prod.config.js --watch\",\"test\":\"cross-env NODE_ENV=test mocha-webpack \\\"./src/**/*.spec.js\\\"\",\"test-ci\":\"npm run test\",\"test-ci-electron\":\"echo \\\"TODO(COMPASS-5555): These tests are broken and disabled for now\\\"\",\"test-watch\":\"cross-env NODE_ENV=test mocha-webpack \\\"./src/**/*.spec.js\\\" --watch\",\"test-electron\":\"xvfb-maybe cross-env NODE_ENV=test karma start\",\"test-cov\":\"echo\",\"check\":\"npm run lint && npm run depcheck\",\"lint\":\"eslint \\\"./src/**/*.{js,jsx}\\\" \\\"./test/**/*.js\\\" \\\"./config/**/*.{js,jsx}\\\"\",\"depcheck\":\"compass-scripts check-peer-deps && depcheck\",\"bootstrap\":\"npm run compile\"},\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/mongodb-js/compass.git\"},\"config\":{\"unsafe-perm\":true},\"license\":\"SSPL\",\"publishConfig\":{\"access\":\"public\"},\"dependencies\":{\"@mongodb-js/compass-components\":\"^1.3.0\",\"@mongodb-js/compass-logging\":\"^1.1.1\",\"@mongodb-js/compass-utils\":\"^0.1.1\",\"@mongodb-js/mongodb-redux-common\":\"^2.0.2\",\"@mongosh/node-runtime-worker-thread\":\"^1.6.0\",\"react\":\"^16.14.0\"},\"peerDependencies\":{\"@mongodb-js/compass-components\":\"^1.3.0\",\"@mongodb-js/compass-logging\":\"^1.1.1\",\"@mongodb-js/compass-utils\":\"^0.1.1\",\"@mongodb-js/mongodb-redux-common\":\"^2.0.2\",\"@mongosh/node-runtime-worker-thread\":\"^1.6.0\",\"react\":\"^16.14.0\"},\"devDependencies\":{\"@babel/cli\":\"^7.14.3\",\"@babel/core\":\"^7.14.3\",\"@babel/plugin-proposal-decorators\":\"^7.14.2\",\"@babel/plugin-syntax-dynamic-import\":\"^7.8.3\",\"@babel/preset-env\":\"^7.14.2\",\"@babel/preset-react\":\"^7.13.13\",\"@babel/register\":\"^7.13.16\",\"@hot-loader/react-dom\":\"^16.9.0\",\"@leafygreen-ui/code\":\"^12.1.1\",\"@mongosh/browser-repl\":\"^1.6.0\",\"@mongosh/logging\":\"^1.6.0\",\"@mongosh/service-provider-core\":\"^1.6.0\",\"autoprefixer\":\"^9.4.6\",\"babel-loader\":\"^8.2.2\",\"chai\":\"^4.2.0\",\"chai-enzyme\":\"1.0.0-beta.0\",\"core-js\":\"^3.12.1\",\"cross-env\":\"^5.0.1\",\"depcheck\":\"^1.4.1\",\"enzyme\":\"^3.11.0\",\"enzyme-adapter-react-16\":\"^1.15.2\",\"eslint\":\"^7.25.0\",\"eslint-config-mongodb-js\":\"^5.0.3\",\"eslint-plugin-react\":\"^7.24.0\",\"file-loader\":\"^5.1.0\",\"font-awesome\":\"^4.7.0\",\"hadron-ipc\":\"^3.1.0\",\"html-webpack-plugin\":\"^3.2.0\",\"ignore-loader\":\"^0.1.2\",\"istanbul-instrumenter-loader\":\"^3.0.1\",\"jsdom\":\"^16.7.0\",\"jsdom-global\":\"^3.0.2\",\"karma\":\"^6.3.4\",\"karma-chai\":\"^0.1.0\",\"karma-chai-sinon\":\"^0.1.5\",\"karma-electron\":\"^7.0.0\",\"karma-mocha\":\"^1.3.0\",\"karma-mocha-reporter\":\"^2.2.5\",\"karma-sinon\":\"^1.0.5\",\"karma-sourcemap-loader\":\"^0.3.8\",\"karma-webpack\":\"^4.0.2\",\"mocha\":\"^5.2.0\",\"mocha-webpack\":\"^2.0.0-beta.0\",\"mongodb-reflux-store\":\"^0.0.1\",\"node-loader\":\"^0.6.0\",\"nyc\":\"^13.1.0\",\"peer-deps-externals-webpack-plugin\":\"^1.0.4\",\"prop-types\":\"^15.7.2\",\"react-ace\":\"^9.5.0\",\"react-dom\":\"^16.14.0\",\"react-hot-loader\":\"^4.13.0\",\"react-redux\":\"^8.0.2\",\"react-tooltip\":\"^3.11.1\",\"redux\":\"^4.2.0\",\"resolve\":\"^1.15.1\",\"rimraf\":\"^2.6.1\",\"shebang-loader\":\"^0.0.1\",\"sinon\":\"^7.2.5\",\"sinon-chai\":\"^3.3.0\",\"url-loader\":\"^3.0.0\",\"webpack\":\"^4.46.0\",\"webpack-bundle-analyzer\":\"^3.0.3\",\"webpack-cli\":\"^3.3.12\",\"webpack-merge\":\"^4.2.2\",\"webpack-node-externals\":\"^3.0.0\"},\"homepage\":\"https://github.com/mongodb-js/compass\",\"bugs\":{\"url\":\"https://jira.mongodb.org/projects/COMPASS/issues\",\"email\":\"compass@mongodb.com\"},\"gitHead\":\"10815be8fd57f3bfd89d061e1592eb7136d4a0fb\"}");
|
|
21222
21107
|
|
|
21223
21108
|
/***/ }),
|
|
21224
|
-
/*
|
|
21109
|
+
/* 67 */
|
|
21225
21110
|
/***/ (function(module, exports, __webpack_require__) {
|
|
21226
21111
|
|
|
21227
21112
|
"use strict";
|
|
@@ -21232,6 +21117,116 @@ if (true) {
|
|
|
21232
21117
|
} else {}
|
|
21233
21118
|
|
|
21234
21119
|
|
|
21120
|
+
/***/ }),
|
|
21121
|
+
/* 68 */
|
|
21122
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
21123
|
+
|
|
21124
|
+
"use strict";
|
|
21125
|
+
|
|
21126
|
+
|
|
21127
|
+
var reactIs = __webpack_require__(140);
|
|
21128
|
+
|
|
21129
|
+
/**
|
|
21130
|
+
* Copyright 2015, Yahoo! Inc.
|
|
21131
|
+
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
|
|
21132
|
+
*/
|
|
21133
|
+
var REACT_STATICS = {
|
|
21134
|
+
childContextTypes: true,
|
|
21135
|
+
contextType: true,
|
|
21136
|
+
contextTypes: true,
|
|
21137
|
+
defaultProps: true,
|
|
21138
|
+
displayName: true,
|
|
21139
|
+
getDefaultProps: true,
|
|
21140
|
+
getDerivedStateFromError: true,
|
|
21141
|
+
getDerivedStateFromProps: true,
|
|
21142
|
+
mixins: true,
|
|
21143
|
+
propTypes: true,
|
|
21144
|
+
type: true
|
|
21145
|
+
};
|
|
21146
|
+
var KNOWN_STATICS = {
|
|
21147
|
+
name: true,
|
|
21148
|
+
length: true,
|
|
21149
|
+
prototype: true,
|
|
21150
|
+
caller: true,
|
|
21151
|
+
callee: true,
|
|
21152
|
+
arguments: true,
|
|
21153
|
+
arity: true
|
|
21154
|
+
};
|
|
21155
|
+
var FORWARD_REF_STATICS = {
|
|
21156
|
+
'$$typeof': true,
|
|
21157
|
+
render: true,
|
|
21158
|
+
defaultProps: true,
|
|
21159
|
+
displayName: true,
|
|
21160
|
+
propTypes: true
|
|
21161
|
+
};
|
|
21162
|
+
var MEMO_STATICS = {
|
|
21163
|
+
'$$typeof': true,
|
|
21164
|
+
compare: true,
|
|
21165
|
+
defaultProps: true,
|
|
21166
|
+
displayName: true,
|
|
21167
|
+
propTypes: true,
|
|
21168
|
+
type: true
|
|
21169
|
+
};
|
|
21170
|
+
var TYPE_STATICS = {};
|
|
21171
|
+
TYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS;
|
|
21172
|
+
TYPE_STATICS[reactIs.Memo] = MEMO_STATICS;
|
|
21173
|
+
|
|
21174
|
+
function getStatics(component) {
|
|
21175
|
+
// React v16.11 and below
|
|
21176
|
+
if (reactIs.isMemo(component)) {
|
|
21177
|
+
return MEMO_STATICS;
|
|
21178
|
+
} // React v16.12 and above
|
|
21179
|
+
|
|
21180
|
+
|
|
21181
|
+
return TYPE_STATICS[component['$$typeof']] || REACT_STATICS;
|
|
21182
|
+
}
|
|
21183
|
+
|
|
21184
|
+
var defineProperty = Object.defineProperty;
|
|
21185
|
+
var getOwnPropertyNames = Object.getOwnPropertyNames;
|
|
21186
|
+
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
21187
|
+
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
21188
|
+
var getPrototypeOf = Object.getPrototypeOf;
|
|
21189
|
+
var objectPrototype = Object.prototype;
|
|
21190
|
+
function hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {
|
|
21191
|
+
if (typeof sourceComponent !== 'string') {
|
|
21192
|
+
// don't hoist over string (html) components
|
|
21193
|
+
if (objectPrototype) {
|
|
21194
|
+
var inheritedComponent = getPrototypeOf(sourceComponent);
|
|
21195
|
+
|
|
21196
|
+
if (inheritedComponent && inheritedComponent !== objectPrototype) {
|
|
21197
|
+
hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);
|
|
21198
|
+
}
|
|
21199
|
+
}
|
|
21200
|
+
|
|
21201
|
+
var keys = getOwnPropertyNames(sourceComponent);
|
|
21202
|
+
|
|
21203
|
+
if (getOwnPropertySymbols) {
|
|
21204
|
+
keys = keys.concat(getOwnPropertySymbols(sourceComponent));
|
|
21205
|
+
}
|
|
21206
|
+
|
|
21207
|
+
var targetStatics = getStatics(targetComponent);
|
|
21208
|
+
var sourceStatics = getStatics(sourceComponent);
|
|
21209
|
+
|
|
21210
|
+
for (var i = 0; i < keys.length; ++i) {
|
|
21211
|
+
var key = keys[i];
|
|
21212
|
+
|
|
21213
|
+
if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {
|
|
21214
|
+
var descriptor = getOwnPropertyDescriptor(sourceComponent, key);
|
|
21215
|
+
|
|
21216
|
+
try {
|
|
21217
|
+
// Avoid failures from read-only properties
|
|
21218
|
+
defineProperty(targetComponent, key, descriptor);
|
|
21219
|
+
} catch (e) {}
|
|
21220
|
+
}
|
|
21221
|
+
}
|
|
21222
|
+
}
|
|
21223
|
+
|
|
21224
|
+
return targetComponent;
|
|
21225
|
+
}
|
|
21226
|
+
|
|
21227
|
+
module.exports = hoistNonReactStatics;
|
|
21228
|
+
|
|
21229
|
+
|
|
21235
21230
|
/***/ }),
|
|
21236
21231
|
/* 69 */
|
|
21237
21232
|
/***/ (function(module, exports) {
|
|
@@ -21288,10 +21283,10 @@ module.exports = __webpack_require__(144);
|
|
|
21288
21283
|
const tr46 = __webpack_require__(153);
|
|
21289
21284
|
|
|
21290
21285
|
const infra = __webpack_require__(74);
|
|
21291
|
-
const { utf8DecodeWithoutBOM } = __webpack_require__(
|
|
21286
|
+
const { utf8DecodeWithoutBOM } = __webpack_require__(47);
|
|
21292
21287
|
const { percentDecodeString, utf8PercentEncodeCodePoint, utf8PercentEncodeString, isC0ControlPercentEncode,
|
|
21293
21288
|
isFragmentPercentEncode, isQueryPercentEncode, isSpecialQueryPercentEncode, isPathPercentEncode,
|
|
21294
|
-
isUserinfoPercentEncode } = __webpack_require__(
|
|
21289
|
+
isUserinfoPercentEncode } = __webpack_require__(48);
|
|
21295
21290
|
|
|
21296
21291
|
function p(char) {
|
|
21297
21292
|
return char.codePointAt(0);
|
|
@@ -22575,8 +22570,8 @@ module.exports = {
|
|
|
22575
22570
|
|
|
22576
22571
|
"use strict";
|
|
22577
22572
|
|
|
22578
|
-
const { utf8Encode, utf8DecodeWithoutBOM } = __webpack_require__(
|
|
22579
|
-
const { percentDecodeBytes, utf8PercentEncodeString, isURLEncodedPercentEncode } = __webpack_require__(
|
|
22573
|
+
const { utf8Encode, utf8DecodeWithoutBOM } = __webpack_require__(47);
|
|
22574
|
+
const { percentDecodeBytes, utf8PercentEncodeString, isURLEncodedPercentEncode } = __webpack_require__(48);
|
|
22580
22575
|
|
|
22581
22576
|
function p(char) {
|
|
22582
22577
|
return char.codePointAt(0);
|
|
@@ -22689,8 +22684,8 @@ module.exports = {
|
|
|
22689
22684
|
"use strict";
|
|
22690
22685
|
|
|
22691
22686
|
|
|
22692
|
-
const conversions = __webpack_require__(
|
|
22693
|
-
const utils = __webpack_require__(
|
|
22687
|
+
const conversions = __webpack_require__(45);
|
|
22688
|
+
const utils = __webpack_require__(46);
|
|
22694
22689
|
|
|
22695
22690
|
const Function = __webpack_require__(157);
|
|
22696
22691
|
const newObjectInRealm = utils.newObjectInRealm;
|
|
@@ -23168,7 +23163,7 @@ const Impl = __webpack_require__(158);
|
|
|
23168
23163
|
"use strict";
|
|
23169
23164
|
|
|
23170
23165
|
const util_1 = __webpack_require__(14);
|
|
23171
|
-
const whatwg_url_1 = __webpack_require__(
|
|
23166
|
+
const whatwg_url_1 = __webpack_require__(170);
|
|
23172
23167
|
class MongoParseError extends Error {
|
|
23173
23168
|
}
|
|
23174
23169
|
const ALLOWED_TXT_OPTIONS = ['authSource', 'replicaSet', 'loadBalanced'];
|
|
@@ -23287,13 +23282,13 @@ module.exports = resolveMongodbSrv;
|
|
|
23287
23282
|
|
|
23288
23283
|
"use strict";
|
|
23289
23284
|
|
|
23290
|
-
const tr46 = __webpack_require__(
|
|
23285
|
+
const tr46 = __webpack_require__(174);
|
|
23291
23286
|
|
|
23292
23287
|
const infra = __webpack_require__(79);
|
|
23293
|
-
const { utf8DecodeWithoutBOM } = __webpack_require__(
|
|
23288
|
+
const { utf8DecodeWithoutBOM } = __webpack_require__(54);
|
|
23294
23289
|
const { percentDecodeString, utf8PercentEncodeCodePoint, utf8PercentEncodeString, isC0ControlPercentEncode,
|
|
23295
23290
|
isFragmentPercentEncode, isQueryPercentEncode, isSpecialQueryPercentEncode, isPathPercentEncode,
|
|
23296
|
-
isUserinfoPercentEncode } = __webpack_require__(
|
|
23291
|
+
isUserinfoPercentEncode } = __webpack_require__(55);
|
|
23297
23292
|
|
|
23298
23293
|
function p(char) {
|
|
23299
23294
|
return char.codePointAt(0);
|
|
@@ -24571,8 +24566,8 @@ module.exports = {
|
|
|
24571
24566
|
|
|
24572
24567
|
"use strict";
|
|
24573
24568
|
|
|
24574
|
-
const { utf8Encode, utf8DecodeWithoutBOM } = __webpack_require__(
|
|
24575
|
-
const { percentDecodeBytes, utf8PercentEncodeString, isURLEncodedPercentEncode } = __webpack_require__(
|
|
24569
|
+
const { utf8Encode, utf8DecodeWithoutBOM } = __webpack_require__(54);
|
|
24570
|
+
const { percentDecodeBytes, utf8PercentEncodeString, isURLEncodedPercentEncode } = __webpack_require__(55);
|
|
24576
24571
|
|
|
24577
24572
|
function p(char) {
|
|
24578
24573
|
return char.codePointAt(0);
|
|
@@ -24685,10 +24680,10 @@ module.exports = {
|
|
|
24685
24680
|
"use strict";
|
|
24686
24681
|
|
|
24687
24682
|
|
|
24688
|
-
const conversions = __webpack_require__(
|
|
24689
|
-
const utils = __webpack_require__(
|
|
24683
|
+
const conversions = __webpack_require__(52);
|
|
24684
|
+
const utils = __webpack_require__(53);
|
|
24690
24685
|
|
|
24691
|
-
const Function = __webpack_require__(
|
|
24686
|
+
const Function = __webpack_require__(178);
|
|
24692
24687
|
const newObjectInRealm = utils.newObjectInRealm;
|
|
24693
24688
|
const implSymbol = utils.implSymbol;
|
|
24694
24689
|
const ctorRegistrySymbol = utils.ctorRegistrySymbol;
|
|
@@ -25154,7 +25149,7 @@ exports.install = (globalObject, globalNames) => {
|
|
|
25154
25149
|
});
|
|
25155
25150
|
};
|
|
25156
25151
|
|
|
25157
|
-
const Impl = __webpack_require__(
|
|
25152
|
+
const Impl = __webpack_require__(179);
|
|
25158
25153
|
|
|
25159
25154
|
|
|
25160
25155
|
/***/ }),
|
|
@@ -25163,11 +25158,11 @@ const Impl = __webpack_require__(181);
|
|
|
25163
25158
|
|
|
25164
25159
|
"use strict";
|
|
25165
25160
|
|
|
25166
|
-
const { lookup, constants } = __webpack_require__(
|
|
25161
|
+
const { lookup, constants } = __webpack_require__(32)('os_dns_native');
|
|
25167
25162
|
const { promisify } = __webpack_require__(14);
|
|
25168
|
-
const ipv6normalize = __webpack_require__(
|
|
25163
|
+
const ipv6normalize = __webpack_require__(181);
|
|
25169
25164
|
const nodeDns = __webpack_require__(21);
|
|
25170
|
-
const debug = __webpack_require__(
|
|
25165
|
+
const debug = __webpack_require__(182)('os-dns-native');
|
|
25171
25166
|
|
|
25172
25167
|
const rrtypes = ['A', 'AAAA', 'CNAME', 'TXT', 'SRV'];
|
|
25173
25168
|
const rrtypeEnumToString = Object.fromEntries(rrtypes.map(t => [constants[t], t]));
|
|
@@ -25296,7 +25291,7 @@ const {
|
|
|
25296
25291
|
prohibited_characters,
|
|
25297
25292
|
bidirectional_r_al,
|
|
25298
25293
|
bidirectional_l,
|
|
25299
|
-
} = __webpack_require__(
|
|
25294
|
+
} = __webpack_require__(185);
|
|
25300
25295
|
|
|
25301
25296
|
module.exports = saslprep;
|
|
25302
25297
|
|
|
@@ -25466,9 +25461,9 @@ const MongoCryptError = __webpack_require__(41).MongoCryptError;
|
|
|
25466
25461
|
function extension(mongodb) {
|
|
25467
25462
|
const modules = { mongodb };
|
|
25468
25463
|
|
|
25469
|
-
modules.stateMachine = __webpack_require__(
|
|
25470
|
-
modules.autoEncrypter = __webpack_require__(
|
|
25471
|
-
modules.clientEncryption = __webpack_require__(
|
|
25464
|
+
modules.stateMachine = __webpack_require__(232)(modules);
|
|
25465
|
+
modules.autoEncrypter = __webpack_require__(234)(modules);
|
|
25466
|
+
modules.clientEncryption = __webpack_require__(237)(modules);
|
|
25472
25467
|
|
|
25473
25468
|
return {
|
|
25474
25469
|
AutoEncrypter: modules.autoEncrypter.AutoEncrypter,
|
|
@@ -25512,13 +25507,13 @@ const ordered_1 = __webpack_require__(91);
|
|
|
25512
25507
|
Object.defineProperty(exports, "OrderedBulkOperation", { enumerable: true, get: function () { return ordered_1.OrderedBulkOperation; } });
|
|
25513
25508
|
const unordered_1 = __webpack_require__(97);
|
|
25514
25509
|
Object.defineProperty(exports, "UnorderedBulkOperation", { enumerable: true, get: function () { return unordered_1.UnorderedBulkOperation; } });
|
|
25515
|
-
const change_stream_1 = __webpack_require__(
|
|
25510
|
+
const change_stream_1 = __webpack_require__(29);
|
|
25516
25511
|
Object.defineProperty(exports, "ChangeStream", { enumerable: true, get: function () { return change_stream_1.ChangeStream; } });
|
|
25517
25512
|
const collection_1 = __webpack_require__(24);
|
|
25518
25513
|
Object.defineProperty(exports, "Collection", { enumerable: true, get: function () { return collection_1.Collection; } });
|
|
25519
25514
|
const abstract_cursor_1 = __webpack_require__(16);
|
|
25520
25515
|
Object.defineProperty(exports, "AbstractCursor", { enumerable: true, get: function () { return abstract_cursor_1.AbstractCursor; } });
|
|
25521
|
-
const aggregation_cursor_1 = __webpack_require__(
|
|
25516
|
+
const aggregation_cursor_1 = __webpack_require__(56);
|
|
25522
25517
|
Object.defineProperty(exports, "AggregationCursor", { enumerable: true, get: function () { return aggregation_cursor_1.AggregationCursor; } });
|
|
25523
25518
|
const find_cursor_1 = __webpack_require__(102);
|
|
25524
25519
|
Object.defineProperty(exports, "FindCursor", { enumerable: true, get: function () { return find_cursor_1.FindCursor; } });
|
|
@@ -25526,9 +25521,9 @@ const list_collections_cursor_1 = __webpack_require__(110);
|
|
|
25526
25521
|
Object.defineProperty(exports, "ListCollectionsCursor", { enumerable: true, get: function () { return list_collections_cursor_1.ListCollectionsCursor; } });
|
|
25527
25522
|
const list_indexes_cursor_1 = __webpack_require__(104);
|
|
25528
25523
|
Object.defineProperty(exports, "ListIndexesCursor", { enumerable: true, get: function () { return list_indexes_cursor_1.ListIndexesCursor; } });
|
|
25529
|
-
const db_1 = __webpack_require__(
|
|
25524
|
+
const db_1 = __webpack_require__(59);
|
|
25530
25525
|
Object.defineProperty(exports, "Db", { enumerable: true, get: function () { return db_1.Db; } });
|
|
25531
|
-
const gridfs_1 = __webpack_require__(
|
|
25526
|
+
const gridfs_1 = __webpack_require__(231);
|
|
25532
25527
|
Object.defineProperty(exports, "GridFSBucket", { enumerable: true, get: function () { return gridfs_1.GridFSBucket; } });
|
|
25533
25528
|
const download_1 = __webpack_require__(125);
|
|
25534
25529
|
Object.defineProperty(exports, "GridFSBucketReadStream", { enumerable: true, get: function () { return download_1.GridFSBucketReadStream; } });
|
|
@@ -25536,7 +25531,7 @@ const upload_1 = __webpack_require__(126);
|
|
|
25536
25531
|
Object.defineProperty(exports, "GridFSBucketWriteStream", { enumerable: true, get: function () { return upload_1.GridFSBucketWriteStream; } });
|
|
25537
25532
|
const logger_1 = __webpack_require__(17);
|
|
25538
25533
|
Object.defineProperty(exports, "Logger", { enumerable: true, get: function () { return logger_1.Logger; } });
|
|
25539
|
-
const mongo_client_1 = __webpack_require__(
|
|
25534
|
+
const mongo_client_1 = __webpack_require__(30);
|
|
25540
25535
|
Object.defineProperty(exports, "MongoClient", { enumerable: true, get: function () { return mongo_client_1.MongoClient; } });
|
|
25541
25536
|
const mongo_types_1 = __webpack_require__(8);
|
|
25542
25537
|
Object.defineProperty(exports, "CancellationToken", { enumerable: true, get: function () { return mongo_types_1.CancellationToken; } });
|
|
@@ -25606,15 +25601,15 @@ Object.defineProperty(exports, "MongoWriteConcernError", { enumerable: true, get
|
|
|
25606
25601
|
// enums
|
|
25607
25602
|
var common_2 = __webpack_require__(36);
|
|
25608
25603
|
Object.defineProperty(exports, "BatchType", { enumerable: true, get: function () { return common_2.BatchType; } });
|
|
25609
|
-
var gssapi_1 = __webpack_require__(
|
|
25604
|
+
var gssapi_1 = __webpack_require__(61);
|
|
25610
25605
|
Object.defineProperty(exports, "GSSAPICanonicalizationValue", { enumerable: true, get: function () { return gssapi_1.GSSAPICanonicalizationValue; } });
|
|
25611
25606
|
var providers_1 = __webpack_require__(25);
|
|
25612
25607
|
Object.defineProperty(exports, "AuthMechanism", { enumerable: true, get: function () { return providers_1.AuthMechanism; } });
|
|
25613
|
-
var compression_1 = __webpack_require__(
|
|
25608
|
+
var compression_1 = __webpack_require__(62);
|
|
25614
25609
|
Object.defineProperty(exports, "Compressor", { enumerable: true, get: function () { return compression_1.Compressor; } });
|
|
25615
25610
|
var abstract_cursor_2 = __webpack_require__(16);
|
|
25616
25611
|
Object.defineProperty(exports, "CURSOR_FLAGS", { enumerable: true, get: function () { return abstract_cursor_2.CURSOR_FLAGS; } });
|
|
25617
|
-
var deps_1 = __webpack_require__(
|
|
25612
|
+
var deps_1 = __webpack_require__(31);
|
|
25618
25613
|
Object.defineProperty(exports, "AutoEncryptionLoggerLevel", { enumerable: true, get: function () { return deps_1.AutoEncryptionLoggerLevel; } });
|
|
25619
25614
|
var error_2 = __webpack_require__(0);
|
|
25620
25615
|
Object.defineProperty(exports, "MongoErrorLabel", { enumerable: true, get: function () { return error_2.MongoErrorLabel; } });
|
|
@@ -25622,7 +25617,7 @@ var explain_1 = __webpack_require__(89);
|
|
|
25622
25617
|
Object.defineProperty(exports, "ExplainVerbosity", { enumerable: true, get: function () { return explain_1.ExplainVerbosity; } });
|
|
25623
25618
|
var logger_2 = __webpack_require__(17);
|
|
25624
25619
|
Object.defineProperty(exports, "LoggerLevel", { enumerable: true, get: function () { return logger_2.LoggerLevel; } });
|
|
25625
|
-
var mongo_client_2 = __webpack_require__(
|
|
25620
|
+
var mongo_client_2 = __webpack_require__(30);
|
|
25626
25621
|
Object.defineProperty(exports, "ServerApiVersion", { enumerable: true, get: function () { return mongo_client_2.ServerApiVersion; } });
|
|
25627
25622
|
var mongo_types_2 = __webpack_require__(8);
|
|
25628
25623
|
Object.defineProperty(exports, "BSONType", { enumerable: true, get: function () { return mongo_types_2.BSONType; } });
|
|
@@ -25662,7 +25657,7 @@ Object.defineProperty(exports, "ConnectionPoolCreatedEvent", { enumerable: true,
|
|
|
25662
25657
|
Object.defineProperty(exports, "ConnectionPoolMonitoringEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionPoolMonitoringEvent; } });
|
|
25663
25658
|
Object.defineProperty(exports, "ConnectionPoolReadyEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionPoolReadyEvent; } });
|
|
25664
25659
|
Object.defineProperty(exports, "ConnectionReadyEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionReadyEvent; } });
|
|
25665
|
-
var events_1 = __webpack_require__(
|
|
25660
|
+
var events_1 = __webpack_require__(63);
|
|
25666
25661
|
Object.defineProperty(exports, "ServerClosedEvent", { enumerable: true, get: function () { return events_1.ServerClosedEvent; } });
|
|
25667
25662
|
Object.defineProperty(exports, "ServerDescriptionChangedEvent", { enumerable: true, get: function () { return events_1.ServerDescriptionChangedEvent; } });
|
|
25668
25663
|
Object.defineProperty(exports, "ServerHeartbeatFailedEvent", { enumerable: true, get: function () { return events_1.ServerHeartbeatFailedEvent; } });
|
|
@@ -25686,10 +25681,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
25686
25681
|
exports.Admin = void 0;
|
|
25687
25682
|
const add_user_1 = __webpack_require__(87);
|
|
25688
25683
|
const execute_operation_1 = __webpack_require__(12);
|
|
25689
|
-
const list_databases_1 = __webpack_require__(
|
|
25684
|
+
const list_databases_1 = __webpack_require__(191);
|
|
25690
25685
|
const remove_user_1 = __webpack_require__(90);
|
|
25691
25686
|
const run_command_1 = __webpack_require__(35);
|
|
25692
|
-
const validate_collection_1 = __webpack_require__(
|
|
25687
|
+
const validate_collection_1 = __webpack_require__(192);
|
|
25693
25688
|
/**
|
|
25694
25689
|
* The **Admin** class is an internal class that allows convenient access to
|
|
25695
25690
|
* the admin functionality and commands for MongoDB.
|
|
@@ -26832,7 +26827,7 @@ exports.isSharded = isSharded;
|
|
|
26832
26827
|
|
|
26833
26828
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26834
26829
|
exports.TopologyDescription = void 0;
|
|
26835
|
-
const WIRE_CONSTANTS = __webpack_require__(
|
|
26830
|
+
const WIRE_CONSTANTS = __webpack_require__(28);
|
|
26836
26831
|
const error_1 = __webpack_require__(0);
|
|
26837
26832
|
const utils_1 = __webpack_require__(1);
|
|
26838
26833
|
const common_1 = __webpack_require__(10);
|
|
@@ -27325,8 +27320,8 @@ exports.FindCursor = exports.FLAGS = void 0;
|
|
|
27325
27320
|
const error_1 = __webpack_require__(0);
|
|
27326
27321
|
const count_1 = __webpack_require__(103);
|
|
27327
27322
|
const execute_operation_1 = __webpack_require__(12);
|
|
27328
|
-
const find_1 = __webpack_require__(
|
|
27329
|
-
const sort_1 = __webpack_require__(
|
|
27323
|
+
const find_1 = __webpack_require__(195);
|
|
27324
|
+
const sort_1 = __webpack_require__(58);
|
|
27330
27325
|
const utils_1 = __webpack_require__(1);
|
|
27331
27326
|
const abstract_cursor_1 = __webpack_require__(16);
|
|
27332
27327
|
/** @internal */
|
|
@@ -27889,7 +27884,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
27889
27884
|
exports.FindOneAndUpdateOperation = exports.FindOneAndReplaceOperation = exports.FindOneAndDeleteOperation = exports.ReturnDocument = void 0;
|
|
27890
27885
|
const error_1 = __webpack_require__(0);
|
|
27891
27886
|
const read_preference_1 = __webpack_require__(6);
|
|
27892
|
-
const sort_1 = __webpack_require__(
|
|
27887
|
+
const sort_1 = __webpack_require__(58);
|
|
27893
27888
|
const utils_1 = __webpack_require__(1);
|
|
27894
27889
|
const command_1 = __webpack_require__(5);
|
|
27895
27890
|
const operation_1 = __webpack_require__(3);
|
|
@@ -28155,9 +28150,9 @@ exports.DbStatsOperation = DbStatsOperation;
|
|
|
28155
28150
|
|
|
28156
28151
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28157
28152
|
exports.ChangeStreamCursor = void 0;
|
|
28158
|
-
const change_stream_1 = __webpack_require__(
|
|
28153
|
+
const change_stream_1 = __webpack_require__(29);
|
|
28159
28154
|
const constants_1 = __webpack_require__(7);
|
|
28160
|
-
const aggregate_1 = __webpack_require__(
|
|
28155
|
+
const aggregate_1 = __webpack_require__(57);
|
|
28161
28156
|
const execute_operation_1 = __webpack_require__(12);
|
|
28162
28157
|
const utils_1 = __webpack_require__(1);
|
|
28163
28158
|
const abstract_cursor_1 = __webpack_require__(16);
|
|
@@ -28277,7 +28272,7 @@ exports.ChangeStreamCursor = ChangeStreamCursor;
|
|
|
28277
28272
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28278
28273
|
exports.ListCollectionsCursor = void 0;
|
|
28279
28274
|
const execute_operation_1 = __webpack_require__(12);
|
|
28280
|
-
const list_collections_1 = __webpack_require__(
|
|
28275
|
+
const list_collections_1 = __webpack_require__(202);
|
|
28281
28276
|
const abstract_cursor_1 = __webpack_require__(16);
|
|
28282
28277
|
/** @public */
|
|
28283
28278
|
class ListCollectionsCursor extends abstract_cursor_1.AbstractCursor {
|
|
@@ -28378,7 +28373,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
28378
28373
|
exports.MongoCredentials = void 0;
|
|
28379
28374
|
const error_1 = __webpack_require__(0);
|
|
28380
28375
|
const utils_1 = __webpack_require__(1);
|
|
28381
|
-
const gssapi_1 = __webpack_require__(
|
|
28376
|
+
const gssapi_1 = __webpack_require__(61);
|
|
28382
28377
|
const providers_1 = __webpack_require__(25);
|
|
28383
28378
|
// https://github.com/mongodb/specifications/blob/master/source/auth/auth.rst
|
|
28384
28379
|
function getDefaultAuthMechanism(hello) {
|
|
@@ -28523,11 +28518,11 @@ module.exports = kerberos;
|
|
|
28523
28518
|
// Support legacy versions of the mongodb driver which expect this export
|
|
28524
28519
|
module.exports.Kerberos = kerberos;
|
|
28525
28520
|
|
|
28526
|
-
module.exports.version = __webpack_require__(
|
|
28521
|
+
module.exports.version = __webpack_require__(207).version;
|
|
28527
28522
|
|
|
28528
28523
|
// Set up the auth processes
|
|
28529
28524
|
module.exports.processes = {
|
|
28530
|
-
MongoAuthProcess: __webpack_require__(
|
|
28525
|
+
MongoAuthProcess: __webpack_require__(208).MongoAuthProcess
|
|
28531
28526
|
};
|
|
28532
28527
|
|
|
28533
28528
|
|
|
@@ -28538,10 +28533,10 @@ module.exports.processes = {
|
|
|
28538
28533
|
"use strict";
|
|
28539
28534
|
|
|
28540
28535
|
|
|
28541
|
-
const kerberos = __webpack_require__(
|
|
28536
|
+
const kerberos = __webpack_require__(32)('kerberos');
|
|
28542
28537
|
const KerberosClient = kerberos.KerberosClient;
|
|
28543
28538
|
const KerberosServer = kerberos.KerberosServer;
|
|
28544
|
-
const defineOperation = __webpack_require__(
|
|
28539
|
+
const defineOperation = __webpack_require__(206).defineOperation;
|
|
28545
28540
|
|
|
28546
28541
|
// GSS Flags
|
|
28547
28542
|
const GSS_C_DELEG_FLAG = 1;
|
|
@@ -29238,7 +29233,7 @@ module.exports = Denque;
|
|
|
29238
29233
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29239
29234
|
exports.Server = void 0;
|
|
29240
29235
|
const connection_1 = __webpack_require__(40);
|
|
29241
|
-
const connection_pool_1 = __webpack_require__(
|
|
29236
|
+
const connection_pool_1 = __webpack_require__(217);
|
|
29242
29237
|
const errors_1 = __webpack_require__(123);
|
|
29243
29238
|
const constants_1 = __webpack_require__(7);
|
|
29244
29239
|
const error_1 = __webpack_require__(0);
|
|
@@ -29247,7 +29242,7 @@ const mongo_types_1 = __webpack_require__(8);
|
|
|
29247
29242
|
const transactions_1 = __webpack_require__(101);
|
|
29248
29243
|
const utils_1 = __webpack_require__(1);
|
|
29249
29244
|
const common_1 = __webpack_require__(10);
|
|
29250
|
-
const monitor_1 = __webpack_require__(
|
|
29245
|
+
const monitor_1 = __webpack_require__(230);
|
|
29251
29246
|
const server_description_1 = __webpack_require__(38);
|
|
29252
29247
|
const stateTransition = (0, utils_1.makeStateMachine)({
|
|
29253
29248
|
[common_1.STATE_CLOSED]: [common_1.STATE_CLOSED, common_1.STATE_CONNECTING],
|
|
@@ -29600,7 +29595,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
29600
29595
|
exports.CommandFailedEvent = exports.CommandSucceededEvent = exports.CommandStartedEvent = void 0;
|
|
29601
29596
|
const constants_1 = __webpack_require__(7);
|
|
29602
29597
|
const utils_1 = __webpack_require__(1);
|
|
29603
|
-
const commands_1 = __webpack_require__(
|
|
29598
|
+
const commands_1 = __webpack_require__(64);
|
|
29604
29599
|
/**
|
|
29605
29600
|
* An event indicating the start of a given
|
|
29606
29601
|
* @public
|
|
@@ -29847,23 +29842,23 @@ function extractConnectionDetails(connection) {
|
|
|
29847
29842
|
|
|
29848
29843
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29849
29844
|
exports.LEGAL_TCP_SOCKET_OPTIONS = exports.LEGAL_TLS_SOCKET_OPTIONS = exports.prepareHandshakeDocument = exports.connect = void 0;
|
|
29850
|
-
const net = __webpack_require__(
|
|
29845
|
+
const net = __webpack_require__(65);
|
|
29851
29846
|
const socks_1 = __webpack_require__(119);
|
|
29852
|
-
const tls = __webpack_require__(
|
|
29847
|
+
const tls = __webpack_require__(51);
|
|
29853
29848
|
const bson_1 = __webpack_require__(4);
|
|
29854
29849
|
const constants_1 = __webpack_require__(7);
|
|
29855
29850
|
const error_1 = __webpack_require__(0);
|
|
29856
29851
|
const utils_1 = __webpack_require__(1);
|
|
29857
29852
|
const auth_provider_1 = __webpack_require__(18);
|
|
29858
|
-
const gssapi_1 = __webpack_require__(
|
|
29859
|
-
const mongocr_1 = __webpack_require__(
|
|
29860
|
-
const mongodb_aws_1 = __webpack_require__(
|
|
29861
|
-
const plain_1 = __webpack_require__(
|
|
29853
|
+
const gssapi_1 = __webpack_require__(61);
|
|
29854
|
+
const mongocr_1 = __webpack_require__(224);
|
|
29855
|
+
const mongodb_aws_1 = __webpack_require__(225);
|
|
29856
|
+
const plain_1 = __webpack_require__(227);
|
|
29862
29857
|
const providers_1 = __webpack_require__(25);
|
|
29863
|
-
const scram_1 = __webpack_require__(
|
|
29864
|
-
const x509_1 = __webpack_require__(
|
|
29858
|
+
const scram_1 = __webpack_require__(228);
|
|
29859
|
+
const x509_1 = __webpack_require__(229);
|
|
29865
29860
|
const connection_1 = __webpack_require__(40);
|
|
29866
|
-
const constants_2 = __webpack_require__(
|
|
29861
|
+
const constants_2 = __webpack_require__(28);
|
|
29867
29862
|
const AUTH_PROVIDERS = new Map([
|
|
29868
29863
|
[providers_1.AuthMechanism.MONGODB_AWS, new mongodb_aws_1.MongoDBAWS()],
|
|
29869
29864
|
[providers_1.AuthMechanism.MONGODB_CR, new mongocr_1.MongoCR()],
|
|
@@ -30264,7 +30259,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
30264
30259
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
30265
30260
|
};
|
|
30266
30261
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30267
|
-
__exportStar(__webpack_require__(
|
|
30262
|
+
__exportStar(__webpack_require__(218), exports);
|
|
30268
30263
|
//# sourceMappingURL=index.js.map
|
|
30269
30264
|
|
|
30270
30265
|
/***/ }),
|
|
@@ -31579,18 +31574,18 @@ __webpack_require__.d(__webpack_exports__, "b", function() { return /* reexport
|
|
|
31579
31574
|
|
|
31580
31575
|
// UNUSED EXPORTS: batch, ReactReduxContext, useDispatch, createDispatchHook, useSelector, createSelectorHook, useStore, createStoreHook, shallowEqual
|
|
31581
31576
|
|
|
31582
|
-
// EXTERNAL MODULE: /
|
|
31583
|
-
var shim = __webpack_require__(
|
|
31577
|
+
// EXTERNAL MODULE: /home/runner/work/compass/compass/node_modules/use-sync-external-store/shim/index.js
|
|
31578
|
+
var shim = __webpack_require__(67);
|
|
31584
31579
|
|
|
31585
|
-
// EXTERNAL MODULE: /
|
|
31580
|
+
// EXTERNAL MODULE: /home/runner/work/compass/compass/node_modules/use-sync-external-store/shim/with-selector.js
|
|
31586
31581
|
var with_selector = __webpack_require__(129);
|
|
31587
31582
|
|
|
31588
|
-
// EXTERNAL MODULE: /
|
|
31583
|
+
// EXTERNAL MODULE: /home/runner/work/compass/compass/node_modules/@hot-loader/react-dom/index.js
|
|
31589
31584
|
var react_dom = __webpack_require__(70);
|
|
31590
31585
|
|
|
31591
|
-
// CONCATENATED MODULE: /
|
|
31586
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/utils/reactBatchedUpdates.js
|
|
31592
31587
|
|
|
31593
|
-
// CONCATENATED MODULE: /
|
|
31588
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/utils/batch.js
|
|
31594
31589
|
// Default to a dummy "batch" implementation that just runs the callback
|
|
31595
31590
|
function defaultNoopBatch(callback) {
|
|
31596
31591
|
callback();
|
|
@@ -31605,14 +31600,14 @@ const getBatch = () => batch_batch;
|
|
|
31605
31600
|
var external_react_ = __webpack_require__(2);
|
|
31606
31601
|
var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
|
|
31607
31602
|
|
|
31608
|
-
// CONCATENATED MODULE: /
|
|
31603
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/components/Context.js
|
|
31609
31604
|
|
|
31610
31605
|
const ReactReduxContext = /*#__PURE__*/external_react_default.a.createContext(null);
|
|
31611
31606
|
|
|
31612
31607
|
if (false) {}
|
|
31613
31608
|
|
|
31614
31609
|
/* harmony default export */ var components_Context = (ReactReduxContext);
|
|
31615
|
-
// CONCATENATED MODULE: /
|
|
31610
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/hooks/useReduxContext.js
|
|
31616
31611
|
|
|
31617
31612
|
|
|
31618
31613
|
|
|
@@ -31639,11 +31634,11 @@ function useReduxContext_useReduxContext() {
|
|
|
31639
31634
|
|
|
31640
31635
|
return contextValue;
|
|
31641
31636
|
}
|
|
31642
|
-
// CONCATENATED MODULE: /
|
|
31637
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/utils/useSyncExternalStore.js
|
|
31643
31638
|
const notInitialized = () => {
|
|
31644
31639
|
throw new Error('uSES not initialized!');
|
|
31645
31640
|
};
|
|
31646
|
-
// CONCATENATED MODULE: /
|
|
31641
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/hooks/useSelector.js
|
|
31647
31642
|
|
|
31648
31643
|
|
|
31649
31644
|
|
|
@@ -31702,20 +31697,20 @@ function createSelectorHook(context = ReactReduxContext) {
|
|
|
31702
31697
|
*/
|
|
31703
31698
|
|
|
31704
31699
|
const useSelector_useSelector = /*#__PURE__*/createSelectorHook();
|
|
31705
|
-
// EXTERNAL MODULE: /
|
|
31700
|
+
// EXTERNAL MODULE: /home/runner/work/compass/compass/node_modules/@babel/runtime/helpers/esm/extends.js
|
|
31706
31701
|
var esm_extends = __webpack_require__(26);
|
|
31707
31702
|
|
|
31708
|
-
// EXTERNAL MODULE: /
|
|
31703
|
+
// EXTERNAL MODULE: /home/runner/work/compass/compass/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js
|
|
31709
31704
|
var objectWithoutPropertiesLoose = __webpack_require__(42);
|
|
31710
31705
|
|
|
31711
|
-
// EXTERNAL MODULE: /
|
|
31712
|
-
var hoist_non_react_statics_cjs = __webpack_require__(
|
|
31706
|
+
// EXTERNAL MODULE: /home/runner/work/compass/compass/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js
|
|
31707
|
+
var hoist_non_react_statics_cjs = __webpack_require__(68);
|
|
31713
31708
|
var hoist_non_react_statics_cjs_default = /*#__PURE__*/__webpack_require__.n(hoist_non_react_statics_cjs);
|
|
31714
31709
|
|
|
31715
|
-
// EXTERNAL MODULE: /
|
|
31710
|
+
// EXTERNAL MODULE: /home/runner/work/compass/compass/node_modules/react-redux/node_modules/react-is/index.js
|
|
31716
31711
|
var react_is = __webpack_require__(130);
|
|
31717
31712
|
|
|
31718
|
-
// CONCATENATED MODULE: /
|
|
31713
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/utils/warning.js
|
|
31719
31714
|
/**
|
|
31720
31715
|
* Prints a warning in the console if it exists.
|
|
31721
31716
|
*
|
|
@@ -31740,7 +31735,7 @@ function warning(message) {
|
|
|
31740
31735
|
/* eslint-enable no-empty */
|
|
31741
31736
|
|
|
31742
31737
|
}
|
|
31743
|
-
// CONCATENATED MODULE: /
|
|
31738
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/connect/verifySubselectors.js
|
|
31744
31739
|
|
|
31745
31740
|
|
|
31746
31741
|
function verify(selector, methodName) {
|
|
@@ -31758,7 +31753,7 @@ function verifySubselectors(mapStateToProps, mapDispatchToProps, mergeProps) {
|
|
|
31758
31753
|
verify(mapDispatchToProps, 'mapDispatchToProps');
|
|
31759
31754
|
verify(mergeProps, 'mergeProps');
|
|
31760
31755
|
}
|
|
31761
|
-
// CONCATENATED MODULE: /
|
|
31756
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/connect/selectorFactory.js
|
|
31762
31757
|
|
|
31763
31758
|
const _excluded = ["initMapStateToProps", "initMapDispatchToProps", "initMergeProps"];
|
|
31764
31759
|
|
|
@@ -31841,7 +31836,7 @@ function finalPropsSelectorFactory(dispatch, _ref) {
|
|
|
31841
31836
|
|
|
31842
31837
|
return pureFinalPropsSelectorFactory(mapStateToProps, mapDispatchToProps, mergeProps, dispatch, options);
|
|
31843
31838
|
}
|
|
31844
|
-
// CONCATENATED MODULE: /
|
|
31839
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/utils/bindActionCreators.js
|
|
31845
31840
|
function bindActionCreators(actionCreators, dispatch) {
|
|
31846
31841
|
const boundActionCreators = {};
|
|
31847
31842
|
|
|
@@ -31855,7 +31850,7 @@ function bindActionCreators(actionCreators, dispatch) {
|
|
|
31855
31850
|
|
|
31856
31851
|
return boundActionCreators;
|
|
31857
31852
|
}
|
|
31858
|
-
// CONCATENATED MODULE: /
|
|
31853
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/utils/isPlainObject.js
|
|
31859
31854
|
/**
|
|
31860
31855
|
* @param {any} obj The object to inspect.
|
|
31861
31856
|
* @returns {boolean} True if the argument appears to be a plain object.
|
|
@@ -31872,7 +31867,7 @@ function isPlainObject(obj) {
|
|
|
31872
31867
|
|
|
31873
31868
|
return proto === baseProto;
|
|
31874
31869
|
}
|
|
31875
|
-
// CONCATENATED MODULE: /
|
|
31870
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/utils/verifyPlainObject.js
|
|
31876
31871
|
|
|
31877
31872
|
|
|
31878
31873
|
function verifyPlainObject(value, displayName, methodName) {
|
|
@@ -31880,7 +31875,7 @@ function verifyPlainObject(value, displayName, methodName) {
|
|
|
31880
31875
|
warning(`${methodName}() in ${displayName} must return a plain object. Instead received ${value}.`);
|
|
31881
31876
|
}
|
|
31882
31877
|
}
|
|
31883
|
-
// CONCATENATED MODULE: /
|
|
31878
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/connect/wrapMapToProps.js
|
|
31884
31879
|
|
|
31885
31880
|
function wrapMapToPropsConstant( // * Note:
|
|
31886
31881
|
// It seems that the dispatch argument
|
|
@@ -31951,13 +31946,13 @@ function wrapMapToPropsFunc(mapToProps, methodName) {
|
|
|
31951
31946
|
return proxy;
|
|
31952
31947
|
};
|
|
31953
31948
|
}
|
|
31954
|
-
// CONCATENATED MODULE: /
|
|
31949
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/connect/invalidArgFactory.js
|
|
31955
31950
|
function createInvalidArgFactory(arg, name) {
|
|
31956
31951
|
return (dispatch, options) => {
|
|
31957
31952
|
throw new Error(`Invalid value of type ${typeof arg} for ${name} argument when connecting component ${options.wrappedComponentName}.`);
|
|
31958
31953
|
};
|
|
31959
31954
|
}
|
|
31960
|
-
// CONCATENATED MODULE: /
|
|
31955
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/connect/mapDispatchToProps.js
|
|
31961
31956
|
|
|
31962
31957
|
|
|
31963
31958
|
|
|
@@ -31968,14 +31963,14 @@ function mapDispatchToPropsFactory(mapDispatchToProps) {
|
|
|
31968
31963
|
})) : typeof mapDispatchToProps === 'function' ? // @ts-ignore
|
|
31969
31964
|
wrapMapToPropsFunc(mapDispatchToProps, 'mapDispatchToProps') : createInvalidArgFactory(mapDispatchToProps, 'mapDispatchToProps');
|
|
31970
31965
|
}
|
|
31971
|
-
// CONCATENATED MODULE: /
|
|
31966
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/connect/mapStateToProps.js
|
|
31972
31967
|
|
|
31973
31968
|
|
|
31974
31969
|
function mapStateToPropsFactory(mapStateToProps) {
|
|
31975
31970
|
return !mapStateToProps ? wrapMapToPropsConstant(() => ({})) : typeof mapStateToProps === 'function' ? // @ts-ignore
|
|
31976
31971
|
wrapMapToPropsFunc(mapStateToProps, 'mapStateToProps') : createInvalidArgFactory(mapStateToProps, 'mapStateToProps');
|
|
31977
31972
|
}
|
|
31978
|
-
// CONCATENATED MODULE: /
|
|
31973
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/connect/mergeProps.js
|
|
31979
31974
|
|
|
31980
31975
|
|
|
31981
31976
|
|
|
@@ -32008,7 +32003,7 @@ function wrapMergePropsFunc(mergeProps) {
|
|
|
32008
32003
|
function mergePropsFactory(mergeProps) {
|
|
32009
32004
|
return !mergeProps ? () => defaultMergeProps : typeof mergeProps === 'function' ? wrapMergePropsFunc(mergeProps) : createInvalidArgFactory(mergeProps, 'mergeProps');
|
|
32010
32005
|
}
|
|
32011
|
-
// CONCATENATED MODULE: /
|
|
32006
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/utils/Subscription.js
|
|
32012
32007
|
// encapsulates the subscription logic for connecting a component to the redux store, as
|
|
32013
32008
|
// well as nesting subscriptions of descendant components, so that we can ensure the
|
|
32014
32009
|
// ancestor components re-render before descendants
|
|
@@ -32136,7 +32131,7 @@ function createSubscription(store, parentSub) {
|
|
|
32136
32131
|
};
|
|
32137
32132
|
return subscription;
|
|
32138
32133
|
}
|
|
32139
|
-
// CONCATENATED MODULE: /
|
|
32134
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/utils/useIsomorphicLayoutEffect.js
|
|
32140
32135
|
// React currently throws a warning when using useLayoutEffect on the server.
|
|
32141
32136
|
// To get around it, we can conditionally useEffect on the server (no-op) and
|
|
32142
32137
|
// useLayoutEffect in the browser. We need useLayoutEffect to ensure the store
|
|
@@ -32149,7 +32144,7 @@ function createSubscription(store, parentSub) {
|
|
|
32149
32144
|
|
|
32150
32145
|
const canUseDOM = !!(typeof window !== 'undefined' && typeof window.document !== 'undefined' && typeof window.document.createElement !== 'undefined');
|
|
32151
32146
|
const useIsomorphicLayoutEffect = canUseDOM ? external_react_["useLayoutEffect"] : external_react_["useEffect"];
|
|
32152
|
-
// CONCATENATED MODULE: /
|
|
32147
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/utils/shallowEqual.js
|
|
32153
32148
|
function is(x, y) {
|
|
32154
32149
|
if (x === y) {
|
|
32155
32150
|
return x !== 0 || y !== 0 || 1 / x === 1 / y;
|
|
@@ -32177,7 +32172,7 @@ function shallowEqual(objA, objB) {
|
|
|
32177
32172
|
|
|
32178
32173
|
return true;
|
|
32179
32174
|
}
|
|
32180
|
-
// CONCATENATED MODULE: /
|
|
32175
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/components/connect.js
|
|
32181
32176
|
|
|
32182
32177
|
|
|
32183
32178
|
const connect_excluded = ["reactReduxForwardedRef"];
|
|
@@ -32579,7 +32574,7 @@ function connect(mapStateToProps, mapDispatchToProps, mergeProps, {
|
|
|
32579
32574
|
}
|
|
32580
32575
|
|
|
32581
32576
|
/* harmony default export */ var components_connect = (connect);
|
|
32582
|
-
// CONCATENATED MODULE: /
|
|
32577
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/components/Provider.js
|
|
32583
32578
|
|
|
32584
32579
|
|
|
32585
32580
|
|
|
@@ -32624,7 +32619,7 @@ function Provider({
|
|
|
32624
32619
|
}
|
|
32625
32620
|
|
|
32626
32621
|
/* harmony default export */ var components_Provider = (Provider);
|
|
32627
|
-
// CONCATENATED MODULE: /
|
|
32622
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/hooks/useStore.js
|
|
32628
32623
|
|
|
32629
32624
|
|
|
32630
32625
|
|
|
@@ -32663,7 +32658,7 @@ function createStoreHook(context = ReactReduxContext) {
|
|
|
32663
32658
|
*/
|
|
32664
32659
|
|
|
32665
32660
|
const useStore_useStore = /*#__PURE__*/createStoreHook();
|
|
32666
|
-
// CONCATENATED MODULE: /
|
|
32661
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/hooks/useDispatch.js
|
|
32667
32662
|
|
|
32668
32663
|
|
|
32669
32664
|
/**
|
|
@@ -32705,9 +32700,9 @@ function createDispatchHook(context = ReactReduxContext) {
|
|
|
32705
32700
|
*/
|
|
32706
32701
|
|
|
32707
32702
|
const useDispatch = /*#__PURE__*/createDispatchHook();
|
|
32708
|
-
// CONCATENATED MODULE: /
|
|
32703
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/types.js
|
|
32709
32704
|
|
|
32710
|
-
// CONCATENATED MODULE: /
|
|
32705
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/exports.js
|
|
32711
32706
|
|
|
32712
32707
|
|
|
32713
32708
|
|
|
@@ -32717,7 +32712,7 @@ const useDispatch = /*#__PURE__*/createDispatchHook();
|
|
|
32717
32712
|
|
|
32718
32713
|
|
|
32719
32714
|
|
|
32720
|
-
// CONCATENATED MODULE: /
|
|
32715
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/index.js
|
|
32721
32716
|
// The primary entry point assumes we're working with standard ReactDOM/RN, but
|
|
32722
32717
|
// older versions that do not include `useSyncExternalStore` (React 16.9 - 17.x).
|
|
32723
32718
|
// Because of that, the useSyncExternalStore compat shim is needed.
|
|
@@ -32769,7 +32764,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
32769
32764
|
exports.NoopAnalytics = exports.ToggleableAnalytics = exports.setupLoggerAndTelemetry = void 0;
|
|
32770
32765
|
var setup_logger_and_telemetry_1 = __webpack_require__(143);
|
|
32771
32766
|
Object.defineProperty(exports, "setupLoggerAndTelemetry", { enumerable: true, get: function () { return setup_logger_and_telemetry_1.setupLoggerAndTelemetry; } });
|
|
32772
|
-
var analytics_helpers_1 = __webpack_require__(
|
|
32767
|
+
var analytics_helpers_1 = __webpack_require__(239);
|
|
32773
32768
|
Object.defineProperty(exports, "ToggleableAnalytics", { enumerable: true, get: function () { return analytics_helpers_1.ToggleableAnalytics; } });
|
|
32774
32769
|
Object.defineProperty(exports, "NoopAnalytics", { enumerable: true, get: function () { return analytics_helpers_1.NoopAnalytics; } });
|
|
32775
32770
|
//# sourceMappingURL=index.js.map
|
|
@@ -32937,7 +32932,7 @@ function r(a){var b=a.getSnapshot;a=a.value;try{var d=b();return!k(a,d)}catch(f)
|
|
|
32937
32932
|
* This source code is licensed under the MIT license found in the
|
|
32938
32933
|
* LICENSE file in the root directory of this source tree.
|
|
32939
32934
|
*/
|
|
32940
|
-
var h=__webpack_require__(2),n=__webpack_require__(
|
|
32935
|
+
var h=__webpack_require__(2),n=__webpack_require__(67);function p(a,b){return a===b&&(0!==a||1/a===1/b)||a!==a&&b!==b}var q="function"===typeof Object.is?Object.is:p,r=n.useSyncExternalStore,t=h.useRef,u=h.useEffect,v=h.useMemo,w=h.useDebugValue;
|
|
32941
32936
|
exports.useSyncExternalStoreWithSelector=function(a,b,e,l,g){var c=t(null);if(null===c.current){var f={hasValue:!1,value:null};c.current=f}else f=c.current;c=v(function(){function a(a){if(!c){c=!0;d=a;a=l(a);if(void 0!==g&&f.hasValue){var b=f.value;if(g(b,a))return k=b}return k=a}b=k;if(q(d,a))return b;var e=l(a);if(void 0!==g&&g(b,e))return b;d=a;return k=e}var c=!1,d,k,m=void 0===e?null:e;return[function(){return a(b())},null===m?void 0:function(){return a(m())}]},[b,e,l,g]);var d=r(a,c[0],c[1]);
|
|
32942
32937
|
u(function(){f.hasValue=!0;f.value=d},[d]);w(d);return d};
|
|
32943
32938
|
|
|
@@ -50954,7 +50949,7 @@ var history_1 = __webpack_require__(148);
|
|
|
50954
50949
|
Object.defineProperty(exports, "changeHistory", { enumerable: true, get: function () { return history_1.changeHistory; } });
|
|
50955
50950
|
Object.defineProperty(exports, "redactSensitiveData", { enumerable: true, get: function () { return history_1.redactSensitiveData; } });
|
|
50956
50951
|
Object.defineProperty(exports, "HIDDEN_COMMANDS", { enumerable: true, get: function () { return history_1.HIDDEN_COMMANDS; } });
|
|
50957
|
-
var mongodb_connection_string_url_1 = __webpack_require__(
|
|
50952
|
+
var mongodb_connection_string_url_1 = __webpack_require__(44);
|
|
50958
50953
|
Object.defineProperty(exports, "redactURICredentials", { enumerable: true, get: function () { return mongodb_connection_string_url_1.redactConnectionString; } });
|
|
50959
50954
|
//# sourceMappingURL=index.js.map
|
|
50960
50955
|
|
|
@@ -50995,7 +50990,7 @@ exports.changeHistory = changeHistory;
|
|
|
50995
50990
|
|
|
50996
50991
|
const { URL, URLSearchParams } = __webpack_require__(150);
|
|
50997
50992
|
const urlStateMachine = __webpack_require__(72);
|
|
50998
|
-
const percentEncoding = __webpack_require__(
|
|
50993
|
+
const percentEncoding = __webpack_require__(48);
|
|
50999
50994
|
|
|
51000
50995
|
const sharedGlobalObject = { Array, Object, Promise, String, TypeError };
|
|
51001
50996
|
URL.install(sharedGlobalObject, ["Window"]);
|
|
@@ -51041,8 +51036,8 @@ exports.URLSearchParams = URLSearchParams;
|
|
|
51041
51036
|
"use strict";
|
|
51042
51037
|
|
|
51043
51038
|
|
|
51044
|
-
const conversions = __webpack_require__(
|
|
51045
|
-
const utils = __webpack_require__(
|
|
51039
|
+
const conversions = __webpack_require__(45);
|
|
51040
|
+
const utils = __webpack_require__(46);
|
|
51046
51041
|
|
|
51047
51042
|
const implSymbol = utils.implSymbol;
|
|
51048
51043
|
const ctorRegistrySymbol = utils.ctorRegistrySymbol;
|
|
@@ -52071,8 +52066,8 @@ module.exports.STATUS_MAPPING = {
|
|
|
52071
52066
|
"use strict";
|
|
52072
52067
|
|
|
52073
52068
|
|
|
52074
|
-
const conversions = __webpack_require__(
|
|
52075
|
-
const utils = __webpack_require__(
|
|
52069
|
+
const conversions = __webpack_require__(45);
|
|
52070
|
+
const utils = __webpack_require__(46);
|
|
52076
52071
|
|
|
52077
52072
|
exports.convert = (globalObject, value, { context = "The provided value" } = {}) => {
|
|
52078
52073
|
if (typeof value !== "function") {
|
|
@@ -52281,7 +52276,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
52281
52276
|
};
|
|
52282
52277
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52283
52278
|
exports.redactConnectionString = exports.redactValidConnectionString = void 0;
|
|
52284
|
-
const index_1 = __importStar(__webpack_require__(
|
|
52279
|
+
const index_1 = __importStar(__webpack_require__(44));
|
|
52285
52280
|
function redactValidConnectionString(inputUrl, options) {
|
|
52286
52281
|
var _a, _b;
|
|
52287
52282
|
const url = inputUrl.clone();
|
|
@@ -52326,17 +52321,16 @@ function redactConnectionString(uri, options) {
|
|
|
52326
52321
|
options = { ...options, replacementString: '___credentials___' };
|
|
52327
52322
|
return parsed.redact(options).toString().replace(/___credentials___/g, replacementString);
|
|
52328
52323
|
}
|
|
52329
|
-
const
|
|
52330
|
-
|
|
52331
|
-
/(
|
|
52332
|
-
/(
|
|
52333
|
-
|
|
52334
|
-
/(
|
|
52324
|
+
const R = replacementString;
|
|
52325
|
+
const replacements = [
|
|
52326
|
+
uri => uri.replace(redactUsernames ? /(\/\/)(.*)(@)/g : /(\/\/[^@]+:)(.*)(@)/g, `$1${R}$3`),
|
|
52327
|
+
uri => uri.replace(/(AWS_SESSION_TOKEN(:|%3A))([^,&]+)/gi, `$1${R}`),
|
|
52328
|
+
uri => uri.replace(/(tlsCertificateKeyFilePassword=)([^&]+)/gi, `$1${R}`),
|
|
52329
|
+
uri => redactUsernames ? uri.replace(/(proxyUsername=)([^&]+)/gi, `$1${R}`) : uri,
|
|
52330
|
+
uri => uri.replace(/(proxyPassword=)([^&]+)/gi, `$1${R}`)
|
|
52335
52331
|
];
|
|
52336
|
-
for (const
|
|
52337
|
-
|
|
52338
|
-
uri = uri.replace(r, replacementString);
|
|
52339
|
-
}
|
|
52332
|
+
for (const replacer of replacements) {
|
|
52333
|
+
uri = replacer(uri);
|
|
52340
52334
|
}
|
|
52341
52335
|
return uri;
|
|
52342
52336
|
}
|
|
@@ -52354,13 +52348,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
52354
52348
|
};
|
|
52355
52349
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52356
52350
|
exports.MongoLogManager = exports.MongoLogWriter = exports.mongoLogId = void 0;
|
|
52357
|
-
const bson_1 = __webpack_require__(
|
|
52351
|
+
const bson_1 = __webpack_require__(49);
|
|
52358
52352
|
const events_1 = __webpack_require__(27);
|
|
52359
52353
|
const fs_1 = __webpack_require__(13);
|
|
52360
52354
|
const path_1 = __importDefault(__webpack_require__(19));
|
|
52361
52355
|
const stream_1 = __webpack_require__(20);
|
|
52362
52356
|
const util_1 = __webpack_require__(14);
|
|
52363
|
-
const zlib_1 = __webpack_require__(
|
|
52357
|
+
const zlib_1 = __webpack_require__(50);
|
|
52364
52358
|
function mongoLogId(id) {
|
|
52365
52359
|
return { __value: id };
|
|
52366
52360
|
}
|
|
@@ -52622,7 +52616,7 @@ exports.hookLogger = exports.connectMongoClient = void 0;
|
|
|
52622
52616
|
__exportStar(__webpack_require__(163), exports);
|
|
52623
52617
|
var connect_1 = __webpack_require__(164);
|
|
52624
52618
|
Object.defineProperty(exports, "connectMongoClient", { enumerable: true, get: function () { return connect_1.connectMongoClient; } });
|
|
52625
|
-
var log_hook_1 = __webpack_require__(
|
|
52619
|
+
var log_hook_1 = __webpack_require__(238);
|
|
52626
52620
|
Object.defineProperty(exports, "hookLogger", { enumerable: true, get: function () { return log_hook_1.hookLogger; } });
|
|
52627
52621
|
//# sourceMappingURL=index.js.map
|
|
52628
52622
|
|
|
@@ -52658,7 +52652,7 @@ async function connectWithFailFast(uri, client, logger) {
|
|
|
52658
52652
|
logger.emit('devtools-connect:connect-attempt-initialized', {
|
|
52659
52653
|
uri,
|
|
52660
52654
|
driver: client.options.metadata.driver,
|
|
52661
|
-
devtoolsConnectVersion: __webpack_require__(
|
|
52655
|
+
devtoolsConnectVersion: __webpack_require__(169).version,
|
|
52662
52656
|
host: (_a = client.options.srvHost) !== null && _a !== void 0 ? _a : client.options.hosts.join(',')
|
|
52663
52657
|
});
|
|
52664
52658
|
const heartbeatFailureListener = ({ failure, connectionId }) => {
|
|
@@ -52882,7 +52876,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
52882
52876
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52883
52877
|
exports.systemCertsAsync = exports.systemCertsSync = void 0;
|
|
52884
52878
|
const impl_1 = __webpack_require__(167);
|
|
52885
|
-
const tls_1 = __webpack_require__(
|
|
52879
|
+
const tls_1 = __webpack_require__(51);
|
|
52886
52880
|
const events_1 = __webpack_require__(27);
|
|
52887
52881
|
function maybeAddNodeCertificates(certs, opts) {
|
|
52888
52882
|
if (opts.includeNodeCertificates) {
|
|
@@ -52917,7 +52911,7 @@ async function systemCertsAsync(opts = {}) {
|
|
|
52917
52911
|
parentPort.postMessage(new Set(iterable));
|
|
52918
52912
|
`;
|
|
52919
52913
|
try {
|
|
52920
|
-
const { Worker } = await Promise.resolve().then(() => __importStar(__webpack_require__(
|
|
52914
|
+
const { Worker } = await Promise.resolve().then(() => __importStar(__webpack_require__(168)));
|
|
52921
52915
|
const worker = new Worker(script, { eval: true });
|
|
52922
52916
|
const [result] = await (0, events_1.once)(worker, 'message');
|
|
52923
52917
|
certs = result;
|
|
@@ -53053,7 +53047,7 @@ exports.windowsImpl = windowsImpl;
|
|
|
53053
53047
|
function* macosImpl() {
|
|
53054
53048
|
let exportSystemCertificates;
|
|
53055
53049
|
try {
|
|
53056
|
-
({ exportSystemCertificates } = __webpack_require__(
|
|
53050
|
+
({ exportSystemCertificates } = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'macos-export-certificate-and-key'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())));
|
|
53057
53051
|
}
|
|
53058
53052
|
catch (err) {
|
|
53059
53053
|
throw err;
|
|
@@ -53065,135 +53059,26 @@ exports.macosImpl = macosImpl;
|
|
|
53065
53059
|
|
|
53066
53060
|
/***/ }),
|
|
53067
53061
|
/* 168 */
|
|
53068
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
53069
|
-
|
|
53070
|
-
const { exportCertificateAndKey, exportAllCertificates } = __webpack_require__(28)('macos_export_certificate_and_key');
|
|
53071
|
-
const { randomBytes } = __webpack_require__(15);
|
|
53072
|
-
const util = __webpack_require__(14);
|
|
53073
|
-
|
|
53074
|
-
function exportCertificateAndPrivateKey({
|
|
53075
|
-
subject,
|
|
53076
|
-
thumbprint
|
|
53077
|
-
}) {
|
|
53078
|
-
if (!subject && !thumbprint) {
|
|
53079
|
-
throw new Error('Need to specify either `subject` or `thumbprint`');
|
|
53080
|
-
}
|
|
53081
|
-
if (subject && thumbprint) {
|
|
53082
|
-
throw new Error('Cannot specify both `subject` and `thumbprint`');
|
|
53083
|
-
}
|
|
53084
|
-
if (subject && typeof subject !== 'string') {
|
|
53085
|
-
throw new Error('`subject` needs to be a string');
|
|
53086
|
-
}
|
|
53087
|
-
if (thumbprint && !util.types.isUint8Array(thumbprint)) {
|
|
53088
|
-
throw new Error('`thumbprint` needs to be a Uint8Array');
|
|
53089
|
-
}
|
|
53090
|
-
|
|
53091
|
-
const passphrase = randomBytes(12).toString('hex');
|
|
53092
|
-
const pfx = exportCertificateAndKey(
|
|
53093
|
-
subject ? { subject } : { thumbprint },
|
|
53094
|
-
passphrase
|
|
53095
|
-
);
|
|
53096
|
-
return { passphrase, pfx };
|
|
53097
|
-
};
|
|
53098
|
-
|
|
53099
|
-
module.exports = exportCertificateAndPrivateKey;
|
|
53100
|
-
module.exports.exportCertificateAndPrivateKey = exportCertificateAndPrivateKey;
|
|
53101
|
-
module.exports.exportSystemCertificates = exportAllCertificates;
|
|
53102
|
-
|
|
53103
|
-
/***/ }),
|
|
53104
|
-
/* 169 */
|
|
53105
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
53106
|
-
|
|
53107
|
-
|
|
53108
|
-
/**
|
|
53109
|
-
* Module dependencies.
|
|
53110
|
-
*/
|
|
53111
|
-
|
|
53112
|
-
var sep = __webpack_require__(19).sep || '/';
|
|
53113
|
-
|
|
53114
|
-
/**
|
|
53115
|
-
* Module exports.
|
|
53116
|
-
*/
|
|
53117
|
-
|
|
53118
|
-
module.exports = fileUriToPath;
|
|
53119
|
-
|
|
53120
|
-
/**
|
|
53121
|
-
* File URI to Path function.
|
|
53122
|
-
*
|
|
53123
|
-
* @param {String} uri
|
|
53124
|
-
* @return {String} path
|
|
53125
|
-
* @api public
|
|
53126
|
-
*/
|
|
53127
|
-
|
|
53128
|
-
function fileUriToPath (uri) {
|
|
53129
|
-
if ('string' != typeof uri ||
|
|
53130
|
-
uri.length <= 7 ||
|
|
53131
|
-
'file://' != uri.substring(0, 7)) {
|
|
53132
|
-
throw new TypeError('must pass in a file:// URI to convert to a file path');
|
|
53133
|
-
}
|
|
53134
|
-
|
|
53135
|
-
var rest = decodeURI(uri.substring(7));
|
|
53136
|
-
var firstSlash = rest.indexOf('/');
|
|
53137
|
-
var host = rest.substring(0, firstSlash);
|
|
53138
|
-
var path = rest.substring(firstSlash + 1);
|
|
53139
|
-
|
|
53140
|
-
// 2. Scheme Definition
|
|
53141
|
-
// As a special case, <host> can be the string "localhost" or the empty
|
|
53142
|
-
// string; this is interpreted as "the machine from which the URL is
|
|
53143
|
-
// being interpreted".
|
|
53144
|
-
if ('localhost' == host) host = '';
|
|
53145
|
-
|
|
53146
|
-
if (host) {
|
|
53147
|
-
host = sep + sep + host;
|
|
53148
|
-
}
|
|
53149
|
-
|
|
53150
|
-
// 3.2 Drives, drive letters, mount points, file system root
|
|
53151
|
-
// Drive letters are mapped into the top of a file URI in various ways,
|
|
53152
|
-
// depending on the implementation; some applications substitute
|
|
53153
|
-
// vertical bar ("|") for the colon after the drive letter, yielding
|
|
53154
|
-
// "file:///c|/tmp/test.txt". In some cases, the colon is left
|
|
53155
|
-
// unchanged, as in "file:///c:/tmp/test.txt". In other cases, the
|
|
53156
|
-
// colon is simply omitted, as in "file:///c/tmp/test.txt".
|
|
53157
|
-
path = path.replace(/^(.+)\|/, '$1:');
|
|
53158
|
-
|
|
53159
|
-
// for Windows, we need to invert the path separators from what a URI uses
|
|
53160
|
-
if (sep == '\\') {
|
|
53161
|
-
path = path.replace(/\//g, '\\');
|
|
53162
|
-
}
|
|
53163
|
-
|
|
53164
|
-
if (/^.+\:/.test(path)) {
|
|
53165
|
-
// has Windows drive at beginning of path
|
|
53166
|
-
} else {
|
|
53167
|
-
// unix path…
|
|
53168
|
-
path = sep + path;
|
|
53169
|
-
}
|
|
53170
|
-
|
|
53171
|
-
return host + path;
|
|
53172
|
-
}
|
|
53173
|
-
|
|
53174
|
-
|
|
53175
|
-
/***/ }),
|
|
53176
|
-
/* 170 */
|
|
53177
53062
|
/***/ (function(module, exports) {
|
|
53178
53063
|
|
|
53179
53064
|
module.exports = require("worker_threads");
|
|
53180
53065
|
|
|
53181
53066
|
/***/ }),
|
|
53182
|
-
/*
|
|
53067
|
+
/* 169 */
|
|
53183
53068
|
/***/ (function(module) {
|
|
53184
53069
|
|
|
53185
53070
|
module.exports = JSON.parse("{\"name\":\"@mongodb-js/devtools-connect\",\"version\":\"1.4.3\",\"description\":\"A connection establishment utility for MongoDB developer tools\",\"homepage\":\"https://github.com/mongodb-js/devtools-connect\",\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/mongodb-js/devtools-connect.git\"},\"publishConfig\":{\"access\":\"public\"},\"bugs\":{\"url\":\"https://github.com/mongodb-js/devtools-connect/issues\"},\"main\":\"lib/index.js\",\"exports\":{\"require\":\"./lib/index.js\",\"import\":\"./.esm-wrapper.mjs\"},\"files\":[\"LICENSE\",\"lib\",\"package.json\",\"README.md\",\".esm-wrapper.mjs\"],\"scripts\":{\"lint\":\"eslint src/**/*.ts\",\"testonly\":\"nyc mocha --colors -r ts-node/register src/*.spec.ts\",\"test\":\"npm run lint && npm run build && npm run testonly\",\"build\":\"npm run compile-ts && gen-esm-wrapper . ./.esm-wrapper.mjs\",\"prepack\":\"npm run build\",\"compile-ts\":\"tsc -p tsconfig.json\"},\"license\":\"Apache-2.0\",\"dependencies\":{\"system-ca\":\"^1.0.2\"},\"peerDependencies\":{\"mongodb\":\"^4.2.2\",\"mongodb-log-writer\":\"^1.1.3\"},\"devDependencies\":{\"@types/mocha\":\"^9.0.0\",\"@types/node\":\"^16.4.10\",\"@types/sinon\":\"^10.0.2\",\"@typescript-eslint/eslint-plugin\":\"^4.2.0\",\"@typescript-eslint/parser\":\"^4.2.0\",\"chai\":\"^4.3.4\",\"eslint\":\"^7.9.0\",\"eslint-config-semistandard\":\"^16.0.0\",\"eslint-config-standard\":\"^16.0.3\",\"eslint-plugin-import\":\"^2.22.0\",\"eslint-plugin-node\":\"^11.1.0\",\"eslint-plugin-promise\":\"5.1.x\",\"eslint-plugin-standard\":\"^5.0.0\",\"gen-esm-wrapper\":\"^1.1.0\",\"mocha\":\"^9.1.1\",\"mongodb\":\"^4.2.2\",\"mongodb-connection-string-url\":\"^2.3.2\",\"mongodb-log-writer\":\"^1.1.3\",\"nyc\":\"^15.1.0\",\"sinon-chai\":\"^3.7.0\",\"ts-node\":\"^10.2.1\",\"ts-sinon\":\"^2.0.1\",\"typescript\":\"^4.5.4\"},\"optionalDependencies\":{\"os-dns-native\":\"^1.2.0\",\"resolve-mongodb-srv\":\"^1.1.1\"}}");
|
|
53186
53071
|
|
|
53187
53072
|
/***/ }),
|
|
53188
|
-
/*
|
|
53073
|
+
/* 170 */
|
|
53189
53074
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53190
53075
|
|
|
53191
53076
|
"use strict";
|
|
53192
53077
|
|
|
53193
53078
|
|
|
53194
|
-
const { URL, URLSearchParams } = __webpack_require__(
|
|
53079
|
+
const { URL, URLSearchParams } = __webpack_require__(171);
|
|
53195
53080
|
const urlStateMachine = __webpack_require__(78);
|
|
53196
|
-
const percentEncoding = __webpack_require__(
|
|
53081
|
+
const percentEncoding = __webpack_require__(55);
|
|
53197
53082
|
|
|
53198
53083
|
const sharedGlobalObject = { Array, Object, Promise, String, TypeError };
|
|
53199
53084
|
URL.install(sharedGlobalObject, ["Window"]);
|
|
@@ -53219,13 +53104,13 @@ exports.percentDecodeBytes = percentEncoding.percentDecodeBytes;
|
|
|
53219
53104
|
|
|
53220
53105
|
|
|
53221
53106
|
/***/ }),
|
|
53222
|
-
/*
|
|
53107
|
+
/* 171 */
|
|
53223
53108
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53224
53109
|
|
|
53225
53110
|
"use strict";
|
|
53226
53111
|
|
|
53227
53112
|
|
|
53228
|
-
const URL = __webpack_require__(
|
|
53113
|
+
const URL = __webpack_require__(172);
|
|
53229
53114
|
const URLSearchParams = __webpack_require__(81);
|
|
53230
53115
|
|
|
53231
53116
|
exports.URL = URL;
|
|
@@ -53233,14 +53118,14 @@ exports.URLSearchParams = URLSearchParams;
|
|
|
53233
53118
|
|
|
53234
53119
|
|
|
53235
53120
|
/***/ }),
|
|
53236
|
-
/*
|
|
53121
|
+
/* 172 */
|
|
53237
53122
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53238
53123
|
|
|
53239
53124
|
"use strict";
|
|
53240
53125
|
|
|
53241
53126
|
|
|
53242
|
-
const conversions = __webpack_require__(
|
|
53243
|
-
const utils = __webpack_require__(
|
|
53127
|
+
const conversions = __webpack_require__(52);
|
|
53128
|
+
const utils = __webpack_require__(53);
|
|
53244
53129
|
|
|
53245
53130
|
const implSymbol = utils.implSymbol;
|
|
53246
53131
|
const ctorRegistrySymbol = utils.ctorRegistrySymbol;
|
|
@@ -53678,11 +53563,11 @@ exports.install = (globalObject, globalNames) => {
|
|
|
53678
53563
|
}
|
|
53679
53564
|
};
|
|
53680
53565
|
|
|
53681
|
-
const Impl = __webpack_require__(
|
|
53566
|
+
const Impl = __webpack_require__(173);
|
|
53682
53567
|
|
|
53683
53568
|
|
|
53684
53569
|
/***/ }),
|
|
53685
|
-
/*
|
|
53570
|
+
/* 173 */
|
|
53686
53571
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53687
53572
|
|
|
53688
53573
|
"use strict";
|
|
@@ -53898,16 +53783,16 @@ exports.implementation = class URLImpl {
|
|
|
53898
53783
|
|
|
53899
53784
|
|
|
53900
53785
|
/***/ }),
|
|
53901
|
-
/*
|
|
53786
|
+
/* 174 */
|
|
53902
53787
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53903
53788
|
|
|
53904
53789
|
"use strict";
|
|
53905
53790
|
|
|
53906
53791
|
|
|
53907
53792
|
const punycode = __webpack_require__(73);
|
|
53908
|
-
const regexes = __webpack_require__(
|
|
53909
|
-
const mappingTable = __webpack_require__(
|
|
53910
|
-
const { STATUS_MAPPING } = __webpack_require__(
|
|
53793
|
+
const regexes = __webpack_require__(175);
|
|
53794
|
+
const mappingTable = __webpack_require__(176);
|
|
53795
|
+
const { STATUS_MAPPING } = __webpack_require__(177);
|
|
53911
53796
|
|
|
53912
53797
|
function containsNonASCII(str) {
|
|
53913
53798
|
return /[^\x00-\x7F]/u.test(str);
|
|
@@ -54203,7 +54088,7 @@ module.exports = {
|
|
|
54203
54088
|
|
|
54204
54089
|
|
|
54205
54090
|
/***/ }),
|
|
54206
|
-
/*
|
|
54091
|
+
/* 175 */
|
|
54207
54092
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54208
54093
|
|
|
54209
54094
|
"use strict";
|
|
@@ -54239,13 +54124,13 @@ module.exports = {
|
|
|
54239
54124
|
|
|
54240
54125
|
|
|
54241
54126
|
/***/ }),
|
|
54242
|
-
/*
|
|
54127
|
+
/* 176 */
|
|
54243
54128
|
/***/ (function(module) {
|
|
54244
54129
|
|
|
54245
54130
|
module.exports = JSON.parse("[[[0,44],4],[[45,46],2],[47,4],[[48,57],2],[[58,64],4],[65,1,\"a\"],[66,1,\"b\"],[67,1,\"c\"],[68,1,\"d\"],[69,1,\"e\"],[70,1,\"f\"],[71,1,\"g\"],[72,1,\"h\"],[73,1,\"i\"],[74,1,\"j\"],[75,1,\"k\"],[76,1,\"l\"],[77,1,\"m\"],[78,1,\"n\"],[79,1,\"o\"],[80,1,\"p\"],[81,1,\"q\"],[82,1,\"r\"],[83,1,\"s\"],[84,1,\"t\"],[85,1,\"u\"],[86,1,\"v\"],[87,1,\"w\"],[88,1,\"x\"],[89,1,\"y\"],[90,1,\"z\"],[[91,96],4],[[97,122],2],[[123,127],4],[[128,159],3],[160,5,\" \"],[[161,167],2],[168,5,\" ̈\"],[169,2],[170,1,\"a\"],[[171,172],2],[173,7],[174,2],[175,5,\" ̄\"],[[176,177],2],[178,1,\"2\"],[179,1,\"3\"],[180,5,\" ́\"],[181,1,\"μ\"],[182,2],[183,2],[184,5,\" ̧\"],[185,1,\"1\"],[186,1,\"o\"],[187,2],[188,1,\"1⁄4\"],[189,1,\"1⁄2\"],[190,1,\"3⁄4\"],[191,2],[192,1,\"à\"],[193,1,\"á\"],[194,1,\"â\"],[195,1,\"ã\"],[196,1,\"ä\"],[197,1,\"å\"],[198,1,\"æ\"],[199,1,\"ç\"],[200,1,\"è\"],[201,1,\"é\"],[202,1,\"ê\"],[203,1,\"ë\"],[204,1,\"ì\"],[205,1,\"í\"],[206,1,\"î\"],[207,1,\"ï\"],[208,1,\"ð\"],[209,1,\"ñ\"],[210,1,\"ò\"],[211,1,\"ó\"],[212,1,\"ô\"],[213,1,\"õ\"],[214,1,\"ö\"],[215,2],[216,1,\"ø\"],[217,1,\"ù\"],[218,1,\"ú\"],[219,1,\"û\"],[220,1,\"ü\"],[221,1,\"ý\"],[222,1,\"þ\"],[223,6,\"ss\"],[[224,246],2],[247,2],[[248,255],2],[256,1,\"ā\"],[257,2],[258,1,\"ă\"],[259,2],[260,1,\"ą\"],[261,2],[262,1,\"ć\"],[263,2],[264,1,\"ĉ\"],[265,2],[266,1,\"ċ\"],[267,2],[268,1,\"č\"],[269,2],[270,1,\"ď\"],[271,2],[272,1,\"đ\"],[273,2],[274,1,\"ē\"],[275,2],[276,1,\"ĕ\"],[277,2],[278,1,\"ė\"],[279,2],[280,1,\"ę\"],[281,2],[282,1,\"ě\"],[283,2],[284,1,\"ĝ\"],[285,2],[286,1,\"ğ\"],[287,2],[288,1,\"ġ\"],[289,2],[290,1,\"ģ\"],[291,2],[292,1,\"ĥ\"],[293,2],[294,1,\"ħ\"],[295,2],[296,1,\"ĩ\"],[297,2],[298,1,\"ī\"],[299,2],[300,1,\"ĭ\"],[301,2],[302,1,\"į\"],[303,2],[304,1,\"i̇\"],[305,2],[[306,307],1,\"ij\"],[308,1,\"ĵ\"],[309,2],[310,1,\"ķ\"],[[311,312],2],[313,1,\"ĺ\"],[314,2],[315,1,\"ļ\"],[316,2],[317,1,\"ľ\"],[318,2],[[319,320],1,\"l·\"],[321,1,\"ł\"],[322,2],[323,1,\"ń\"],[324,2],[325,1,\"ņ\"],[326,2],[327,1,\"ň\"],[328,2],[329,1,\"ʼn\"],[330,1,\"ŋ\"],[331,2],[332,1,\"ō\"],[333,2],[334,1,\"ŏ\"],[335,2],[336,1,\"ő\"],[337,2],[338,1,\"œ\"],[339,2],[340,1,\"ŕ\"],[341,2],[342,1,\"ŗ\"],[343,2],[344,1,\"ř\"],[345,2],[346,1,\"ś\"],[347,2],[348,1,\"ŝ\"],[349,2],[350,1,\"ş\"],[351,2],[352,1,\"š\"],[353,2],[354,1,\"ţ\"],[355,2],[356,1,\"ť\"],[357,2],[358,1,\"ŧ\"],[359,2],[360,1,\"ũ\"],[361,2],[362,1,\"ū\"],[363,2],[364,1,\"ŭ\"],[365,2],[366,1,\"ů\"],[367,2],[368,1,\"ű\"],[369,2],[370,1,\"ų\"],[371,2],[372,1,\"ŵ\"],[373,2],[374,1,\"ŷ\"],[375,2],[376,1,\"ÿ\"],[377,1,\"ź\"],[378,2],[379,1,\"ż\"],[380,2],[381,1,\"ž\"],[382,2],[383,1,\"s\"],[384,2],[385,1,\"ɓ\"],[386,1,\"ƃ\"],[387,2],[388,1,\"ƅ\"],[389,2],[390,1,\"ɔ\"],[391,1,\"ƈ\"],[392,2],[393,1,\"ɖ\"],[394,1,\"ɗ\"],[395,1,\"ƌ\"],[[396,397],2],[398,1,\"ǝ\"],[399,1,\"ə\"],[400,1,\"ɛ\"],[401,1,\"ƒ\"],[402,2],[403,1,\"ɠ\"],[404,1,\"ɣ\"],[405,2],[406,1,\"ɩ\"],[407,1,\"ɨ\"],[408,1,\"ƙ\"],[[409,411],2],[412,1,\"ɯ\"],[413,1,\"ɲ\"],[414,2],[415,1,\"ɵ\"],[416,1,\"ơ\"],[417,2],[418,1,\"ƣ\"],[419,2],[420,1,\"ƥ\"],[421,2],[422,1,\"ʀ\"],[423,1,\"ƨ\"],[424,2],[425,1,\"ʃ\"],[[426,427],2],[428,1,\"ƭ\"],[429,2],[430,1,\"ʈ\"],[431,1,\"ư\"],[432,2],[433,1,\"ʊ\"],[434,1,\"ʋ\"],[435,1,\"ƴ\"],[436,2],[437,1,\"ƶ\"],[438,2],[439,1,\"ʒ\"],[440,1,\"ƹ\"],[[441,443],2],[444,1,\"ƽ\"],[[445,451],2],[[452,454],1,\"dž\"],[[455,457],1,\"lj\"],[[458,460],1,\"nj\"],[461,1,\"ǎ\"],[462,2],[463,1,\"ǐ\"],[464,2],[465,1,\"ǒ\"],[466,2],[467,1,\"ǔ\"],[468,2],[469,1,\"ǖ\"],[470,2],[471,1,\"ǘ\"],[472,2],[473,1,\"ǚ\"],[474,2],[475,1,\"ǜ\"],[[476,477],2],[478,1,\"ǟ\"],[479,2],[480,1,\"ǡ\"],[481,2],[482,1,\"ǣ\"],[483,2],[484,1,\"ǥ\"],[485,2],[486,1,\"ǧ\"],[487,2],[488,1,\"ǩ\"],[489,2],[490,1,\"ǫ\"],[491,2],[492,1,\"ǭ\"],[493,2],[494,1,\"ǯ\"],[[495,496],2],[[497,499],1,\"dz\"],[500,1,\"ǵ\"],[501,2],[502,1,\"ƕ\"],[503,1,\"ƿ\"],[504,1,\"ǹ\"],[505,2],[506,1,\"ǻ\"],[507,2],[508,1,\"ǽ\"],[509,2],[510,1,\"ǿ\"],[511,2],[512,1,\"ȁ\"],[513,2],[514,1,\"ȃ\"],[515,2],[516,1,\"ȅ\"],[517,2],[518,1,\"ȇ\"],[519,2],[520,1,\"ȉ\"],[521,2],[522,1,\"ȋ\"],[523,2],[524,1,\"ȍ\"],[525,2],[526,1,\"ȏ\"],[527,2],[528,1,\"ȑ\"],[529,2],[530,1,\"ȓ\"],[531,2],[532,1,\"ȕ\"],[533,2],[534,1,\"ȗ\"],[535,2],[536,1,\"ș\"],[537,2],[538,1,\"ț\"],[539,2],[540,1,\"ȝ\"],[541,2],[542,1,\"ȟ\"],[543,2],[544,1,\"ƞ\"],[545,2],[546,1,\"ȣ\"],[547,2],[548,1,\"ȥ\"],[549,2],[550,1,\"ȧ\"],[551,2],[552,1,\"ȩ\"],[553,2],[554,1,\"ȫ\"],[555,2],[556,1,\"ȭ\"],[557,2],[558,1,\"ȯ\"],[559,2],[560,1,\"ȱ\"],[561,2],[562,1,\"ȳ\"],[563,2],[[564,566],2],[[567,569],2],[570,1,\"ⱥ\"],[571,1,\"ȼ\"],[572,2],[573,1,\"ƚ\"],[574,1,\"ⱦ\"],[[575,576],2],[577,1,\"ɂ\"],[578,2],[579,1,\"ƀ\"],[580,1,\"ʉ\"],[581,1,\"ʌ\"],[582,1,\"ɇ\"],[583,2],[584,1,\"ɉ\"],[585,2],[586,1,\"ɋ\"],[587,2],[588,1,\"ɍ\"],[589,2],[590,1,\"ɏ\"],[591,2],[[592,680],2],[[681,685],2],[[686,687],2],[688,1,\"h\"],[689,1,\"ɦ\"],[690,1,\"j\"],[691,1,\"r\"],[692,1,\"ɹ\"],[693,1,\"ɻ\"],[694,1,\"ʁ\"],[695,1,\"w\"],[696,1,\"y\"],[[697,705],2],[[706,709],2],[[710,721],2],[[722,727],2],[728,5,\" ̆\"],[729,5,\" ̇\"],[730,5,\" ̊\"],[731,5,\" ̨\"],[732,5,\" ̃\"],[733,5,\" ̋\"],[734,2],[735,2],[736,1,\"ɣ\"],[737,1,\"l\"],[738,1,\"s\"],[739,1,\"x\"],[740,1,\"ʕ\"],[[741,745],2],[[746,747],2],[748,2],[749,2],[750,2],[[751,767],2],[[768,831],2],[832,1,\"̀\"],[833,1,\"́\"],[834,2],[835,1,\"̓\"],[836,1,\"̈́\"],[837,1,\"ι\"],[[838,846],2],[847,7],[[848,855],2],[[856,860],2],[[861,863],2],[[864,865],2],[866,2],[[867,879],2],[880,1,\"ͱ\"],[881,2],[882,1,\"ͳ\"],[883,2],[884,1,\"ʹ\"],[885,2],[886,1,\"ͷ\"],[887,2],[[888,889],3],[890,5,\" ι\"],[[891,893],2],[894,5,\";\"],[895,1,\"ϳ\"],[[896,899],3],[900,5,\" ́\"],[901,5,\" ̈́\"],[902,1,\"ά\"],[903,1,\"·\"],[904,1,\"έ\"],[905,1,\"ή\"],[906,1,\"ί\"],[907,3],[908,1,\"ό\"],[909,3],[910,1,\"ύ\"],[911,1,\"ώ\"],[912,2],[913,1,\"α\"],[914,1,\"β\"],[915,1,\"γ\"],[916,1,\"δ\"],[917,1,\"ε\"],[918,1,\"ζ\"],[919,1,\"η\"],[920,1,\"θ\"],[921,1,\"ι\"],[922,1,\"κ\"],[923,1,\"λ\"],[924,1,\"μ\"],[925,1,\"ν\"],[926,1,\"ξ\"],[927,1,\"ο\"],[928,1,\"π\"],[929,1,\"ρ\"],[930,3],[931,1,\"σ\"],[932,1,\"τ\"],[933,1,\"υ\"],[934,1,\"φ\"],[935,1,\"χ\"],[936,1,\"ψ\"],[937,1,\"ω\"],[938,1,\"ϊ\"],[939,1,\"ϋ\"],[[940,961],2],[962,6,\"σ\"],[[963,974],2],[975,1,\"ϗ\"],[976,1,\"β\"],[977,1,\"θ\"],[978,1,\"υ\"],[979,1,\"ύ\"],[980,1,\"ϋ\"],[981,1,\"φ\"],[982,1,\"π\"],[983,2],[984,1,\"ϙ\"],[985,2],[986,1,\"ϛ\"],[987,2],[988,1,\"ϝ\"],[989,2],[990,1,\"ϟ\"],[991,2],[992,1,\"ϡ\"],[993,2],[994,1,\"ϣ\"],[995,2],[996,1,\"ϥ\"],[997,2],[998,1,\"ϧ\"],[999,2],[1000,1,\"ϩ\"],[1001,2],[1002,1,\"ϫ\"],[1003,2],[1004,1,\"ϭ\"],[1005,2],[1006,1,\"ϯ\"],[1007,2],[1008,1,\"κ\"],[1009,1,\"ρ\"],[1010,1,\"σ\"],[1011,2],[1012,1,\"θ\"],[1013,1,\"ε\"],[1014,2],[1015,1,\"ϸ\"],[1016,2],[1017,1,\"σ\"],[1018,1,\"ϻ\"],[1019,2],[1020,2],[1021,1,\"ͻ\"],[1022,1,\"ͼ\"],[1023,1,\"ͽ\"],[1024,1,\"ѐ\"],[1025,1,\"ё\"],[1026,1,\"ђ\"],[1027,1,\"ѓ\"],[1028,1,\"є\"],[1029,1,\"ѕ\"],[1030,1,\"і\"],[1031,1,\"ї\"],[1032,1,\"ј\"],[1033,1,\"љ\"],[1034,1,\"њ\"],[1035,1,\"ћ\"],[1036,1,\"ќ\"],[1037,1,\"ѝ\"],[1038,1,\"ў\"],[1039,1,\"џ\"],[1040,1,\"а\"],[1041,1,\"б\"],[1042,1,\"в\"],[1043,1,\"г\"],[1044,1,\"д\"],[1045,1,\"е\"],[1046,1,\"ж\"],[1047,1,\"з\"],[1048,1,\"и\"],[1049,1,\"й\"],[1050,1,\"к\"],[1051,1,\"л\"],[1052,1,\"м\"],[1053,1,\"н\"],[1054,1,\"о\"],[1055,1,\"п\"],[1056,1,\"р\"],[1057,1,\"с\"],[1058,1,\"т\"],[1059,1,\"у\"],[1060,1,\"ф\"],[1061,1,\"х\"],[1062,1,\"ц\"],[1063,1,\"ч\"],[1064,1,\"ш\"],[1065,1,\"щ\"],[1066,1,\"ъ\"],[1067,1,\"ы\"],[1068,1,\"ь\"],[1069,1,\"э\"],[1070,1,\"ю\"],[1071,1,\"я\"],[[1072,1103],2],[1104,2],[[1105,1116],2],[1117,2],[[1118,1119],2],[1120,1,\"ѡ\"],[1121,2],[1122,1,\"ѣ\"],[1123,2],[1124,1,\"ѥ\"],[1125,2],[1126,1,\"ѧ\"],[1127,2],[1128,1,\"ѩ\"],[1129,2],[1130,1,\"ѫ\"],[1131,2],[1132,1,\"ѭ\"],[1133,2],[1134,1,\"ѯ\"],[1135,2],[1136,1,\"ѱ\"],[1137,2],[1138,1,\"ѳ\"],[1139,2],[1140,1,\"ѵ\"],[1141,2],[1142,1,\"ѷ\"],[1143,2],[1144,1,\"ѹ\"],[1145,2],[1146,1,\"ѻ\"],[1147,2],[1148,1,\"ѽ\"],[1149,2],[1150,1,\"ѿ\"],[1151,2],[1152,1,\"ҁ\"],[1153,2],[1154,2],[[1155,1158],2],[1159,2],[[1160,1161],2],[1162,1,\"ҋ\"],[1163,2],[1164,1,\"ҍ\"],[1165,2],[1166,1,\"ҏ\"],[1167,2],[1168,1,\"ґ\"],[1169,2],[1170,1,\"ғ\"],[1171,2],[1172,1,\"ҕ\"],[1173,2],[1174,1,\"җ\"],[1175,2],[1176,1,\"ҙ\"],[1177,2],[1178,1,\"қ\"],[1179,2],[1180,1,\"ҝ\"],[1181,2],[1182,1,\"ҟ\"],[1183,2],[1184,1,\"ҡ\"],[1185,2],[1186,1,\"ң\"],[1187,2],[1188,1,\"ҥ\"],[1189,2],[1190,1,\"ҧ\"],[1191,2],[1192,1,\"ҩ\"],[1193,2],[1194,1,\"ҫ\"],[1195,2],[1196,1,\"ҭ\"],[1197,2],[1198,1,\"ү\"],[1199,2],[1200,1,\"ұ\"],[1201,2],[1202,1,\"ҳ\"],[1203,2],[1204,1,\"ҵ\"],[1205,2],[1206,1,\"ҷ\"],[1207,2],[1208,1,\"ҹ\"],[1209,2],[1210,1,\"һ\"],[1211,2],[1212,1,\"ҽ\"],[1213,2],[1214,1,\"ҿ\"],[1215,2],[1216,3],[1217,1,\"ӂ\"],[1218,2],[1219,1,\"ӄ\"],[1220,2],[1221,1,\"ӆ\"],[1222,2],[1223,1,\"ӈ\"],[1224,2],[1225,1,\"ӊ\"],[1226,2],[1227,1,\"ӌ\"],[1228,2],[1229,1,\"ӎ\"],[1230,2],[1231,2],[1232,1,\"ӑ\"],[1233,2],[1234,1,\"ӓ\"],[1235,2],[1236,1,\"ӕ\"],[1237,2],[1238,1,\"ӗ\"],[1239,2],[1240,1,\"ә\"],[1241,2],[1242,1,\"ӛ\"],[1243,2],[1244,1,\"ӝ\"],[1245,2],[1246,1,\"ӟ\"],[1247,2],[1248,1,\"ӡ\"],[1249,2],[1250,1,\"ӣ\"],[1251,2],[1252,1,\"ӥ\"],[1253,2],[1254,1,\"ӧ\"],[1255,2],[1256,1,\"ө\"],[1257,2],[1258,1,\"ӫ\"],[1259,2],[1260,1,\"ӭ\"],[1261,2],[1262,1,\"ӯ\"],[1263,2],[1264,1,\"ӱ\"],[1265,2],[1266,1,\"ӳ\"],[1267,2],[1268,1,\"ӵ\"],[1269,2],[1270,1,\"ӷ\"],[1271,2],[1272,1,\"ӹ\"],[1273,2],[1274,1,\"ӻ\"],[1275,2],[1276,1,\"ӽ\"],[1277,2],[1278,1,\"ӿ\"],[1279,2],[1280,1,\"ԁ\"],[1281,2],[1282,1,\"ԃ\"],[1283,2],[1284,1,\"ԅ\"],[1285,2],[1286,1,\"ԇ\"],[1287,2],[1288,1,\"ԉ\"],[1289,2],[1290,1,\"ԋ\"],[1291,2],[1292,1,\"ԍ\"],[1293,2],[1294,1,\"ԏ\"],[1295,2],[1296,1,\"ԑ\"],[1297,2],[1298,1,\"ԓ\"],[1299,2],[1300,1,\"ԕ\"],[1301,2],[1302,1,\"ԗ\"],[1303,2],[1304,1,\"ԙ\"],[1305,2],[1306,1,\"ԛ\"],[1307,2],[1308,1,\"ԝ\"],[1309,2],[1310,1,\"ԟ\"],[1311,2],[1312,1,\"ԡ\"],[1313,2],[1314,1,\"ԣ\"],[1315,2],[1316,1,\"ԥ\"],[1317,2],[1318,1,\"ԧ\"],[1319,2],[1320,1,\"ԩ\"],[1321,2],[1322,1,\"ԫ\"],[1323,2],[1324,1,\"ԭ\"],[1325,2],[1326,1,\"ԯ\"],[1327,2],[1328,3],[1329,1,\"ա\"],[1330,1,\"բ\"],[1331,1,\"գ\"],[1332,1,\"դ\"],[1333,1,\"ե\"],[1334,1,\"զ\"],[1335,1,\"է\"],[1336,1,\"ը\"],[1337,1,\"թ\"],[1338,1,\"ժ\"],[1339,1,\"ի\"],[1340,1,\"լ\"],[1341,1,\"խ\"],[1342,1,\"ծ\"],[1343,1,\"կ\"],[1344,1,\"հ\"],[1345,1,\"ձ\"],[1346,1,\"ղ\"],[1347,1,\"ճ\"],[1348,1,\"մ\"],[1349,1,\"յ\"],[1350,1,\"ն\"],[1351,1,\"շ\"],[1352,1,\"ո\"],[1353,1,\"չ\"],[1354,1,\"պ\"],[1355,1,\"ջ\"],[1356,1,\"ռ\"],[1357,1,\"ս\"],[1358,1,\"վ\"],[1359,1,\"տ\"],[1360,1,\"ր\"],[1361,1,\"ց\"],[1362,1,\"ւ\"],[1363,1,\"փ\"],[1364,1,\"ք\"],[1365,1,\"օ\"],[1366,1,\"ֆ\"],[[1367,1368],3],[1369,2],[[1370,1375],2],[1376,2],[[1377,1414],2],[1415,1,\"եւ\"],[1416,2],[1417,2],[1418,2],[[1419,1420],3],[[1421,1422],2],[1423,2],[1424,3],[[1425,1441],2],[1442,2],[[1443,1455],2],[[1456,1465],2],[1466,2],[[1467,1469],2],[1470,2],[1471,2],[1472,2],[[1473,1474],2],[1475,2],[1476,2],[1477,2],[1478,2],[1479,2],[[1480,1487],3],[[1488,1514],2],[[1515,1518],3],[1519,2],[[1520,1524],2],[[1525,1535],3],[[1536,1539],3],[1540,3],[1541,3],[[1542,1546],2],[1547,2],[1548,2],[[1549,1551],2],[[1552,1557],2],[[1558,1562],2],[1563,2],[1564,3],[1565,2],[1566,2],[1567,2],[1568,2],[[1569,1594],2],[[1595,1599],2],[1600,2],[[1601,1618],2],[[1619,1621],2],[[1622,1624],2],[[1625,1630],2],[1631,2],[[1632,1641],2],[[1642,1645],2],[[1646,1647],2],[[1648,1652],2],[1653,1,\"اٴ\"],[1654,1,\"وٴ\"],[1655,1,\"ۇٴ\"],[1656,1,\"يٴ\"],[[1657,1719],2],[[1720,1721],2],[[1722,1726],2],[1727,2],[[1728,1742],2],[1743,2],[[1744,1747],2],[1748,2],[[1749,1756],2],[1757,3],[1758,2],[[1759,1768],2],[1769,2],[[1770,1773],2],[[1774,1775],2],[[1776,1785],2],[[1786,1790],2],[1791,2],[[1792,1805],2],[1806,3],[1807,3],[[1808,1836],2],[[1837,1839],2],[[1840,1866],2],[[1867,1868],3],[[1869,1871],2],[[1872,1901],2],[[1902,1919],2],[[1920,1968],2],[1969,2],[[1970,1983],3],[[1984,2037],2],[[2038,2042],2],[[2043,2044],3],[2045,2],[[2046,2047],2],[[2048,2093],2],[[2094,2095],3],[[2096,2110],2],[2111,3],[[2112,2139],2],[[2140,2141],3],[2142,2],[2143,3],[[2144,2154],2],[[2155,2159],3],[[2160,2183],2],[2184,2],[[2185,2190],2],[2191,3],[[2192,2193],3],[[2194,2199],3],[[2200,2207],2],[2208,2],[2209,2],[[2210,2220],2],[[2221,2226],2],[[2227,2228],2],[2229,2],[[2230,2237],2],[[2238,2247],2],[[2248,2258],2],[2259,2],[[2260,2273],2],[2274,3],[2275,2],[[2276,2302],2],[2303,2],[2304,2],[[2305,2307],2],[2308,2],[[2309,2361],2],[[2362,2363],2],[[2364,2381],2],[2382,2],[2383,2],[[2384,2388],2],[2389,2],[[2390,2391],2],[2392,1,\"क़\"],[2393,1,\"ख़\"],[2394,1,\"ग़\"],[2395,1,\"ज़\"],[2396,1,\"ड़\"],[2397,1,\"ढ़\"],[2398,1,\"फ़\"],[2399,1,\"य़\"],[[2400,2403],2],[[2404,2405],2],[[2406,2415],2],[2416,2],[[2417,2418],2],[[2419,2423],2],[2424,2],[[2425,2426],2],[[2427,2428],2],[2429,2],[[2430,2431],2],[2432,2],[[2433,2435],2],[2436,3],[[2437,2444],2],[[2445,2446],3],[[2447,2448],2],[[2449,2450],3],[[2451,2472],2],[2473,3],[[2474,2480],2],[2481,3],[2482,2],[[2483,2485],3],[[2486,2489],2],[[2490,2491],3],[2492,2],[2493,2],[[2494,2500],2],[[2501,2502],3],[[2503,2504],2],[[2505,2506],3],[[2507,2509],2],[2510,2],[[2511,2518],3],[2519,2],[[2520,2523],3],[2524,1,\"ড়\"],[2525,1,\"ঢ়\"],[2526,3],[2527,1,\"য়\"],[[2528,2531],2],[[2532,2533],3],[[2534,2545],2],[[2546,2554],2],[2555,2],[2556,2],[2557,2],[2558,2],[[2559,2560],3],[2561,2],[2562,2],[2563,2],[2564,3],[[2565,2570],2],[[2571,2574],3],[[2575,2576],2],[[2577,2578],3],[[2579,2600],2],[2601,3],[[2602,2608],2],[2609,3],[2610,2],[2611,1,\"ਲ਼\"],[2612,3],[2613,2],[2614,1,\"ਸ਼\"],[2615,3],[[2616,2617],2],[[2618,2619],3],[2620,2],[2621,3],[[2622,2626],2],[[2627,2630],3],[[2631,2632],2],[[2633,2634],3],[[2635,2637],2],[[2638,2640],3],[2641,2],[[2642,2648],3],[2649,1,\"ਖ਼\"],[2650,1,\"ਗ਼\"],[2651,1,\"ਜ਼\"],[2652,2],[2653,3],[2654,1,\"ਫ਼\"],[[2655,2661],3],[[2662,2676],2],[2677,2],[2678,2],[[2679,2688],3],[[2689,2691],2],[2692,3],[[2693,2699],2],[2700,2],[2701,2],[2702,3],[[2703,2705],2],[2706,3],[[2707,2728],2],[2729,3],[[2730,2736],2],[2737,3],[[2738,2739],2],[2740,3],[[2741,2745],2],[[2746,2747],3],[[2748,2757],2],[2758,3],[[2759,2761],2],[2762,3],[[2763,2765],2],[[2766,2767],3],[2768,2],[[2769,2783],3],[2784,2],[[2785,2787],2],[[2788,2789],3],[[2790,2799],2],[2800,2],[2801,2],[[2802,2808],3],[2809,2],[[2810,2815],2],[2816,3],[[2817,2819],2],[2820,3],[[2821,2828],2],[[2829,2830],3],[[2831,2832],2],[[2833,2834],3],[[2835,2856],2],[2857,3],[[2858,2864],2],[2865,3],[[2866,2867],2],[2868,3],[2869,2],[[2870,2873],2],[[2874,2875],3],[[2876,2883],2],[2884,2],[[2885,2886],3],[[2887,2888],2],[[2889,2890],3],[[2891,2893],2],[[2894,2900],3],[2901,2],[[2902,2903],2],[[2904,2907],3],[2908,1,\"ଡ଼\"],[2909,1,\"ଢ଼\"],[2910,3],[[2911,2913],2],[[2914,2915],2],[[2916,2917],3],[[2918,2927],2],[2928,2],[2929,2],[[2930,2935],2],[[2936,2945],3],[[2946,2947],2],[2948,3],[[2949,2954],2],[[2955,2957],3],[[2958,2960],2],[2961,3],[[2962,2965],2],[[2966,2968],3],[[2969,2970],2],[2971,3],[2972,2],[2973,3],[[2974,2975],2],[[2976,2978],3],[[2979,2980],2],[[2981,2983],3],[[2984,2986],2],[[2987,2989],3],[[2990,2997],2],[2998,2],[[2999,3001],2],[[3002,3005],3],[[3006,3010],2],[[3011,3013],3],[[3014,3016],2],[3017,3],[[3018,3021],2],[[3022,3023],3],[3024,2],[[3025,3030],3],[3031,2],[[3032,3045],3],[3046,2],[[3047,3055],2],[[3056,3058],2],[[3059,3066],2],[[3067,3071],3],[3072,2],[[3073,3075],2],[3076,2],[[3077,3084],2],[3085,3],[[3086,3088],2],[3089,3],[[3090,3112],2],[3113,3],[[3114,3123],2],[3124,2],[[3125,3129],2],[[3130,3131],3],[3132,2],[3133,2],[[3134,3140],2],[3141,3],[[3142,3144],2],[3145,3],[[3146,3149],2],[[3150,3156],3],[[3157,3158],2],[3159,3],[[3160,3161],2],[3162,2],[[3163,3164],3],[3165,2],[[3166,3167],3],[[3168,3169],2],[[3170,3171],2],[[3172,3173],3],[[3174,3183],2],[[3184,3190],3],[3191,2],[[3192,3199],2],[3200,2],[3201,2],[[3202,3203],2],[3204,2],[[3205,3212],2],[3213,3],[[3214,3216],2],[3217,3],[[3218,3240],2],[3241,3],[[3242,3251],2],[3252,3],[[3253,3257],2],[[3258,3259],3],[[3260,3261],2],[[3262,3268],2],[3269,3],[[3270,3272],2],[3273,3],[[3274,3277],2],[[3278,3284],3],[[3285,3286],2],[[3287,3292],3],[3293,2],[3294,2],[3295,3],[[3296,3297],2],[[3298,3299],2],[[3300,3301],3],[[3302,3311],2],[3312,3],[[3313,3314],2],[[3315,3327],3],[3328,2],[3329,2],[[3330,3331],2],[3332,2],[[3333,3340],2],[3341,3],[[3342,3344],2],[3345,3],[[3346,3368],2],[3369,2],[[3370,3385],2],[3386,2],[[3387,3388],2],[3389,2],[[3390,3395],2],[3396,2],[3397,3],[[3398,3400],2],[3401,3],[[3402,3405],2],[3406,2],[3407,2],[[3408,3411],3],[[3412,3414],2],[3415,2],[[3416,3422],2],[3423,2],[[3424,3425],2],[[3426,3427],2],[[3428,3429],3],[[3430,3439],2],[[3440,3445],2],[[3446,3448],2],[3449,2],[[3450,3455],2],[3456,3],[3457,2],[[3458,3459],2],[3460,3],[[3461,3478],2],[[3479,3481],3],[[3482,3505],2],[3506,3],[[3507,3515],2],[3516,3],[3517,2],[[3518,3519],3],[[3520,3526],2],[[3527,3529],3],[3530,2],[[3531,3534],3],[[3535,3540],2],[3541,3],[3542,2],[3543,3],[[3544,3551],2],[[3552,3557],3],[[3558,3567],2],[[3568,3569],3],[[3570,3571],2],[3572,2],[[3573,3584],3],[[3585,3634],2],[3635,1,\"ํา\"],[[3636,3642],2],[[3643,3646],3],[3647,2],[[3648,3662],2],[3663,2],[[3664,3673],2],[[3674,3675],2],[[3676,3712],3],[[3713,3714],2],[3715,3],[3716,2],[3717,3],[3718,2],[[3719,3720],2],[3721,2],[3722,2],[3723,3],[3724,2],[3725,2],[[3726,3731],2],[[3732,3735],2],[3736,2],[[3737,3743],2],[3744,2],[[3745,3747],2],[3748,3],[3749,2],[3750,3],[3751,2],[[3752,3753],2],[[3754,3755],2],[3756,2],[[3757,3762],2],[3763,1,\"ໍາ\"],[[3764,3769],2],[3770,2],[[3771,3773],2],[[3774,3775],3],[[3776,3780],2],[3781,3],[3782,2],[3783,3],[[3784,3789],2],[[3790,3791],3],[[3792,3801],2],[[3802,3803],3],[3804,1,\"ຫນ\"],[3805,1,\"ຫມ\"],[[3806,3807],2],[[3808,3839],3],[3840,2],[[3841,3850],2],[3851,2],[3852,1,\"་\"],[[3853,3863],2],[[3864,3865],2],[[3866,3871],2],[[3872,3881],2],[[3882,3892],2],[3893,2],[3894,2],[3895,2],[3896,2],[3897,2],[[3898,3901],2],[[3902,3906],2],[3907,1,\"གྷ\"],[[3908,3911],2],[3912,3],[[3913,3916],2],[3917,1,\"ཌྷ\"],[[3918,3921],2],[3922,1,\"དྷ\"],[[3923,3926],2],[3927,1,\"བྷ\"],[[3928,3931],2],[3932,1,\"ཛྷ\"],[[3933,3944],2],[3945,1,\"ཀྵ\"],[3946,2],[[3947,3948],2],[[3949,3952],3],[[3953,3954],2],[3955,1,\"ཱི\"],[3956,2],[3957,1,\"ཱུ\"],[3958,1,\"ྲྀ\"],[3959,1,\"ྲཱྀ\"],[3960,1,\"ླྀ\"],[3961,1,\"ླཱྀ\"],[[3962,3968],2],[3969,1,\"ཱྀ\"],[[3970,3972],2],[3973,2],[[3974,3979],2],[[3980,3983],2],[[3984,3986],2],[3987,1,\"ྒྷ\"],[[3988,3989],2],[3990,2],[3991,2],[3992,3],[[3993,3996],2],[3997,1,\"ྜྷ\"],[[3998,4001],2],[4002,1,\"ྡྷ\"],[[4003,4006],2],[4007,1,\"ྦྷ\"],[[4008,4011],2],[4012,1,\"ྫྷ\"],[4013,2],[[4014,4016],2],[[4017,4023],2],[4024,2],[4025,1,\"ྐྵ\"],[[4026,4028],2],[4029,3],[[4030,4037],2],[4038,2],[[4039,4044],2],[4045,3],[4046,2],[4047,2],[[4048,4049],2],[[4050,4052],2],[[4053,4056],2],[[4057,4058],2],[[4059,4095],3],[[4096,4129],2],[4130,2],[[4131,4135],2],[4136,2],[[4137,4138],2],[4139,2],[[4140,4146],2],[[4147,4149],2],[[4150,4153],2],[[4154,4159],2],[[4160,4169],2],[[4170,4175],2],[[4176,4185],2],[[4186,4249],2],[[4250,4253],2],[[4254,4255],2],[[4256,4293],3],[4294,3],[4295,1,\"ⴧ\"],[[4296,4300],3],[4301,1,\"ⴭ\"],[[4302,4303],3],[[4304,4342],2],[[4343,4344],2],[[4345,4346],2],[4347,2],[4348,1,\"ნ\"],[[4349,4351],2],[[4352,4441],2],[[4442,4446],2],[[4447,4448],3],[[4449,4514],2],[[4515,4519],2],[[4520,4601],2],[[4602,4607],2],[[4608,4614],2],[4615,2],[[4616,4678],2],[4679,2],[4680,2],[4681,3],[[4682,4685],2],[[4686,4687],3],[[4688,4694],2],[4695,3],[4696,2],[4697,3],[[4698,4701],2],[[4702,4703],3],[[4704,4742],2],[4743,2],[4744,2],[4745,3],[[4746,4749],2],[[4750,4751],3],[[4752,4782],2],[4783,2],[4784,2],[4785,3],[[4786,4789],2],[[4790,4791],3],[[4792,4798],2],[4799,3],[4800,2],[4801,3],[[4802,4805],2],[[4806,4807],3],[[4808,4814],2],[4815,2],[[4816,4822],2],[4823,3],[[4824,4846],2],[4847,2],[[4848,4878],2],[4879,2],[4880,2],[4881,3],[[4882,4885],2],[[4886,4887],3],[[4888,4894],2],[4895,2],[[4896,4934],2],[4935,2],[[4936,4954],2],[[4955,4956],3],[[4957,4958],2],[4959,2],[4960,2],[[4961,4988],2],[[4989,4991],3],[[4992,5007],2],[[5008,5017],2],[[5018,5023],3],[[5024,5108],2],[5109,2],[[5110,5111],3],[5112,1,\"Ᏸ\"],[5113,1,\"Ᏹ\"],[5114,1,\"Ᏺ\"],[5115,1,\"Ᏻ\"],[5116,1,\"Ᏼ\"],[5117,1,\"Ᏽ\"],[[5118,5119],3],[5120,2],[[5121,5740],2],[[5741,5742],2],[[5743,5750],2],[[5751,5759],2],[5760,3],[[5761,5786],2],[[5787,5788],2],[[5789,5791],3],[[5792,5866],2],[[5867,5872],2],[[5873,5880],2],[[5881,5887],3],[[5888,5900],2],[5901,2],[[5902,5908],2],[5909,2],[[5910,5918],3],[5919,2],[[5920,5940],2],[[5941,5942],2],[[5943,5951],3],[[5952,5971],2],[[5972,5983],3],[[5984,5996],2],[5997,3],[[5998,6000],2],[6001,3],[[6002,6003],2],[[6004,6015],3],[[6016,6067],2],[[6068,6069],3],[[6070,6099],2],[[6100,6102],2],[6103,2],[[6104,6107],2],[6108,2],[6109,2],[[6110,6111],3],[[6112,6121],2],[[6122,6127],3],[[6128,6137],2],[[6138,6143],3],[[6144,6149],2],[6150,3],[[6151,6154],2],[[6155,6157],7],[6158,3],[6159,7],[[6160,6169],2],[[6170,6175],3],[[6176,6263],2],[6264,2],[[6265,6271],3],[[6272,6313],2],[6314,2],[[6315,6319],3],[[6320,6389],2],[[6390,6399],3],[[6400,6428],2],[[6429,6430],2],[6431,3],[[6432,6443],2],[[6444,6447],3],[[6448,6459],2],[[6460,6463],3],[6464,2],[[6465,6467],3],[[6468,6469],2],[[6470,6509],2],[[6510,6511],3],[[6512,6516],2],[[6517,6527],3],[[6528,6569],2],[[6570,6571],2],[[6572,6575],3],[[6576,6601],2],[[6602,6607],3],[[6608,6617],2],[6618,2],[[6619,6621],3],[[6622,6623],2],[[6624,6655],2],[[6656,6683],2],[[6684,6685],3],[[6686,6687],2],[[6688,6750],2],[6751,3],[[6752,6780],2],[[6781,6782],3],[[6783,6793],2],[[6794,6799],3],[[6800,6809],2],[[6810,6815],3],[[6816,6822],2],[6823,2],[[6824,6829],2],[[6830,6831],3],[[6832,6845],2],[6846,2],[[6847,6848],2],[[6849,6862],2],[[6863,6911],3],[[6912,6987],2],[6988,2],[[6989,6991],3],[[6992,7001],2],[[7002,7018],2],[[7019,7027],2],[[7028,7036],2],[[7037,7038],2],[7039,3],[[7040,7082],2],[[7083,7085],2],[[7086,7097],2],[[7098,7103],2],[[7104,7155],2],[[7156,7163],3],[[7164,7167],2],[[7168,7223],2],[[7224,7226],3],[[7227,7231],2],[[7232,7241],2],[[7242,7244],3],[[7245,7293],2],[[7294,7295],2],[7296,1,\"в\"],[7297,1,\"д\"],[7298,1,\"о\"],[7299,1,\"с\"],[[7300,7301],1,\"т\"],[7302,1,\"ъ\"],[7303,1,\"ѣ\"],[7304,1,\"ꙋ\"],[[7305,7311],3],[7312,1,\"ა\"],[7313,1,\"ბ\"],[7314,1,\"გ\"],[7315,1,\"დ\"],[7316,1,\"ე\"],[7317,1,\"ვ\"],[7318,1,\"ზ\"],[7319,1,\"თ\"],[7320,1,\"ი\"],[7321,1,\"კ\"],[7322,1,\"ლ\"],[7323,1,\"მ\"],[7324,1,\"ნ\"],[7325,1,\"ო\"],[7326,1,\"პ\"],[7327,1,\"ჟ\"],[7328,1,\"რ\"],[7329,1,\"ს\"],[7330,1,\"ტ\"],[7331,1,\"უ\"],[7332,1,\"ფ\"],[7333,1,\"ქ\"],[7334,1,\"ღ\"],[7335,1,\"ყ\"],[7336,1,\"შ\"],[7337,1,\"ჩ\"],[7338,1,\"ც\"],[7339,1,\"ძ\"],[7340,1,\"წ\"],[7341,1,\"ჭ\"],[7342,1,\"ხ\"],[7343,1,\"ჯ\"],[7344,1,\"ჰ\"],[7345,1,\"ჱ\"],[7346,1,\"ჲ\"],[7347,1,\"ჳ\"],[7348,1,\"ჴ\"],[7349,1,\"ჵ\"],[7350,1,\"ჶ\"],[7351,1,\"ჷ\"],[7352,1,\"ჸ\"],[7353,1,\"ჹ\"],[7354,1,\"ჺ\"],[[7355,7356],3],[7357,1,\"ჽ\"],[7358,1,\"ჾ\"],[7359,1,\"ჿ\"],[[7360,7367],2],[[7368,7375],3],[[7376,7378],2],[7379,2],[[7380,7410],2],[[7411,7414],2],[7415,2],[[7416,7417],2],[7418,2],[[7419,7423],3],[[7424,7467],2],[7468,1,\"a\"],[7469,1,\"æ\"],[7470,1,\"b\"],[7471,2],[7472,1,\"d\"],[7473,1,\"e\"],[7474,1,\"ǝ\"],[7475,1,\"g\"],[7476,1,\"h\"],[7477,1,\"i\"],[7478,1,\"j\"],[7479,1,\"k\"],[7480,1,\"l\"],[7481,1,\"m\"],[7482,1,\"n\"],[7483,2],[7484,1,\"o\"],[7485,1,\"ȣ\"],[7486,1,\"p\"],[7487,1,\"r\"],[7488,1,\"t\"],[7489,1,\"u\"],[7490,1,\"w\"],[7491,1,\"a\"],[7492,1,\"ɐ\"],[7493,1,\"ɑ\"],[7494,1,\"ᴂ\"],[7495,1,\"b\"],[7496,1,\"d\"],[7497,1,\"e\"],[7498,1,\"ə\"],[7499,1,\"ɛ\"],[7500,1,\"ɜ\"],[7501,1,\"g\"],[7502,2],[7503,1,\"k\"],[7504,1,\"m\"],[7505,1,\"ŋ\"],[7506,1,\"o\"],[7507,1,\"ɔ\"],[7508,1,\"ᴖ\"],[7509,1,\"ᴗ\"],[7510,1,\"p\"],[7511,1,\"t\"],[7512,1,\"u\"],[7513,1,\"ᴝ\"],[7514,1,\"ɯ\"],[7515,1,\"v\"],[7516,1,\"ᴥ\"],[7517,1,\"β\"],[7518,1,\"γ\"],[7519,1,\"δ\"],[7520,1,\"φ\"],[7521,1,\"χ\"],[7522,1,\"i\"],[7523,1,\"r\"],[7524,1,\"u\"],[7525,1,\"v\"],[7526,1,\"β\"],[7527,1,\"γ\"],[7528,1,\"ρ\"],[7529,1,\"φ\"],[7530,1,\"χ\"],[7531,2],[[7532,7543],2],[7544,1,\"н\"],[[7545,7578],2],[7579,1,\"ɒ\"],[7580,1,\"c\"],[7581,1,\"ɕ\"],[7582,1,\"ð\"],[7583,1,\"ɜ\"],[7584,1,\"f\"],[7585,1,\"ɟ\"],[7586,1,\"ɡ\"],[7587,1,\"ɥ\"],[7588,1,\"ɨ\"],[7589,1,\"ɩ\"],[7590,1,\"ɪ\"],[7591,1,\"ᵻ\"],[7592,1,\"ʝ\"],[7593,1,\"ɭ\"],[7594,1,\"ᶅ\"],[7595,1,\"ʟ\"],[7596,1,\"ɱ\"],[7597,1,\"ɰ\"],[7598,1,\"ɲ\"],[7599,1,\"ɳ\"],[7600,1,\"ɴ\"],[7601,1,\"ɵ\"],[7602,1,\"ɸ\"],[7603,1,\"ʂ\"],[7604,1,\"ʃ\"],[7605,1,\"ƫ\"],[7606,1,\"ʉ\"],[7607,1,\"ʊ\"],[7608,1,\"ᴜ\"],[7609,1,\"ʋ\"],[7610,1,\"ʌ\"],[7611,1,\"z\"],[7612,1,\"ʐ\"],[7613,1,\"ʑ\"],[7614,1,\"ʒ\"],[7615,1,\"θ\"],[[7616,7619],2],[[7620,7626],2],[[7627,7654],2],[[7655,7669],2],[[7670,7673],2],[7674,2],[7675,2],[7676,2],[7677,2],[[7678,7679],2],[7680,1,\"ḁ\"],[7681,2],[7682,1,\"ḃ\"],[7683,2],[7684,1,\"ḅ\"],[7685,2],[7686,1,\"ḇ\"],[7687,2],[7688,1,\"ḉ\"],[7689,2],[7690,1,\"ḋ\"],[7691,2],[7692,1,\"ḍ\"],[7693,2],[7694,1,\"ḏ\"],[7695,2],[7696,1,\"ḑ\"],[7697,2],[7698,1,\"ḓ\"],[7699,2],[7700,1,\"ḕ\"],[7701,2],[7702,1,\"ḗ\"],[7703,2],[7704,1,\"ḙ\"],[7705,2],[7706,1,\"ḛ\"],[7707,2],[7708,1,\"ḝ\"],[7709,2],[7710,1,\"ḟ\"],[7711,2],[7712,1,\"ḡ\"],[7713,2],[7714,1,\"ḣ\"],[7715,2],[7716,1,\"ḥ\"],[7717,2],[7718,1,\"ḧ\"],[7719,2],[7720,1,\"ḩ\"],[7721,2],[7722,1,\"ḫ\"],[7723,2],[7724,1,\"ḭ\"],[7725,2],[7726,1,\"ḯ\"],[7727,2],[7728,1,\"ḱ\"],[7729,2],[7730,1,\"ḳ\"],[7731,2],[7732,1,\"ḵ\"],[7733,2],[7734,1,\"ḷ\"],[7735,2],[7736,1,\"ḹ\"],[7737,2],[7738,1,\"ḻ\"],[7739,2],[7740,1,\"ḽ\"],[7741,2],[7742,1,\"ḿ\"],[7743,2],[7744,1,\"ṁ\"],[7745,2],[7746,1,\"ṃ\"],[7747,2],[7748,1,\"ṅ\"],[7749,2],[7750,1,\"ṇ\"],[7751,2],[7752,1,\"ṉ\"],[7753,2],[7754,1,\"ṋ\"],[7755,2],[7756,1,\"ṍ\"],[7757,2],[7758,1,\"ṏ\"],[7759,2],[7760,1,\"ṑ\"],[7761,2],[7762,1,\"ṓ\"],[7763,2],[7764,1,\"ṕ\"],[7765,2],[7766,1,\"ṗ\"],[7767,2],[7768,1,\"ṙ\"],[7769,2],[7770,1,\"ṛ\"],[7771,2],[7772,1,\"ṝ\"],[7773,2],[7774,1,\"ṟ\"],[7775,2],[7776,1,\"ṡ\"],[7777,2],[7778,1,\"ṣ\"],[7779,2],[7780,1,\"ṥ\"],[7781,2],[7782,1,\"ṧ\"],[7783,2],[7784,1,\"ṩ\"],[7785,2],[7786,1,\"ṫ\"],[7787,2],[7788,1,\"ṭ\"],[7789,2],[7790,1,\"ṯ\"],[7791,2],[7792,1,\"ṱ\"],[7793,2],[7794,1,\"ṳ\"],[7795,2],[7796,1,\"ṵ\"],[7797,2],[7798,1,\"ṷ\"],[7799,2],[7800,1,\"ṹ\"],[7801,2],[7802,1,\"ṻ\"],[7803,2],[7804,1,\"ṽ\"],[7805,2],[7806,1,\"ṿ\"],[7807,2],[7808,1,\"ẁ\"],[7809,2],[7810,1,\"ẃ\"],[7811,2],[7812,1,\"ẅ\"],[7813,2],[7814,1,\"ẇ\"],[7815,2],[7816,1,\"ẉ\"],[7817,2],[7818,1,\"ẋ\"],[7819,2],[7820,1,\"ẍ\"],[7821,2],[7822,1,\"ẏ\"],[7823,2],[7824,1,\"ẑ\"],[7825,2],[7826,1,\"ẓ\"],[7827,2],[7828,1,\"ẕ\"],[[7829,7833],2],[7834,1,\"aʾ\"],[7835,1,\"ṡ\"],[[7836,7837],2],[7838,1,\"ss\"],[7839,2],[7840,1,\"ạ\"],[7841,2],[7842,1,\"ả\"],[7843,2],[7844,1,\"ấ\"],[7845,2],[7846,1,\"ầ\"],[7847,2],[7848,1,\"ẩ\"],[7849,2],[7850,1,\"ẫ\"],[7851,2],[7852,1,\"ậ\"],[7853,2],[7854,1,\"ắ\"],[7855,2],[7856,1,\"ằ\"],[7857,2],[7858,1,\"ẳ\"],[7859,2],[7860,1,\"ẵ\"],[7861,2],[7862,1,\"ặ\"],[7863,2],[7864,1,\"ẹ\"],[7865,2],[7866,1,\"ẻ\"],[7867,2],[7868,1,\"ẽ\"],[7869,2],[7870,1,\"ế\"],[7871,2],[7872,1,\"ề\"],[7873,2],[7874,1,\"ể\"],[7875,2],[7876,1,\"ễ\"],[7877,2],[7878,1,\"ệ\"],[7879,2],[7880,1,\"ỉ\"],[7881,2],[7882,1,\"ị\"],[7883,2],[7884,1,\"ọ\"],[7885,2],[7886,1,\"ỏ\"],[7887,2],[7888,1,\"ố\"],[7889,2],[7890,1,\"ồ\"],[7891,2],[7892,1,\"ổ\"],[7893,2],[7894,1,\"ỗ\"],[7895,2],[7896,1,\"ộ\"],[7897,2],[7898,1,\"ớ\"],[7899,2],[7900,1,\"ờ\"],[7901,2],[7902,1,\"ở\"],[7903,2],[7904,1,\"ỡ\"],[7905,2],[7906,1,\"ợ\"],[7907,2],[7908,1,\"ụ\"],[7909,2],[7910,1,\"ủ\"],[7911,2],[7912,1,\"ứ\"],[7913,2],[7914,1,\"ừ\"],[7915,2],[7916,1,\"ử\"],[7917,2],[7918,1,\"ữ\"],[7919,2],[7920,1,\"ự\"],[7921,2],[7922,1,\"ỳ\"],[7923,2],[7924,1,\"ỵ\"],[7925,2],[7926,1,\"ỷ\"],[7927,2],[7928,1,\"ỹ\"],[7929,2],[7930,1,\"ỻ\"],[7931,2],[7932,1,\"ỽ\"],[7933,2],[7934,1,\"ỿ\"],[7935,2],[[7936,7943],2],[7944,1,\"ἀ\"],[7945,1,\"ἁ\"],[7946,1,\"ἂ\"],[7947,1,\"ἃ\"],[7948,1,\"ἄ\"],[7949,1,\"ἅ\"],[7950,1,\"ἆ\"],[7951,1,\"ἇ\"],[[7952,7957],2],[[7958,7959],3],[7960,1,\"ἐ\"],[7961,1,\"ἑ\"],[7962,1,\"ἒ\"],[7963,1,\"ἓ\"],[7964,1,\"ἔ\"],[7965,1,\"ἕ\"],[[7966,7967],3],[[7968,7975],2],[7976,1,\"ἠ\"],[7977,1,\"ἡ\"],[7978,1,\"ἢ\"],[7979,1,\"ἣ\"],[7980,1,\"ἤ\"],[7981,1,\"ἥ\"],[7982,1,\"ἦ\"],[7983,1,\"ἧ\"],[[7984,7991],2],[7992,1,\"ἰ\"],[7993,1,\"ἱ\"],[7994,1,\"ἲ\"],[7995,1,\"ἳ\"],[7996,1,\"ἴ\"],[7997,1,\"ἵ\"],[7998,1,\"ἶ\"],[7999,1,\"ἷ\"],[[8000,8005],2],[[8006,8007],3],[8008,1,\"ὀ\"],[8009,1,\"ὁ\"],[8010,1,\"ὂ\"],[8011,1,\"ὃ\"],[8012,1,\"ὄ\"],[8013,1,\"ὅ\"],[[8014,8015],3],[[8016,8023],2],[8024,3],[8025,1,\"ὑ\"],[8026,3],[8027,1,\"ὓ\"],[8028,3],[8029,1,\"ὕ\"],[8030,3],[8031,1,\"ὗ\"],[[8032,8039],2],[8040,1,\"ὠ\"],[8041,1,\"ὡ\"],[8042,1,\"ὢ\"],[8043,1,\"ὣ\"],[8044,1,\"ὤ\"],[8045,1,\"ὥ\"],[8046,1,\"ὦ\"],[8047,1,\"ὧ\"],[8048,2],[8049,1,\"ά\"],[8050,2],[8051,1,\"έ\"],[8052,2],[8053,1,\"ή\"],[8054,2],[8055,1,\"ί\"],[8056,2],[8057,1,\"ό\"],[8058,2],[8059,1,\"ύ\"],[8060,2],[8061,1,\"ώ\"],[[8062,8063],3],[8064,1,\"ἀι\"],[8065,1,\"ἁι\"],[8066,1,\"ἂι\"],[8067,1,\"ἃι\"],[8068,1,\"ἄι\"],[8069,1,\"ἅι\"],[8070,1,\"ἆι\"],[8071,1,\"ἇι\"],[8072,1,\"ἀι\"],[8073,1,\"ἁι\"],[8074,1,\"ἂι\"],[8075,1,\"ἃι\"],[8076,1,\"ἄι\"],[8077,1,\"ἅι\"],[8078,1,\"ἆι\"],[8079,1,\"ἇι\"],[8080,1,\"ἠι\"],[8081,1,\"ἡι\"],[8082,1,\"ἢι\"],[8083,1,\"ἣι\"],[8084,1,\"ἤι\"],[8085,1,\"ἥι\"],[8086,1,\"ἦι\"],[8087,1,\"ἧι\"],[8088,1,\"ἠι\"],[8089,1,\"ἡι\"],[8090,1,\"ἢι\"],[8091,1,\"ἣι\"],[8092,1,\"ἤι\"],[8093,1,\"ἥι\"],[8094,1,\"ἦι\"],[8095,1,\"ἧι\"],[8096,1,\"ὠι\"],[8097,1,\"ὡι\"],[8098,1,\"ὢι\"],[8099,1,\"ὣι\"],[8100,1,\"ὤι\"],[8101,1,\"ὥι\"],[8102,1,\"ὦι\"],[8103,1,\"ὧι\"],[8104,1,\"ὠι\"],[8105,1,\"ὡι\"],[8106,1,\"ὢι\"],[8107,1,\"ὣι\"],[8108,1,\"ὤι\"],[8109,1,\"ὥι\"],[8110,1,\"ὦι\"],[8111,1,\"ὧι\"],[[8112,8113],2],[8114,1,\"ὰι\"],[8115,1,\"αι\"],[8116,1,\"άι\"],[8117,3],[8118,2],[8119,1,\"ᾶι\"],[8120,1,\"ᾰ\"],[8121,1,\"ᾱ\"],[8122,1,\"ὰ\"],[8123,1,\"ά\"],[8124,1,\"αι\"],[8125,5,\" ̓\"],[8126,1,\"ι\"],[8127,5,\" ̓\"],[8128,5,\" ͂\"],[8129,5,\" ̈͂\"],[8130,1,\"ὴι\"],[8131,1,\"ηι\"],[8132,1,\"ήι\"],[8133,3],[8134,2],[8135,1,\"ῆι\"],[8136,1,\"ὲ\"],[8137,1,\"έ\"],[8138,1,\"ὴ\"],[8139,1,\"ή\"],[8140,1,\"ηι\"],[8141,5,\" ̓̀\"],[8142,5,\" ̓́\"],[8143,5,\" ̓͂\"],[[8144,8146],2],[8147,1,\"ΐ\"],[[8148,8149],3],[[8150,8151],2],[8152,1,\"ῐ\"],[8153,1,\"ῑ\"],[8154,1,\"ὶ\"],[8155,1,\"ί\"],[8156,3],[8157,5,\" ̔̀\"],[8158,5,\" ̔́\"],[8159,5,\" ̔͂\"],[[8160,8162],2],[8163,1,\"ΰ\"],[[8164,8167],2],[8168,1,\"ῠ\"],[8169,1,\"ῡ\"],[8170,1,\"ὺ\"],[8171,1,\"ύ\"],[8172,1,\"ῥ\"],[8173,5,\" ̈̀\"],[8174,5,\" ̈́\"],[8175,5,\"`\"],[[8176,8177],3],[8178,1,\"ὼι\"],[8179,1,\"ωι\"],[8180,1,\"ώι\"],[8181,3],[8182,2],[8183,1,\"ῶι\"],[8184,1,\"ὸ\"],[8185,1,\"ό\"],[8186,1,\"ὼ\"],[8187,1,\"ώ\"],[8188,1,\"ωι\"],[8189,5,\" ́\"],[8190,5,\" ̔\"],[8191,3],[[8192,8202],5,\" \"],[8203,7],[[8204,8205],6,\"\"],[[8206,8207],3],[8208,2],[8209,1,\"‐\"],[[8210,8214],2],[8215,5,\" ̳\"],[[8216,8227],2],[[8228,8230],3],[8231,2],[[8232,8238],3],[8239,5,\" \"],[[8240,8242],2],[8243,1,\"′′\"],[8244,1,\"′′′\"],[8245,2],[8246,1,\"‵‵\"],[8247,1,\"‵‵‵\"],[[8248,8251],2],[8252,5,\"!!\"],[8253,2],[8254,5,\" ̅\"],[[8255,8262],2],[8263,5,\"??\"],[8264,5,\"?!\"],[8265,5,\"!?\"],[[8266,8269],2],[[8270,8274],2],[[8275,8276],2],[[8277,8278],2],[8279,1,\"′′′′\"],[[8280,8286],2],[8287,5,\" \"],[8288,7],[[8289,8291],3],[8292,7],[8293,3],[[8294,8297],3],[[8298,8303],3],[8304,1,\"0\"],[8305,1,\"i\"],[[8306,8307],3],[8308,1,\"4\"],[8309,1,\"5\"],[8310,1,\"6\"],[8311,1,\"7\"],[8312,1,\"8\"],[8313,1,\"9\"],[8314,5,\"+\"],[8315,1,\"−\"],[8316,5,\"=\"],[8317,5,\"(\"],[8318,5,\")\"],[8319,1,\"n\"],[8320,1,\"0\"],[8321,1,\"1\"],[8322,1,\"2\"],[8323,1,\"3\"],[8324,1,\"4\"],[8325,1,\"5\"],[8326,1,\"6\"],[8327,1,\"7\"],[8328,1,\"8\"],[8329,1,\"9\"],[8330,5,\"+\"],[8331,1,\"−\"],[8332,5,\"=\"],[8333,5,\"(\"],[8334,5,\")\"],[8335,3],[8336,1,\"a\"],[8337,1,\"e\"],[8338,1,\"o\"],[8339,1,\"x\"],[8340,1,\"ə\"],[8341,1,\"h\"],[8342,1,\"k\"],[8343,1,\"l\"],[8344,1,\"m\"],[8345,1,\"n\"],[8346,1,\"p\"],[8347,1,\"s\"],[8348,1,\"t\"],[[8349,8351],3],[[8352,8359],2],[8360,1,\"rs\"],[[8361,8362],2],[8363,2],[8364,2],[[8365,8367],2],[[8368,8369],2],[[8370,8373],2],[[8374,8376],2],[8377,2],[8378,2],[[8379,8381],2],[8382,2],[8383,2],[8384,2],[[8385,8399],3],[[8400,8417],2],[[8418,8419],2],[[8420,8426],2],[8427,2],[[8428,8431],2],[8432,2],[[8433,8447],3],[8448,5,\"a/c\"],[8449,5,\"a/s\"],[8450,1,\"c\"],[8451,1,\"°c\"],[8452,2],[8453,5,\"c/o\"],[8454,5,\"c/u\"],[8455,1,\"ɛ\"],[8456,2],[8457,1,\"°f\"],[8458,1,\"g\"],[[8459,8462],1,\"h\"],[8463,1,\"ħ\"],[[8464,8465],1,\"i\"],[[8466,8467],1,\"l\"],[8468,2],[8469,1,\"n\"],[8470,1,\"no\"],[[8471,8472],2],[8473,1,\"p\"],[8474,1,\"q\"],[[8475,8477],1,\"r\"],[[8478,8479],2],[8480,1,\"sm\"],[8481,1,\"tel\"],[8482,1,\"tm\"],[8483,2],[8484,1,\"z\"],[8485,2],[8486,1,\"ω\"],[8487,2],[8488,1,\"z\"],[8489,2],[8490,1,\"k\"],[8491,1,\"å\"],[8492,1,\"b\"],[8493,1,\"c\"],[8494,2],[[8495,8496],1,\"e\"],[8497,1,\"f\"],[8498,3],[8499,1,\"m\"],[8500,1,\"o\"],[8501,1,\"א\"],[8502,1,\"ב\"],[8503,1,\"ג\"],[8504,1,\"ד\"],[8505,1,\"i\"],[8506,2],[8507,1,\"fax\"],[8508,1,\"π\"],[[8509,8510],1,\"γ\"],[8511,1,\"π\"],[8512,1,\"∑\"],[[8513,8516],2],[[8517,8518],1,\"d\"],[8519,1,\"e\"],[8520,1,\"i\"],[8521,1,\"j\"],[[8522,8523],2],[8524,2],[8525,2],[8526,2],[8527,2],[8528,1,\"1⁄7\"],[8529,1,\"1⁄9\"],[8530,1,\"1⁄10\"],[8531,1,\"1⁄3\"],[8532,1,\"2⁄3\"],[8533,1,\"1⁄5\"],[8534,1,\"2⁄5\"],[8535,1,\"3⁄5\"],[8536,1,\"4⁄5\"],[8537,1,\"1⁄6\"],[8538,1,\"5⁄6\"],[8539,1,\"1⁄8\"],[8540,1,\"3⁄8\"],[8541,1,\"5⁄8\"],[8542,1,\"7⁄8\"],[8543,1,\"1⁄\"],[8544,1,\"i\"],[8545,1,\"ii\"],[8546,1,\"iii\"],[8547,1,\"iv\"],[8548,1,\"v\"],[8549,1,\"vi\"],[8550,1,\"vii\"],[8551,1,\"viii\"],[8552,1,\"ix\"],[8553,1,\"x\"],[8554,1,\"xi\"],[8555,1,\"xii\"],[8556,1,\"l\"],[8557,1,\"c\"],[8558,1,\"d\"],[8559,1,\"m\"],[8560,1,\"i\"],[8561,1,\"ii\"],[8562,1,\"iii\"],[8563,1,\"iv\"],[8564,1,\"v\"],[8565,1,\"vi\"],[8566,1,\"vii\"],[8567,1,\"viii\"],[8568,1,\"ix\"],[8569,1,\"x\"],[8570,1,\"xi\"],[8571,1,\"xii\"],[8572,1,\"l\"],[8573,1,\"c\"],[8574,1,\"d\"],[8575,1,\"m\"],[[8576,8578],2],[8579,3],[8580,2],[[8581,8584],2],[8585,1,\"0⁄3\"],[[8586,8587],2],[[8588,8591],3],[[8592,8682],2],[[8683,8691],2],[[8692,8703],2],[[8704,8747],2],[8748,1,\"∫∫\"],[8749,1,\"∫∫∫\"],[8750,2],[8751,1,\"∮∮\"],[8752,1,\"∮∮∮\"],[[8753,8799],2],[8800,4],[[8801,8813],2],[[8814,8815],4],[[8816,8945],2],[[8946,8959],2],[8960,2],[8961,2],[[8962,9000],2],[9001,1,\"〈\"],[9002,1,\"〉\"],[[9003,9082],2],[9083,2],[9084,2],[[9085,9114],2],[[9115,9166],2],[[9167,9168],2],[[9169,9179],2],[[9180,9191],2],[9192,2],[[9193,9203],2],[[9204,9210],2],[[9211,9214],2],[9215,2],[[9216,9252],2],[[9253,9254],2],[[9255,9279],3],[[9280,9290],2],[[9291,9311],3],[9312,1,\"1\"],[9313,1,\"2\"],[9314,1,\"3\"],[9315,1,\"4\"],[9316,1,\"5\"],[9317,1,\"6\"],[9318,1,\"7\"],[9319,1,\"8\"],[9320,1,\"9\"],[9321,1,\"10\"],[9322,1,\"11\"],[9323,1,\"12\"],[9324,1,\"13\"],[9325,1,\"14\"],[9326,1,\"15\"],[9327,1,\"16\"],[9328,1,\"17\"],[9329,1,\"18\"],[9330,1,\"19\"],[9331,1,\"20\"],[9332,5,\"(1)\"],[9333,5,\"(2)\"],[9334,5,\"(3)\"],[9335,5,\"(4)\"],[9336,5,\"(5)\"],[9337,5,\"(6)\"],[9338,5,\"(7)\"],[9339,5,\"(8)\"],[9340,5,\"(9)\"],[9341,5,\"(10)\"],[9342,5,\"(11)\"],[9343,5,\"(12)\"],[9344,5,\"(13)\"],[9345,5,\"(14)\"],[9346,5,\"(15)\"],[9347,5,\"(16)\"],[9348,5,\"(17)\"],[9349,5,\"(18)\"],[9350,5,\"(19)\"],[9351,5,\"(20)\"],[[9352,9371],3],[9372,5,\"(a)\"],[9373,5,\"(b)\"],[9374,5,\"(c)\"],[9375,5,\"(d)\"],[9376,5,\"(e)\"],[9377,5,\"(f)\"],[9378,5,\"(g)\"],[9379,5,\"(h)\"],[9380,5,\"(i)\"],[9381,5,\"(j)\"],[9382,5,\"(k)\"],[9383,5,\"(l)\"],[9384,5,\"(m)\"],[9385,5,\"(n)\"],[9386,5,\"(o)\"],[9387,5,\"(p)\"],[9388,5,\"(q)\"],[9389,5,\"(r)\"],[9390,5,\"(s)\"],[9391,5,\"(t)\"],[9392,5,\"(u)\"],[9393,5,\"(v)\"],[9394,5,\"(w)\"],[9395,5,\"(x)\"],[9396,5,\"(y)\"],[9397,5,\"(z)\"],[9398,1,\"a\"],[9399,1,\"b\"],[9400,1,\"c\"],[9401,1,\"d\"],[9402,1,\"e\"],[9403,1,\"f\"],[9404,1,\"g\"],[9405,1,\"h\"],[9406,1,\"i\"],[9407,1,\"j\"],[9408,1,\"k\"],[9409,1,\"l\"],[9410,1,\"m\"],[9411,1,\"n\"],[9412,1,\"o\"],[9413,1,\"p\"],[9414,1,\"q\"],[9415,1,\"r\"],[9416,1,\"s\"],[9417,1,\"t\"],[9418,1,\"u\"],[9419,1,\"v\"],[9420,1,\"w\"],[9421,1,\"x\"],[9422,1,\"y\"],[9423,1,\"z\"],[9424,1,\"a\"],[9425,1,\"b\"],[9426,1,\"c\"],[9427,1,\"d\"],[9428,1,\"e\"],[9429,1,\"f\"],[9430,1,\"g\"],[9431,1,\"h\"],[9432,1,\"i\"],[9433,1,\"j\"],[9434,1,\"k\"],[9435,1,\"l\"],[9436,1,\"m\"],[9437,1,\"n\"],[9438,1,\"o\"],[9439,1,\"p\"],[9440,1,\"q\"],[9441,1,\"r\"],[9442,1,\"s\"],[9443,1,\"t\"],[9444,1,\"u\"],[9445,1,\"v\"],[9446,1,\"w\"],[9447,1,\"x\"],[9448,1,\"y\"],[9449,1,\"z\"],[9450,1,\"0\"],[[9451,9470],2],[9471,2],[[9472,9621],2],[[9622,9631],2],[[9632,9711],2],[[9712,9719],2],[[9720,9727],2],[[9728,9747],2],[[9748,9749],2],[[9750,9751],2],[9752,2],[9753,2],[[9754,9839],2],[[9840,9841],2],[[9842,9853],2],[[9854,9855],2],[[9856,9865],2],[[9866,9873],2],[[9874,9884],2],[9885,2],[[9886,9887],2],[[9888,9889],2],[[9890,9905],2],[9906,2],[[9907,9916],2],[[9917,9919],2],[[9920,9923],2],[[9924,9933],2],[9934,2],[[9935,9953],2],[9954,2],[9955,2],[[9956,9959],2],[[9960,9983],2],[9984,2],[[9985,9988],2],[9989,2],[[9990,9993],2],[[9994,9995],2],[[9996,10023],2],[10024,2],[[10025,10059],2],[10060,2],[10061,2],[10062,2],[[10063,10066],2],[[10067,10069],2],[10070,2],[10071,2],[[10072,10078],2],[[10079,10080],2],[[10081,10087],2],[[10088,10101],2],[[10102,10132],2],[[10133,10135],2],[[10136,10159],2],[10160,2],[[10161,10174],2],[10175,2],[[10176,10182],2],[[10183,10186],2],[10187,2],[10188,2],[10189,2],[[10190,10191],2],[[10192,10219],2],[[10220,10223],2],[[10224,10239],2],[[10240,10495],2],[[10496,10763],2],[10764,1,\"∫∫∫∫\"],[[10765,10867],2],[10868,5,\"::=\"],[10869,5,\"==\"],[10870,5,\"===\"],[[10871,10971],2],[10972,1,\"⫝̸\"],[[10973,11007],2],[[11008,11021],2],[[11022,11027],2],[[11028,11034],2],[[11035,11039],2],[[11040,11043],2],[[11044,11084],2],[[11085,11087],2],[[11088,11092],2],[[11093,11097],2],[[11098,11123],2],[[11124,11125],3],[[11126,11157],2],[11158,3],[11159,2],[[11160,11193],2],[[11194,11196],2],[[11197,11208],2],[11209,2],[[11210,11217],2],[11218,2],[[11219,11243],2],[[11244,11247],2],[[11248,11262],2],[11263,2],[11264,1,\"ⰰ\"],[11265,1,\"ⰱ\"],[11266,1,\"ⰲ\"],[11267,1,\"ⰳ\"],[11268,1,\"ⰴ\"],[11269,1,\"ⰵ\"],[11270,1,\"ⰶ\"],[11271,1,\"ⰷ\"],[11272,1,\"ⰸ\"],[11273,1,\"ⰹ\"],[11274,1,\"ⰺ\"],[11275,1,\"ⰻ\"],[11276,1,\"ⰼ\"],[11277,1,\"ⰽ\"],[11278,1,\"ⰾ\"],[11279,1,\"ⰿ\"],[11280,1,\"ⱀ\"],[11281,1,\"ⱁ\"],[11282,1,\"ⱂ\"],[11283,1,\"ⱃ\"],[11284,1,\"ⱄ\"],[11285,1,\"ⱅ\"],[11286,1,\"ⱆ\"],[11287,1,\"ⱇ\"],[11288,1,\"ⱈ\"],[11289,1,\"ⱉ\"],[11290,1,\"ⱊ\"],[11291,1,\"ⱋ\"],[11292,1,\"ⱌ\"],[11293,1,\"ⱍ\"],[11294,1,\"ⱎ\"],[11295,1,\"ⱏ\"],[11296,1,\"ⱐ\"],[11297,1,\"ⱑ\"],[11298,1,\"ⱒ\"],[11299,1,\"ⱓ\"],[11300,1,\"ⱔ\"],[11301,1,\"ⱕ\"],[11302,1,\"ⱖ\"],[11303,1,\"ⱗ\"],[11304,1,\"ⱘ\"],[11305,1,\"ⱙ\"],[11306,1,\"ⱚ\"],[11307,1,\"ⱛ\"],[11308,1,\"ⱜ\"],[11309,1,\"ⱝ\"],[11310,1,\"ⱞ\"],[11311,1,\"ⱟ\"],[[11312,11358],2],[11359,2],[11360,1,\"ⱡ\"],[11361,2],[11362,1,\"ɫ\"],[11363,1,\"ᵽ\"],[11364,1,\"ɽ\"],[[11365,11366],2],[11367,1,\"ⱨ\"],[11368,2],[11369,1,\"ⱪ\"],[11370,2],[11371,1,\"ⱬ\"],[11372,2],[11373,1,\"ɑ\"],[11374,1,\"ɱ\"],[11375,1,\"ɐ\"],[11376,1,\"ɒ\"],[11377,2],[11378,1,\"ⱳ\"],[11379,2],[11380,2],[11381,1,\"ⱶ\"],[[11382,11383],2],[[11384,11387],2],[11388,1,\"j\"],[11389,1,\"v\"],[11390,1,\"ȿ\"],[11391,1,\"ɀ\"],[11392,1,\"ⲁ\"],[11393,2],[11394,1,\"ⲃ\"],[11395,2],[11396,1,\"ⲅ\"],[11397,2],[11398,1,\"ⲇ\"],[11399,2],[11400,1,\"ⲉ\"],[11401,2],[11402,1,\"ⲋ\"],[11403,2],[11404,1,\"ⲍ\"],[11405,2],[11406,1,\"ⲏ\"],[11407,2],[11408,1,\"ⲑ\"],[11409,2],[11410,1,\"ⲓ\"],[11411,2],[11412,1,\"ⲕ\"],[11413,2],[11414,1,\"ⲗ\"],[11415,2],[11416,1,\"ⲙ\"],[11417,2],[11418,1,\"ⲛ\"],[11419,2],[11420,1,\"ⲝ\"],[11421,2],[11422,1,\"ⲟ\"],[11423,2],[11424,1,\"ⲡ\"],[11425,2],[11426,1,\"ⲣ\"],[11427,2],[11428,1,\"ⲥ\"],[11429,2],[11430,1,\"ⲧ\"],[11431,2],[11432,1,\"ⲩ\"],[11433,2],[11434,1,\"ⲫ\"],[11435,2],[11436,1,\"ⲭ\"],[11437,2],[11438,1,\"ⲯ\"],[11439,2],[11440,1,\"ⲱ\"],[11441,2],[11442,1,\"ⲳ\"],[11443,2],[11444,1,\"ⲵ\"],[11445,2],[11446,1,\"ⲷ\"],[11447,2],[11448,1,\"ⲹ\"],[11449,2],[11450,1,\"ⲻ\"],[11451,2],[11452,1,\"ⲽ\"],[11453,2],[11454,1,\"ⲿ\"],[11455,2],[11456,1,\"ⳁ\"],[11457,2],[11458,1,\"ⳃ\"],[11459,2],[11460,1,\"ⳅ\"],[11461,2],[11462,1,\"ⳇ\"],[11463,2],[11464,1,\"ⳉ\"],[11465,2],[11466,1,\"ⳋ\"],[11467,2],[11468,1,\"ⳍ\"],[11469,2],[11470,1,\"ⳏ\"],[11471,2],[11472,1,\"ⳑ\"],[11473,2],[11474,1,\"ⳓ\"],[11475,2],[11476,1,\"ⳕ\"],[11477,2],[11478,1,\"ⳗ\"],[11479,2],[11480,1,\"ⳙ\"],[11481,2],[11482,1,\"ⳛ\"],[11483,2],[11484,1,\"ⳝ\"],[11485,2],[11486,1,\"ⳟ\"],[11487,2],[11488,1,\"ⳡ\"],[11489,2],[11490,1,\"ⳣ\"],[[11491,11492],2],[[11493,11498],2],[11499,1,\"ⳬ\"],[11500,2],[11501,1,\"ⳮ\"],[[11502,11505],2],[11506,1,\"ⳳ\"],[11507,2],[[11508,11512],3],[[11513,11519],2],[[11520,11557],2],[11558,3],[11559,2],[[11560,11564],3],[11565,2],[[11566,11567],3],[[11568,11621],2],[[11622,11623],2],[[11624,11630],3],[11631,1,\"ⵡ\"],[11632,2],[[11633,11646],3],[11647,2],[[11648,11670],2],[[11671,11679],3],[[11680,11686],2],[11687,3],[[11688,11694],2],[11695,3],[[11696,11702],2],[11703,3],[[11704,11710],2],[11711,3],[[11712,11718],2],[11719,3],[[11720,11726],2],[11727,3],[[11728,11734],2],[11735,3],[[11736,11742],2],[11743,3],[[11744,11775],2],[[11776,11799],2],[[11800,11803],2],[[11804,11805],2],[[11806,11822],2],[11823,2],[11824,2],[11825,2],[[11826,11835],2],[[11836,11842],2],[[11843,11844],2],[[11845,11849],2],[[11850,11854],2],[11855,2],[[11856,11858],2],[[11859,11869],2],[[11870,11903],3],[[11904,11929],2],[11930,3],[[11931,11934],2],[11935,1,\"母\"],[[11936,12018],2],[12019,1,\"龟\"],[[12020,12031],3],[12032,1,\"一\"],[12033,1,\"丨\"],[12034,1,\"丶\"],[12035,1,\"丿\"],[12036,1,\"乙\"],[12037,1,\"亅\"],[12038,1,\"二\"],[12039,1,\"亠\"],[12040,1,\"人\"],[12041,1,\"儿\"],[12042,1,\"入\"],[12043,1,\"八\"],[12044,1,\"冂\"],[12045,1,\"冖\"],[12046,1,\"冫\"],[12047,1,\"几\"],[12048,1,\"凵\"],[12049,1,\"刀\"],[12050,1,\"力\"],[12051,1,\"勹\"],[12052,1,\"匕\"],[12053,1,\"匚\"],[12054,1,\"匸\"],[12055,1,\"十\"],[12056,1,\"卜\"],[12057,1,\"卩\"],[12058,1,\"厂\"],[12059,1,\"厶\"],[12060,1,\"又\"],[12061,1,\"口\"],[12062,1,\"囗\"],[12063,1,\"土\"],[12064,1,\"士\"],[12065,1,\"夂\"],[12066,1,\"夊\"],[12067,1,\"夕\"],[12068,1,\"大\"],[12069,1,\"女\"],[12070,1,\"子\"],[12071,1,\"宀\"],[12072,1,\"寸\"],[12073,1,\"小\"],[12074,1,\"尢\"],[12075,1,\"尸\"],[12076,1,\"屮\"],[12077,1,\"山\"],[12078,1,\"巛\"],[12079,1,\"工\"],[12080,1,\"己\"],[12081,1,\"巾\"],[12082,1,\"干\"],[12083,1,\"幺\"],[12084,1,\"广\"],[12085,1,\"廴\"],[12086,1,\"廾\"],[12087,1,\"弋\"],[12088,1,\"弓\"],[12089,1,\"彐\"],[12090,1,\"彡\"],[12091,1,\"彳\"],[12092,1,\"心\"],[12093,1,\"戈\"],[12094,1,\"戶\"],[12095,1,\"手\"],[12096,1,\"支\"],[12097,1,\"攴\"],[12098,1,\"文\"],[12099,1,\"斗\"],[12100,1,\"斤\"],[12101,1,\"方\"],[12102,1,\"无\"],[12103,1,\"日\"],[12104,1,\"曰\"],[12105,1,\"月\"],[12106,1,\"木\"],[12107,1,\"欠\"],[12108,1,\"止\"],[12109,1,\"歹\"],[12110,1,\"殳\"],[12111,1,\"毋\"],[12112,1,\"比\"],[12113,1,\"毛\"],[12114,1,\"氏\"],[12115,1,\"气\"],[12116,1,\"水\"],[12117,1,\"火\"],[12118,1,\"爪\"],[12119,1,\"父\"],[12120,1,\"爻\"],[12121,1,\"爿\"],[12122,1,\"片\"],[12123,1,\"牙\"],[12124,1,\"牛\"],[12125,1,\"犬\"],[12126,1,\"玄\"],[12127,1,\"玉\"],[12128,1,\"瓜\"],[12129,1,\"瓦\"],[12130,1,\"甘\"],[12131,1,\"生\"],[12132,1,\"用\"],[12133,1,\"田\"],[12134,1,\"疋\"],[12135,1,\"疒\"],[12136,1,\"癶\"],[12137,1,\"白\"],[12138,1,\"皮\"],[12139,1,\"皿\"],[12140,1,\"目\"],[12141,1,\"矛\"],[12142,1,\"矢\"],[12143,1,\"石\"],[12144,1,\"示\"],[12145,1,\"禸\"],[12146,1,\"禾\"],[12147,1,\"穴\"],[12148,1,\"立\"],[12149,1,\"竹\"],[12150,1,\"米\"],[12151,1,\"糸\"],[12152,1,\"缶\"],[12153,1,\"网\"],[12154,1,\"羊\"],[12155,1,\"羽\"],[12156,1,\"老\"],[12157,1,\"而\"],[12158,1,\"耒\"],[12159,1,\"耳\"],[12160,1,\"聿\"],[12161,1,\"肉\"],[12162,1,\"臣\"],[12163,1,\"自\"],[12164,1,\"至\"],[12165,1,\"臼\"],[12166,1,\"舌\"],[12167,1,\"舛\"],[12168,1,\"舟\"],[12169,1,\"艮\"],[12170,1,\"色\"],[12171,1,\"艸\"],[12172,1,\"虍\"],[12173,1,\"虫\"],[12174,1,\"血\"],[12175,1,\"行\"],[12176,1,\"衣\"],[12177,1,\"襾\"],[12178,1,\"見\"],[12179,1,\"角\"],[12180,1,\"言\"],[12181,1,\"谷\"],[12182,1,\"豆\"],[12183,1,\"豕\"],[12184,1,\"豸\"],[12185,1,\"貝\"],[12186,1,\"赤\"],[12187,1,\"走\"],[12188,1,\"足\"],[12189,1,\"身\"],[12190,1,\"車\"],[12191,1,\"辛\"],[12192,1,\"辰\"],[12193,1,\"辵\"],[12194,1,\"邑\"],[12195,1,\"酉\"],[12196,1,\"釆\"],[12197,1,\"里\"],[12198,1,\"金\"],[12199,1,\"長\"],[12200,1,\"門\"],[12201,1,\"阜\"],[12202,1,\"隶\"],[12203,1,\"隹\"],[12204,1,\"雨\"],[12205,1,\"靑\"],[12206,1,\"非\"],[12207,1,\"面\"],[12208,1,\"革\"],[12209,1,\"韋\"],[12210,1,\"韭\"],[12211,1,\"音\"],[12212,1,\"頁\"],[12213,1,\"風\"],[12214,1,\"飛\"],[12215,1,\"食\"],[12216,1,\"首\"],[12217,1,\"香\"],[12218,1,\"馬\"],[12219,1,\"骨\"],[12220,1,\"高\"],[12221,1,\"髟\"],[12222,1,\"鬥\"],[12223,1,\"鬯\"],[12224,1,\"鬲\"],[12225,1,\"鬼\"],[12226,1,\"魚\"],[12227,1,\"鳥\"],[12228,1,\"鹵\"],[12229,1,\"鹿\"],[12230,1,\"麥\"],[12231,1,\"麻\"],[12232,1,\"黃\"],[12233,1,\"黍\"],[12234,1,\"黑\"],[12235,1,\"黹\"],[12236,1,\"黽\"],[12237,1,\"鼎\"],[12238,1,\"鼓\"],[12239,1,\"鼠\"],[12240,1,\"鼻\"],[12241,1,\"齊\"],[12242,1,\"齒\"],[12243,1,\"龍\"],[12244,1,\"龜\"],[12245,1,\"龠\"],[[12246,12271],3],[[12272,12283],3],[[12284,12287],3],[12288,5,\" \"],[12289,2],[12290,1,\".\"],[[12291,12292],2],[[12293,12295],2],[[12296,12329],2],[[12330,12333],2],[[12334,12341],2],[12342,1,\"〒\"],[12343,2],[12344,1,\"十\"],[12345,1,\"卄\"],[12346,1,\"卅\"],[12347,2],[12348,2],[12349,2],[12350,2],[12351,2],[12352,3],[[12353,12436],2],[[12437,12438],2],[[12439,12440],3],[[12441,12442],2],[12443,5,\" ゙\"],[12444,5,\" ゚\"],[[12445,12446],2],[12447,1,\"より\"],[12448,2],[[12449,12542],2],[12543,1,\"コト\"],[[12544,12548],3],[[12549,12588],2],[12589,2],[12590,2],[12591,2],[12592,3],[12593,1,\"ᄀ\"],[12594,1,\"ᄁ\"],[12595,1,\"ᆪ\"],[12596,1,\"ᄂ\"],[12597,1,\"ᆬ\"],[12598,1,\"ᆭ\"],[12599,1,\"ᄃ\"],[12600,1,\"ᄄ\"],[12601,1,\"ᄅ\"],[12602,1,\"ᆰ\"],[12603,1,\"ᆱ\"],[12604,1,\"ᆲ\"],[12605,1,\"ᆳ\"],[12606,1,\"ᆴ\"],[12607,1,\"ᆵ\"],[12608,1,\"ᄚ\"],[12609,1,\"ᄆ\"],[12610,1,\"ᄇ\"],[12611,1,\"ᄈ\"],[12612,1,\"ᄡ\"],[12613,1,\"ᄉ\"],[12614,1,\"ᄊ\"],[12615,1,\"ᄋ\"],[12616,1,\"ᄌ\"],[12617,1,\"ᄍ\"],[12618,1,\"ᄎ\"],[12619,1,\"ᄏ\"],[12620,1,\"ᄐ\"],[12621,1,\"ᄑ\"],[12622,1,\"ᄒ\"],[12623,1,\"ᅡ\"],[12624,1,\"ᅢ\"],[12625,1,\"ᅣ\"],[12626,1,\"ᅤ\"],[12627,1,\"ᅥ\"],[12628,1,\"ᅦ\"],[12629,1,\"ᅧ\"],[12630,1,\"ᅨ\"],[12631,1,\"ᅩ\"],[12632,1,\"ᅪ\"],[12633,1,\"ᅫ\"],[12634,1,\"ᅬ\"],[12635,1,\"ᅭ\"],[12636,1,\"ᅮ\"],[12637,1,\"ᅯ\"],[12638,1,\"ᅰ\"],[12639,1,\"ᅱ\"],[12640,1,\"ᅲ\"],[12641,1,\"ᅳ\"],[12642,1,\"ᅴ\"],[12643,1,\"ᅵ\"],[12644,3],[12645,1,\"ᄔ\"],[12646,1,\"ᄕ\"],[12647,1,\"ᇇ\"],[12648,1,\"ᇈ\"],[12649,1,\"ᇌ\"],[12650,1,\"ᇎ\"],[12651,1,\"ᇓ\"],[12652,1,\"ᇗ\"],[12653,1,\"ᇙ\"],[12654,1,\"ᄜ\"],[12655,1,\"ᇝ\"],[12656,1,\"ᇟ\"],[12657,1,\"ᄝ\"],[12658,1,\"ᄞ\"],[12659,1,\"ᄠ\"],[12660,1,\"ᄢ\"],[12661,1,\"ᄣ\"],[12662,1,\"ᄧ\"],[12663,1,\"ᄩ\"],[12664,1,\"ᄫ\"],[12665,1,\"ᄬ\"],[12666,1,\"ᄭ\"],[12667,1,\"ᄮ\"],[12668,1,\"ᄯ\"],[12669,1,\"ᄲ\"],[12670,1,\"ᄶ\"],[12671,1,\"ᅀ\"],[12672,1,\"ᅇ\"],[12673,1,\"ᅌ\"],[12674,1,\"ᇱ\"],[12675,1,\"ᇲ\"],[12676,1,\"ᅗ\"],[12677,1,\"ᅘ\"],[12678,1,\"ᅙ\"],[12679,1,\"ᆄ\"],[12680,1,\"ᆅ\"],[12681,1,\"ᆈ\"],[12682,1,\"ᆑ\"],[12683,1,\"ᆒ\"],[12684,1,\"ᆔ\"],[12685,1,\"ᆞ\"],[12686,1,\"ᆡ\"],[12687,3],[[12688,12689],2],[12690,1,\"一\"],[12691,1,\"二\"],[12692,1,\"三\"],[12693,1,\"四\"],[12694,1,\"上\"],[12695,1,\"中\"],[12696,1,\"下\"],[12697,1,\"甲\"],[12698,1,\"乙\"],[12699,1,\"丙\"],[12700,1,\"丁\"],[12701,1,\"天\"],[12702,1,\"地\"],[12703,1,\"人\"],[[12704,12727],2],[[12728,12730],2],[[12731,12735],2],[[12736,12751],2],[[12752,12771],2],[[12772,12783],3],[[12784,12799],2],[12800,5,\"(ᄀ)\"],[12801,5,\"(ᄂ)\"],[12802,5,\"(ᄃ)\"],[12803,5,\"(ᄅ)\"],[12804,5,\"(ᄆ)\"],[12805,5,\"(ᄇ)\"],[12806,5,\"(ᄉ)\"],[12807,5,\"(ᄋ)\"],[12808,5,\"(ᄌ)\"],[12809,5,\"(ᄎ)\"],[12810,5,\"(ᄏ)\"],[12811,5,\"(ᄐ)\"],[12812,5,\"(ᄑ)\"],[12813,5,\"(ᄒ)\"],[12814,5,\"(가)\"],[12815,5,\"(나)\"],[12816,5,\"(다)\"],[12817,5,\"(라)\"],[12818,5,\"(마)\"],[12819,5,\"(바)\"],[12820,5,\"(사)\"],[12821,5,\"(아)\"],[12822,5,\"(자)\"],[12823,5,\"(차)\"],[12824,5,\"(카)\"],[12825,5,\"(타)\"],[12826,5,\"(파)\"],[12827,5,\"(하)\"],[12828,5,\"(주)\"],[12829,5,\"(오전)\"],[12830,5,\"(오후)\"],[12831,3],[12832,5,\"(一)\"],[12833,5,\"(二)\"],[12834,5,\"(三)\"],[12835,5,\"(四)\"],[12836,5,\"(五)\"],[12837,5,\"(六)\"],[12838,5,\"(七)\"],[12839,5,\"(八)\"],[12840,5,\"(九)\"],[12841,5,\"(十)\"],[12842,5,\"(月)\"],[12843,5,\"(火)\"],[12844,5,\"(水)\"],[12845,5,\"(木)\"],[12846,5,\"(金)\"],[12847,5,\"(土)\"],[12848,5,\"(日)\"],[12849,5,\"(株)\"],[12850,5,\"(有)\"],[12851,5,\"(社)\"],[12852,5,\"(名)\"],[12853,5,\"(特)\"],[12854,5,\"(財)\"],[12855,5,\"(祝)\"],[12856,5,\"(労)\"],[12857,5,\"(代)\"],[12858,5,\"(呼)\"],[12859,5,\"(学)\"],[12860,5,\"(監)\"],[12861,5,\"(企)\"],[12862,5,\"(資)\"],[12863,5,\"(協)\"],[12864,5,\"(祭)\"],[12865,5,\"(休)\"],[12866,5,\"(自)\"],[12867,5,\"(至)\"],[12868,1,\"問\"],[12869,1,\"幼\"],[12870,1,\"文\"],[12871,1,\"箏\"],[[12872,12879],2],[12880,1,\"pte\"],[12881,1,\"21\"],[12882,1,\"22\"],[12883,1,\"23\"],[12884,1,\"24\"],[12885,1,\"25\"],[12886,1,\"26\"],[12887,1,\"27\"],[12888,1,\"28\"],[12889,1,\"29\"],[12890,1,\"30\"],[12891,1,\"31\"],[12892,1,\"32\"],[12893,1,\"33\"],[12894,1,\"34\"],[12895,1,\"35\"],[12896,1,\"ᄀ\"],[12897,1,\"ᄂ\"],[12898,1,\"ᄃ\"],[12899,1,\"ᄅ\"],[12900,1,\"ᄆ\"],[12901,1,\"ᄇ\"],[12902,1,\"ᄉ\"],[12903,1,\"ᄋ\"],[12904,1,\"ᄌ\"],[12905,1,\"ᄎ\"],[12906,1,\"ᄏ\"],[12907,1,\"ᄐ\"],[12908,1,\"ᄑ\"],[12909,1,\"ᄒ\"],[12910,1,\"가\"],[12911,1,\"나\"],[12912,1,\"다\"],[12913,1,\"라\"],[12914,1,\"마\"],[12915,1,\"바\"],[12916,1,\"사\"],[12917,1,\"아\"],[12918,1,\"자\"],[12919,1,\"차\"],[12920,1,\"카\"],[12921,1,\"타\"],[12922,1,\"파\"],[12923,1,\"하\"],[12924,1,\"참고\"],[12925,1,\"주의\"],[12926,1,\"우\"],[12927,2],[12928,1,\"一\"],[12929,1,\"二\"],[12930,1,\"三\"],[12931,1,\"四\"],[12932,1,\"五\"],[12933,1,\"六\"],[12934,1,\"七\"],[12935,1,\"八\"],[12936,1,\"九\"],[12937,1,\"十\"],[12938,1,\"月\"],[12939,1,\"火\"],[12940,1,\"水\"],[12941,1,\"木\"],[12942,1,\"金\"],[12943,1,\"土\"],[12944,1,\"日\"],[12945,1,\"株\"],[12946,1,\"有\"],[12947,1,\"社\"],[12948,1,\"名\"],[12949,1,\"特\"],[12950,1,\"財\"],[12951,1,\"祝\"],[12952,1,\"労\"],[12953,1,\"秘\"],[12954,1,\"男\"],[12955,1,\"女\"],[12956,1,\"適\"],[12957,1,\"優\"],[12958,1,\"印\"],[12959,1,\"注\"],[12960,1,\"項\"],[12961,1,\"休\"],[12962,1,\"写\"],[12963,1,\"正\"],[12964,1,\"上\"],[12965,1,\"中\"],[12966,1,\"下\"],[12967,1,\"左\"],[12968,1,\"右\"],[12969,1,\"医\"],[12970,1,\"宗\"],[12971,1,\"学\"],[12972,1,\"監\"],[12973,1,\"企\"],[12974,1,\"資\"],[12975,1,\"協\"],[12976,1,\"夜\"],[12977,1,\"36\"],[12978,1,\"37\"],[12979,1,\"38\"],[12980,1,\"39\"],[12981,1,\"40\"],[12982,1,\"41\"],[12983,1,\"42\"],[12984,1,\"43\"],[12985,1,\"44\"],[12986,1,\"45\"],[12987,1,\"46\"],[12988,1,\"47\"],[12989,1,\"48\"],[12990,1,\"49\"],[12991,1,\"50\"],[12992,1,\"1月\"],[12993,1,\"2月\"],[12994,1,\"3月\"],[12995,1,\"4月\"],[12996,1,\"5月\"],[12997,1,\"6月\"],[12998,1,\"7月\"],[12999,1,\"8月\"],[13000,1,\"9月\"],[13001,1,\"10月\"],[13002,1,\"11月\"],[13003,1,\"12月\"],[13004,1,\"hg\"],[13005,1,\"erg\"],[13006,1,\"ev\"],[13007,1,\"ltd\"],[13008,1,\"ア\"],[13009,1,\"イ\"],[13010,1,\"ウ\"],[13011,1,\"エ\"],[13012,1,\"オ\"],[13013,1,\"カ\"],[13014,1,\"キ\"],[13015,1,\"ク\"],[13016,1,\"ケ\"],[13017,1,\"コ\"],[13018,1,\"サ\"],[13019,1,\"シ\"],[13020,1,\"ス\"],[13021,1,\"セ\"],[13022,1,\"ソ\"],[13023,1,\"タ\"],[13024,1,\"チ\"],[13025,1,\"ツ\"],[13026,1,\"テ\"],[13027,1,\"ト\"],[13028,1,\"ナ\"],[13029,1,\"ニ\"],[13030,1,\"ヌ\"],[13031,1,\"ネ\"],[13032,1,\"ノ\"],[13033,1,\"ハ\"],[13034,1,\"ヒ\"],[13035,1,\"フ\"],[13036,1,\"ヘ\"],[13037,1,\"ホ\"],[13038,1,\"マ\"],[13039,1,\"ミ\"],[13040,1,\"ム\"],[13041,1,\"メ\"],[13042,1,\"モ\"],[13043,1,\"ヤ\"],[13044,1,\"ユ\"],[13045,1,\"ヨ\"],[13046,1,\"ラ\"],[13047,1,\"リ\"],[13048,1,\"ル\"],[13049,1,\"レ\"],[13050,1,\"ロ\"],[13051,1,\"ワ\"],[13052,1,\"ヰ\"],[13053,1,\"ヱ\"],[13054,1,\"ヲ\"],[13055,1,\"令和\"],[13056,1,\"アパート\"],[13057,1,\"アルファ\"],[13058,1,\"アンペア\"],[13059,1,\"アール\"],[13060,1,\"イニング\"],[13061,1,\"インチ\"],[13062,1,\"ウォン\"],[13063,1,\"エスクード\"],[13064,1,\"エーカー\"],[13065,1,\"オンス\"],[13066,1,\"オーム\"],[13067,1,\"カイリ\"],[13068,1,\"カラット\"],[13069,1,\"カロリー\"],[13070,1,\"ガロン\"],[13071,1,\"ガンマ\"],[13072,1,\"ギガ\"],[13073,1,\"ギニー\"],[13074,1,\"キュリー\"],[13075,1,\"ギルダー\"],[13076,1,\"キロ\"],[13077,1,\"キログラム\"],[13078,1,\"キロメートル\"],[13079,1,\"キロワット\"],[13080,1,\"グラム\"],[13081,1,\"グラムトン\"],[13082,1,\"クルゼイロ\"],[13083,1,\"クローネ\"],[13084,1,\"ケース\"],[13085,1,\"コルナ\"],[13086,1,\"コーポ\"],[13087,1,\"サイクル\"],[13088,1,\"サンチーム\"],[13089,1,\"シリング\"],[13090,1,\"センチ\"],[13091,1,\"セント\"],[13092,1,\"ダース\"],[13093,1,\"デシ\"],[13094,1,\"ドル\"],[13095,1,\"トン\"],[13096,1,\"ナノ\"],[13097,1,\"ノット\"],[13098,1,\"ハイツ\"],[13099,1,\"パーセント\"],[13100,1,\"パーツ\"],[13101,1,\"バーレル\"],[13102,1,\"ピアストル\"],[13103,1,\"ピクル\"],[13104,1,\"ピコ\"],[13105,1,\"ビル\"],[13106,1,\"ファラッド\"],[13107,1,\"フィート\"],[13108,1,\"ブッシェル\"],[13109,1,\"フラン\"],[13110,1,\"ヘクタール\"],[13111,1,\"ペソ\"],[13112,1,\"ペニヒ\"],[13113,1,\"ヘルツ\"],[13114,1,\"ペンス\"],[13115,1,\"ページ\"],[13116,1,\"ベータ\"],[13117,1,\"ポイント\"],[13118,1,\"ボルト\"],[13119,1,\"ホン\"],[13120,1,\"ポンド\"],[13121,1,\"ホール\"],[13122,1,\"ホーン\"],[13123,1,\"マイクロ\"],[13124,1,\"マイル\"],[13125,1,\"マッハ\"],[13126,1,\"マルク\"],[13127,1,\"マンション\"],[13128,1,\"ミクロン\"],[13129,1,\"ミリ\"],[13130,1,\"ミリバール\"],[13131,1,\"メガ\"],[13132,1,\"メガトン\"],[13133,1,\"メートル\"],[13134,1,\"ヤード\"],[13135,1,\"ヤール\"],[13136,1,\"ユアン\"],[13137,1,\"リットル\"],[13138,1,\"リラ\"],[13139,1,\"ルピー\"],[13140,1,\"ルーブル\"],[13141,1,\"レム\"],[13142,1,\"レントゲン\"],[13143,1,\"ワット\"],[13144,1,\"0点\"],[13145,1,\"1点\"],[13146,1,\"2点\"],[13147,1,\"3点\"],[13148,1,\"4点\"],[13149,1,\"5点\"],[13150,1,\"6点\"],[13151,1,\"7点\"],[13152,1,\"8点\"],[13153,1,\"9点\"],[13154,1,\"10点\"],[13155,1,\"11点\"],[13156,1,\"12点\"],[13157,1,\"13点\"],[13158,1,\"14点\"],[13159,1,\"15点\"],[13160,1,\"16点\"],[13161,1,\"17点\"],[13162,1,\"18点\"],[13163,1,\"19点\"],[13164,1,\"20点\"],[13165,1,\"21点\"],[13166,1,\"22点\"],[13167,1,\"23点\"],[13168,1,\"24点\"],[13169,1,\"hpa\"],[13170,1,\"da\"],[13171,1,\"au\"],[13172,1,\"bar\"],[13173,1,\"ov\"],[13174,1,\"pc\"],[13175,1,\"dm\"],[13176,1,\"dm2\"],[13177,1,\"dm3\"],[13178,1,\"iu\"],[13179,1,\"平成\"],[13180,1,\"昭和\"],[13181,1,\"大正\"],[13182,1,\"明治\"],[13183,1,\"株式会社\"],[13184,1,\"pa\"],[13185,1,\"na\"],[13186,1,\"μa\"],[13187,1,\"ma\"],[13188,1,\"ka\"],[13189,1,\"kb\"],[13190,1,\"mb\"],[13191,1,\"gb\"],[13192,1,\"cal\"],[13193,1,\"kcal\"],[13194,1,\"pf\"],[13195,1,\"nf\"],[13196,1,\"μf\"],[13197,1,\"μg\"],[13198,1,\"mg\"],[13199,1,\"kg\"],[13200,1,\"hz\"],[13201,1,\"khz\"],[13202,1,\"mhz\"],[13203,1,\"ghz\"],[13204,1,\"thz\"],[13205,1,\"μl\"],[13206,1,\"ml\"],[13207,1,\"dl\"],[13208,1,\"kl\"],[13209,1,\"fm\"],[13210,1,\"nm\"],[13211,1,\"μm\"],[13212,1,\"mm\"],[13213,1,\"cm\"],[13214,1,\"km\"],[13215,1,\"mm2\"],[13216,1,\"cm2\"],[13217,1,\"m2\"],[13218,1,\"km2\"],[13219,1,\"mm3\"],[13220,1,\"cm3\"],[13221,1,\"m3\"],[13222,1,\"km3\"],[13223,1,\"m∕s\"],[13224,1,\"m∕s2\"],[13225,1,\"pa\"],[13226,1,\"kpa\"],[13227,1,\"mpa\"],[13228,1,\"gpa\"],[13229,1,\"rad\"],[13230,1,\"rad∕s\"],[13231,1,\"rad∕s2\"],[13232,1,\"ps\"],[13233,1,\"ns\"],[13234,1,\"μs\"],[13235,1,\"ms\"],[13236,1,\"pv\"],[13237,1,\"nv\"],[13238,1,\"μv\"],[13239,1,\"mv\"],[13240,1,\"kv\"],[13241,1,\"mv\"],[13242,1,\"pw\"],[13243,1,\"nw\"],[13244,1,\"μw\"],[13245,1,\"mw\"],[13246,1,\"kw\"],[13247,1,\"mw\"],[13248,1,\"kω\"],[13249,1,\"mω\"],[13250,3],[13251,1,\"bq\"],[13252,1,\"cc\"],[13253,1,\"cd\"],[13254,1,\"c∕kg\"],[13255,3],[13256,1,\"db\"],[13257,1,\"gy\"],[13258,1,\"ha\"],[13259,1,\"hp\"],[13260,1,\"in\"],[13261,1,\"kk\"],[13262,1,\"km\"],[13263,1,\"kt\"],[13264,1,\"lm\"],[13265,1,\"ln\"],[13266,1,\"log\"],[13267,1,\"lx\"],[13268,1,\"mb\"],[13269,1,\"mil\"],[13270,1,\"mol\"],[13271,1,\"ph\"],[13272,3],[13273,1,\"ppm\"],[13274,1,\"pr\"],[13275,1,\"sr\"],[13276,1,\"sv\"],[13277,1,\"wb\"],[13278,1,\"v∕m\"],[13279,1,\"a∕m\"],[13280,1,\"1日\"],[13281,1,\"2日\"],[13282,1,\"3日\"],[13283,1,\"4日\"],[13284,1,\"5日\"],[13285,1,\"6日\"],[13286,1,\"7日\"],[13287,1,\"8日\"],[13288,1,\"9日\"],[13289,1,\"10日\"],[13290,1,\"11日\"],[13291,1,\"12日\"],[13292,1,\"13日\"],[13293,1,\"14日\"],[13294,1,\"15日\"],[13295,1,\"16日\"],[13296,1,\"17日\"],[13297,1,\"18日\"],[13298,1,\"19日\"],[13299,1,\"20日\"],[13300,1,\"21日\"],[13301,1,\"22日\"],[13302,1,\"23日\"],[13303,1,\"24日\"],[13304,1,\"25日\"],[13305,1,\"26日\"],[13306,1,\"27日\"],[13307,1,\"28日\"],[13308,1,\"29日\"],[13309,1,\"30日\"],[13310,1,\"31日\"],[13311,1,\"gal\"],[[13312,19893],2],[[19894,19903],2],[[19904,19967],2],[[19968,40869],2],[[40870,40891],2],[[40892,40899],2],[[40900,40907],2],[40908,2],[[40909,40917],2],[[40918,40938],2],[[40939,40943],2],[[40944,40956],2],[[40957,40959],2],[[40960,42124],2],[[42125,42127],3],[[42128,42145],2],[[42146,42147],2],[[42148,42163],2],[42164,2],[[42165,42176],2],[42177,2],[[42178,42180],2],[42181,2],[42182,2],[[42183,42191],3],[[42192,42237],2],[[42238,42239],2],[[42240,42508],2],[[42509,42511],2],[[42512,42539],2],[[42540,42559],3],[42560,1,\"ꙁ\"],[42561,2],[42562,1,\"ꙃ\"],[42563,2],[42564,1,\"ꙅ\"],[42565,2],[42566,1,\"ꙇ\"],[42567,2],[42568,1,\"ꙉ\"],[42569,2],[42570,1,\"ꙋ\"],[42571,2],[42572,1,\"ꙍ\"],[42573,2],[42574,1,\"ꙏ\"],[42575,2],[42576,1,\"ꙑ\"],[42577,2],[42578,1,\"ꙓ\"],[42579,2],[42580,1,\"ꙕ\"],[42581,2],[42582,1,\"ꙗ\"],[42583,2],[42584,1,\"ꙙ\"],[42585,2],[42586,1,\"ꙛ\"],[42587,2],[42588,1,\"ꙝ\"],[42589,2],[42590,1,\"ꙟ\"],[42591,2],[42592,1,\"ꙡ\"],[42593,2],[42594,1,\"ꙣ\"],[42595,2],[42596,1,\"ꙥ\"],[42597,2],[42598,1,\"ꙧ\"],[42599,2],[42600,1,\"ꙩ\"],[42601,2],[42602,1,\"ꙫ\"],[42603,2],[42604,1,\"ꙭ\"],[[42605,42607],2],[[42608,42611],2],[[42612,42619],2],[[42620,42621],2],[42622,2],[42623,2],[42624,1,\"ꚁ\"],[42625,2],[42626,1,\"ꚃ\"],[42627,2],[42628,1,\"ꚅ\"],[42629,2],[42630,1,\"ꚇ\"],[42631,2],[42632,1,\"ꚉ\"],[42633,2],[42634,1,\"ꚋ\"],[42635,2],[42636,1,\"ꚍ\"],[42637,2],[42638,1,\"ꚏ\"],[42639,2],[42640,1,\"ꚑ\"],[42641,2],[42642,1,\"ꚓ\"],[42643,2],[42644,1,\"ꚕ\"],[42645,2],[42646,1,\"ꚗ\"],[42647,2],[42648,1,\"ꚙ\"],[42649,2],[42650,1,\"ꚛ\"],[42651,2],[42652,1,\"ъ\"],[42653,1,\"ь\"],[42654,2],[42655,2],[[42656,42725],2],[[42726,42735],2],[[42736,42737],2],[[42738,42743],2],[[42744,42751],3],[[42752,42774],2],[[42775,42778],2],[[42779,42783],2],[[42784,42785],2],[42786,1,\"ꜣ\"],[42787,2],[42788,1,\"ꜥ\"],[42789,2],[42790,1,\"ꜧ\"],[42791,2],[42792,1,\"ꜩ\"],[42793,2],[42794,1,\"ꜫ\"],[42795,2],[42796,1,\"ꜭ\"],[42797,2],[42798,1,\"ꜯ\"],[[42799,42801],2],[42802,1,\"ꜳ\"],[42803,2],[42804,1,\"ꜵ\"],[42805,2],[42806,1,\"ꜷ\"],[42807,2],[42808,1,\"ꜹ\"],[42809,2],[42810,1,\"ꜻ\"],[42811,2],[42812,1,\"ꜽ\"],[42813,2],[42814,1,\"ꜿ\"],[42815,2],[42816,1,\"ꝁ\"],[42817,2],[42818,1,\"ꝃ\"],[42819,2],[42820,1,\"ꝅ\"],[42821,2],[42822,1,\"ꝇ\"],[42823,2],[42824,1,\"ꝉ\"],[42825,2],[42826,1,\"ꝋ\"],[42827,2],[42828,1,\"ꝍ\"],[42829,2],[42830,1,\"ꝏ\"],[42831,2],[42832,1,\"ꝑ\"],[42833,2],[42834,1,\"ꝓ\"],[42835,2],[42836,1,\"ꝕ\"],[42837,2],[42838,1,\"ꝗ\"],[42839,2],[42840,1,\"ꝙ\"],[42841,2],[42842,1,\"ꝛ\"],[42843,2],[42844,1,\"ꝝ\"],[42845,2],[42846,1,\"ꝟ\"],[42847,2],[42848,1,\"ꝡ\"],[42849,2],[42850,1,\"ꝣ\"],[42851,2],[42852,1,\"ꝥ\"],[42853,2],[42854,1,\"ꝧ\"],[42855,2],[42856,1,\"ꝩ\"],[42857,2],[42858,1,\"ꝫ\"],[42859,2],[42860,1,\"ꝭ\"],[42861,2],[42862,1,\"ꝯ\"],[42863,2],[42864,1,\"ꝯ\"],[[42865,42872],2],[42873,1,\"ꝺ\"],[42874,2],[42875,1,\"ꝼ\"],[42876,2],[42877,1,\"ᵹ\"],[42878,1,\"ꝿ\"],[42879,2],[42880,1,\"ꞁ\"],[42881,2],[42882,1,\"ꞃ\"],[42883,2],[42884,1,\"ꞅ\"],[42885,2],[42886,1,\"ꞇ\"],[[42887,42888],2],[[42889,42890],2],[42891,1,\"ꞌ\"],[42892,2],[42893,1,\"ɥ\"],[42894,2],[42895,2],[42896,1,\"ꞑ\"],[42897,2],[42898,1,\"ꞓ\"],[42899,2],[[42900,42901],2],[42902,1,\"ꞗ\"],[42903,2],[42904,1,\"ꞙ\"],[42905,2],[42906,1,\"ꞛ\"],[42907,2],[42908,1,\"ꞝ\"],[42909,2],[42910,1,\"ꞟ\"],[42911,2],[42912,1,\"ꞡ\"],[42913,2],[42914,1,\"ꞣ\"],[42915,2],[42916,1,\"ꞥ\"],[42917,2],[42918,1,\"ꞧ\"],[42919,2],[42920,1,\"ꞩ\"],[42921,2],[42922,1,\"ɦ\"],[42923,1,\"ɜ\"],[42924,1,\"ɡ\"],[42925,1,\"ɬ\"],[42926,1,\"ɪ\"],[42927,2],[42928,1,\"ʞ\"],[42929,1,\"ʇ\"],[42930,1,\"ʝ\"],[42931,1,\"ꭓ\"],[42932,1,\"ꞵ\"],[42933,2],[42934,1,\"ꞷ\"],[42935,2],[42936,1,\"ꞹ\"],[42937,2],[42938,1,\"ꞻ\"],[42939,2],[42940,1,\"ꞽ\"],[42941,2],[42942,1,\"ꞿ\"],[42943,2],[42944,1,\"ꟁ\"],[42945,2],[42946,1,\"ꟃ\"],[42947,2],[42948,1,\"ꞔ\"],[42949,1,\"ʂ\"],[42950,1,\"ᶎ\"],[42951,1,\"ꟈ\"],[42952,2],[42953,1,\"ꟊ\"],[42954,2],[[42955,42959],3],[42960,1,\"ꟑ\"],[42961,2],[42962,3],[42963,2],[42964,3],[42965,2],[42966,1,\"ꟗ\"],[42967,2],[42968,1,\"ꟙ\"],[42969,2],[[42970,42993],3],[42994,1,\"c\"],[42995,1,\"f\"],[42996,1,\"q\"],[42997,1,\"ꟶ\"],[42998,2],[42999,2],[43000,1,\"ħ\"],[43001,1,\"œ\"],[43002,2],[[43003,43007],2],[[43008,43047],2],[[43048,43051],2],[43052,2],[[43053,43055],3],[[43056,43065],2],[[43066,43071],3],[[43072,43123],2],[[43124,43127],2],[[43128,43135],3],[[43136,43204],2],[43205,2],[[43206,43213],3],[[43214,43215],2],[[43216,43225],2],[[43226,43231],3],[[43232,43255],2],[[43256,43258],2],[43259,2],[43260,2],[43261,2],[[43262,43263],2],[[43264,43309],2],[[43310,43311],2],[[43312,43347],2],[[43348,43358],3],[43359,2],[[43360,43388],2],[[43389,43391],3],[[43392,43456],2],[[43457,43469],2],[43470,3],[[43471,43481],2],[[43482,43485],3],[[43486,43487],2],[[43488,43518],2],[43519,3],[[43520,43574],2],[[43575,43583],3],[[43584,43597],2],[[43598,43599],3],[[43600,43609],2],[[43610,43611],3],[[43612,43615],2],[[43616,43638],2],[[43639,43641],2],[[43642,43643],2],[[43644,43647],2],[[43648,43714],2],[[43715,43738],3],[[43739,43741],2],[[43742,43743],2],[[43744,43759],2],[[43760,43761],2],[[43762,43766],2],[[43767,43776],3],[[43777,43782],2],[[43783,43784],3],[[43785,43790],2],[[43791,43792],3],[[43793,43798],2],[[43799,43807],3],[[43808,43814],2],[43815,3],[[43816,43822],2],[43823,3],[[43824,43866],2],[43867,2],[43868,1,\"ꜧ\"],[43869,1,\"ꬷ\"],[43870,1,\"ɫ\"],[43871,1,\"ꭒ\"],[[43872,43875],2],[[43876,43877],2],[[43878,43879],2],[43880,2],[43881,1,\"ʍ\"],[[43882,43883],2],[[43884,43887],3],[43888,1,\"Ꭰ\"],[43889,1,\"Ꭱ\"],[43890,1,\"Ꭲ\"],[43891,1,\"Ꭳ\"],[43892,1,\"Ꭴ\"],[43893,1,\"Ꭵ\"],[43894,1,\"Ꭶ\"],[43895,1,\"Ꭷ\"],[43896,1,\"Ꭸ\"],[43897,1,\"Ꭹ\"],[43898,1,\"Ꭺ\"],[43899,1,\"Ꭻ\"],[43900,1,\"Ꭼ\"],[43901,1,\"Ꭽ\"],[43902,1,\"Ꭾ\"],[43903,1,\"Ꭿ\"],[43904,1,\"Ꮀ\"],[43905,1,\"Ꮁ\"],[43906,1,\"Ꮂ\"],[43907,1,\"Ꮃ\"],[43908,1,\"Ꮄ\"],[43909,1,\"Ꮅ\"],[43910,1,\"Ꮆ\"],[43911,1,\"Ꮇ\"],[43912,1,\"Ꮈ\"],[43913,1,\"Ꮉ\"],[43914,1,\"Ꮊ\"],[43915,1,\"Ꮋ\"],[43916,1,\"Ꮌ\"],[43917,1,\"Ꮍ\"],[43918,1,\"Ꮎ\"],[43919,1,\"Ꮏ\"],[43920,1,\"Ꮐ\"],[43921,1,\"Ꮑ\"],[43922,1,\"Ꮒ\"],[43923,1,\"Ꮓ\"],[43924,1,\"Ꮔ\"],[43925,1,\"Ꮕ\"],[43926,1,\"Ꮖ\"],[43927,1,\"Ꮗ\"],[43928,1,\"Ꮘ\"],[43929,1,\"Ꮙ\"],[43930,1,\"Ꮚ\"],[43931,1,\"Ꮛ\"],[43932,1,\"Ꮜ\"],[43933,1,\"Ꮝ\"],[43934,1,\"Ꮞ\"],[43935,1,\"Ꮟ\"],[43936,1,\"Ꮠ\"],[43937,1,\"Ꮡ\"],[43938,1,\"Ꮢ\"],[43939,1,\"Ꮣ\"],[43940,1,\"Ꮤ\"],[43941,1,\"Ꮥ\"],[43942,1,\"Ꮦ\"],[43943,1,\"Ꮧ\"],[43944,1,\"Ꮨ\"],[43945,1,\"Ꮩ\"],[43946,1,\"Ꮪ\"],[43947,1,\"Ꮫ\"],[43948,1,\"Ꮬ\"],[43949,1,\"Ꮭ\"],[43950,1,\"Ꮮ\"],[43951,1,\"Ꮯ\"],[43952,1,\"Ꮰ\"],[43953,1,\"Ꮱ\"],[43954,1,\"Ꮲ\"],[43955,1,\"Ꮳ\"],[43956,1,\"Ꮴ\"],[43957,1,\"Ꮵ\"],[43958,1,\"Ꮶ\"],[43959,1,\"Ꮷ\"],[43960,1,\"Ꮸ\"],[43961,1,\"Ꮹ\"],[43962,1,\"Ꮺ\"],[43963,1,\"Ꮻ\"],[43964,1,\"Ꮼ\"],[43965,1,\"Ꮽ\"],[43966,1,\"Ꮾ\"],[43967,1,\"Ꮿ\"],[[43968,44010],2],[44011,2],[[44012,44013],2],[[44014,44015],3],[[44016,44025],2],[[44026,44031],3],[[44032,55203],2],[[55204,55215],3],[[55216,55238],2],[[55239,55242],3],[[55243,55291],2],[[55292,55295],3],[[55296,57343],3],[[57344,63743],3],[63744,1,\"豈\"],[63745,1,\"更\"],[63746,1,\"車\"],[63747,1,\"賈\"],[63748,1,\"滑\"],[63749,1,\"串\"],[63750,1,\"句\"],[[63751,63752],1,\"龜\"],[63753,1,\"契\"],[63754,1,\"金\"],[63755,1,\"喇\"],[63756,1,\"奈\"],[63757,1,\"懶\"],[63758,1,\"癩\"],[63759,1,\"羅\"],[63760,1,\"蘿\"],[63761,1,\"螺\"],[63762,1,\"裸\"],[63763,1,\"邏\"],[63764,1,\"樂\"],[63765,1,\"洛\"],[63766,1,\"烙\"],[63767,1,\"珞\"],[63768,1,\"落\"],[63769,1,\"酪\"],[63770,1,\"駱\"],[63771,1,\"亂\"],[63772,1,\"卵\"],[63773,1,\"欄\"],[63774,1,\"爛\"],[63775,1,\"蘭\"],[63776,1,\"鸞\"],[63777,1,\"嵐\"],[63778,1,\"濫\"],[63779,1,\"藍\"],[63780,1,\"襤\"],[63781,1,\"拉\"],[63782,1,\"臘\"],[63783,1,\"蠟\"],[63784,1,\"廊\"],[63785,1,\"朗\"],[63786,1,\"浪\"],[63787,1,\"狼\"],[63788,1,\"郎\"],[63789,1,\"來\"],[63790,1,\"冷\"],[63791,1,\"勞\"],[63792,1,\"擄\"],[63793,1,\"櫓\"],[63794,1,\"爐\"],[63795,1,\"盧\"],[63796,1,\"老\"],[63797,1,\"蘆\"],[63798,1,\"虜\"],[63799,1,\"路\"],[63800,1,\"露\"],[63801,1,\"魯\"],[63802,1,\"鷺\"],[63803,1,\"碌\"],[63804,1,\"祿\"],[63805,1,\"綠\"],[63806,1,\"菉\"],[63807,1,\"錄\"],[63808,1,\"鹿\"],[63809,1,\"論\"],[63810,1,\"壟\"],[63811,1,\"弄\"],[63812,1,\"籠\"],[63813,1,\"聾\"],[63814,1,\"牢\"],[63815,1,\"磊\"],[63816,1,\"賂\"],[63817,1,\"雷\"],[63818,1,\"壘\"],[63819,1,\"屢\"],[63820,1,\"樓\"],[63821,1,\"淚\"],[63822,1,\"漏\"],[63823,1,\"累\"],[63824,1,\"縷\"],[63825,1,\"陋\"],[63826,1,\"勒\"],[63827,1,\"肋\"],[63828,1,\"凜\"],[63829,1,\"凌\"],[63830,1,\"稜\"],[63831,1,\"綾\"],[63832,1,\"菱\"],[63833,1,\"陵\"],[63834,1,\"讀\"],[63835,1,\"拏\"],[63836,1,\"樂\"],[63837,1,\"諾\"],[63838,1,\"丹\"],[63839,1,\"寧\"],[63840,1,\"怒\"],[63841,1,\"率\"],[63842,1,\"異\"],[63843,1,\"北\"],[63844,1,\"磻\"],[63845,1,\"便\"],[63846,1,\"復\"],[63847,1,\"不\"],[63848,1,\"泌\"],[63849,1,\"數\"],[63850,1,\"索\"],[63851,1,\"參\"],[63852,1,\"塞\"],[63853,1,\"省\"],[63854,1,\"葉\"],[63855,1,\"說\"],[63856,1,\"殺\"],[63857,1,\"辰\"],[63858,1,\"沈\"],[63859,1,\"拾\"],[63860,1,\"若\"],[63861,1,\"掠\"],[63862,1,\"略\"],[63863,1,\"亮\"],[63864,1,\"兩\"],[63865,1,\"凉\"],[63866,1,\"梁\"],[63867,1,\"糧\"],[63868,1,\"良\"],[63869,1,\"諒\"],[63870,1,\"量\"],[63871,1,\"勵\"],[63872,1,\"呂\"],[63873,1,\"女\"],[63874,1,\"廬\"],[63875,1,\"旅\"],[63876,1,\"濾\"],[63877,1,\"礪\"],[63878,1,\"閭\"],[63879,1,\"驪\"],[63880,1,\"麗\"],[63881,1,\"黎\"],[63882,1,\"力\"],[63883,1,\"曆\"],[63884,1,\"歷\"],[63885,1,\"轢\"],[63886,1,\"年\"],[63887,1,\"憐\"],[63888,1,\"戀\"],[63889,1,\"撚\"],[63890,1,\"漣\"],[63891,1,\"煉\"],[63892,1,\"璉\"],[63893,1,\"秊\"],[63894,1,\"練\"],[63895,1,\"聯\"],[63896,1,\"輦\"],[63897,1,\"蓮\"],[63898,1,\"連\"],[63899,1,\"鍊\"],[63900,1,\"列\"],[63901,1,\"劣\"],[63902,1,\"咽\"],[63903,1,\"烈\"],[63904,1,\"裂\"],[63905,1,\"說\"],[63906,1,\"廉\"],[63907,1,\"念\"],[63908,1,\"捻\"],[63909,1,\"殮\"],[63910,1,\"簾\"],[63911,1,\"獵\"],[63912,1,\"令\"],[63913,1,\"囹\"],[63914,1,\"寧\"],[63915,1,\"嶺\"],[63916,1,\"怜\"],[63917,1,\"玲\"],[63918,1,\"瑩\"],[63919,1,\"羚\"],[63920,1,\"聆\"],[63921,1,\"鈴\"],[63922,1,\"零\"],[63923,1,\"靈\"],[63924,1,\"領\"],[63925,1,\"例\"],[63926,1,\"禮\"],[63927,1,\"醴\"],[63928,1,\"隸\"],[63929,1,\"惡\"],[63930,1,\"了\"],[63931,1,\"僚\"],[63932,1,\"寮\"],[63933,1,\"尿\"],[63934,1,\"料\"],[63935,1,\"樂\"],[63936,1,\"燎\"],[63937,1,\"療\"],[63938,1,\"蓼\"],[63939,1,\"遼\"],[63940,1,\"龍\"],[63941,1,\"暈\"],[63942,1,\"阮\"],[63943,1,\"劉\"],[63944,1,\"杻\"],[63945,1,\"柳\"],[63946,1,\"流\"],[63947,1,\"溜\"],[63948,1,\"琉\"],[63949,1,\"留\"],[63950,1,\"硫\"],[63951,1,\"紐\"],[63952,1,\"類\"],[63953,1,\"六\"],[63954,1,\"戮\"],[63955,1,\"陸\"],[63956,1,\"倫\"],[63957,1,\"崙\"],[63958,1,\"淪\"],[63959,1,\"輪\"],[63960,1,\"律\"],[63961,1,\"慄\"],[63962,1,\"栗\"],[63963,1,\"率\"],[63964,1,\"隆\"],[63965,1,\"利\"],[63966,1,\"吏\"],[63967,1,\"履\"],[63968,1,\"易\"],[63969,1,\"李\"],[63970,1,\"梨\"],[63971,1,\"泥\"],[63972,1,\"理\"],[63973,1,\"痢\"],[63974,1,\"罹\"],[63975,1,\"裏\"],[63976,1,\"裡\"],[63977,1,\"里\"],[63978,1,\"離\"],[63979,1,\"匿\"],[63980,1,\"溺\"],[63981,1,\"吝\"],[63982,1,\"燐\"],[63983,1,\"璘\"],[63984,1,\"藺\"],[63985,1,\"隣\"],[63986,1,\"鱗\"],[63987,1,\"麟\"],[63988,1,\"林\"],[63989,1,\"淋\"],[63990,1,\"臨\"],[63991,1,\"立\"],[63992,1,\"笠\"],[63993,1,\"粒\"],[63994,1,\"狀\"],[63995,1,\"炙\"],[63996,1,\"識\"],[63997,1,\"什\"],[63998,1,\"茶\"],[63999,1,\"刺\"],[64000,1,\"切\"],[64001,1,\"度\"],[64002,1,\"拓\"],[64003,1,\"糖\"],[64004,1,\"宅\"],[64005,1,\"洞\"],[64006,1,\"暴\"],[64007,1,\"輻\"],[64008,1,\"行\"],[64009,1,\"降\"],[64010,1,\"見\"],[64011,1,\"廓\"],[64012,1,\"兀\"],[64013,1,\"嗀\"],[[64014,64015],2],[64016,1,\"塚\"],[64017,2],[64018,1,\"晴\"],[[64019,64020],2],[64021,1,\"凞\"],[64022,1,\"猪\"],[64023,1,\"益\"],[64024,1,\"礼\"],[64025,1,\"神\"],[64026,1,\"祥\"],[64027,1,\"福\"],[64028,1,\"靖\"],[64029,1,\"精\"],[64030,1,\"羽\"],[64031,2],[64032,1,\"蘒\"],[64033,2],[64034,1,\"諸\"],[[64035,64036],2],[64037,1,\"逸\"],[64038,1,\"都\"],[[64039,64041],2],[64042,1,\"飯\"],[64043,1,\"飼\"],[64044,1,\"館\"],[64045,1,\"鶴\"],[64046,1,\"郞\"],[64047,1,\"隷\"],[64048,1,\"侮\"],[64049,1,\"僧\"],[64050,1,\"免\"],[64051,1,\"勉\"],[64052,1,\"勤\"],[64053,1,\"卑\"],[64054,1,\"喝\"],[64055,1,\"嘆\"],[64056,1,\"器\"],[64057,1,\"塀\"],[64058,1,\"墨\"],[64059,1,\"層\"],[64060,1,\"屮\"],[64061,1,\"悔\"],[64062,1,\"慨\"],[64063,1,\"憎\"],[64064,1,\"懲\"],[64065,1,\"敏\"],[64066,1,\"既\"],[64067,1,\"暑\"],[64068,1,\"梅\"],[64069,1,\"海\"],[64070,1,\"渚\"],[64071,1,\"漢\"],[64072,1,\"煮\"],[64073,1,\"爫\"],[64074,1,\"琢\"],[64075,1,\"碑\"],[64076,1,\"社\"],[64077,1,\"祉\"],[64078,1,\"祈\"],[64079,1,\"祐\"],[64080,1,\"祖\"],[64081,1,\"祝\"],[64082,1,\"禍\"],[64083,1,\"禎\"],[64084,1,\"穀\"],[64085,1,\"突\"],[64086,1,\"節\"],[64087,1,\"練\"],[64088,1,\"縉\"],[64089,1,\"繁\"],[64090,1,\"署\"],[64091,1,\"者\"],[64092,1,\"臭\"],[[64093,64094],1,\"艹\"],[64095,1,\"著\"],[64096,1,\"褐\"],[64097,1,\"視\"],[64098,1,\"謁\"],[64099,1,\"謹\"],[64100,1,\"賓\"],[64101,1,\"贈\"],[64102,1,\"辶\"],[64103,1,\"逸\"],[64104,1,\"難\"],[64105,1,\"響\"],[64106,1,\"頻\"],[64107,1,\"恵\"],[64108,1,\"𤋮\"],[64109,1,\"舘\"],[[64110,64111],3],[64112,1,\"並\"],[64113,1,\"况\"],[64114,1,\"全\"],[64115,1,\"侀\"],[64116,1,\"充\"],[64117,1,\"冀\"],[64118,1,\"勇\"],[64119,1,\"勺\"],[64120,1,\"喝\"],[64121,1,\"啕\"],[64122,1,\"喙\"],[64123,1,\"嗢\"],[64124,1,\"塚\"],[64125,1,\"墳\"],[64126,1,\"奄\"],[64127,1,\"奔\"],[64128,1,\"婢\"],[64129,1,\"嬨\"],[64130,1,\"廒\"],[64131,1,\"廙\"],[64132,1,\"彩\"],[64133,1,\"徭\"],[64134,1,\"惘\"],[64135,1,\"慎\"],[64136,1,\"愈\"],[64137,1,\"憎\"],[64138,1,\"慠\"],[64139,1,\"懲\"],[64140,1,\"戴\"],[64141,1,\"揄\"],[64142,1,\"搜\"],[64143,1,\"摒\"],[64144,1,\"敖\"],[64145,1,\"晴\"],[64146,1,\"朗\"],[64147,1,\"望\"],[64148,1,\"杖\"],[64149,1,\"歹\"],[64150,1,\"殺\"],[64151,1,\"流\"],[64152,1,\"滛\"],[64153,1,\"滋\"],[64154,1,\"漢\"],[64155,1,\"瀞\"],[64156,1,\"煮\"],[64157,1,\"瞧\"],[64158,1,\"爵\"],[64159,1,\"犯\"],[64160,1,\"猪\"],[64161,1,\"瑱\"],[64162,1,\"甆\"],[64163,1,\"画\"],[64164,1,\"瘝\"],[64165,1,\"瘟\"],[64166,1,\"益\"],[64167,1,\"盛\"],[64168,1,\"直\"],[64169,1,\"睊\"],[64170,1,\"着\"],[64171,1,\"磌\"],[64172,1,\"窱\"],[64173,1,\"節\"],[64174,1,\"类\"],[64175,1,\"絛\"],[64176,1,\"練\"],[64177,1,\"缾\"],[64178,1,\"者\"],[64179,1,\"荒\"],[64180,1,\"華\"],[64181,1,\"蝹\"],[64182,1,\"襁\"],[64183,1,\"覆\"],[64184,1,\"視\"],[64185,1,\"調\"],[64186,1,\"諸\"],[64187,1,\"請\"],[64188,1,\"謁\"],[64189,1,\"諾\"],[64190,1,\"諭\"],[64191,1,\"謹\"],[64192,1,\"變\"],[64193,1,\"贈\"],[64194,1,\"輸\"],[64195,1,\"遲\"],[64196,1,\"醙\"],[64197,1,\"鉶\"],[64198,1,\"陼\"],[64199,1,\"難\"],[64200,1,\"靖\"],[64201,1,\"韛\"],[64202,1,\"響\"],[64203,1,\"頋\"],[64204,1,\"頻\"],[64205,1,\"鬒\"],[64206,1,\"龜\"],[64207,1,\"𢡊\"],[64208,1,\"𢡄\"],[64209,1,\"𣏕\"],[64210,1,\"㮝\"],[64211,1,\"䀘\"],[64212,1,\"䀹\"],[64213,1,\"𥉉\"],[64214,1,\"𥳐\"],[64215,1,\"𧻓\"],[64216,1,\"齃\"],[64217,1,\"龎\"],[[64218,64255],3],[64256,1,\"ff\"],[64257,1,\"fi\"],[64258,1,\"fl\"],[64259,1,\"ffi\"],[64260,1,\"ffl\"],[[64261,64262],1,\"st\"],[[64263,64274],3],[64275,1,\"մն\"],[64276,1,\"մե\"],[64277,1,\"մի\"],[64278,1,\"վն\"],[64279,1,\"մխ\"],[[64280,64284],3],[64285,1,\"יִ\"],[64286,2],[64287,1,\"ײַ\"],[64288,1,\"ע\"],[64289,1,\"א\"],[64290,1,\"ד\"],[64291,1,\"ה\"],[64292,1,\"כ\"],[64293,1,\"ל\"],[64294,1,\"ם\"],[64295,1,\"ר\"],[64296,1,\"ת\"],[64297,5,\"+\"],[64298,1,\"שׁ\"],[64299,1,\"שׂ\"],[64300,1,\"שּׁ\"],[64301,1,\"שּׂ\"],[64302,1,\"אַ\"],[64303,1,\"אָ\"],[64304,1,\"אּ\"],[64305,1,\"בּ\"],[64306,1,\"גּ\"],[64307,1,\"דּ\"],[64308,1,\"הּ\"],[64309,1,\"וּ\"],[64310,1,\"זּ\"],[64311,3],[64312,1,\"טּ\"],[64313,1,\"יּ\"],[64314,1,\"ךּ\"],[64315,1,\"כּ\"],[64316,1,\"לּ\"],[64317,3],[64318,1,\"מּ\"],[64319,3],[64320,1,\"נּ\"],[64321,1,\"סּ\"],[64322,3],[64323,1,\"ףּ\"],[64324,1,\"פּ\"],[64325,3],[64326,1,\"צּ\"],[64327,1,\"קּ\"],[64328,1,\"רּ\"],[64329,1,\"שּ\"],[64330,1,\"תּ\"],[64331,1,\"וֹ\"],[64332,1,\"בֿ\"],[64333,1,\"כֿ\"],[64334,1,\"פֿ\"],[64335,1,\"אל\"],[[64336,64337],1,\"ٱ\"],[[64338,64341],1,\"ٻ\"],[[64342,64345],1,\"پ\"],[[64346,64349],1,\"ڀ\"],[[64350,64353],1,\"ٺ\"],[[64354,64357],1,\"ٿ\"],[[64358,64361],1,\"ٹ\"],[[64362,64365],1,\"ڤ\"],[[64366,64369],1,\"ڦ\"],[[64370,64373],1,\"ڄ\"],[[64374,64377],1,\"ڃ\"],[[64378,64381],1,\"چ\"],[[64382,64385],1,\"ڇ\"],[[64386,64387],1,\"ڍ\"],[[64388,64389],1,\"ڌ\"],[[64390,64391],1,\"ڎ\"],[[64392,64393],1,\"ڈ\"],[[64394,64395],1,\"ژ\"],[[64396,64397],1,\"ڑ\"],[[64398,64401],1,\"ک\"],[[64402,64405],1,\"گ\"],[[64406,64409],1,\"ڳ\"],[[64410,64413],1,\"ڱ\"],[[64414,64415],1,\"ں\"],[[64416,64419],1,\"ڻ\"],[[64420,64421],1,\"ۀ\"],[[64422,64425],1,\"ہ\"],[[64426,64429],1,\"ھ\"],[[64430,64431],1,\"ے\"],[[64432,64433],1,\"ۓ\"],[[64434,64449],2],[64450,2],[[64451,64466],3],[[64467,64470],1,\"ڭ\"],[[64471,64472],1,\"ۇ\"],[[64473,64474],1,\"ۆ\"],[[64475,64476],1,\"ۈ\"],[64477,1,\"ۇٴ\"],[[64478,64479],1,\"ۋ\"],[[64480,64481],1,\"ۅ\"],[[64482,64483],1,\"ۉ\"],[[64484,64487],1,\"ې\"],[[64488,64489],1,\"ى\"],[[64490,64491],1,\"ئا\"],[[64492,64493],1,\"ئە\"],[[64494,64495],1,\"ئو\"],[[64496,64497],1,\"ئۇ\"],[[64498,64499],1,\"ئۆ\"],[[64500,64501],1,\"ئۈ\"],[[64502,64504],1,\"ئې\"],[[64505,64507],1,\"ئى\"],[[64508,64511],1,\"ی\"],[64512,1,\"ئج\"],[64513,1,\"ئح\"],[64514,1,\"ئم\"],[64515,1,\"ئى\"],[64516,1,\"ئي\"],[64517,1,\"بج\"],[64518,1,\"بح\"],[64519,1,\"بخ\"],[64520,1,\"بم\"],[64521,1,\"بى\"],[64522,1,\"بي\"],[64523,1,\"تج\"],[64524,1,\"تح\"],[64525,1,\"تخ\"],[64526,1,\"تم\"],[64527,1,\"تى\"],[64528,1,\"تي\"],[64529,1,\"ثج\"],[64530,1,\"ثم\"],[64531,1,\"ثى\"],[64532,1,\"ثي\"],[64533,1,\"جح\"],[64534,1,\"جم\"],[64535,1,\"حج\"],[64536,1,\"حم\"],[64537,1,\"خج\"],[64538,1,\"خح\"],[64539,1,\"خم\"],[64540,1,\"سج\"],[64541,1,\"سح\"],[64542,1,\"سخ\"],[64543,1,\"سم\"],[64544,1,\"صح\"],[64545,1,\"صم\"],[64546,1,\"ضج\"],[64547,1,\"ضح\"],[64548,1,\"ضخ\"],[64549,1,\"ضم\"],[64550,1,\"طح\"],[64551,1,\"طم\"],[64552,1,\"ظم\"],[64553,1,\"عج\"],[64554,1,\"عم\"],[64555,1,\"غج\"],[64556,1,\"غم\"],[64557,1,\"فج\"],[64558,1,\"فح\"],[64559,1,\"فخ\"],[64560,1,\"فم\"],[64561,1,\"فى\"],[64562,1,\"في\"],[64563,1,\"قح\"],[64564,1,\"قم\"],[64565,1,\"قى\"],[64566,1,\"قي\"],[64567,1,\"كا\"],[64568,1,\"كج\"],[64569,1,\"كح\"],[64570,1,\"كخ\"],[64571,1,\"كل\"],[64572,1,\"كم\"],[64573,1,\"كى\"],[64574,1,\"كي\"],[64575,1,\"لج\"],[64576,1,\"لح\"],[64577,1,\"لخ\"],[64578,1,\"لم\"],[64579,1,\"لى\"],[64580,1,\"لي\"],[64581,1,\"مج\"],[64582,1,\"مح\"],[64583,1,\"مخ\"],[64584,1,\"مم\"],[64585,1,\"مى\"],[64586,1,\"مي\"],[64587,1,\"نج\"],[64588,1,\"نح\"],[64589,1,\"نخ\"],[64590,1,\"نم\"],[64591,1,\"نى\"],[64592,1,\"ني\"],[64593,1,\"هج\"],[64594,1,\"هم\"],[64595,1,\"هى\"],[64596,1,\"هي\"],[64597,1,\"يج\"],[64598,1,\"يح\"],[64599,1,\"يخ\"],[64600,1,\"يم\"],[64601,1,\"يى\"],[64602,1,\"يي\"],[64603,1,\"ذٰ\"],[64604,1,\"رٰ\"],[64605,1,\"ىٰ\"],[64606,5,\" ٌّ\"],[64607,5,\" ٍّ\"],[64608,5,\" َّ\"],[64609,5,\" ُّ\"],[64610,5,\" ِّ\"],[64611,5,\" ّٰ\"],[64612,1,\"ئر\"],[64613,1,\"ئز\"],[64614,1,\"ئم\"],[64615,1,\"ئن\"],[64616,1,\"ئى\"],[64617,1,\"ئي\"],[64618,1,\"بر\"],[64619,1,\"بز\"],[64620,1,\"بم\"],[64621,1,\"بن\"],[64622,1,\"بى\"],[64623,1,\"بي\"],[64624,1,\"تر\"],[64625,1,\"تز\"],[64626,1,\"تم\"],[64627,1,\"تن\"],[64628,1,\"تى\"],[64629,1,\"تي\"],[64630,1,\"ثر\"],[64631,1,\"ثز\"],[64632,1,\"ثم\"],[64633,1,\"ثن\"],[64634,1,\"ثى\"],[64635,1,\"ثي\"],[64636,1,\"فى\"],[64637,1,\"في\"],[64638,1,\"قى\"],[64639,1,\"قي\"],[64640,1,\"كا\"],[64641,1,\"كل\"],[64642,1,\"كم\"],[64643,1,\"كى\"],[64644,1,\"كي\"],[64645,1,\"لم\"],[64646,1,\"لى\"],[64647,1,\"لي\"],[64648,1,\"ما\"],[64649,1,\"مم\"],[64650,1,\"نر\"],[64651,1,\"نز\"],[64652,1,\"نم\"],[64653,1,\"نن\"],[64654,1,\"نى\"],[64655,1,\"ني\"],[64656,1,\"ىٰ\"],[64657,1,\"ير\"],[64658,1,\"يز\"],[64659,1,\"يم\"],[64660,1,\"ين\"],[64661,1,\"يى\"],[64662,1,\"يي\"],[64663,1,\"ئج\"],[64664,1,\"ئح\"],[64665,1,\"ئخ\"],[64666,1,\"ئم\"],[64667,1,\"ئه\"],[64668,1,\"بج\"],[64669,1,\"بح\"],[64670,1,\"بخ\"],[64671,1,\"بم\"],[64672,1,\"به\"],[64673,1,\"تج\"],[64674,1,\"تح\"],[64675,1,\"تخ\"],[64676,1,\"تم\"],[64677,1,\"ته\"],[64678,1,\"ثم\"],[64679,1,\"جح\"],[64680,1,\"جم\"],[64681,1,\"حج\"],[64682,1,\"حم\"],[64683,1,\"خج\"],[64684,1,\"خم\"],[64685,1,\"سج\"],[64686,1,\"سح\"],[64687,1,\"سخ\"],[64688,1,\"سم\"],[64689,1,\"صح\"],[64690,1,\"صخ\"],[64691,1,\"صم\"],[64692,1,\"ضج\"],[64693,1,\"ضح\"],[64694,1,\"ضخ\"],[64695,1,\"ضم\"],[64696,1,\"طح\"],[64697,1,\"ظم\"],[64698,1,\"عج\"],[64699,1,\"عم\"],[64700,1,\"غج\"],[64701,1,\"غم\"],[64702,1,\"فج\"],[64703,1,\"فح\"],[64704,1,\"فخ\"],[64705,1,\"فم\"],[64706,1,\"قح\"],[64707,1,\"قم\"],[64708,1,\"كج\"],[64709,1,\"كح\"],[64710,1,\"كخ\"],[64711,1,\"كل\"],[64712,1,\"كم\"],[64713,1,\"لج\"],[64714,1,\"لح\"],[64715,1,\"لخ\"],[64716,1,\"لم\"],[64717,1,\"له\"],[64718,1,\"مج\"],[64719,1,\"مح\"],[64720,1,\"مخ\"],[64721,1,\"مم\"],[64722,1,\"نج\"],[64723,1,\"نح\"],[64724,1,\"نخ\"],[64725,1,\"نم\"],[64726,1,\"نه\"],[64727,1,\"هج\"],[64728,1,\"هم\"],[64729,1,\"هٰ\"],[64730,1,\"يج\"],[64731,1,\"يح\"],[64732,1,\"يخ\"],[64733,1,\"يم\"],[64734,1,\"يه\"],[64735,1,\"ئم\"],[64736,1,\"ئه\"],[64737,1,\"بم\"],[64738,1,\"به\"],[64739,1,\"تم\"],[64740,1,\"ته\"],[64741,1,\"ثم\"],[64742,1,\"ثه\"],[64743,1,\"سم\"],[64744,1,\"سه\"],[64745,1,\"شم\"],[64746,1,\"شه\"],[64747,1,\"كل\"],[64748,1,\"كم\"],[64749,1,\"لم\"],[64750,1,\"نم\"],[64751,1,\"نه\"],[64752,1,\"يم\"],[64753,1,\"يه\"],[64754,1,\"ـَّ\"],[64755,1,\"ـُّ\"],[64756,1,\"ـِّ\"],[64757,1,\"طى\"],[64758,1,\"طي\"],[64759,1,\"عى\"],[64760,1,\"عي\"],[64761,1,\"غى\"],[64762,1,\"غي\"],[64763,1,\"سى\"],[64764,1,\"سي\"],[64765,1,\"شى\"],[64766,1,\"شي\"],[64767,1,\"حى\"],[64768,1,\"حي\"],[64769,1,\"جى\"],[64770,1,\"جي\"],[64771,1,\"خى\"],[64772,1,\"خي\"],[64773,1,\"صى\"],[64774,1,\"صي\"],[64775,1,\"ضى\"],[64776,1,\"ضي\"],[64777,1,\"شج\"],[64778,1,\"شح\"],[64779,1,\"شخ\"],[64780,1,\"شم\"],[64781,1,\"شر\"],[64782,1,\"سر\"],[64783,1,\"صر\"],[64784,1,\"ضر\"],[64785,1,\"طى\"],[64786,1,\"طي\"],[64787,1,\"عى\"],[64788,1,\"عي\"],[64789,1,\"غى\"],[64790,1,\"غي\"],[64791,1,\"سى\"],[64792,1,\"سي\"],[64793,1,\"شى\"],[64794,1,\"شي\"],[64795,1,\"حى\"],[64796,1,\"حي\"],[64797,1,\"جى\"],[64798,1,\"جي\"],[64799,1,\"خى\"],[64800,1,\"خي\"],[64801,1,\"صى\"],[64802,1,\"صي\"],[64803,1,\"ضى\"],[64804,1,\"ضي\"],[64805,1,\"شج\"],[64806,1,\"شح\"],[64807,1,\"شخ\"],[64808,1,\"شم\"],[64809,1,\"شر\"],[64810,1,\"سر\"],[64811,1,\"صر\"],[64812,1,\"ضر\"],[64813,1,\"شج\"],[64814,1,\"شح\"],[64815,1,\"شخ\"],[64816,1,\"شم\"],[64817,1,\"سه\"],[64818,1,\"شه\"],[64819,1,\"طم\"],[64820,1,\"سج\"],[64821,1,\"سح\"],[64822,1,\"سخ\"],[64823,1,\"شج\"],[64824,1,\"شح\"],[64825,1,\"شخ\"],[64826,1,\"طم\"],[64827,1,\"ظم\"],[[64828,64829],1,\"اً\"],[[64830,64831],2],[[64832,64847],2],[64848,1,\"تجم\"],[[64849,64850],1,\"تحج\"],[64851,1,\"تحم\"],[64852,1,\"تخم\"],[64853,1,\"تمج\"],[64854,1,\"تمح\"],[64855,1,\"تمخ\"],[[64856,64857],1,\"جمح\"],[64858,1,\"حمي\"],[64859,1,\"حمى\"],[64860,1,\"سحج\"],[64861,1,\"سجح\"],[64862,1,\"سجى\"],[[64863,64864],1,\"سمح\"],[64865,1,\"سمج\"],[[64866,64867],1,\"سمم\"],[[64868,64869],1,\"صحح\"],[64870,1,\"صمم\"],[[64871,64872],1,\"شحم\"],[64873,1,\"شجي\"],[[64874,64875],1,\"شمخ\"],[[64876,64877],1,\"شمم\"],[64878,1,\"ضحى\"],[[64879,64880],1,\"ضخم\"],[[64881,64882],1,\"طمح\"],[64883,1,\"طمم\"],[64884,1,\"طمي\"],[64885,1,\"عجم\"],[[64886,64887],1,\"عمم\"],[64888,1,\"عمى\"],[64889,1,\"غمم\"],[64890,1,\"غمي\"],[64891,1,\"غمى\"],[[64892,64893],1,\"فخم\"],[64894,1,\"قمح\"],[64895,1,\"قمم\"],[64896,1,\"لحم\"],[64897,1,\"لحي\"],[64898,1,\"لحى\"],[[64899,64900],1,\"لجج\"],[[64901,64902],1,\"لخم\"],[[64903,64904],1,\"لمح\"],[64905,1,\"محج\"],[64906,1,\"محم\"],[64907,1,\"محي\"],[64908,1,\"مجح\"],[64909,1,\"مجم\"],[64910,1,\"مخج\"],[64911,1,\"مخم\"],[[64912,64913],3],[64914,1,\"مجخ\"],[64915,1,\"همج\"],[64916,1,\"همم\"],[64917,1,\"نحم\"],[64918,1,\"نحى\"],[[64919,64920],1,\"نجم\"],[64921,1,\"نجى\"],[64922,1,\"نمي\"],[64923,1,\"نمى\"],[[64924,64925],1,\"يمم\"],[64926,1,\"بخي\"],[64927,1,\"تجي\"],[64928,1,\"تجى\"],[64929,1,\"تخي\"],[64930,1,\"تخى\"],[64931,1,\"تمي\"],[64932,1,\"تمى\"],[64933,1,\"جمي\"],[64934,1,\"جحى\"],[64935,1,\"جمى\"],[64936,1,\"سخى\"],[64937,1,\"صحي\"],[64938,1,\"شحي\"],[64939,1,\"ضحي\"],[64940,1,\"لجي\"],[64941,1,\"لمي\"],[64942,1,\"يحي\"],[64943,1,\"يجي\"],[64944,1,\"يمي\"],[64945,1,\"ممي\"],[64946,1,\"قمي\"],[64947,1,\"نحي\"],[64948,1,\"قمح\"],[64949,1,\"لحم\"],[64950,1,\"عمي\"],[64951,1,\"كمي\"],[64952,1,\"نجح\"],[64953,1,\"مخي\"],[64954,1,\"لجم\"],[64955,1,\"كمم\"],[64956,1,\"لجم\"],[64957,1,\"نجح\"],[64958,1,\"جحي\"],[64959,1,\"حجي\"],[64960,1,\"مجي\"],[64961,1,\"فمي\"],[64962,1,\"بحي\"],[64963,1,\"كمم\"],[64964,1,\"عجم\"],[64965,1,\"صمم\"],[64966,1,\"سخي\"],[64967,1,\"نجي\"],[[64968,64974],3],[64975,2],[[64976,65007],3],[65008,1,\"صلے\"],[65009,1,\"قلے\"],[65010,1,\"الله\"],[65011,1,\"اكبر\"],[65012,1,\"محمد\"],[65013,1,\"صلعم\"],[65014,1,\"رسول\"],[65015,1,\"عليه\"],[65016,1,\"وسلم\"],[65017,1,\"صلى\"],[65018,5,\"صلى الله عليه وسلم\"],[65019,5,\"جل جلاله\"],[65020,1,\"ریال\"],[65021,2],[[65022,65023],2],[[65024,65039],7],[65040,5,\",\"],[65041,1,\"、\"],[65042,3],[65043,5,\":\"],[65044,5,\";\"],[65045,5,\"!\"],[65046,5,\"?\"],[65047,1,\"〖\"],[65048,1,\"〗\"],[65049,3],[[65050,65055],3],[[65056,65059],2],[[65060,65062],2],[[65063,65069],2],[[65070,65071],2],[65072,3],[65073,1,\"—\"],[65074,1,\"–\"],[[65075,65076],5,\"_\"],[65077,5,\"(\"],[65078,5,\")\"],[65079,5,\"{\"],[65080,5,\"}\"],[65081,1,\"〔\"],[65082,1,\"〕\"],[65083,1,\"【\"],[65084,1,\"】\"],[65085,1,\"《\"],[65086,1,\"》\"],[65087,1,\"〈\"],[65088,1,\"〉\"],[65089,1,\"「\"],[65090,1,\"」\"],[65091,1,\"『\"],[65092,1,\"』\"],[[65093,65094],2],[65095,5,\"[\"],[65096,5,\"]\"],[[65097,65100],5,\" ̅\"],[[65101,65103],5,\"_\"],[65104,5,\",\"],[65105,1,\"、\"],[65106,3],[65107,3],[65108,5,\";\"],[65109,5,\":\"],[65110,5,\"?\"],[65111,5,\"!\"],[65112,1,\"—\"],[65113,5,\"(\"],[65114,5,\")\"],[65115,5,\"{\"],[65116,5,\"}\"],[65117,1,\"〔\"],[65118,1,\"〕\"],[65119,5,\"#\"],[65120,5,\"&\"],[65121,5,\"*\"],[65122,5,\"+\"],[65123,1,\"-\"],[65124,5,\"<\"],[65125,5,\">\"],[65126,5,\"=\"],[65127,3],[65128,5,\"\\\\\"],[65129,5,\"$\"],[65130,5,\"%\"],[65131,5,\"@\"],[[65132,65135],3],[65136,5,\" ً\"],[65137,1,\"ـً\"],[65138,5,\" ٌ\"],[65139,2],[65140,5,\" ٍ\"],[65141,3],[65142,5,\" َ\"],[65143,1,\"ـَ\"],[65144,5,\" ُ\"],[65145,1,\"ـُ\"],[65146,5,\" ِ\"],[65147,1,\"ـِ\"],[65148,5,\" ّ\"],[65149,1,\"ـّ\"],[65150,5,\" ْ\"],[65151,1,\"ـْ\"],[65152,1,\"ء\"],[[65153,65154],1,\"آ\"],[[65155,65156],1,\"أ\"],[[65157,65158],1,\"ؤ\"],[[65159,65160],1,\"إ\"],[[65161,65164],1,\"ئ\"],[[65165,65166],1,\"ا\"],[[65167,65170],1,\"ب\"],[[65171,65172],1,\"ة\"],[[65173,65176],1,\"ت\"],[[65177,65180],1,\"ث\"],[[65181,65184],1,\"ج\"],[[65185,65188],1,\"ح\"],[[65189,65192],1,\"خ\"],[[65193,65194],1,\"د\"],[[65195,65196],1,\"ذ\"],[[65197,65198],1,\"ر\"],[[65199,65200],1,\"ز\"],[[65201,65204],1,\"س\"],[[65205,65208],1,\"ش\"],[[65209,65212],1,\"ص\"],[[65213,65216],1,\"ض\"],[[65217,65220],1,\"ط\"],[[65221,65224],1,\"ظ\"],[[65225,65228],1,\"ع\"],[[65229,65232],1,\"غ\"],[[65233,65236],1,\"ف\"],[[65237,65240],1,\"ق\"],[[65241,65244],1,\"ك\"],[[65245,65248],1,\"ل\"],[[65249,65252],1,\"م\"],[[65253,65256],1,\"ن\"],[[65257,65260],1,\"ه\"],[[65261,65262],1,\"و\"],[[65263,65264],1,\"ى\"],[[65265,65268],1,\"ي\"],[[65269,65270],1,\"لآ\"],[[65271,65272],1,\"لأ\"],[[65273,65274],1,\"لإ\"],[[65275,65276],1,\"لا\"],[[65277,65278],3],[65279,7],[65280,3],[65281,5,\"!\"],[65282,5,\"\\\"\"],[65283,5,\"#\"],[65284,5,\"$\"],[65285,5,\"%\"],[65286,5,\"&\"],[65287,5,\"'\"],[65288,5,\"(\"],[65289,5,\")\"],[65290,5,\"*\"],[65291,5,\"+\"],[65292,5,\",\"],[65293,1,\"-\"],[65294,1,\".\"],[65295,5,\"/\"],[65296,1,\"0\"],[65297,1,\"1\"],[65298,1,\"2\"],[65299,1,\"3\"],[65300,1,\"4\"],[65301,1,\"5\"],[65302,1,\"6\"],[65303,1,\"7\"],[65304,1,\"8\"],[65305,1,\"9\"],[65306,5,\":\"],[65307,5,\";\"],[65308,5,\"<\"],[65309,5,\"=\"],[65310,5,\">\"],[65311,5,\"?\"],[65312,5,\"@\"],[65313,1,\"a\"],[65314,1,\"b\"],[65315,1,\"c\"],[65316,1,\"d\"],[65317,1,\"e\"],[65318,1,\"f\"],[65319,1,\"g\"],[65320,1,\"h\"],[65321,1,\"i\"],[65322,1,\"j\"],[65323,1,\"k\"],[65324,1,\"l\"],[65325,1,\"m\"],[65326,1,\"n\"],[65327,1,\"o\"],[65328,1,\"p\"],[65329,1,\"q\"],[65330,1,\"r\"],[65331,1,\"s\"],[65332,1,\"t\"],[65333,1,\"u\"],[65334,1,\"v\"],[65335,1,\"w\"],[65336,1,\"x\"],[65337,1,\"y\"],[65338,1,\"z\"],[65339,5,\"[\"],[65340,5,\"\\\\\"],[65341,5,\"]\"],[65342,5,\"^\"],[65343,5,\"_\"],[65344,5,\"`\"],[65345,1,\"a\"],[65346,1,\"b\"],[65347,1,\"c\"],[65348,1,\"d\"],[65349,1,\"e\"],[65350,1,\"f\"],[65351,1,\"g\"],[65352,1,\"h\"],[65353,1,\"i\"],[65354,1,\"j\"],[65355,1,\"k\"],[65356,1,\"l\"],[65357,1,\"m\"],[65358,1,\"n\"],[65359,1,\"o\"],[65360,1,\"p\"],[65361,1,\"q\"],[65362,1,\"r\"],[65363,1,\"s\"],[65364,1,\"t\"],[65365,1,\"u\"],[65366,1,\"v\"],[65367,1,\"w\"],[65368,1,\"x\"],[65369,1,\"y\"],[65370,1,\"z\"],[65371,5,\"{\"],[65372,5,\"|\"],[65373,5,\"}\"],[65374,5,\"~\"],[65375,1,\"⦅\"],[65376,1,\"⦆\"],[65377,1,\".\"],[65378,1,\"「\"],[65379,1,\"」\"],[65380,1,\"、\"],[65381,1,\"・\"],[65382,1,\"ヲ\"],[65383,1,\"ァ\"],[65384,1,\"ィ\"],[65385,1,\"ゥ\"],[65386,1,\"ェ\"],[65387,1,\"ォ\"],[65388,1,\"ャ\"],[65389,1,\"ュ\"],[65390,1,\"ョ\"],[65391,1,\"ッ\"],[65392,1,\"ー\"],[65393,1,\"ア\"],[65394,1,\"イ\"],[65395,1,\"ウ\"],[65396,1,\"エ\"],[65397,1,\"オ\"],[65398,1,\"カ\"],[65399,1,\"キ\"],[65400,1,\"ク\"],[65401,1,\"ケ\"],[65402,1,\"コ\"],[65403,1,\"サ\"],[65404,1,\"シ\"],[65405,1,\"ス\"],[65406,1,\"セ\"],[65407,1,\"ソ\"],[65408,1,\"タ\"],[65409,1,\"チ\"],[65410,1,\"ツ\"],[65411,1,\"テ\"],[65412,1,\"ト\"],[65413,1,\"ナ\"],[65414,1,\"ニ\"],[65415,1,\"ヌ\"],[65416,1,\"ネ\"],[65417,1,\"ノ\"],[65418,1,\"ハ\"],[65419,1,\"ヒ\"],[65420,1,\"フ\"],[65421,1,\"ヘ\"],[65422,1,\"ホ\"],[65423,1,\"マ\"],[65424,1,\"ミ\"],[65425,1,\"ム\"],[65426,1,\"メ\"],[65427,1,\"モ\"],[65428,1,\"ヤ\"],[65429,1,\"ユ\"],[65430,1,\"ヨ\"],[65431,1,\"ラ\"],[65432,1,\"リ\"],[65433,1,\"ル\"],[65434,1,\"レ\"],[65435,1,\"ロ\"],[65436,1,\"ワ\"],[65437,1,\"ン\"],[65438,1,\"゙\"],[65439,1,\"゚\"],[65440,3],[65441,1,\"ᄀ\"],[65442,1,\"ᄁ\"],[65443,1,\"ᆪ\"],[65444,1,\"ᄂ\"],[65445,1,\"ᆬ\"],[65446,1,\"ᆭ\"],[65447,1,\"ᄃ\"],[65448,1,\"ᄄ\"],[65449,1,\"ᄅ\"],[65450,1,\"ᆰ\"],[65451,1,\"ᆱ\"],[65452,1,\"ᆲ\"],[65453,1,\"ᆳ\"],[65454,1,\"ᆴ\"],[65455,1,\"ᆵ\"],[65456,1,\"ᄚ\"],[65457,1,\"ᄆ\"],[65458,1,\"ᄇ\"],[65459,1,\"ᄈ\"],[65460,1,\"ᄡ\"],[65461,1,\"ᄉ\"],[65462,1,\"ᄊ\"],[65463,1,\"ᄋ\"],[65464,1,\"ᄌ\"],[65465,1,\"ᄍ\"],[65466,1,\"ᄎ\"],[65467,1,\"ᄏ\"],[65468,1,\"ᄐ\"],[65469,1,\"ᄑ\"],[65470,1,\"ᄒ\"],[[65471,65473],3],[65474,1,\"ᅡ\"],[65475,1,\"ᅢ\"],[65476,1,\"ᅣ\"],[65477,1,\"ᅤ\"],[65478,1,\"ᅥ\"],[65479,1,\"ᅦ\"],[[65480,65481],3],[65482,1,\"ᅧ\"],[65483,1,\"ᅨ\"],[65484,1,\"ᅩ\"],[65485,1,\"ᅪ\"],[65486,1,\"ᅫ\"],[65487,1,\"ᅬ\"],[[65488,65489],3],[65490,1,\"ᅭ\"],[65491,1,\"ᅮ\"],[65492,1,\"ᅯ\"],[65493,1,\"ᅰ\"],[65494,1,\"ᅱ\"],[65495,1,\"ᅲ\"],[[65496,65497],3],[65498,1,\"ᅳ\"],[65499,1,\"ᅴ\"],[65500,1,\"ᅵ\"],[[65501,65503],3],[65504,1,\"¢\"],[65505,1,\"£\"],[65506,1,\"¬\"],[65507,5,\" ̄\"],[65508,1,\"¦\"],[65509,1,\"¥\"],[65510,1,\"₩\"],[65511,3],[65512,1,\"│\"],[65513,1,\"←\"],[65514,1,\"↑\"],[65515,1,\"→\"],[65516,1,\"↓\"],[65517,1,\"■\"],[65518,1,\"○\"],[[65519,65528],3],[[65529,65531],3],[65532,3],[65533,3],[[65534,65535],3],[[65536,65547],2],[65548,3],[[65549,65574],2],[65575,3],[[65576,65594],2],[65595,3],[[65596,65597],2],[65598,3],[[65599,65613],2],[[65614,65615],3],[[65616,65629],2],[[65630,65663],3],[[65664,65786],2],[[65787,65791],3],[[65792,65794],2],[[65795,65798],3],[[65799,65843],2],[[65844,65846],3],[[65847,65855],2],[[65856,65930],2],[[65931,65932],2],[[65933,65934],2],[65935,3],[[65936,65947],2],[65948,2],[[65949,65951],3],[65952,2],[[65953,65999],3],[[66000,66044],2],[66045,2],[[66046,66175],3],[[66176,66204],2],[[66205,66207],3],[[66208,66256],2],[[66257,66271],3],[66272,2],[[66273,66299],2],[[66300,66303],3],[[66304,66334],2],[66335,2],[[66336,66339],2],[[66340,66348],3],[[66349,66351],2],[[66352,66368],2],[66369,2],[[66370,66377],2],[66378,2],[[66379,66383],3],[[66384,66426],2],[[66427,66431],3],[[66432,66461],2],[66462,3],[66463,2],[[66464,66499],2],[[66500,66503],3],[[66504,66511],2],[[66512,66517],2],[[66518,66559],3],[66560,1,\"𐐨\"],[66561,1,\"𐐩\"],[66562,1,\"𐐪\"],[66563,1,\"𐐫\"],[66564,1,\"𐐬\"],[66565,1,\"𐐭\"],[66566,1,\"𐐮\"],[66567,1,\"𐐯\"],[66568,1,\"𐐰\"],[66569,1,\"𐐱\"],[66570,1,\"𐐲\"],[66571,1,\"𐐳\"],[66572,1,\"𐐴\"],[66573,1,\"𐐵\"],[66574,1,\"𐐶\"],[66575,1,\"𐐷\"],[66576,1,\"𐐸\"],[66577,1,\"𐐹\"],[66578,1,\"𐐺\"],[66579,1,\"𐐻\"],[66580,1,\"𐐼\"],[66581,1,\"𐐽\"],[66582,1,\"𐐾\"],[66583,1,\"𐐿\"],[66584,1,\"𐑀\"],[66585,1,\"𐑁\"],[66586,1,\"𐑂\"],[66587,1,\"𐑃\"],[66588,1,\"𐑄\"],[66589,1,\"𐑅\"],[66590,1,\"𐑆\"],[66591,1,\"𐑇\"],[66592,1,\"𐑈\"],[66593,1,\"𐑉\"],[66594,1,\"𐑊\"],[66595,1,\"𐑋\"],[66596,1,\"𐑌\"],[66597,1,\"𐑍\"],[66598,1,\"𐑎\"],[66599,1,\"𐑏\"],[[66600,66637],2],[[66638,66717],2],[[66718,66719],3],[[66720,66729],2],[[66730,66735],3],[66736,1,\"𐓘\"],[66737,1,\"𐓙\"],[66738,1,\"𐓚\"],[66739,1,\"𐓛\"],[66740,1,\"𐓜\"],[66741,1,\"𐓝\"],[66742,1,\"𐓞\"],[66743,1,\"𐓟\"],[66744,1,\"𐓠\"],[66745,1,\"𐓡\"],[66746,1,\"𐓢\"],[66747,1,\"𐓣\"],[66748,1,\"𐓤\"],[66749,1,\"𐓥\"],[66750,1,\"𐓦\"],[66751,1,\"𐓧\"],[66752,1,\"𐓨\"],[66753,1,\"𐓩\"],[66754,1,\"𐓪\"],[66755,1,\"𐓫\"],[66756,1,\"𐓬\"],[66757,1,\"𐓭\"],[66758,1,\"𐓮\"],[66759,1,\"𐓯\"],[66760,1,\"𐓰\"],[66761,1,\"𐓱\"],[66762,1,\"𐓲\"],[66763,1,\"𐓳\"],[66764,1,\"𐓴\"],[66765,1,\"𐓵\"],[66766,1,\"𐓶\"],[66767,1,\"𐓷\"],[66768,1,\"𐓸\"],[66769,1,\"𐓹\"],[66770,1,\"𐓺\"],[66771,1,\"𐓻\"],[[66772,66775],3],[[66776,66811],2],[[66812,66815],3],[[66816,66855],2],[[66856,66863],3],[[66864,66915],2],[[66916,66926],3],[66927,2],[66928,1,\"𐖗\"],[66929,1,\"𐖘\"],[66930,1,\"𐖙\"],[66931,1,\"𐖚\"],[66932,1,\"𐖛\"],[66933,1,\"𐖜\"],[66934,1,\"𐖝\"],[66935,1,\"𐖞\"],[66936,1,\"𐖟\"],[66937,1,\"𐖠\"],[66938,1,\"𐖡\"],[66939,3],[66940,1,\"𐖣\"],[66941,1,\"𐖤\"],[66942,1,\"𐖥\"],[66943,1,\"𐖦\"],[66944,1,\"𐖧\"],[66945,1,\"𐖨\"],[66946,1,\"𐖩\"],[66947,1,\"𐖪\"],[66948,1,\"𐖫\"],[66949,1,\"𐖬\"],[66950,1,\"𐖭\"],[66951,1,\"𐖮\"],[66952,1,\"𐖯\"],[66953,1,\"𐖰\"],[66954,1,\"𐖱\"],[66955,3],[66956,1,\"𐖳\"],[66957,1,\"𐖴\"],[66958,1,\"𐖵\"],[66959,1,\"𐖶\"],[66960,1,\"𐖷\"],[66961,1,\"𐖸\"],[66962,1,\"𐖹\"],[66963,3],[66964,1,\"𐖻\"],[66965,1,\"𐖼\"],[66966,3],[[66967,66977],2],[66978,3],[[66979,66993],2],[66994,3],[[66995,67001],2],[67002,3],[[67003,67004],2],[[67005,67071],3],[[67072,67382],2],[[67383,67391],3],[[67392,67413],2],[[67414,67423],3],[[67424,67431],2],[[67432,67455],3],[67456,2],[67457,1,\"ː\"],[67458,1,\"ˑ\"],[67459,1,\"æ\"],[67460,1,\"ʙ\"],[67461,1,\"ɓ\"],[67462,3],[67463,1,\"ʣ\"],[67464,1,\"ꭦ\"],[67465,1,\"ʥ\"],[67466,1,\"ʤ\"],[67467,1,\"ɖ\"],[67468,1,\"ɗ\"],[67469,1,\"ᶑ\"],[67470,1,\"ɘ\"],[67471,1,\"ɞ\"],[67472,1,\"ʩ\"],[67473,1,\"ɤ\"],[67474,1,\"ɢ\"],[67475,1,\"ɠ\"],[67476,1,\"ʛ\"],[67477,1,\"ħ\"],[67478,1,\"ʜ\"],[67479,1,\"ɧ\"],[67480,1,\"ʄ\"],[67481,1,\"ʪ\"],[67482,1,\"ʫ\"],[67483,1,\"ɬ\"],[67484,1,\"𝼄\"],[67485,1,\"ꞎ\"],[67486,1,\"ɮ\"],[67487,1,\"𝼅\"],[67488,1,\"ʎ\"],[67489,1,\"𝼆\"],[67490,1,\"ø\"],[67491,1,\"ɶ\"],[67492,1,\"ɷ\"],[67493,1,\"q\"],[67494,1,\"ɺ\"],[67495,1,\"𝼈\"],[67496,1,\"ɽ\"],[67497,1,\"ɾ\"],[67498,1,\"ʀ\"],[67499,1,\"ʨ\"],[67500,1,\"ʦ\"],[67501,1,\"ꭧ\"],[67502,1,\"ʧ\"],[67503,1,\"ʈ\"],[67504,1,\"ⱱ\"],[67505,3],[67506,1,\"ʏ\"],[67507,1,\"ʡ\"],[67508,1,\"ʢ\"],[67509,1,\"ʘ\"],[67510,1,\"ǀ\"],[67511,1,\"ǁ\"],[67512,1,\"ǂ\"],[67513,1,\"𝼊\"],[67514,1,\"𝼞\"],[[67515,67583],3],[[67584,67589],2],[[67590,67591],3],[67592,2],[67593,3],[[67594,67637],2],[67638,3],[[67639,67640],2],[[67641,67643],3],[67644,2],[[67645,67646],3],[67647,2],[[67648,67669],2],[67670,3],[[67671,67679],2],[[67680,67702],2],[[67703,67711],2],[[67712,67742],2],[[67743,67750],3],[[67751,67759],2],[[67760,67807],3],[[67808,67826],2],[67827,3],[[67828,67829],2],[[67830,67834],3],[[67835,67839],2],[[67840,67861],2],[[67862,67865],2],[[67866,67867],2],[[67868,67870],3],[67871,2],[[67872,67897],2],[[67898,67902],3],[67903,2],[[67904,67967],3],[[67968,68023],2],[[68024,68027],3],[[68028,68029],2],[[68030,68031],2],[[68032,68047],2],[[68048,68049],3],[[68050,68095],2],[[68096,68099],2],[68100,3],[[68101,68102],2],[[68103,68107],3],[[68108,68115],2],[68116,3],[[68117,68119],2],[68120,3],[[68121,68147],2],[[68148,68149],2],[[68150,68151],3],[[68152,68154],2],[[68155,68158],3],[68159,2],[[68160,68167],2],[68168,2],[[68169,68175],3],[[68176,68184],2],[[68185,68191],3],[[68192,68220],2],[[68221,68223],2],[[68224,68252],2],[[68253,68255],2],[[68256,68287],3],[[68288,68295],2],[68296,2],[[68297,68326],2],[[68327,68330],3],[[68331,68342],2],[[68343,68351],3],[[68352,68405],2],[[68406,68408],3],[[68409,68415],2],[[68416,68437],2],[[68438,68439],3],[[68440,68447],2],[[68448,68466],2],[[68467,68471],3],[[68472,68479],2],[[68480,68497],2],[[68498,68504],3],[[68505,68508],2],[[68509,68520],3],[[68521,68527],2],[[68528,68607],3],[[68608,68680],2],[[68681,68735],3],[68736,1,\"𐳀\"],[68737,1,\"𐳁\"],[68738,1,\"𐳂\"],[68739,1,\"𐳃\"],[68740,1,\"𐳄\"],[68741,1,\"𐳅\"],[68742,1,\"𐳆\"],[68743,1,\"𐳇\"],[68744,1,\"𐳈\"],[68745,1,\"𐳉\"],[68746,1,\"𐳊\"],[68747,1,\"𐳋\"],[68748,1,\"𐳌\"],[68749,1,\"𐳍\"],[68750,1,\"𐳎\"],[68751,1,\"𐳏\"],[68752,1,\"𐳐\"],[68753,1,\"𐳑\"],[68754,1,\"𐳒\"],[68755,1,\"𐳓\"],[68756,1,\"𐳔\"],[68757,1,\"𐳕\"],[68758,1,\"𐳖\"],[68759,1,\"𐳗\"],[68760,1,\"𐳘\"],[68761,1,\"𐳙\"],[68762,1,\"𐳚\"],[68763,1,\"𐳛\"],[68764,1,\"𐳜\"],[68765,1,\"𐳝\"],[68766,1,\"𐳞\"],[68767,1,\"𐳟\"],[68768,1,\"𐳠\"],[68769,1,\"𐳡\"],[68770,1,\"𐳢\"],[68771,1,\"𐳣\"],[68772,1,\"𐳤\"],[68773,1,\"𐳥\"],[68774,1,\"𐳦\"],[68775,1,\"𐳧\"],[68776,1,\"𐳨\"],[68777,1,\"𐳩\"],[68778,1,\"𐳪\"],[68779,1,\"𐳫\"],[68780,1,\"𐳬\"],[68781,1,\"𐳭\"],[68782,1,\"𐳮\"],[68783,1,\"𐳯\"],[68784,1,\"𐳰\"],[68785,1,\"𐳱\"],[68786,1,\"𐳲\"],[[68787,68799],3],[[68800,68850],2],[[68851,68857],3],[[68858,68863],2],[[68864,68903],2],[[68904,68911],3],[[68912,68921],2],[[68922,69215],3],[[69216,69246],2],[69247,3],[[69248,69289],2],[69290,3],[[69291,69292],2],[69293,2],[[69294,69295],3],[[69296,69297],2],[[69298,69375],3],[[69376,69404],2],[[69405,69414],2],[69415,2],[[69416,69423],3],[[69424,69456],2],[[69457,69465],2],[[69466,69487],3],[[69488,69509],2],[[69510,69513],2],[[69514,69551],3],[[69552,69572],2],[[69573,69579],2],[[69580,69599],3],[[69600,69622],2],[[69623,69631],3],[[69632,69702],2],[[69703,69709],2],[[69710,69713],3],[[69714,69733],2],[[69734,69743],2],[[69744,69749],2],[[69750,69758],3],[69759,2],[[69760,69818],2],[[69819,69820],2],[69821,3],[[69822,69825],2],[69826,2],[[69827,69836],3],[69837,3],[[69838,69839],3],[[69840,69864],2],[[69865,69871],3],[[69872,69881],2],[[69882,69887],3],[[69888,69940],2],[69941,3],[[69942,69951],2],[[69952,69955],2],[[69956,69958],2],[69959,2],[[69960,69967],3],[[69968,70003],2],[[70004,70005],2],[70006,2],[[70007,70015],3],[[70016,70084],2],[[70085,70088],2],[[70089,70092],2],[70093,2],[[70094,70095],2],[[70096,70105],2],[70106,2],[70107,2],[70108,2],[[70109,70111],2],[70112,3],[[70113,70132],2],[[70133,70143],3],[[70144,70161],2],[70162,3],[[70163,70199],2],[[70200,70205],2],[70206,2],[[70207,70271],3],[[70272,70278],2],[70279,3],[70280,2],[70281,3],[[70282,70285],2],[70286,3],[[70287,70301],2],[70302,3],[[70303,70312],2],[70313,2],[[70314,70319],3],[[70320,70378],2],[[70379,70383],3],[[70384,70393],2],[[70394,70399],3],[70400,2],[[70401,70403],2],[70404,3],[[70405,70412],2],[[70413,70414],3],[[70415,70416],2],[[70417,70418],3],[[70419,70440],2],[70441,3],[[70442,70448],2],[70449,3],[[70450,70451],2],[70452,3],[[70453,70457],2],[70458,3],[70459,2],[[70460,70468],2],[[70469,70470],3],[[70471,70472],2],[[70473,70474],3],[[70475,70477],2],[[70478,70479],3],[70480,2],[[70481,70486],3],[70487,2],[[70488,70492],3],[[70493,70499],2],[[70500,70501],3],[[70502,70508],2],[[70509,70511],3],[[70512,70516],2],[[70517,70655],3],[[70656,70730],2],[[70731,70735],2],[[70736,70745],2],[70746,2],[70747,2],[70748,3],[70749,2],[70750,2],[70751,2],[[70752,70753],2],[[70754,70783],3],[[70784,70853],2],[70854,2],[70855,2],[[70856,70863],3],[[70864,70873],2],[[70874,71039],3],[[71040,71093],2],[[71094,71095],3],[[71096,71104],2],[[71105,71113],2],[[71114,71127],2],[[71128,71133],2],[[71134,71167],3],[[71168,71232],2],[[71233,71235],2],[71236,2],[[71237,71247],3],[[71248,71257],2],[[71258,71263],3],[[71264,71276],2],[[71277,71295],3],[[71296,71351],2],[71352,2],[71353,2],[[71354,71359],3],[[71360,71369],2],[[71370,71423],3],[[71424,71449],2],[71450,2],[[71451,71452],3],[[71453,71467],2],[[71468,71471],3],[[71472,71481],2],[[71482,71487],2],[[71488,71494],2],[[71495,71679],3],[[71680,71738],2],[71739,2],[[71740,71839],3],[71840,1,\"𑣀\"],[71841,1,\"𑣁\"],[71842,1,\"𑣂\"],[71843,1,\"𑣃\"],[71844,1,\"𑣄\"],[71845,1,\"𑣅\"],[71846,1,\"𑣆\"],[71847,1,\"𑣇\"],[71848,1,\"𑣈\"],[71849,1,\"𑣉\"],[71850,1,\"𑣊\"],[71851,1,\"𑣋\"],[71852,1,\"𑣌\"],[71853,1,\"𑣍\"],[71854,1,\"𑣎\"],[71855,1,\"𑣏\"],[71856,1,\"𑣐\"],[71857,1,\"𑣑\"],[71858,1,\"𑣒\"],[71859,1,\"𑣓\"],[71860,1,\"𑣔\"],[71861,1,\"𑣕\"],[71862,1,\"𑣖\"],[71863,1,\"𑣗\"],[71864,1,\"𑣘\"],[71865,1,\"𑣙\"],[71866,1,\"𑣚\"],[71867,1,\"𑣛\"],[71868,1,\"𑣜\"],[71869,1,\"𑣝\"],[71870,1,\"𑣞\"],[71871,1,\"𑣟\"],[[71872,71913],2],[[71914,71922],2],[[71923,71934],3],[71935,2],[[71936,71942],2],[[71943,71944],3],[71945,2],[[71946,71947],3],[[71948,71955],2],[71956,3],[[71957,71958],2],[71959,3],[[71960,71989],2],[71990,3],[[71991,71992],2],[[71993,71994],3],[[71995,72003],2],[[72004,72006],2],[[72007,72015],3],[[72016,72025],2],[[72026,72095],3],[[72096,72103],2],[[72104,72105],3],[[72106,72151],2],[[72152,72153],3],[[72154,72161],2],[72162,2],[[72163,72164],2],[[72165,72191],3],[[72192,72254],2],[[72255,72262],2],[72263,2],[[72264,72271],3],[[72272,72323],2],[[72324,72325],2],[[72326,72345],2],[[72346,72348],2],[72349,2],[[72350,72354],2],[[72355,72367],3],[[72368,72383],2],[[72384,72440],2],[[72441,72703],3],[[72704,72712],2],[72713,3],[[72714,72758],2],[72759,3],[[72760,72768],2],[[72769,72773],2],[[72774,72783],3],[[72784,72793],2],[[72794,72812],2],[[72813,72815],3],[[72816,72817],2],[[72818,72847],2],[[72848,72849],3],[[72850,72871],2],[72872,3],[[72873,72886],2],[[72887,72959],3],[[72960,72966],2],[72967,3],[[72968,72969],2],[72970,3],[[72971,73014],2],[[73015,73017],3],[73018,2],[73019,3],[[73020,73021],2],[73022,3],[[73023,73031],2],[[73032,73039],3],[[73040,73049],2],[[73050,73055],3],[[73056,73061],2],[73062,3],[[73063,73064],2],[73065,3],[[73066,73102],2],[73103,3],[[73104,73105],2],[73106,3],[[73107,73112],2],[[73113,73119],3],[[73120,73129],2],[[73130,73439],3],[[73440,73462],2],[[73463,73464],2],[[73465,73647],3],[73648,2],[[73649,73663],3],[[73664,73713],2],[[73714,73726],3],[73727,2],[[73728,74606],2],[[74607,74648],2],[74649,2],[[74650,74751],3],[[74752,74850],2],[[74851,74862],2],[74863,3],[[74864,74867],2],[74868,2],[[74869,74879],3],[[74880,75075],2],[[75076,77711],3],[[77712,77808],2],[[77809,77810],2],[[77811,77823],3],[[77824,78894],2],[78895,3],[[78896,78904],3],[[78905,82943],3],[[82944,83526],2],[[83527,92159],3],[[92160,92728],2],[[92729,92735],3],[[92736,92766],2],[92767,3],[[92768,92777],2],[[92778,92781],3],[[92782,92783],2],[[92784,92862],2],[92863,3],[[92864,92873],2],[[92874,92879],3],[[92880,92909],2],[[92910,92911],3],[[92912,92916],2],[92917,2],[[92918,92927],3],[[92928,92982],2],[[92983,92991],2],[[92992,92995],2],[[92996,92997],2],[[92998,93007],3],[[93008,93017],2],[93018,3],[[93019,93025],2],[93026,3],[[93027,93047],2],[[93048,93052],3],[[93053,93071],2],[[93072,93759],3],[93760,1,\"𖹠\"],[93761,1,\"𖹡\"],[93762,1,\"𖹢\"],[93763,1,\"𖹣\"],[93764,1,\"𖹤\"],[93765,1,\"𖹥\"],[93766,1,\"𖹦\"],[93767,1,\"𖹧\"],[93768,1,\"𖹨\"],[93769,1,\"𖹩\"],[93770,1,\"𖹪\"],[93771,1,\"𖹫\"],[93772,1,\"𖹬\"],[93773,1,\"𖹭\"],[93774,1,\"𖹮\"],[93775,1,\"𖹯\"],[93776,1,\"𖹰\"],[93777,1,\"𖹱\"],[93778,1,\"𖹲\"],[93779,1,\"𖹳\"],[93780,1,\"𖹴\"],[93781,1,\"𖹵\"],[93782,1,\"𖹶\"],[93783,1,\"𖹷\"],[93784,1,\"𖹸\"],[93785,1,\"𖹹\"],[93786,1,\"𖹺\"],[93787,1,\"𖹻\"],[93788,1,\"𖹼\"],[93789,1,\"𖹽\"],[93790,1,\"𖹾\"],[93791,1,\"𖹿\"],[[93792,93823],2],[[93824,93850],2],[[93851,93951],3],[[93952,94020],2],[[94021,94026],2],[[94027,94030],3],[94031,2],[[94032,94078],2],[[94079,94087],2],[[94088,94094],3],[[94095,94111],2],[[94112,94175],3],[94176,2],[94177,2],[94178,2],[94179,2],[94180,2],[[94181,94191],3],[[94192,94193],2],[[94194,94207],3],[[94208,100332],2],[[100333,100337],2],[[100338,100343],2],[[100344,100351],3],[[100352,101106],2],[[101107,101589],2],[[101590,101631],3],[[101632,101640],2],[[101641,110575],3],[[110576,110579],2],[110580,3],[[110581,110587],2],[110588,3],[[110589,110590],2],[110591,3],[[110592,110593],2],[[110594,110878],2],[[110879,110882],2],[[110883,110927],3],[[110928,110930],2],[[110931,110947],3],[[110948,110951],2],[[110952,110959],3],[[110960,111355],2],[[111356,113663],3],[[113664,113770],2],[[113771,113775],3],[[113776,113788],2],[[113789,113791],3],[[113792,113800],2],[[113801,113807],3],[[113808,113817],2],[[113818,113819],3],[113820,2],[[113821,113822],2],[113823,2],[[113824,113827],7],[[113828,118527],3],[[118528,118573],2],[[118574,118575],3],[[118576,118598],2],[[118599,118607],3],[[118608,118723],2],[[118724,118783],3],[[118784,119029],2],[[119030,119039],3],[[119040,119078],2],[[119079,119080],3],[119081,2],[[119082,119133],2],[119134,1,\"𝅗𝅥\"],[119135,1,\"𝅘𝅥\"],[119136,1,\"𝅘𝅥𝅮\"],[119137,1,\"𝅘𝅥𝅯\"],[119138,1,\"𝅘𝅥𝅰\"],[119139,1,\"𝅘𝅥𝅱\"],[119140,1,\"𝅘𝅥𝅲\"],[[119141,119154],2],[[119155,119162],3],[[119163,119226],2],[119227,1,\"𝆹𝅥\"],[119228,1,\"𝆺𝅥\"],[119229,1,\"𝆹𝅥𝅮\"],[119230,1,\"𝆺𝅥𝅮\"],[119231,1,\"𝆹𝅥𝅯\"],[119232,1,\"𝆺𝅥𝅯\"],[[119233,119261],2],[[119262,119272],2],[[119273,119274],2],[[119275,119295],3],[[119296,119365],2],[[119366,119519],3],[[119520,119539],2],[[119540,119551],3],[[119552,119638],2],[[119639,119647],3],[[119648,119665],2],[[119666,119672],2],[[119673,119807],3],[119808,1,\"a\"],[119809,1,\"b\"],[119810,1,\"c\"],[119811,1,\"d\"],[119812,1,\"e\"],[119813,1,\"f\"],[119814,1,\"g\"],[119815,1,\"h\"],[119816,1,\"i\"],[119817,1,\"j\"],[119818,1,\"k\"],[119819,1,\"l\"],[119820,1,\"m\"],[119821,1,\"n\"],[119822,1,\"o\"],[119823,1,\"p\"],[119824,1,\"q\"],[119825,1,\"r\"],[119826,1,\"s\"],[119827,1,\"t\"],[119828,1,\"u\"],[119829,1,\"v\"],[119830,1,\"w\"],[119831,1,\"x\"],[119832,1,\"y\"],[119833,1,\"z\"],[119834,1,\"a\"],[119835,1,\"b\"],[119836,1,\"c\"],[119837,1,\"d\"],[119838,1,\"e\"],[119839,1,\"f\"],[119840,1,\"g\"],[119841,1,\"h\"],[119842,1,\"i\"],[119843,1,\"j\"],[119844,1,\"k\"],[119845,1,\"l\"],[119846,1,\"m\"],[119847,1,\"n\"],[119848,1,\"o\"],[119849,1,\"p\"],[119850,1,\"q\"],[119851,1,\"r\"],[119852,1,\"s\"],[119853,1,\"t\"],[119854,1,\"u\"],[119855,1,\"v\"],[119856,1,\"w\"],[119857,1,\"x\"],[119858,1,\"y\"],[119859,1,\"z\"],[119860,1,\"a\"],[119861,1,\"b\"],[119862,1,\"c\"],[119863,1,\"d\"],[119864,1,\"e\"],[119865,1,\"f\"],[119866,1,\"g\"],[119867,1,\"h\"],[119868,1,\"i\"],[119869,1,\"j\"],[119870,1,\"k\"],[119871,1,\"l\"],[119872,1,\"m\"],[119873,1,\"n\"],[119874,1,\"o\"],[119875,1,\"p\"],[119876,1,\"q\"],[119877,1,\"r\"],[119878,1,\"s\"],[119879,1,\"t\"],[119880,1,\"u\"],[119881,1,\"v\"],[119882,1,\"w\"],[119883,1,\"x\"],[119884,1,\"y\"],[119885,1,\"z\"],[119886,1,\"a\"],[119887,1,\"b\"],[119888,1,\"c\"],[119889,1,\"d\"],[119890,1,\"e\"],[119891,1,\"f\"],[119892,1,\"g\"],[119893,3],[119894,1,\"i\"],[119895,1,\"j\"],[119896,1,\"k\"],[119897,1,\"l\"],[119898,1,\"m\"],[119899,1,\"n\"],[119900,1,\"o\"],[119901,1,\"p\"],[119902,1,\"q\"],[119903,1,\"r\"],[119904,1,\"s\"],[119905,1,\"t\"],[119906,1,\"u\"],[119907,1,\"v\"],[119908,1,\"w\"],[119909,1,\"x\"],[119910,1,\"y\"],[119911,1,\"z\"],[119912,1,\"a\"],[119913,1,\"b\"],[119914,1,\"c\"],[119915,1,\"d\"],[119916,1,\"e\"],[119917,1,\"f\"],[119918,1,\"g\"],[119919,1,\"h\"],[119920,1,\"i\"],[119921,1,\"j\"],[119922,1,\"k\"],[119923,1,\"l\"],[119924,1,\"m\"],[119925,1,\"n\"],[119926,1,\"o\"],[119927,1,\"p\"],[119928,1,\"q\"],[119929,1,\"r\"],[119930,1,\"s\"],[119931,1,\"t\"],[119932,1,\"u\"],[119933,1,\"v\"],[119934,1,\"w\"],[119935,1,\"x\"],[119936,1,\"y\"],[119937,1,\"z\"],[119938,1,\"a\"],[119939,1,\"b\"],[119940,1,\"c\"],[119941,1,\"d\"],[119942,1,\"e\"],[119943,1,\"f\"],[119944,1,\"g\"],[119945,1,\"h\"],[119946,1,\"i\"],[119947,1,\"j\"],[119948,1,\"k\"],[119949,1,\"l\"],[119950,1,\"m\"],[119951,1,\"n\"],[119952,1,\"o\"],[119953,1,\"p\"],[119954,1,\"q\"],[119955,1,\"r\"],[119956,1,\"s\"],[119957,1,\"t\"],[119958,1,\"u\"],[119959,1,\"v\"],[119960,1,\"w\"],[119961,1,\"x\"],[119962,1,\"y\"],[119963,1,\"z\"],[119964,1,\"a\"],[119965,3],[119966,1,\"c\"],[119967,1,\"d\"],[[119968,119969],3],[119970,1,\"g\"],[[119971,119972],3],[119973,1,\"j\"],[119974,1,\"k\"],[[119975,119976],3],[119977,1,\"n\"],[119978,1,\"o\"],[119979,1,\"p\"],[119980,1,\"q\"],[119981,3],[119982,1,\"s\"],[119983,1,\"t\"],[119984,1,\"u\"],[119985,1,\"v\"],[119986,1,\"w\"],[119987,1,\"x\"],[119988,1,\"y\"],[119989,1,\"z\"],[119990,1,\"a\"],[119991,1,\"b\"],[119992,1,\"c\"],[119993,1,\"d\"],[119994,3],[119995,1,\"f\"],[119996,3],[119997,1,\"h\"],[119998,1,\"i\"],[119999,1,\"j\"],[120000,1,\"k\"],[120001,1,\"l\"],[120002,1,\"m\"],[120003,1,\"n\"],[120004,3],[120005,1,\"p\"],[120006,1,\"q\"],[120007,1,\"r\"],[120008,1,\"s\"],[120009,1,\"t\"],[120010,1,\"u\"],[120011,1,\"v\"],[120012,1,\"w\"],[120013,1,\"x\"],[120014,1,\"y\"],[120015,1,\"z\"],[120016,1,\"a\"],[120017,1,\"b\"],[120018,1,\"c\"],[120019,1,\"d\"],[120020,1,\"e\"],[120021,1,\"f\"],[120022,1,\"g\"],[120023,1,\"h\"],[120024,1,\"i\"],[120025,1,\"j\"],[120026,1,\"k\"],[120027,1,\"l\"],[120028,1,\"m\"],[120029,1,\"n\"],[120030,1,\"o\"],[120031,1,\"p\"],[120032,1,\"q\"],[120033,1,\"r\"],[120034,1,\"s\"],[120035,1,\"t\"],[120036,1,\"u\"],[120037,1,\"v\"],[120038,1,\"w\"],[120039,1,\"x\"],[120040,1,\"y\"],[120041,1,\"z\"],[120042,1,\"a\"],[120043,1,\"b\"],[120044,1,\"c\"],[120045,1,\"d\"],[120046,1,\"e\"],[120047,1,\"f\"],[120048,1,\"g\"],[120049,1,\"h\"],[120050,1,\"i\"],[120051,1,\"j\"],[120052,1,\"k\"],[120053,1,\"l\"],[120054,1,\"m\"],[120055,1,\"n\"],[120056,1,\"o\"],[120057,1,\"p\"],[120058,1,\"q\"],[120059,1,\"r\"],[120060,1,\"s\"],[120061,1,\"t\"],[120062,1,\"u\"],[120063,1,\"v\"],[120064,1,\"w\"],[120065,1,\"x\"],[120066,1,\"y\"],[120067,1,\"z\"],[120068,1,\"a\"],[120069,1,\"b\"],[120070,3],[120071,1,\"d\"],[120072,1,\"e\"],[120073,1,\"f\"],[120074,1,\"g\"],[[120075,120076],3],[120077,1,\"j\"],[120078,1,\"k\"],[120079,1,\"l\"],[120080,1,\"m\"],[120081,1,\"n\"],[120082,1,\"o\"],[120083,1,\"p\"],[120084,1,\"q\"],[120085,3],[120086,1,\"s\"],[120087,1,\"t\"],[120088,1,\"u\"],[120089,1,\"v\"],[120090,1,\"w\"],[120091,1,\"x\"],[120092,1,\"y\"],[120093,3],[120094,1,\"a\"],[120095,1,\"b\"],[120096,1,\"c\"],[120097,1,\"d\"],[120098,1,\"e\"],[120099,1,\"f\"],[120100,1,\"g\"],[120101,1,\"h\"],[120102,1,\"i\"],[120103,1,\"j\"],[120104,1,\"k\"],[120105,1,\"l\"],[120106,1,\"m\"],[120107,1,\"n\"],[120108,1,\"o\"],[120109,1,\"p\"],[120110,1,\"q\"],[120111,1,\"r\"],[120112,1,\"s\"],[120113,1,\"t\"],[120114,1,\"u\"],[120115,1,\"v\"],[120116,1,\"w\"],[120117,1,\"x\"],[120118,1,\"y\"],[120119,1,\"z\"],[120120,1,\"a\"],[120121,1,\"b\"],[120122,3],[120123,1,\"d\"],[120124,1,\"e\"],[120125,1,\"f\"],[120126,1,\"g\"],[120127,3],[120128,1,\"i\"],[120129,1,\"j\"],[120130,1,\"k\"],[120131,1,\"l\"],[120132,1,\"m\"],[120133,3],[120134,1,\"o\"],[[120135,120137],3],[120138,1,\"s\"],[120139,1,\"t\"],[120140,1,\"u\"],[120141,1,\"v\"],[120142,1,\"w\"],[120143,1,\"x\"],[120144,1,\"y\"],[120145,3],[120146,1,\"a\"],[120147,1,\"b\"],[120148,1,\"c\"],[120149,1,\"d\"],[120150,1,\"e\"],[120151,1,\"f\"],[120152,1,\"g\"],[120153,1,\"h\"],[120154,1,\"i\"],[120155,1,\"j\"],[120156,1,\"k\"],[120157,1,\"l\"],[120158,1,\"m\"],[120159,1,\"n\"],[120160,1,\"o\"],[120161,1,\"p\"],[120162,1,\"q\"],[120163,1,\"r\"],[120164,1,\"s\"],[120165,1,\"t\"],[120166,1,\"u\"],[120167,1,\"v\"],[120168,1,\"w\"],[120169,1,\"x\"],[120170,1,\"y\"],[120171,1,\"z\"],[120172,1,\"a\"],[120173,1,\"b\"],[120174,1,\"c\"],[120175,1,\"d\"],[120176,1,\"e\"],[120177,1,\"f\"],[120178,1,\"g\"],[120179,1,\"h\"],[120180,1,\"i\"],[120181,1,\"j\"],[120182,1,\"k\"],[120183,1,\"l\"],[120184,1,\"m\"],[120185,1,\"n\"],[120186,1,\"o\"],[120187,1,\"p\"],[120188,1,\"q\"],[120189,1,\"r\"],[120190,1,\"s\"],[120191,1,\"t\"],[120192,1,\"u\"],[120193,1,\"v\"],[120194,1,\"w\"],[120195,1,\"x\"],[120196,1,\"y\"],[120197,1,\"z\"],[120198,1,\"a\"],[120199,1,\"b\"],[120200,1,\"c\"],[120201,1,\"d\"],[120202,1,\"e\"],[120203,1,\"f\"],[120204,1,\"g\"],[120205,1,\"h\"],[120206,1,\"i\"],[120207,1,\"j\"],[120208,1,\"k\"],[120209,1,\"l\"],[120210,1,\"m\"],[120211,1,\"n\"],[120212,1,\"o\"],[120213,1,\"p\"],[120214,1,\"q\"],[120215,1,\"r\"],[120216,1,\"s\"],[120217,1,\"t\"],[120218,1,\"u\"],[120219,1,\"v\"],[120220,1,\"w\"],[120221,1,\"x\"],[120222,1,\"y\"],[120223,1,\"z\"],[120224,1,\"a\"],[120225,1,\"b\"],[120226,1,\"c\"],[120227,1,\"d\"],[120228,1,\"e\"],[120229,1,\"f\"],[120230,1,\"g\"],[120231,1,\"h\"],[120232,1,\"i\"],[120233,1,\"j\"],[120234,1,\"k\"],[120235,1,\"l\"],[120236,1,\"m\"],[120237,1,\"n\"],[120238,1,\"o\"],[120239,1,\"p\"],[120240,1,\"q\"],[120241,1,\"r\"],[120242,1,\"s\"],[120243,1,\"t\"],[120244,1,\"u\"],[120245,1,\"v\"],[120246,1,\"w\"],[120247,1,\"x\"],[120248,1,\"y\"],[120249,1,\"z\"],[120250,1,\"a\"],[120251,1,\"b\"],[120252,1,\"c\"],[120253,1,\"d\"],[120254,1,\"e\"],[120255,1,\"f\"],[120256,1,\"g\"],[120257,1,\"h\"],[120258,1,\"i\"],[120259,1,\"j\"],[120260,1,\"k\"],[120261,1,\"l\"],[120262,1,\"m\"],[120263,1,\"n\"],[120264,1,\"o\"],[120265,1,\"p\"],[120266,1,\"q\"],[120267,1,\"r\"],[120268,1,\"s\"],[120269,1,\"t\"],[120270,1,\"u\"],[120271,1,\"v\"],[120272,1,\"w\"],[120273,1,\"x\"],[120274,1,\"y\"],[120275,1,\"z\"],[120276,1,\"a\"],[120277,1,\"b\"],[120278,1,\"c\"],[120279,1,\"d\"],[120280,1,\"e\"],[120281,1,\"f\"],[120282,1,\"g\"],[120283,1,\"h\"],[120284,1,\"i\"],[120285,1,\"j\"],[120286,1,\"k\"],[120287,1,\"l\"],[120288,1,\"m\"],[120289,1,\"n\"],[120290,1,\"o\"],[120291,1,\"p\"],[120292,1,\"q\"],[120293,1,\"r\"],[120294,1,\"s\"],[120295,1,\"t\"],[120296,1,\"u\"],[120297,1,\"v\"],[120298,1,\"w\"],[120299,1,\"x\"],[120300,1,\"y\"],[120301,1,\"z\"],[120302,1,\"a\"],[120303,1,\"b\"],[120304,1,\"c\"],[120305,1,\"d\"],[120306,1,\"e\"],[120307,1,\"f\"],[120308,1,\"g\"],[120309,1,\"h\"],[120310,1,\"i\"],[120311,1,\"j\"],[120312,1,\"k\"],[120313,1,\"l\"],[120314,1,\"m\"],[120315,1,\"n\"],[120316,1,\"o\"],[120317,1,\"p\"],[120318,1,\"q\"],[120319,1,\"r\"],[120320,1,\"s\"],[120321,1,\"t\"],[120322,1,\"u\"],[120323,1,\"v\"],[120324,1,\"w\"],[120325,1,\"x\"],[120326,1,\"y\"],[120327,1,\"z\"],[120328,1,\"a\"],[120329,1,\"b\"],[120330,1,\"c\"],[120331,1,\"d\"],[120332,1,\"e\"],[120333,1,\"f\"],[120334,1,\"g\"],[120335,1,\"h\"],[120336,1,\"i\"],[120337,1,\"j\"],[120338,1,\"k\"],[120339,1,\"l\"],[120340,1,\"m\"],[120341,1,\"n\"],[120342,1,\"o\"],[120343,1,\"p\"],[120344,1,\"q\"],[120345,1,\"r\"],[120346,1,\"s\"],[120347,1,\"t\"],[120348,1,\"u\"],[120349,1,\"v\"],[120350,1,\"w\"],[120351,1,\"x\"],[120352,1,\"y\"],[120353,1,\"z\"],[120354,1,\"a\"],[120355,1,\"b\"],[120356,1,\"c\"],[120357,1,\"d\"],[120358,1,\"e\"],[120359,1,\"f\"],[120360,1,\"g\"],[120361,1,\"h\"],[120362,1,\"i\"],[120363,1,\"j\"],[120364,1,\"k\"],[120365,1,\"l\"],[120366,1,\"m\"],[120367,1,\"n\"],[120368,1,\"o\"],[120369,1,\"p\"],[120370,1,\"q\"],[120371,1,\"r\"],[120372,1,\"s\"],[120373,1,\"t\"],[120374,1,\"u\"],[120375,1,\"v\"],[120376,1,\"w\"],[120377,1,\"x\"],[120378,1,\"y\"],[120379,1,\"z\"],[120380,1,\"a\"],[120381,1,\"b\"],[120382,1,\"c\"],[120383,1,\"d\"],[120384,1,\"e\"],[120385,1,\"f\"],[120386,1,\"g\"],[120387,1,\"h\"],[120388,1,\"i\"],[120389,1,\"j\"],[120390,1,\"k\"],[120391,1,\"l\"],[120392,1,\"m\"],[120393,1,\"n\"],[120394,1,\"o\"],[120395,1,\"p\"],[120396,1,\"q\"],[120397,1,\"r\"],[120398,1,\"s\"],[120399,1,\"t\"],[120400,1,\"u\"],[120401,1,\"v\"],[120402,1,\"w\"],[120403,1,\"x\"],[120404,1,\"y\"],[120405,1,\"z\"],[120406,1,\"a\"],[120407,1,\"b\"],[120408,1,\"c\"],[120409,1,\"d\"],[120410,1,\"e\"],[120411,1,\"f\"],[120412,1,\"g\"],[120413,1,\"h\"],[120414,1,\"i\"],[120415,1,\"j\"],[120416,1,\"k\"],[120417,1,\"l\"],[120418,1,\"m\"],[120419,1,\"n\"],[120420,1,\"o\"],[120421,1,\"p\"],[120422,1,\"q\"],[120423,1,\"r\"],[120424,1,\"s\"],[120425,1,\"t\"],[120426,1,\"u\"],[120427,1,\"v\"],[120428,1,\"w\"],[120429,1,\"x\"],[120430,1,\"y\"],[120431,1,\"z\"],[120432,1,\"a\"],[120433,1,\"b\"],[120434,1,\"c\"],[120435,1,\"d\"],[120436,1,\"e\"],[120437,1,\"f\"],[120438,1,\"g\"],[120439,1,\"h\"],[120440,1,\"i\"],[120441,1,\"j\"],[120442,1,\"k\"],[120443,1,\"l\"],[120444,1,\"m\"],[120445,1,\"n\"],[120446,1,\"o\"],[120447,1,\"p\"],[120448,1,\"q\"],[120449,1,\"r\"],[120450,1,\"s\"],[120451,1,\"t\"],[120452,1,\"u\"],[120453,1,\"v\"],[120454,1,\"w\"],[120455,1,\"x\"],[120456,1,\"y\"],[120457,1,\"z\"],[120458,1,\"a\"],[120459,1,\"b\"],[120460,1,\"c\"],[120461,1,\"d\"],[120462,1,\"e\"],[120463,1,\"f\"],[120464,1,\"g\"],[120465,1,\"h\"],[120466,1,\"i\"],[120467,1,\"j\"],[120468,1,\"k\"],[120469,1,\"l\"],[120470,1,\"m\"],[120471,1,\"n\"],[120472,1,\"o\"],[120473,1,\"p\"],[120474,1,\"q\"],[120475,1,\"r\"],[120476,1,\"s\"],[120477,1,\"t\"],[120478,1,\"u\"],[120479,1,\"v\"],[120480,1,\"w\"],[120481,1,\"x\"],[120482,1,\"y\"],[120483,1,\"z\"],[120484,1,\"ı\"],[120485,1,\"ȷ\"],[[120486,120487],3],[120488,1,\"α\"],[120489,1,\"β\"],[120490,1,\"γ\"],[120491,1,\"δ\"],[120492,1,\"ε\"],[120493,1,\"ζ\"],[120494,1,\"η\"],[120495,1,\"θ\"],[120496,1,\"ι\"],[120497,1,\"κ\"],[120498,1,\"λ\"],[120499,1,\"μ\"],[120500,1,\"ν\"],[120501,1,\"ξ\"],[120502,1,\"ο\"],[120503,1,\"π\"],[120504,1,\"ρ\"],[120505,1,\"θ\"],[120506,1,\"σ\"],[120507,1,\"τ\"],[120508,1,\"υ\"],[120509,1,\"φ\"],[120510,1,\"χ\"],[120511,1,\"ψ\"],[120512,1,\"ω\"],[120513,1,\"∇\"],[120514,1,\"α\"],[120515,1,\"β\"],[120516,1,\"γ\"],[120517,1,\"δ\"],[120518,1,\"ε\"],[120519,1,\"ζ\"],[120520,1,\"η\"],[120521,1,\"θ\"],[120522,1,\"ι\"],[120523,1,\"κ\"],[120524,1,\"λ\"],[120525,1,\"μ\"],[120526,1,\"ν\"],[120527,1,\"ξ\"],[120528,1,\"ο\"],[120529,1,\"π\"],[120530,1,\"ρ\"],[[120531,120532],1,\"σ\"],[120533,1,\"τ\"],[120534,1,\"υ\"],[120535,1,\"φ\"],[120536,1,\"χ\"],[120537,1,\"ψ\"],[120538,1,\"ω\"],[120539,1,\"∂\"],[120540,1,\"ε\"],[120541,1,\"θ\"],[120542,1,\"κ\"],[120543,1,\"φ\"],[120544,1,\"ρ\"],[120545,1,\"π\"],[120546,1,\"α\"],[120547,1,\"β\"],[120548,1,\"γ\"],[120549,1,\"δ\"],[120550,1,\"ε\"],[120551,1,\"ζ\"],[120552,1,\"η\"],[120553,1,\"θ\"],[120554,1,\"ι\"],[120555,1,\"κ\"],[120556,1,\"λ\"],[120557,1,\"μ\"],[120558,1,\"ν\"],[120559,1,\"ξ\"],[120560,1,\"ο\"],[120561,1,\"π\"],[120562,1,\"ρ\"],[120563,1,\"θ\"],[120564,1,\"σ\"],[120565,1,\"τ\"],[120566,1,\"υ\"],[120567,1,\"φ\"],[120568,1,\"χ\"],[120569,1,\"ψ\"],[120570,1,\"ω\"],[120571,1,\"∇\"],[120572,1,\"α\"],[120573,1,\"β\"],[120574,1,\"γ\"],[120575,1,\"δ\"],[120576,1,\"ε\"],[120577,1,\"ζ\"],[120578,1,\"η\"],[120579,1,\"θ\"],[120580,1,\"ι\"],[120581,1,\"κ\"],[120582,1,\"λ\"],[120583,1,\"μ\"],[120584,1,\"ν\"],[120585,1,\"ξ\"],[120586,1,\"ο\"],[120587,1,\"π\"],[120588,1,\"ρ\"],[[120589,120590],1,\"σ\"],[120591,1,\"τ\"],[120592,1,\"υ\"],[120593,1,\"φ\"],[120594,1,\"χ\"],[120595,1,\"ψ\"],[120596,1,\"ω\"],[120597,1,\"∂\"],[120598,1,\"ε\"],[120599,1,\"θ\"],[120600,1,\"κ\"],[120601,1,\"φ\"],[120602,1,\"ρ\"],[120603,1,\"π\"],[120604,1,\"α\"],[120605,1,\"β\"],[120606,1,\"γ\"],[120607,1,\"δ\"],[120608,1,\"ε\"],[120609,1,\"ζ\"],[120610,1,\"η\"],[120611,1,\"θ\"],[120612,1,\"ι\"],[120613,1,\"κ\"],[120614,1,\"λ\"],[120615,1,\"μ\"],[120616,1,\"ν\"],[120617,1,\"ξ\"],[120618,1,\"ο\"],[120619,1,\"π\"],[120620,1,\"ρ\"],[120621,1,\"θ\"],[120622,1,\"σ\"],[120623,1,\"τ\"],[120624,1,\"υ\"],[120625,1,\"φ\"],[120626,1,\"χ\"],[120627,1,\"ψ\"],[120628,1,\"ω\"],[120629,1,\"∇\"],[120630,1,\"α\"],[120631,1,\"β\"],[120632,1,\"γ\"],[120633,1,\"δ\"],[120634,1,\"ε\"],[120635,1,\"ζ\"],[120636,1,\"η\"],[120637,1,\"θ\"],[120638,1,\"ι\"],[120639,1,\"κ\"],[120640,1,\"λ\"],[120641,1,\"μ\"],[120642,1,\"ν\"],[120643,1,\"ξ\"],[120644,1,\"ο\"],[120645,1,\"π\"],[120646,1,\"ρ\"],[[120647,120648],1,\"σ\"],[120649,1,\"τ\"],[120650,1,\"υ\"],[120651,1,\"φ\"],[120652,1,\"χ\"],[120653,1,\"ψ\"],[120654,1,\"ω\"],[120655,1,\"∂\"],[120656,1,\"ε\"],[120657,1,\"θ\"],[120658,1,\"κ\"],[120659,1,\"φ\"],[120660,1,\"ρ\"],[120661,1,\"π\"],[120662,1,\"α\"],[120663,1,\"β\"],[120664,1,\"γ\"],[120665,1,\"δ\"],[120666,1,\"ε\"],[120667,1,\"ζ\"],[120668,1,\"η\"],[120669,1,\"θ\"],[120670,1,\"ι\"],[120671,1,\"κ\"],[120672,1,\"λ\"],[120673,1,\"μ\"],[120674,1,\"ν\"],[120675,1,\"ξ\"],[120676,1,\"ο\"],[120677,1,\"π\"],[120678,1,\"ρ\"],[120679,1,\"θ\"],[120680,1,\"σ\"],[120681,1,\"τ\"],[120682,1,\"υ\"],[120683,1,\"φ\"],[120684,1,\"χ\"],[120685,1,\"ψ\"],[120686,1,\"ω\"],[120687,1,\"∇\"],[120688,1,\"α\"],[120689,1,\"β\"],[120690,1,\"γ\"],[120691,1,\"δ\"],[120692,1,\"ε\"],[120693,1,\"ζ\"],[120694,1,\"η\"],[120695,1,\"θ\"],[120696,1,\"ι\"],[120697,1,\"κ\"],[120698,1,\"λ\"],[120699,1,\"μ\"],[120700,1,\"ν\"],[120701,1,\"ξ\"],[120702,1,\"ο\"],[120703,1,\"π\"],[120704,1,\"ρ\"],[[120705,120706],1,\"σ\"],[120707,1,\"τ\"],[120708,1,\"υ\"],[120709,1,\"φ\"],[120710,1,\"χ\"],[120711,1,\"ψ\"],[120712,1,\"ω\"],[120713,1,\"∂\"],[120714,1,\"ε\"],[120715,1,\"θ\"],[120716,1,\"κ\"],[120717,1,\"φ\"],[120718,1,\"ρ\"],[120719,1,\"π\"],[120720,1,\"α\"],[120721,1,\"β\"],[120722,1,\"γ\"],[120723,1,\"δ\"],[120724,1,\"ε\"],[120725,1,\"ζ\"],[120726,1,\"η\"],[120727,1,\"θ\"],[120728,1,\"ι\"],[120729,1,\"κ\"],[120730,1,\"λ\"],[120731,1,\"μ\"],[120732,1,\"ν\"],[120733,1,\"ξ\"],[120734,1,\"ο\"],[120735,1,\"π\"],[120736,1,\"ρ\"],[120737,1,\"θ\"],[120738,1,\"σ\"],[120739,1,\"τ\"],[120740,1,\"υ\"],[120741,1,\"φ\"],[120742,1,\"χ\"],[120743,1,\"ψ\"],[120744,1,\"ω\"],[120745,1,\"∇\"],[120746,1,\"α\"],[120747,1,\"β\"],[120748,1,\"γ\"],[120749,1,\"δ\"],[120750,1,\"ε\"],[120751,1,\"ζ\"],[120752,1,\"η\"],[120753,1,\"θ\"],[120754,1,\"ι\"],[120755,1,\"κ\"],[120756,1,\"λ\"],[120757,1,\"μ\"],[120758,1,\"ν\"],[120759,1,\"ξ\"],[120760,1,\"ο\"],[120761,1,\"π\"],[120762,1,\"ρ\"],[[120763,120764],1,\"σ\"],[120765,1,\"τ\"],[120766,1,\"υ\"],[120767,1,\"φ\"],[120768,1,\"χ\"],[120769,1,\"ψ\"],[120770,1,\"ω\"],[120771,1,\"∂\"],[120772,1,\"ε\"],[120773,1,\"θ\"],[120774,1,\"κ\"],[120775,1,\"φ\"],[120776,1,\"ρ\"],[120777,1,\"π\"],[[120778,120779],1,\"ϝ\"],[[120780,120781],3],[120782,1,\"0\"],[120783,1,\"1\"],[120784,1,\"2\"],[120785,1,\"3\"],[120786,1,\"4\"],[120787,1,\"5\"],[120788,1,\"6\"],[120789,1,\"7\"],[120790,1,\"8\"],[120791,1,\"9\"],[120792,1,\"0\"],[120793,1,\"1\"],[120794,1,\"2\"],[120795,1,\"3\"],[120796,1,\"4\"],[120797,1,\"5\"],[120798,1,\"6\"],[120799,1,\"7\"],[120800,1,\"8\"],[120801,1,\"9\"],[120802,1,\"0\"],[120803,1,\"1\"],[120804,1,\"2\"],[120805,1,\"3\"],[120806,1,\"4\"],[120807,1,\"5\"],[120808,1,\"6\"],[120809,1,\"7\"],[120810,1,\"8\"],[120811,1,\"9\"],[120812,1,\"0\"],[120813,1,\"1\"],[120814,1,\"2\"],[120815,1,\"3\"],[120816,1,\"4\"],[120817,1,\"5\"],[120818,1,\"6\"],[120819,1,\"7\"],[120820,1,\"8\"],[120821,1,\"9\"],[120822,1,\"0\"],[120823,1,\"1\"],[120824,1,\"2\"],[120825,1,\"3\"],[120826,1,\"4\"],[120827,1,\"5\"],[120828,1,\"6\"],[120829,1,\"7\"],[120830,1,\"8\"],[120831,1,\"9\"],[[120832,121343],2],[[121344,121398],2],[[121399,121402],2],[[121403,121452],2],[[121453,121460],2],[121461,2],[[121462,121475],2],[121476,2],[[121477,121483],2],[[121484,121498],3],[[121499,121503],2],[121504,3],[[121505,121519],2],[[121520,122623],3],[[122624,122654],2],[[122655,122879],3],[[122880,122886],2],[122887,3],[[122888,122904],2],[[122905,122906],3],[[122907,122913],2],[122914,3],[[122915,122916],2],[122917,3],[[122918,122922],2],[[122923,123135],3],[[123136,123180],2],[[123181,123183],3],[[123184,123197],2],[[123198,123199],3],[[123200,123209],2],[[123210,123213],3],[123214,2],[123215,2],[[123216,123535],3],[[123536,123566],2],[[123567,123583],3],[[123584,123641],2],[[123642,123646],3],[123647,2],[[123648,124895],3],[[124896,124902],2],[124903,3],[[124904,124907],2],[124908,3],[[124909,124910],2],[124911,3],[[124912,124926],2],[124927,3],[[124928,125124],2],[[125125,125126],3],[[125127,125135],2],[[125136,125142],2],[[125143,125183],3],[125184,1,\"𞤢\"],[125185,1,\"𞤣\"],[125186,1,\"𞤤\"],[125187,1,\"𞤥\"],[125188,1,\"𞤦\"],[125189,1,\"𞤧\"],[125190,1,\"𞤨\"],[125191,1,\"𞤩\"],[125192,1,\"𞤪\"],[125193,1,\"𞤫\"],[125194,1,\"𞤬\"],[125195,1,\"𞤭\"],[125196,1,\"𞤮\"],[125197,1,\"𞤯\"],[125198,1,\"𞤰\"],[125199,1,\"𞤱\"],[125200,1,\"𞤲\"],[125201,1,\"𞤳\"],[125202,1,\"𞤴\"],[125203,1,\"𞤵\"],[125204,1,\"𞤶\"],[125205,1,\"𞤷\"],[125206,1,\"𞤸\"],[125207,1,\"𞤹\"],[125208,1,\"𞤺\"],[125209,1,\"𞤻\"],[125210,1,\"𞤼\"],[125211,1,\"𞤽\"],[125212,1,\"𞤾\"],[125213,1,\"𞤿\"],[125214,1,\"𞥀\"],[125215,1,\"𞥁\"],[125216,1,\"𞥂\"],[125217,1,\"𞥃\"],[[125218,125258],2],[125259,2],[[125260,125263],3],[[125264,125273],2],[[125274,125277],3],[[125278,125279],2],[[125280,126064],3],[[126065,126132],2],[[126133,126208],3],[[126209,126269],2],[[126270,126463],3],[126464,1,\"ا\"],[126465,1,\"ب\"],[126466,1,\"ج\"],[126467,1,\"د\"],[126468,3],[126469,1,\"و\"],[126470,1,\"ز\"],[126471,1,\"ح\"],[126472,1,\"ط\"],[126473,1,\"ي\"],[126474,1,\"ك\"],[126475,1,\"ل\"],[126476,1,\"م\"],[126477,1,\"ن\"],[126478,1,\"س\"],[126479,1,\"ع\"],[126480,1,\"ف\"],[126481,1,\"ص\"],[126482,1,\"ق\"],[126483,1,\"ر\"],[126484,1,\"ش\"],[126485,1,\"ت\"],[126486,1,\"ث\"],[126487,1,\"خ\"],[126488,1,\"ذ\"],[126489,1,\"ض\"],[126490,1,\"ظ\"],[126491,1,\"غ\"],[126492,1,\"ٮ\"],[126493,1,\"ں\"],[126494,1,\"ڡ\"],[126495,1,\"ٯ\"],[126496,3],[126497,1,\"ب\"],[126498,1,\"ج\"],[126499,3],[126500,1,\"ه\"],[[126501,126502],3],[126503,1,\"ح\"],[126504,3],[126505,1,\"ي\"],[126506,1,\"ك\"],[126507,1,\"ل\"],[126508,1,\"م\"],[126509,1,\"ن\"],[126510,1,\"س\"],[126511,1,\"ع\"],[126512,1,\"ف\"],[126513,1,\"ص\"],[126514,1,\"ق\"],[126515,3],[126516,1,\"ش\"],[126517,1,\"ت\"],[126518,1,\"ث\"],[126519,1,\"خ\"],[126520,3],[126521,1,\"ض\"],[126522,3],[126523,1,\"غ\"],[[126524,126529],3],[126530,1,\"ج\"],[[126531,126534],3],[126535,1,\"ح\"],[126536,3],[126537,1,\"ي\"],[126538,3],[126539,1,\"ل\"],[126540,3],[126541,1,\"ن\"],[126542,1,\"س\"],[126543,1,\"ع\"],[126544,3],[126545,1,\"ص\"],[126546,1,\"ق\"],[126547,3],[126548,1,\"ش\"],[[126549,126550],3],[126551,1,\"خ\"],[126552,3],[126553,1,\"ض\"],[126554,3],[126555,1,\"غ\"],[126556,3],[126557,1,\"ں\"],[126558,3],[126559,1,\"ٯ\"],[126560,3],[126561,1,\"ب\"],[126562,1,\"ج\"],[126563,3],[126564,1,\"ه\"],[[126565,126566],3],[126567,1,\"ح\"],[126568,1,\"ط\"],[126569,1,\"ي\"],[126570,1,\"ك\"],[126571,3],[126572,1,\"م\"],[126573,1,\"ن\"],[126574,1,\"س\"],[126575,1,\"ع\"],[126576,1,\"ف\"],[126577,1,\"ص\"],[126578,1,\"ق\"],[126579,3],[126580,1,\"ش\"],[126581,1,\"ت\"],[126582,1,\"ث\"],[126583,1,\"خ\"],[126584,3],[126585,1,\"ض\"],[126586,1,\"ظ\"],[126587,1,\"غ\"],[126588,1,\"ٮ\"],[126589,3],[126590,1,\"ڡ\"],[126591,3],[126592,1,\"ا\"],[126593,1,\"ب\"],[126594,1,\"ج\"],[126595,1,\"د\"],[126596,1,\"ه\"],[126597,1,\"و\"],[126598,1,\"ز\"],[126599,1,\"ح\"],[126600,1,\"ط\"],[126601,1,\"ي\"],[126602,3],[126603,1,\"ل\"],[126604,1,\"م\"],[126605,1,\"ن\"],[126606,1,\"س\"],[126607,1,\"ع\"],[126608,1,\"ف\"],[126609,1,\"ص\"],[126610,1,\"ق\"],[126611,1,\"ر\"],[126612,1,\"ش\"],[126613,1,\"ت\"],[126614,1,\"ث\"],[126615,1,\"خ\"],[126616,1,\"ذ\"],[126617,1,\"ض\"],[126618,1,\"ظ\"],[126619,1,\"غ\"],[[126620,126624],3],[126625,1,\"ب\"],[126626,1,\"ج\"],[126627,1,\"د\"],[126628,3],[126629,1,\"و\"],[126630,1,\"ز\"],[126631,1,\"ح\"],[126632,1,\"ط\"],[126633,1,\"ي\"],[126634,3],[126635,1,\"ل\"],[126636,1,\"م\"],[126637,1,\"ن\"],[126638,1,\"س\"],[126639,1,\"ع\"],[126640,1,\"ف\"],[126641,1,\"ص\"],[126642,1,\"ق\"],[126643,1,\"ر\"],[126644,1,\"ش\"],[126645,1,\"ت\"],[126646,1,\"ث\"],[126647,1,\"خ\"],[126648,1,\"ذ\"],[126649,1,\"ض\"],[126650,1,\"ظ\"],[126651,1,\"غ\"],[[126652,126703],3],[[126704,126705],2],[[126706,126975],3],[[126976,127019],2],[[127020,127023],3],[[127024,127123],2],[[127124,127135],3],[[127136,127150],2],[[127151,127152],3],[[127153,127166],2],[127167,2],[127168,3],[[127169,127183],2],[127184,3],[[127185,127199],2],[[127200,127221],2],[[127222,127231],3],[127232,3],[127233,5,\"0,\"],[127234,5,\"1,\"],[127235,5,\"2,\"],[127236,5,\"3,\"],[127237,5,\"4,\"],[127238,5,\"5,\"],[127239,5,\"6,\"],[127240,5,\"7,\"],[127241,5,\"8,\"],[127242,5,\"9,\"],[[127243,127244],2],[[127245,127247],2],[127248,5,\"(a)\"],[127249,5,\"(b)\"],[127250,5,\"(c)\"],[127251,5,\"(d)\"],[127252,5,\"(e)\"],[127253,5,\"(f)\"],[127254,5,\"(g)\"],[127255,5,\"(h)\"],[127256,5,\"(i)\"],[127257,5,\"(j)\"],[127258,5,\"(k)\"],[127259,5,\"(l)\"],[127260,5,\"(m)\"],[127261,5,\"(n)\"],[127262,5,\"(o)\"],[127263,5,\"(p)\"],[127264,5,\"(q)\"],[127265,5,\"(r)\"],[127266,5,\"(s)\"],[127267,5,\"(t)\"],[127268,5,\"(u)\"],[127269,5,\"(v)\"],[127270,5,\"(w)\"],[127271,5,\"(x)\"],[127272,5,\"(y)\"],[127273,5,\"(z)\"],[127274,1,\"〔s〕\"],[127275,1,\"c\"],[127276,1,\"r\"],[127277,1,\"cd\"],[127278,1,\"wz\"],[127279,2],[127280,1,\"a\"],[127281,1,\"b\"],[127282,1,\"c\"],[127283,1,\"d\"],[127284,1,\"e\"],[127285,1,\"f\"],[127286,1,\"g\"],[127287,1,\"h\"],[127288,1,\"i\"],[127289,1,\"j\"],[127290,1,\"k\"],[127291,1,\"l\"],[127292,1,\"m\"],[127293,1,\"n\"],[127294,1,\"o\"],[127295,1,\"p\"],[127296,1,\"q\"],[127297,1,\"r\"],[127298,1,\"s\"],[127299,1,\"t\"],[127300,1,\"u\"],[127301,1,\"v\"],[127302,1,\"w\"],[127303,1,\"x\"],[127304,1,\"y\"],[127305,1,\"z\"],[127306,1,\"hv\"],[127307,1,\"mv\"],[127308,1,\"sd\"],[127309,1,\"ss\"],[127310,1,\"ppv\"],[127311,1,\"wc\"],[[127312,127318],2],[127319,2],[[127320,127326],2],[127327,2],[[127328,127337],2],[127338,1,\"mc\"],[127339,1,\"md\"],[127340,1,\"mr\"],[[127341,127343],2],[[127344,127352],2],[127353,2],[127354,2],[[127355,127356],2],[[127357,127358],2],[127359,2],[[127360,127369],2],[[127370,127373],2],[[127374,127375],2],[127376,1,\"dj\"],[[127377,127386],2],[[127387,127404],2],[127405,2],[[127406,127461],3],[[127462,127487],2],[127488,1,\"ほか\"],[127489,1,\"ココ\"],[127490,1,\"サ\"],[[127491,127503],3],[127504,1,\"手\"],[127505,1,\"字\"],[127506,1,\"双\"],[127507,1,\"デ\"],[127508,1,\"二\"],[127509,1,\"多\"],[127510,1,\"解\"],[127511,1,\"天\"],[127512,1,\"交\"],[127513,1,\"映\"],[127514,1,\"無\"],[127515,1,\"料\"],[127516,1,\"前\"],[127517,1,\"後\"],[127518,1,\"再\"],[127519,1,\"新\"],[127520,1,\"初\"],[127521,1,\"終\"],[127522,1,\"生\"],[127523,1,\"販\"],[127524,1,\"声\"],[127525,1,\"吹\"],[127526,1,\"演\"],[127527,1,\"投\"],[127528,1,\"捕\"],[127529,1,\"一\"],[127530,1,\"三\"],[127531,1,\"遊\"],[127532,1,\"左\"],[127533,1,\"中\"],[127534,1,\"右\"],[127535,1,\"指\"],[127536,1,\"走\"],[127537,1,\"打\"],[127538,1,\"禁\"],[127539,1,\"空\"],[127540,1,\"合\"],[127541,1,\"満\"],[127542,1,\"有\"],[127543,1,\"月\"],[127544,1,\"申\"],[127545,1,\"割\"],[127546,1,\"営\"],[127547,1,\"配\"],[[127548,127551],3],[127552,1,\"〔本〕\"],[127553,1,\"〔三〕\"],[127554,1,\"〔二〕\"],[127555,1,\"〔安〕\"],[127556,1,\"〔点〕\"],[127557,1,\"〔打〕\"],[127558,1,\"〔盗〕\"],[127559,1,\"〔勝〕\"],[127560,1,\"〔敗〕\"],[[127561,127567],3],[127568,1,\"得\"],[127569,1,\"可\"],[[127570,127583],3],[[127584,127589],2],[[127590,127743],3],[[127744,127776],2],[[127777,127788],2],[[127789,127791],2],[[127792,127797],2],[127798,2],[[127799,127868],2],[127869,2],[[127870,127871],2],[[127872,127891],2],[[127892,127903],2],[[127904,127940],2],[127941,2],[[127942,127946],2],[[127947,127950],2],[[127951,127955],2],[[127956,127967],2],[[127968,127984],2],[[127985,127991],2],[[127992,127999],2],[[128000,128062],2],[128063,2],[128064,2],[128065,2],[[128066,128247],2],[128248,2],[[128249,128252],2],[[128253,128254],2],[128255,2],[[128256,128317],2],[[128318,128319],2],[[128320,128323],2],[[128324,128330],2],[[128331,128335],2],[[128336,128359],2],[[128360,128377],2],[128378,2],[[128379,128419],2],[128420,2],[[128421,128506],2],[[128507,128511],2],[128512,2],[[128513,128528],2],[128529,2],[[128530,128532],2],[128533,2],[128534,2],[128535,2],[128536,2],[128537,2],[128538,2],[128539,2],[[128540,128542],2],[128543,2],[[128544,128549],2],[[128550,128551],2],[[128552,128555],2],[128556,2],[128557,2],[[128558,128559],2],[[128560,128563],2],[128564,2],[[128565,128576],2],[[128577,128578],2],[[128579,128580],2],[[128581,128591],2],[[128592,128639],2],[[128640,128709],2],[[128710,128719],2],[128720,2],[[128721,128722],2],[[128723,128724],2],[128725,2],[[128726,128727],2],[[128728,128732],3],[[128733,128735],2],[[128736,128748],2],[[128749,128751],3],[[128752,128755],2],[[128756,128758],2],[[128759,128760],2],[128761,2],[128762,2],[[128763,128764],2],[[128765,128767],3],[[128768,128883],2],[[128884,128895],3],[[128896,128980],2],[[128981,128984],2],[[128985,128991],3],[[128992,129003],2],[[129004,129007],3],[129008,2],[[129009,129023],3],[[129024,129035],2],[[129036,129039],3],[[129040,129095],2],[[129096,129103],3],[[129104,129113],2],[[129114,129119],3],[[129120,129159],2],[[129160,129167],3],[[129168,129197],2],[[129198,129199],3],[[129200,129201],2],[[129202,129279],3],[[129280,129291],2],[129292,2],[[129293,129295],2],[[129296,129304],2],[[129305,129310],2],[129311,2],[[129312,129319],2],[[129320,129327],2],[129328,2],[[129329,129330],2],[[129331,129342],2],[129343,2],[[129344,129355],2],[129356,2],[[129357,129359],2],[[129360,129374],2],[[129375,129387],2],[[129388,129392],2],[129393,2],[129394,2],[[129395,129398],2],[[129399,129400],2],[129401,2],[129402,2],[129403,2],[[129404,129407],2],[[129408,129412],2],[[129413,129425],2],[[129426,129431],2],[[129432,129442],2],[[129443,129444],2],[[129445,129450],2],[[129451,129453],2],[[129454,129455],2],[[129456,129465],2],[[129466,129471],2],[129472,2],[[129473,129474],2],[[129475,129482],2],[129483,2],[129484,2],[[129485,129487],2],[[129488,129510],2],[[129511,129535],2],[[129536,129619],2],[[129620,129631],3],[[129632,129645],2],[[129646,129647],3],[[129648,129651],2],[129652,2],[[129653,129655],3],[[129656,129658],2],[[129659,129660],2],[[129661,129663],3],[[129664,129666],2],[[129667,129670],2],[[129671,129679],3],[[129680,129685],2],[[129686,129704],2],[[129705,129708],2],[[129709,129711],3],[[129712,129718],2],[[129719,129722],2],[[129723,129727],3],[[129728,129730],2],[[129731,129733],2],[[129734,129743],3],[[129744,129750],2],[[129751,129753],2],[[129754,129759],3],[[129760,129767],2],[[129768,129775],3],[[129776,129782],2],[[129783,129791],3],[[129792,129938],2],[129939,3],[[129940,129994],2],[[129995,130031],3],[130032,1,\"0\"],[130033,1,\"1\"],[130034,1,\"2\"],[130035,1,\"3\"],[130036,1,\"4\"],[130037,1,\"5\"],[130038,1,\"6\"],[130039,1,\"7\"],[130040,1,\"8\"],[130041,1,\"9\"],[[130042,131069],3],[[131070,131071],3],[[131072,173782],2],[[173783,173789],2],[[173790,173791],2],[[173792,173823],3],[[173824,177972],2],[[177973,177976],2],[[177977,177983],3],[[177984,178205],2],[[178206,178207],3],[[178208,183969],2],[[183970,183983],3],[[183984,191456],2],[[191457,194559],3],[194560,1,\"丽\"],[194561,1,\"丸\"],[194562,1,\"乁\"],[194563,1,\"𠄢\"],[194564,1,\"你\"],[194565,1,\"侮\"],[194566,1,\"侻\"],[194567,1,\"倂\"],[194568,1,\"偺\"],[194569,1,\"備\"],[194570,1,\"僧\"],[194571,1,\"像\"],[194572,1,\"㒞\"],[194573,1,\"𠘺\"],[194574,1,\"免\"],[194575,1,\"兔\"],[194576,1,\"兤\"],[194577,1,\"具\"],[194578,1,\"𠔜\"],[194579,1,\"㒹\"],[194580,1,\"內\"],[194581,1,\"再\"],[194582,1,\"𠕋\"],[194583,1,\"冗\"],[194584,1,\"冤\"],[194585,1,\"仌\"],[194586,1,\"冬\"],[194587,1,\"况\"],[194588,1,\"𩇟\"],[194589,1,\"凵\"],[194590,1,\"刃\"],[194591,1,\"㓟\"],[194592,1,\"刻\"],[194593,1,\"剆\"],[194594,1,\"割\"],[194595,1,\"剷\"],[194596,1,\"㔕\"],[194597,1,\"勇\"],[194598,1,\"勉\"],[194599,1,\"勤\"],[194600,1,\"勺\"],[194601,1,\"包\"],[194602,1,\"匆\"],[194603,1,\"北\"],[194604,1,\"卉\"],[194605,1,\"卑\"],[194606,1,\"博\"],[194607,1,\"即\"],[194608,1,\"卽\"],[[194609,194611],1,\"卿\"],[194612,1,\"𠨬\"],[194613,1,\"灰\"],[194614,1,\"及\"],[194615,1,\"叟\"],[194616,1,\"𠭣\"],[194617,1,\"叫\"],[194618,1,\"叱\"],[194619,1,\"吆\"],[194620,1,\"咞\"],[194621,1,\"吸\"],[194622,1,\"呈\"],[194623,1,\"周\"],[194624,1,\"咢\"],[194625,1,\"哶\"],[194626,1,\"唐\"],[194627,1,\"啓\"],[194628,1,\"啣\"],[[194629,194630],1,\"善\"],[194631,1,\"喙\"],[194632,1,\"喫\"],[194633,1,\"喳\"],[194634,1,\"嗂\"],[194635,1,\"圖\"],[194636,1,\"嘆\"],[194637,1,\"圗\"],[194638,1,\"噑\"],[194639,1,\"噴\"],[194640,1,\"切\"],[194641,1,\"壮\"],[194642,1,\"城\"],[194643,1,\"埴\"],[194644,1,\"堍\"],[194645,1,\"型\"],[194646,1,\"堲\"],[194647,1,\"報\"],[194648,1,\"墬\"],[194649,1,\"𡓤\"],[194650,1,\"売\"],[194651,1,\"壷\"],[194652,1,\"夆\"],[194653,1,\"多\"],[194654,1,\"夢\"],[194655,1,\"奢\"],[194656,1,\"𡚨\"],[194657,1,\"𡛪\"],[194658,1,\"姬\"],[194659,1,\"娛\"],[194660,1,\"娧\"],[194661,1,\"姘\"],[194662,1,\"婦\"],[194663,1,\"㛮\"],[194664,3],[194665,1,\"嬈\"],[[194666,194667],1,\"嬾\"],[194668,1,\"𡧈\"],[194669,1,\"寃\"],[194670,1,\"寘\"],[194671,1,\"寧\"],[194672,1,\"寳\"],[194673,1,\"𡬘\"],[194674,1,\"寿\"],[194675,1,\"将\"],[194676,3],[194677,1,\"尢\"],[194678,1,\"㞁\"],[194679,1,\"屠\"],[194680,1,\"屮\"],[194681,1,\"峀\"],[194682,1,\"岍\"],[194683,1,\"𡷤\"],[194684,1,\"嵃\"],[194685,1,\"𡷦\"],[194686,1,\"嵮\"],[194687,1,\"嵫\"],[194688,1,\"嵼\"],[194689,1,\"巡\"],[194690,1,\"巢\"],[194691,1,\"㠯\"],[194692,1,\"巽\"],[194693,1,\"帨\"],[194694,1,\"帽\"],[194695,1,\"幩\"],[194696,1,\"㡢\"],[194697,1,\"𢆃\"],[194698,1,\"㡼\"],[194699,1,\"庰\"],[194700,1,\"庳\"],[194701,1,\"庶\"],[194702,1,\"廊\"],[194703,1,\"𪎒\"],[194704,1,\"廾\"],[[194705,194706],1,\"𢌱\"],[194707,1,\"舁\"],[[194708,194709],1,\"弢\"],[194710,1,\"㣇\"],[194711,1,\"𣊸\"],[194712,1,\"𦇚\"],[194713,1,\"形\"],[194714,1,\"彫\"],[194715,1,\"㣣\"],[194716,1,\"徚\"],[194717,1,\"忍\"],[194718,1,\"志\"],[194719,1,\"忹\"],[194720,1,\"悁\"],[194721,1,\"㤺\"],[194722,1,\"㤜\"],[194723,1,\"悔\"],[194724,1,\"𢛔\"],[194725,1,\"惇\"],[194726,1,\"慈\"],[194727,1,\"慌\"],[194728,1,\"慎\"],[194729,1,\"慌\"],[194730,1,\"慺\"],[194731,1,\"憎\"],[194732,1,\"憲\"],[194733,1,\"憤\"],[194734,1,\"憯\"],[194735,1,\"懞\"],[194736,1,\"懲\"],[194737,1,\"懶\"],[194738,1,\"成\"],[194739,1,\"戛\"],[194740,1,\"扝\"],[194741,1,\"抱\"],[194742,1,\"拔\"],[194743,1,\"捐\"],[194744,1,\"𢬌\"],[194745,1,\"挽\"],[194746,1,\"拼\"],[194747,1,\"捨\"],[194748,1,\"掃\"],[194749,1,\"揤\"],[194750,1,\"𢯱\"],[194751,1,\"搢\"],[194752,1,\"揅\"],[194753,1,\"掩\"],[194754,1,\"㨮\"],[194755,1,\"摩\"],[194756,1,\"摾\"],[194757,1,\"撝\"],[194758,1,\"摷\"],[194759,1,\"㩬\"],[194760,1,\"敏\"],[194761,1,\"敬\"],[194762,1,\"𣀊\"],[194763,1,\"旣\"],[194764,1,\"書\"],[194765,1,\"晉\"],[194766,1,\"㬙\"],[194767,1,\"暑\"],[194768,1,\"㬈\"],[194769,1,\"㫤\"],[194770,1,\"冒\"],[194771,1,\"冕\"],[194772,1,\"最\"],[194773,1,\"暜\"],[194774,1,\"肭\"],[194775,1,\"䏙\"],[194776,1,\"朗\"],[194777,1,\"望\"],[194778,1,\"朡\"],[194779,1,\"杞\"],[194780,1,\"杓\"],[194781,1,\"𣏃\"],[194782,1,\"㭉\"],[194783,1,\"柺\"],[194784,1,\"枅\"],[194785,1,\"桒\"],[194786,1,\"梅\"],[194787,1,\"𣑭\"],[194788,1,\"梎\"],[194789,1,\"栟\"],[194790,1,\"椔\"],[194791,1,\"㮝\"],[194792,1,\"楂\"],[194793,1,\"榣\"],[194794,1,\"槪\"],[194795,1,\"檨\"],[194796,1,\"𣚣\"],[194797,1,\"櫛\"],[194798,1,\"㰘\"],[194799,1,\"次\"],[194800,1,\"𣢧\"],[194801,1,\"歔\"],[194802,1,\"㱎\"],[194803,1,\"歲\"],[194804,1,\"殟\"],[194805,1,\"殺\"],[194806,1,\"殻\"],[194807,1,\"𣪍\"],[194808,1,\"𡴋\"],[194809,1,\"𣫺\"],[194810,1,\"汎\"],[194811,1,\"𣲼\"],[194812,1,\"沿\"],[194813,1,\"泍\"],[194814,1,\"汧\"],[194815,1,\"洖\"],[194816,1,\"派\"],[194817,1,\"海\"],[194818,1,\"流\"],[194819,1,\"浩\"],[194820,1,\"浸\"],[194821,1,\"涅\"],[194822,1,\"𣴞\"],[194823,1,\"洴\"],[194824,1,\"港\"],[194825,1,\"湮\"],[194826,1,\"㴳\"],[194827,1,\"滋\"],[194828,1,\"滇\"],[194829,1,\"𣻑\"],[194830,1,\"淹\"],[194831,1,\"潮\"],[194832,1,\"𣽞\"],[194833,1,\"𣾎\"],[194834,1,\"濆\"],[194835,1,\"瀹\"],[194836,1,\"瀞\"],[194837,1,\"瀛\"],[194838,1,\"㶖\"],[194839,1,\"灊\"],[194840,1,\"災\"],[194841,1,\"灷\"],[194842,1,\"炭\"],[194843,1,\"𠔥\"],[194844,1,\"煅\"],[194845,1,\"𤉣\"],[194846,1,\"熜\"],[194847,3],[194848,1,\"爨\"],[194849,1,\"爵\"],[194850,1,\"牐\"],[194851,1,\"𤘈\"],[194852,1,\"犀\"],[194853,1,\"犕\"],[194854,1,\"𤜵\"],[194855,1,\"𤠔\"],[194856,1,\"獺\"],[194857,1,\"王\"],[194858,1,\"㺬\"],[194859,1,\"玥\"],[[194860,194861],1,\"㺸\"],[194862,1,\"瑇\"],[194863,1,\"瑜\"],[194864,1,\"瑱\"],[194865,1,\"璅\"],[194866,1,\"瓊\"],[194867,1,\"㼛\"],[194868,1,\"甤\"],[194869,1,\"𤰶\"],[194870,1,\"甾\"],[194871,1,\"𤲒\"],[194872,1,\"異\"],[194873,1,\"𢆟\"],[194874,1,\"瘐\"],[194875,1,\"𤾡\"],[194876,1,\"𤾸\"],[194877,1,\"𥁄\"],[194878,1,\"㿼\"],[194879,1,\"䀈\"],[194880,1,\"直\"],[194881,1,\"𥃳\"],[194882,1,\"𥃲\"],[194883,1,\"𥄙\"],[194884,1,\"𥄳\"],[194885,1,\"眞\"],[[194886,194887],1,\"真\"],[194888,1,\"睊\"],[194889,1,\"䀹\"],[194890,1,\"瞋\"],[194891,1,\"䁆\"],[194892,1,\"䂖\"],[194893,1,\"𥐝\"],[194894,1,\"硎\"],[194895,1,\"碌\"],[194896,1,\"磌\"],[194897,1,\"䃣\"],[194898,1,\"𥘦\"],[194899,1,\"祖\"],[194900,1,\"𥚚\"],[194901,1,\"𥛅\"],[194902,1,\"福\"],[194903,1,\"秫\"],[194904,1,\"䄯\"],[194905,1,\"穀\"],[194906,1,\"穊\"],[194907,1,\"穏\"],[194908,1,\"𥥼\"],[[194909,194910],1,\"𥪧\"],[194911,3],[194912,1,\"䈂\"],[194913,1,\"𥮫\"],[194914,1,\"篆\"],[194915,1,\"築\"],[194916,1,\"䈧\"],[194917,1,\"𥲀\"],[194918,1,\"糒\"],[194919,1,\"䊠\"],[194920,1,\"糨\"],[194921,1,\"糣\"],[194922,1,\"紀\"],[194923,1,\"𥾆\"],[194924,1,\"絣\"],[194925,1,\"䌁\"],[194926,1,\"緇\"],[194927,1,\"縂\"],[194928,1,\"繅\"],[194929,1,\"䌴\"],[194930,1,\"𦈨\"],[194931,1,\"𦉇\"],[194932,1,\"䍙\"],[194933,1,\"𦋙\"],[194934,1,\"罺\"],[194935,1,\"𦌾\"],[194936,1,\"羕\"],[194937,1,\"翺\"],[194938,1,\"者\"],[194939,1,\"𦓚\"],[194940,1,\"𦔣\"],[194941,1,\"聠\"],[194942,1,\"𦖨\"],[194943,1,\"聰\"],[194944,1,\"𣍟\"],[194945,1,\"䏕\"],[194946,1,\"育\"],[194947,1,\"脃\"],[194948,1,\"䐋\"],[194949,1,\"脾\"],[194950,1,\"媵\"],[194951,1,\"𦞧\"],[194952,1,\"𦞵\"],[194953,1,\"𣎓\"],[194954,1,\"𣎜\"],[194955,1,\"舁\"],[194956,1,\"舄\"],[194957,1,\"辞\"],[194958,1,\"䑫\"],[194959,1,\"芑\"],[194960,1,\"芋\"],[194961,1,\"芝\"],[194962,1,\"劳\"],[194963,1,\"花\"],[194964,1,\"芳\"],[194965,1,\"芽\"],[194966,1,\"苦\"],[194967,1,\"𦬼\"],[194968,1,\"若\"],[194969,1,\"茝\"],[194970,1,\"荣\"],[194971,1,\"莭\"],[194972,1,\"茣\"],[194973,1,\"莽\"],[194974,1,\"菧\"],[194975,1,\"著\"],[194976,1,\"荓\"],[194977,1,\"菊\"],[194978,1,\"菌\"],[194979,1,\"菜\"],[194980,1,\"𦰶\"],[194981,1,\"𦵫\"],[194982,1,\"𦳕\"],[194983,1,\"䔫\"],[194984,1,\"蓱\"],[194985,1,\"蓳\"],[194986,1,\"蔖\"],[194987,1,\"𧏊\"],[194988,1,\"蕤\"],[194989,1,\"𦼬\"],[194990,1,\"䕝\"],[194991,1,\"䕡\"],[194992,1,\"𦾱\"],[194993,1,\"𧃒\"],[194994,1,\"䕫\"],[194995,1,\"虐\"],[194996,1,\"虜\"],[194997,1,\"虧\"],[194998,1,\"虩\"],[194999,1,\"蚩\"],[195000,1,\"蚈\"],[195001,1,\"蜎\"],[195002,1,\"蛢\"],[195003,1,\"蝹\"],[195004,1,\"蜨\"],[195005,1,\"蝫\"],[195006,1,\"螆\"],[195007,3],[195008,1,\"蟡\"],[195009,1,\"蠁\"],[195010,1,\"䗹\"],[195011,1,\"衠\"],[195012,1,\"衣\"],[195013,1,\"𧙧\"],[195014,1,\"裗\"],[195015,1,\"裞\"],[195016,1,\"䘵\"],[195017,1,\"裺\"],[195018,1,\"㒻\"],[195019,1,\"𧢮\"],[195020,1,\"𧥦\"],[195021,1,\"䚾\"],[195022,1,\"䛇\"],[195023,1,\"誠\"],[195024,1,\"諭\"],[195025,1,\"變\"],[195026,1,\"豕\"],[195027,1,\"𧲨\"],[195028,1,\"貫\"],[195029,1,\"賁\"],[195030,1,\"贛\"],[195031,1,\"起\"],[195032,1,\"𧼯\"],[195033,1,\"𠠄\"],[195034,1,\"跋\"],[195035,1,\"趼\"],[195036,1,\"跰\"],[195037,1,\"𠣞\"],[195038,1,\"軔\"],[195039,1,\"輸\"],[195040,1,\"𨗒\"],[195041,1,\"𨗭\"],[195042,1,\"邔\"],[195043,1,\"郱\"],[195044,1,\"鄑\"],[195045,1,\"𨜮\"],[195046,1,\"鄛\"],[195047,1,\"鈸\"],[195048,1,\"鋗\"],[195049,1,\"鋘\"],[195050,1,\"鉼\"],[195051,1,\"鏹\"],[195052,1,\"鐕\"],[195053,1,\"𨯺\"],[195054,1,\"開\"],[195055,1,\"䦕\"],[195056,1,\"閷\"],[195057,1,\"𨵷\"],[195058,1,\"䧦\"],[195059,1,\"雃\"],[195060,1,\"嶲\"],[195061,1,\"霣\"],[195062,1,\"𩅅\"],[195063,1,\"𩈚\"],[195064,1,\"䩮\"],[195065,1,\"䩶\"],[195066,1,\"韠\"],[195067,1,\"𩐊\"],[195068,1,\"䪲\"],[195069,1,\"𩒖\"],[[195070,195071],1,\"頋\"],[195072,1,\"頩\"],[195073,1,\"𩖶\"],[195074,1,\"飢\"],[195075,1,\"䬳\"],[195076,1,\"餩\"],[195077,1,\"馧\"],[195078,1,\"駂\"],[195079,1,\"駾\"],[195080,1,\"䯎\"],[195081,1,\"𩬰\"],[195082,1,\"鬒\"],[195083,1,\"鱀\"],[195084,1,\"鳽\"],[195085,1,\"䳎\"],[195086,1,\"䳭\"],[195087,1,\"鵧\"],[195088,1,\"𪃎\"],[195089,1,\"䳸\"],[195090,1,\"𪄅\"],[195091,1,\"𪈎\"],[195092,1,\"𪊑\"],[195093,1,\"麻\"],[195094,1,\"䵖\"],[195095,1,\"黹\"],[195096,1,\"黾\"],[195097,1,\"鼅\"],[195098,1,\"鼏\"],[195099,1,\"鼖\"],[195100,1,\"鼻\"],[195101,1,\"𪘀\"],[[195102,196605],3],[[196606,196607],3],[[196608,201546],2],[[201547,262141],3],[[262142,262143],3],[[262144,327677],3],[[327678,327679],3],[[327680,393213],3],[[393214,393215],3],[[393216,458749],3],[[458750,458751],3],[[458752,524285],3],[[524286,524287],3],[[524288,589821],3],[[589822,589823],3],[[589824,655357],3],[[655358,655359],3],[[655360,720893],3],[[720894,720895],3],[[720896,786429],3],[[786430,786431],3],[[786432,851965],3],[[851966,851967],3],[[851968,917501],3],[[917502,917503],3],[917504,3],[917505,3],[[917506,917535],3],[[917536,917631],3],[[917632,917759],3],[[917760,917999],7],[[918000,983037],3],[[983038,983039],3],[[983040,1048573],3],[[1048574,1048575],3],[[1048576,1114109],3],[[1114110,1114111],3]]");
|
|
54246
54131
|
|
|
54247
54132
|
/***/ }),
|
|
54248
|
-
/*
|
|
54133
|
+
/* 177 */
|
|
54249
54134
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54250
54135
|
|
|
54251
54136
|
"use strict";
|
|
@@ -54263,14 +54148,14 @@ module.exports.STATUS_MAPPING = {
|
|
|
54263
54148
|
|
|
54264
54149
|
|
|
54265
54150
|
/***/ }),
|
|
54266
|
-
/*
|
|
54151
|
+
/* 178 */
|
|
54267
54152
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54268
54153
|
|
|
54269
54154
|
"use strict";
|
|
54270
54155
|
|
|
54271
54156
|
|
|
54272
|
-
const conversions = __webpack_require__(
|
|
54273
|
-
const utils = __webpack_require__(
|
|
54157
|
+
const conversions = __webpack_require__(52);
|
|
54158
|
+
const utils = __webpack_require__(53);
|
|
54274
54159
|
|
|
54275
54160
|
exports.convert = (globalObject, value, { context = "The provided value" } = {}) => {
|
|
54276
54161
|
if (typeof value !== "function") {
|
|
@@ -54312,7 +54197,7 @@ exports.convert = (globalObject, value, { context = "The provided value" } = {})
|
|
|
54312
54197
|
|
|
54313
54198
|
|
|
54314
54199
|
/***/ }),
|
|
54315
|
-
/*
|
|
54200
|
+
/* 179 */
|
|
54316
54201
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54317
54202
|
|
|
54318
54203
|
"use strict";
|
|
@@ -54449,7 +54334,79 @@ exports.implementation = class URLSearchParamsImpl {
|
|
|
54449
54334
|
|
|
54450
54335
|
|
|
54451
54336
|
/***/ }),
|
|
54452
|
-
/*
|
|
54337
|
+
/* 180 */
|
|
54338
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
54339
|
+
|
|
54340
|
+
|
|
54341
|
+
/**
|
|
54342
|
+
* Module dependencies.
|
|
54343
|
+
*/
|
|
54344
|
+
|
|
54345
|
+
var sep = __webpack_require__(19).sep || '/';
|
|
54346
|
+
|
|
54347
|
+
/**
|
|
54348
|
+
* Module exports.
|
|
54349
|
+
*/
|
|
54350
|
+
|
|
54351
|
+
module.exports = fileUriToPath;
|
|
54352
|
+
|
|
54353
|
+
/**
|
|
54354
|
+
* File URI to Path function.
|
|
54355
|
+
*
|
|
54356
|
+
* @param {String} uri
|
|
54357
|
+
* @return {String} path
|
|
54358
|
+
* @api public
|
|
54359
|
+
*/
|
|
54360
|
+
|
|
54361
|
+
function fileUriToPath (uri) {
|
|
54362
|
+
if ('string' != typeof uri ||
|
|
54363
|
+
uri.length <= 7 ||
|
|
54364
|
+
'file://' != uri.substring(0, 7)) {
|
|
54365
|
+
throw new TypeError('must pass in a file:// URI to convert to a file path');
|
|
54366
|
+
}
|
|
54367
|
+
|
|
54368
|
+
var rest = decodeURI(uri.substring(7));
|
|
54369
|
+
var firstSlash = rest.indexOf('/');
|
|
54370
|
+
var host = rest.substring(0, firstSlash);
|
|
54371
|
+
var path = rest.substring(firstSlash + 1);
|
|
54372
|
+
|
|
54373
|
+
// 2. Scheme Definition
|
|
54374
|
+
// As a special case, <host> can be the string "localhost" or the empty
|
|
54375
|
+
// string; this is interpreted as "the machine from which the URL is
|
|
54376
|
+
// being interpreted".
|
|
54377
|
+
if ('localhost' == host) host = '';
|
|
54378
|
+
|
|
54379
|
+
if (host) {
|
|
54380
|
+
host = sep + sep + host;
|
|
54381
|
+
}
|
|
54382
|
+
|
|
54383
|
+
// 3.2 Drives, drive letters, mount points, file system root
|
|
54384
|
+
// Drive letters are mapped into the top of a file URI in various ways,
|
|
54385
|
+
// depending on the implementation; some applications substitute
|
|
54386
|
+
// vertical bar ("|") for the colon after the drive letter, yielding
|
|
54387
|
+
// "file:///c|/tmp/test.txt". In some cases, the colon is left
|
|
54388
|
+
// unchanged, as in "file:///c:/tmp/test.txt". In other cases, the
|
|
54389
|
+
// colon is simply omitted, as in "file:///c/tmp/test.txt".
|
|
54390
|
+
path = path.replace(/^(.+)\|/, '$1:');
|
|
54391
|
+
|
|
54392
|
+
// for Windows, we need to invert the path separators from what a URI uses
|
|
54393
|
+
if (sep == '\\') {
|
|
54394
|
+
path = path.replace(/\//g, '\\');
|
|
54395
|
+
}
|
|
54396
|
+
|
|
54397
|
+
if (/^.+\:/.test(path)) {
|
|
54398
|
+
// has Windows drive at beginning of path
|
|
54399
|
+
} else {
|
|
54400
|
+
// unix path…
|
|
54401
|
+
path = sep + path;
|
|
54402
|
+
}
|
|
54403
|
+
|
|
54404
|
+
return host + path;
|
|
54405
|
+
}
|
|
54406
|
+
|
|
54407
|
+
|
|
54408
|
+
/***/ }),
|
|
54409
|
+
/* 181 */
|
|
54453
54410
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54454
54411
|
|
|
54455
54412
|
"use strict";
|
|
@@ -54590,7 +54547,7 @@ module.exports = function (address) {
|
|
|
54590
54547
|
|
|
54591
54548
|
|
|
54592
54549
|
/***/ }),
|
|
54593
|
-
/*
|
|
54550
|
+
/* 182 */
|
|
54594
54551
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54595
54552
|
|
|
54596
54553
|
/* eslint-env browser */
|
|
@@ -54847,7 +54804,7 @@ function localstorage() {
|
|
|
54847
54804
|
}
|
|
54848
54805
|
}
|
|
54849
54806
|
|
|
54850
|
-
module.exports = __webpack_require__(
|
|
54807
|
+
module.exports = __webpack_require__(183)(exports);
|
|
54851
54808
|
|
|
54852
54809
|
const {formatters} = module.exports;
|
|
54853
54810
|
|
|
@@ -54865,7 +54822,7 @@ formatters.j = function (v) {
|
|
|
54865
54822
|
|
|
54866
54823
|
|
|
54867
54824
|
/***/ }),
|
|
54868
|
-
/*
|
|
54825
|
+
/* 183 */
|
|
54869
54826
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54870
54827
|
|
|
54871
54828
|
|
|
@@ -54881,7 +54838,7 @@ function setup(env) {
|
|
|
54881
54838
|
createDebug.disable = disable;
|
|
54882
54839
|
createDebug.enable = enable;
|
|
54883
54840
|
createDebug.enabled = enabled;
|
|
54884
|
-
createDebug.humanize = __webpack_require__(
|
|
54841
|
+
createDebug.humanize = __webpack_require__(184);
|
|
54885
54842
|
createDebug.destroy = destroy;
|
|
54886
54843
|
|
|
54887
54844
|
Object.keys(env).forEach(key => {
|
|
@@ -55145,7 +55102,7 @@ module.exports = setup;
|
|
|
55145
55102
|
|
|
55146
55103
|
|
|
55147
55104
|
/***/ }),
|
|
55148
|
-
/*
|
|
55105
|
+
/* 184 */
|
|
55149
55106
|
/***/ (function(module, exports) {
|
|
55150
55107
|
|
|
55151
55108
|
/**
|
|
@@ -55313,15 +55270,15 @@ function plural(ms, msAbs, n, name) {
|
|
|
55313
55270
|
|
|
55314
55271
|
|
|
55315
55272
|
/***/ }),
|
|
55316
|
-
/*
|
|
55273
|
+
/* 185 */
|
|
55317
55274
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55318
55275
|
|
|
55319
55276
|
"use strict";
|
|
55320
55277
|
|
|
55321
55278
|
|
|
55322
|
-
const bitfield = __webpack_require__(
|
|
55279
|
+
const bitfield = __webpack_require__(186);
|
|
55323
55280
|
|
|
55324
|
-
const memory = __webpack_require__(
|
|
55281
|
+
const memory = __webpack_require__(188);
|
|
55325
55282
|
|
|
55326
55283
|
let offset = 0;
|
|
55327
55284
|
|
|
@@ -55357,10 +55314,10 @@ module.exports = {
|
|
|
55357
55314
|
|
|
55358
55315
|
|
|
55359
55316
|
/***/ }),
|
|
55360
|
-
/*
|
|
55317
|
+
/* 186 */
|
|
55361
55318
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55362
55319
|
|
|
55363
|
-
var pager = __webpack_require__(
|
|
55320
|
+
var pager = __webpack_require__(187)
|
|
55364
55321
|
|
|
55365
55322
|
module.exports = Bitfield
|
|
55366
55323
|
|
|
@@ -55458,7 +55415,7 @@ function powerOfTwo (x) {
|
|
|
55458
55415
|
|
|
55459
55416
|
|
|
55460
55417
|
/***/ }),
|
|
55461
|
-
/*
|
|
55418
|
+
/* 187 */
|
|
55462
55419
|
/***/ (function(module, exports) {
|
|
55463
55420
|
|
|
55464
55421
|
module.exports = Pager
|
|
@@ -55624,13 +55581,13 @@ function factor (n, out) {
|
|
|
55624
55581
|
|
|
55625
55582
|
|
|
55626
55583
|
/***/ }),
|
|
55627
|
-
/*
|
|
55584
|
+
/* 188 */
|
|
55628
55585
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55629
55586
|
|
|
55630
55587
|
"use strict";
|
|
55631
55588
|
|
|
55632
55589
|
|
|
55633
|
-
module.exports = __webpack_require__(
|
|
55590
|
+
module.exports = __webpack_require__(50).gunzipSync(
|
|
55634
55591
|
Buffer.from(
|
|
55635
55592
|
'H4sIAAAAAAACA+3dTYgcWR0A8FfTnekQ47aCkBxiZpYV8RhwYQM7bA/ksoLgSRD0IOSiePAkLrowvWSF4CkHEW856MlTQHA9RKZ1ZJODsEcVcTOyhxUEbXdXtpPp1PNVV39Uz4czEyaTVOb3G6a7XtWrr/devX49/+qekG2Go7Aa2jHGyozG+Dmrzi2mP/xb/zMhLI+WlRm2byubm2h0ivVi7BYzusVjuNkt1l9uFWsutWL8OP4rzV9KeXdsKx1HFhbSc6vIG0fKBZ14UNfLFS6FRrGRtXh98ZvphL/x4uLV/IOzaat/vlikv/TixavxR8PQitfPpKNbffXSwgtr8fV07GX+L1967urwg5W0/t0LV37y/oWFlQtX8ping7reXE3LT680r9yPKyn/3Vn64SwdVs6m/KN0yHrp9D+RvXsqpe6MSia5mH6LSog//Xq/++O74YVTjfDFWK2VIuNSemiPppphcVYeyzcudKqFMiq6cs3vVkrzlcnE0mxeZ1Jf2ZXsSvk8TmRZWYdpalydxd5bc8eUkt1wlEbtqTVLr8XQLFpKMb+dpr9SbSOt4ozTgXUq8+Ihm8cTt0shtCvT6dwao6sxPf5ydmU208/Z0yH8IZtlvZi3e5fG12yn3PLSdPvnQ7vsK9rxyKpqevzFZGVfu3YHezvbnbvit9Xdm5fGbf/MZ7PuuNrTjLJnaofH7gm0h+VKU/g/tdUocrer3cO4yOcuycGoyLrba6Ta+lrlnkZ5ntvWCrfV39wLTuNg9QvsvHb37P8BAGCP0eNTOH5szf154JmnNQIcn7b+FziyAfX4eWnn+C6Lm4M0mj31ubkViiDV4WLvs56qN54xGS3HWER5su6nQtZubl9tcY/4atbr9e5kWewew/g2a8fdy2Yaa97+pgQAAAAAAIBHtt+dYmWwaN/byI5g/9PYVfMvb4YvvDpOLJxvFgueP9VbPXh8/yCZViZxNYATaejmDQAAAACgfjJ/3QUA4JD3Px1InT+5PtQCAAAAAAAAAKD2xP8BAAAAAAAAoP7E/wEAAAAAAACg/sT/AQAAAAAAAKD+xP8BAAAAAAAAoP7E/wEAAAAAAACg/sT/AQAAAAAAAKD+xP8BAAAAAAAAoP7E/wEAAAAAAACg/sT/AQAAAAAAAKD+xP8BAAAAAAAAoP6G6+khVCgSAAAAAAAAAKidYQjLYVfNcPSyAE+dhQsnvAAq59/VHAAAAAAAAOCJmv8E/w4HiLqf3nWuWCB1pe0esg/pT3sKd+m4XjhpFpZH3/1THTcU6cfRLnrHf3ZNPZs+bf9rwPuIUPYAWb+j/Zy0EaAxAAAAAADwrPJ1IMBenu6ea99M+0W/17wCAAAAAAAAnGRLm8oA4JnQUAQAAAAAAAAAUHvi/wAAAAAAAABQf+L/AAAAAAAAAFB/4v8AAAAAAAAAUH/i/wAAAAAAAABQf+L/AAAAAAAAAFB/4v8AAAAAAAAAUH/i/wAAAAAAAABQf+L/AAAAAAAAAFB/4v8AAAAAAAAAUH/i/wAAAAAAAABQf+L/AAAAAAAAAFB/jdX0ECsUCQAAAAAAAADUTiMCAAAAAAAAAHU3VAQAAAAAAAAAUH8hLNf1uwsWbhT/uWBzUEx/ei1Nxc001VqrnN2wuRjCK3G4HuNgtuJoSVj17Q9QyBQBAAAAAAAAHMKpuJ4/+Otc5L2XZi8dJlQ/LCPXhc4keJ9UI9uFre3rDfY9uoXZPQBFHL34HSWWm8sx5rH83d967IfZMRZHHG/2Qi8MFnbscXnhnzHei5NND8P2bW2OT3G8vFeebBHbz9dGEf5jDt+fK4/mTve1bnwndsNL92+mE/75xhs/yz65Ed/ZbP29SP96oxvCDxrxcjj333R262/d6X6tG66lYy/z/+rtMn83nHvv9nfOv/dw4+pvspCl4v7+1npa/nHvtbSvjSJ/mf79/VuLC7N03LiW8o/SMU8ldO+jPOul1OVQ3vVwK+TZqBLCt3/RXvveS7eaD0L8YyhrJeV/cC0WGTdD1hzlCo2H98vzK9a+963V7qRVTeaNa+ZGpWp+N62jSmOetJD8dn67fB4n8nzchG7n4+os2tcgzLWUQVg70rta8lE7nqW7IW710v7eDsV1F7e6433njYfd9j9Gl2KIveptMePVamOXQuhXO5tUk6Pv+kiPX43T7/3YevDy4MN+HLw8CHPX6OqOOwKe73z0+pnf3rvT6pX76j/SUU7/3UjqX5r7ZW7PdZU8Vq2id+29Pphdh3n1Tqp/t0aXaWVOPnsFGre+waRdpKf/TK+7fiX3bOWluVeJg77AAPNDwr37fwAA2GP0+BSOHwcn6/231ghwfPr6X+DIBtTj582d47s8LD3xMeYktt+YHXHe6XQuH9P4Nu+H3ctmGmve/qYEAAAAAACAR7bfnWJlsGgSNNoM54tPZ23EI4vYzPY1/fzq1ud/GP/01jjx8P2tYsG7DzrrB4/vHySTz5YB+n8AAAAAgJrJ/XEXAIDHEf/2yXUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgGdABAAAAAAAAADqbqgIAAAAAAAAAKD2hv8DWK79UBhoBgA=',
|
|
55636
55593
|
'base64'
|
|
@@ -55639,13 +55596,13 @@ module.exports = __webpack_require__(51).gunzipSync(
|
|
|
55639
55596
|
|
|
55640
55597
|
|
|
55641
55598
|
/***/ }),
|
|
55642
|
-
/*
|
|
55599
|
+
/* 189 */
|
|
55643
55600
|
/***/ (function(module) {
|
|
55644
55601
|
|
|
55645
55602
|
module.exports = JSON.parse("{\"name\":\"mongodb\",\"version\":\"4.10.0\",\"description\":\"The official MongoDB driver for Node.js\",\"main\":\"lib/index.js\",\"files\":[\"lib\",\"src\",\"etc/prepare.js\",\"mongodb.d.ts\",\"tsconfig.json\"],\"types\":\"mongodb.d.ts\",\"repository\":{\"type\":\"git\",\"url\":\"git@github.com:mongodb/node-mongodb-native.git\"},\"keywords\":[\"mongodb\",\"driver\",\"official\"],\"author\":{\"name\":\"The MongoDB NodeJS Team\",\"email\":\"dbx-node@mongodb.com\"},\"dependencies\":{\"bson\":\"^4.7.0\",\"denque\":\"^2.1.0\",\"mongodb-connection-string-url\":\"^2.5.3\",\"socks\":\"^2.7.0\"},\"devDependencies\":{\"@iarna/toml\":\"^2.2.5\",\"@istanbuljs/nyc-config-typescript\":\"^1.0.2\",\"@microsoft/api-extractor\":\"^7.29.5\",\"@microsoft/tsdoc-config\":\"^0.16.1\",\"@mongodb-js/zstd\":\"^1.0.0\",\"@types/chai\":\"^4.3.3\",\"@types/chai-subset\":\"^1.3.3\",\"@types/express\":\"^4.17.13\",\"@types/kerberos\":\"^1.1.1\",\"@types/mocha\":\"^9.1.1\",\"@types/node\":\"^18.7.13\",\"@types/saslprep\":\"^1.0.1\",\"@types/semver\":\"^7.3.12\",\"@types/sinon\":\"^10.0.11\",\"@types/sinon-chai\":\"^3.2.8\",\"@types/whatwg-url\":\"^8.2.2\",\"@typescript-eslint/eslint-plugin\":\"^5.35.1\",\"@typescript-eslint/parser\":\"^5.35.1\",\"bluebird\":\"^3.7.2\",\"chai\":\"^4.3.6\",\"chai-subset\":\"^1.6.0\",\"chalk\":\"^4.1.2\",\"eslint\":\"^8.22.0\",\"eslint-config-prettier\":\"^8.5.0\",\"eslint-plugin-import\":\"^2.26.0\",\"eslint-plugin-prettier\":\"^4.2.1\",\"eslint-plugin-simple-import-sort\":\"^7.0.0\",\"eslint-plugin-tsdoc\":\"^0.2.16\",\"express\":\"^4.18.1\",\"js-yaml\":\"^4.1.0\",\"mocha\":\"^9.2.2\",\"mocha-sinon\":\"^2.1.2\",\"nyc\":\"^15.1.0\",\"prettier\":\"^2.7.1\",\"rimraf\":\"^3.0.2\",\"semver\":\"^7.3.7\",\"sinon\":\"^13.0.1\",\"sinon-chai\":\"^3.7.0\",\"source-map-support\":\"^0.5.21\",\"standard-version\":\"^9.5.0\",\"ts-node\":\"^10.9.1\",\"tsd\":\"^0.22.0\",\"typescript\":\"^4.8.2\",\"typescript-cached-transpile\":\"^0.0.6\",\"xml2js\":\"^0.4.23\",\"yargs\":\"^17.5.1\"},\"license\":\"Apache-2.0\",\"engines\":{\"node\":\">=12.9.0\"},\"bugs\":{\"url\":\"https://jira.mongodb.org/projects/NODE/issues/\"},\"homepage\":\"https://github.com/mongodb/node-mongodb-native\",\"optionalDependencies\":{\"saslprep\":\"^1.0.3\"},\"scripts\":{\"build:evergreen\":\"node .evergreen/generate_evergreen_tasks.js\",\"build:ts\":\"node ./node_modules/typescript/bin/tsc\",\"build:dts\":\"npm run build:ts && api-extractor run && rimraf 'lib/**/*.d.ts*'\",\"build:docs\":\"./etc/docs/build.ts\",\"build:typedoc\":\"typedoc\",\"check:bench\":\"node test/benchmarks/driverBench\",\"check:coverage\":\"nyc npm run test:all\",\"check:integration-coverage\":\"nyc npm run check:test\",\"check:lambda\":\"mocha --config test/mocha_lambda.json test/integration/node-specific/examples/handler.test.js\",\"check:lambda:aws\":\"mocha --config test/mocha_lambda.json test/integration/node-specific/examples/aws_handler.test.js\",\"check:lint\":\"npm run build:dts && npm run check:dts && npm run check:eslint && npm run check:tsd\",\"check:eslint\":\"eslint -v && eslint --max-warnings=0 --ext '.js,.ts' src test\",\"check:tsd\":\"tsd --version && tsd\",\"check:dependencies\":\"mocha test/action/dependency.test.ts\",\"check:dts\":\"node ./node_modules/typescript/bin/tsc --noEmit mongodb.d.ts && tsd\",\"check:test\":\"mocha --config test/mocha_mongodb.json test/integration\",\"check:unit\":\"mocha test/unit\",\"check:ts\":\"node ./node_modules/typescript/bin/tsc -v && node ./node_modules/typescript/bin/tsc --noEmit\",\"check:atlas\":\"mocha --config test/manual/mocharc.json test/manual/atlas_connectivity.test.js\",\"check:adl\":\"mocha --config test/mocha_mongodb.json test/manual/atlas-data-lake-testing\",\"check:aws\":\"mocha --config test/mocha_mongodb.json test/integration/auth/mongodb_aws.test.ts\",\"check:ocsp\":\"mocha --config test/manual/mocharc.json test/manual/ocsp_support.test.js\",\"check:kerberos\":\"mocha --config test/manual/mocharc.json test/manual/kerberos.test.js\",\"check:tls\":\"mocha --config test/manual/mocharc.json test/manual/tls_support.test.js\",\"check:ldap\":\"mocha --config test/manual/mocharc.json test/manual/ldap.test.js\",\"check:socks5\":\"mocha --config test/manual/mocharc.json test/manual/socks5.test.ts\",\"check:csfle\":\"mocha --config test/mocha_mongodb.json test/integration/client-side-encryption\",\"check:snappy\":\"mocha test/unit/assorted/snappy.test.js\",\"fix:eslint\":\"npm run check:eslint -- --fix\",\"prepare\":\"node etc/prepare.js\",\"preview:docs\":\"ts-node etc/docs/preview.ts\",\"release\":\"standard-version -a -i HISTORY.md\",\"test\":\"npm run check:lint && npm run test:all\",\"test:all\":\"npm run check:unit && npm run check:test\",\"update:docs\":\"npm run build:docs -- --yes\"},\"tsd\":{\"directory\":\"test/types\",\"compilerOptions\":{\"strict\":true,\"target\":\"esnext\",\"module\":\"commonjs\",\"moduleResolution\":\"node\"}}}");
|
|
55646
55603
|
|
|
55647
55604
|
/***/ }),
|
|
55648
|
-
/*
|
|
55605
|
+
/* 190 */
|
|
55649
55606
|
/***/ (function(module, exports) {
|
|
55650
55607
|
|
|
55651
55608
|
function webpackEmptyContext(req) {
|
|
@@ -55656,10 +55613,10 @@ function webpackEmptyContext(req) {
|
|
|
55656
55613
|
webpackEmptyContext.keys = function() { return []; };
|
|
55657
55614
|
webpackEmptyContext.resolve = webpackEmptyContext;
|
|
55658
55615
|
module.exports = webpackEmptyContext;
|
|
55659
|
-
webpackEmptyContext.id =
|
|
55616
|
+
webpackEmptyContext.id = 190;
|
|
55660
55617
|
|
|
55661
55618
|
/***/ }),
|
|
55662
|
-
/*
|
|
55619
|
+
/* 191 */
|
|
55663
55620
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55664
55621
|
|
|
55665
55622
|
"use strict";
|
|
@@ -55700,7 +55657,7 @@ exports.ListDatabasesOperation = ListDatabasesOperation;
|
|
|
55700
55657
|
//# sourceMappingURL=list_databases.js.map
|
|
55701
55658
|
|
|
55702
55659
|
/***/ }),
|
|
55703
|
-
/*
|
|
55660
|
+
/* 192 */
|
|
55704
55661
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55705
55662
|
|
|
55706
55663
|
"use strict";
|
|
@@ -55747,7 +55704,7 @@ exports.ValidateCollectionOperation = ValidateCollectionOperation;
|
|
|
55747
55704
|
//# sourceMappingURL=validate_collection.js.map
|
|
55748
55705
|
|
|
55749
55706
|
/***/ }),
|
|
55750
|
-
/*
|
|
55707
|
+
/* 193 */
|
|
55751
55708
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55752
55709
|
|
|
55753
55710
|
"use strict";
|
|
@@ -55811,7 +55768,7 @@ exports.GetMoreOperation = GetMoreOperation;
|
|
|
55811
55768
|
//# sourceMappingURL=get_more.js.map
|
|
55812
55769
|
|
|
55813
55770
|
/***/ }),
|
|
55814
|
-
/*
|
|
55771
|
+
/* 194 */
|
|
55815
55772
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55816
55773
|
|
|
55817
55774
|
"use strict";
|
|
@@ -55849,7 +55806,7 @@ exports.KillCursorsOperation = KillCursorsOperation;
|
|
|
55849
55806
|
//# sourceMappingURL=kill_cursors.js.map
|
|
55850
55807
|
|
|
55851
55808
|
/***/ }),
|
|
55852
|
-
/*
|
|
55809
|
+
/* 195 */
|
|
55853
55810
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55854
55811
|
|
|
55855
55812
|
"use strict";
|
|
@@ -55858,7 +55815,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
55858
55815
|
exports.FindOperation = void 0;
|
|
55859
55816
|
const error_1 = __webpack_require__(0);
|
|
55860
55817
|
const read_concern_1 = __webpack_require__(9);
|
|
55861
|
-
const sort_1 = __webpack_require__(
|
|
55818
|
+
const sort_1 = __webpack_require__(58);
|
|
55862
55819
|
const utils_1 = __webpack_require__(1);
|
|
55863
55820
|
const command_1 = __webpack_require__(5);
|
|
55864
55821
|
const operation_1 = __webpack_require__(3);
|
|
@@ -56020,14 +55977,14 @@ function makeFindCommand(ns, filter, options) {
|
|
|
56020
55977
|
//# sourceMappingURL=find.js.map
|
|
56021
55978
|
|
|
56022
55979
|
/***/ }),
|
|
56023
|
-
/*
|
|
55980
|
+
/* 196 */
|
|
56024
55981
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56025
55982
|
|
|
56026
55983
|
"use strict";
|
|
56027
55984
|
|
|
56028
55985
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56029
55986
|
exports.CountDocumentsOperation = void 0;
|
|
56030
|
-
const aggregate_1 = __webpack_require__(
|
|
55987
|
+
const aggregate_1 = __webpack_require__(57);
|
|
56031
55988
|
/** @internal */
|
|
56032
55989
|
class CountDocumentsOperation extends aggregate_1.AggregateOperation {
|
|
56033
55990
|
constructor(collection, query, options) {
|
|
@@ -56063,7 +56020,7 @@ exports.CountDocumentsOperation = CountDocumentsOperation;
|
|
|
56063
56020
|
//# sourceMappingURL=count_documents.js.map
|
|
56064
56021
|
|
|
56065
56022
|
/***/ }),
|
|
56066
|
-
/*
|
|
56023
|
+
/* 197 */
|
|
56067
56024
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56068
56025
|
|
|
56069
56026
|
"use strict";
|
|
@@ -56136,7 +56093,7 @@ exports.DistinctOperation = DistinctOperation;
|
|
|
56136
56093
|
//# sourceMappingURL=distinct.js.map
|
|
56137
56094
|
|
|
56138
56095
|
/***/ }),
|
|
56139
|
-
/*
|
|
56096
|
+
/* 198 */
|
|
56140
56097
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56141
56098
|
|
|
56142
56099
|
"use strict";
|
|
@@ -56180,7 +56137,7 @@ exports.EstimatedDocumentCountOperation = EstimatedDocumentCountOperation;
|
|
|
56180
56137
|
//# sourceMappingURL=estimated_document_count.js.map
|
|
56181
56138
|
|
|
56182
56139
|
/***/ }),
|
|
56183
|
-
/*
|
|
56140
|
+
/* 199 */
|
|
56184
56141
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56185
56142
|
|
|
56186
56143
|
"use strict";
|
|
@@ -56216,7 +56173,7 @@ exports.IsCappedOperation = IsCappedOperation;
|
|
|
56216
56173
|
//# sourceMappingURL=is_capped.js.map
|
|
56217
56174
|
|
|
56218
56175
|
/***/ }),
|
|
56219
|
-
/*
|
|
56176
|
+
/* 200 */
|
|
56220
56177
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56221
56178
|
|
|
56222
56179
|
"use strict";
|
|
@@ -56388,7 +56345,7 @@ function processScope(scope) {
|
|
|
56388
56345
|
//# sourceMappingURL=map_reduce.js.map
|
|
56389
56346
|
|
|
56390
56347
|
/***/ }),
|
|
56391
|
-
/*
|
|
56348
|
+
/* 201 */
|
|
56392
56349
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56393
56350
|
|
|
56394
56351
|
"use strict";
|
|
@@ -56423,7 +56380,7 @@ exports.OptionsOperation = OptionsOperation;
|
|
|
56423
56380
|
//# sourceMappingURL=options_operation.js.map
|
|
56424
56381
|
|
|
56425
56382
|
/***/ }),
|
|
56426
|
-
/*
|
|
56383
|
+
/* 202 */
|
|
56427
56384
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56428
56385
|
|
|
56429
56386
|
"use strict";
|
|
@@ -56475,7 +56432,7 @@ exports.ListCollectionsOperation = ListCollectionsOperation;
|
|
|
56475
56432
|
//# sourceMappingURL=list_collections.js.map
|
|
56476
56433
|
|
|
56477
56434
|
/***/ }),
|
|
56478
|
-
/*
|
|
56435
|
+
/* 203 */
|
|
56479
56436
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56480
56437
|
|
|
56481
56438
|
"use strict";
|
|
@@ -56510,7 +56467,7 @@ exports.CollectionsOperation = CollectionsOperation;
|
|
|
56510
56467
|
//# sourceMappingURL=collections.js.map
|
|
56511
56468
|
|
|
56512
56469
|
/***/ }),
|
|
56513
|
-
/*
|
|
56470
|
+
/* 204 */
|
|
56514
56471
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56515
56472
|
|
|
56516
56473
|
"use strict";
|
|
@@ -56616,7 +56573,7 @@ exports.CreateCollectionOperation = CreateCollectionOperation;
|
|
|
56616
56573
|
//# sourceMappingURL=create_collection.js.map
|
|
56617
56574
|
|
|
56618
56575
|
/***/ }),
|
|
56619
|
-
/*
|
|
56576
|
+
/* 205 */
|
|
56620
56577
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56621
56578
|
|
|
56622
56579
|
"use strict";
|
|
@@ -56655,7 +56612,7 @@ exports.ProfilingLevelOperation = ProfilingLevelOperation;
|
|
|
56655
56612
|
//# sourceMappingURL=profiling_level.js.map
|
|
56656
56613
|
|
|
56657
56614
|
/***/ }),
|
|
56658
|
-
/*
|
|
56615
|
+
/* 206 */
|
|
56659
56616
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56660
56617
|
|
|
56661
56618
|
"use strict";
|
|
@@ -56746,13 +56703,13 @@ module.exports = { defineOperation, validateParameter };
|
|
|
56746
56703
|
|
|
56747
56704
|
|
|
56748
56705
|
/***/ }),
|
|
56749
|
-
/*
|
|
56706
|
+
/* 207 */
|
|
56750
56707
|
/***/ (function(module) {
|
|
56751
56708
|
|
|
56752
56709
|
module.exports = JSON.parse("{\"name\":\"kerberos\",\"version\":\"2.0.0\",\"description\":\"Kerberos library for Node.js\",\"main\":\"lib/index.js\",\"files\":[\"lib\",\"src\",\"binding.gyp\",\"HISTORY.md\",\"README.md\"],\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/mongodb-js/kerberos.git\"},\"keywords\":[\"kerberos\",\"security\",\"authentication\"],\"author\":{\"name\":\"The MongoDB NodeJS Team\",\"email\":\"dbx-node@mongodb.com\"},\"bugs\":{\"url\":\"https://jira.mongodb.org/projects/NODE/issues/\"},\"dependencies\":{\"bindings\":\"^1.5.0\",\"node-addon-api\":\"^4.3.0\",\"prebuild-install\":\"7.0.1\"},\"devDependencies\":{\"chai\":\"^4.3.6\",\"chai-string\":\"^1.5.0\",\"chalk\":\"^4.1.2\",\"clang-format\":\"^1.6.0\",\"dmd-clear\":\"^0.1.2\",\"eslint\":\"^8.9.0\",\"eslint-config-prettier\":\"^8.3.0\",\"eslint-plugin-prettier\":\"^4.0.0\",\"jsdoc-to-markdown\":\"^7.1.1\",\"mocha\":\"^9.2.0\",\"mongodb\":\"^4.3.1\",\"prebuild\":\"^11.0.3\",\"prettier\":\"^2.5.1\",\"request\":\"^2.88.0\",\"standard-version\":\"^9.3.2\"},\"scripts\":{\"install\":\"prebuild-install --runtime napi || node-gyp rebuild\",\"format-cxx\":\"git-clang-format\",\"format-js\":\"eslint lib test --fix\",\"check:lint\":\"eslint lib test\",\"precommit\":\"check-clang-format\",\"test\":\"mocha test\",\"docs\":\"jsdoc2md --template etc/README.hbs --plugin dmd-clear --files lib/kerberos.js > README.md\",\"rebuild\":\"prebuild --runtime napi --compile\",\"prebuild\":\"prebuild --runtime napi --strip --verbose --all\",\"release\":\"standard-version -i HISTORY.md\"},\"engines\":{\"node\":\">=12.9.0\"},\"binary\":{\"napi_versions\":[4]},\"license\":\"Apache-2.0\",\"readmeFilename\":\"README.md\"}");
|
|
56753
56710
|
|
|
56754
56711
|
/***/ }),
|
|
56755
|
-
/*
|
|
56712
|
+
/* 208 */
|
|
56756
56713
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56757
56714
|
|
|
56758
56715
|
"use strict";
|
|
@@ -56910,14 +56867,14 @@ module.exports = {
|
|
|
56910
56867
|
|
|
56911
56868
|
|
|
56912
56869
|
/***/ }),
|
|
56913
|
-
/*
|
|
56870
|
+
/* 209 */
|
|
56914
56871
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56915
56872
|
|
|
56916
56873
|
var aws4 = exports,
|
|
56917
56874
|
url = __webpack_require__(33),
|
|
56918
|
-
querystring = __webpack_require__(
|
|
56875
|
+
querystring = __webpack_require__(210),
|
|
56919
56876
|
crypto = __webpack_require__(15),
|
|
56920
|
-
lru = __webpack_require__(
|
|
56877
|
+
lru = __webpack_require__(211),
|
|
56921
56878
|
credentialsCache = lru(1000)
|
|
56922
56879
|
|
|
56923
56880
|
// http://docs.amazonwebservices.com/general/latest/gr/signature-version-4.html
|
|
@@ -57289,13 +57246,13 @@ aws4.sign = function(request, credentials) {
|
|
|
57289
57246
|
|
|
57290
57247
|
|
|
57291
57248
|
/***/ }),
|
|
57292
|
-
/*
|
|
57249
|
+
/* 210 */
|
|
57293
57250
|
/***/ (function(module, exports) {
|
|
57294
57251
|
|
|
57295
57252
|
module.exports = require("querystring");
|
|
57296
57253
|
|
|
57297
57254
|
/***/ }),
|
|
57298
|
-
/*
|
|
57255
|
+
/* 211 */
|
|
57299
57256
|
/***/ (function(module, exports) {
|
|
57300
57257
|
|
|
57301
57258
|
module.exports = function(size) {
|
|
@@ -57397,7 +57354,7 @@ function DoublyLinkedNode(key, val) {
|
|
|
57397
57354
|
|
|
57398
57355
|
|
|
57399
57356
|
/***/ }),
|
|
57400
|
-
/*
|
|
57357
|
+
/* 212 */
|
|
57401
57358
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57402
57359
|
|
|
57403
57360
|
"use strict";
|
|
@@ -57408,7 +57365,7 @@ exports.Encrypter = void 0;
|
|
|
57408
57365
|
const bson_1 = __webpack_require__(4);
|
|
57409
57366
|
const constants_1 = __webpack_require__(7);
|
|
57410
57367
|
const error_1 = __webpack_require__(0);
|
|
57411
|
-
const mongo_client_1 = __webpack_require__(
|
|
57368
|
+
const mongo_client_1 = __webpack_require__(30);
|
|
57412
57369
|
const utils_1 = __webpack_require__(1);
|
|
57413
57370
|
let AutoEncrypterClass;
|
|
57414
57371
|
/** @internal */
|
|
@@ -57512,17 +57469,17 @@ exports.Encrypter = Encrypter;
|
|
|
57512
57469
|
//# sourceMappingURL=encrypter.js.map
|
|
57513
57470
|
|
|
57514
57471
|
/***/ }),
|
|
57515
|
-
/*
|
|
57472
|
+
/* 213 */
|
|
57516
57473
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57517
57474
|
|
|
57518
57475
|
"use strict";
|
|
57519
57476
|
|
|
57520
57477
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57521
57478
|
exports.connect = void 0;
|
|
57522
|
-
const connection_string_1 = __webpack_require__(
|
|
57479
|
+
const connection_string_1 = __webpack_require__(60);
|
|
57523
57480
|
const constants_1 = __webpack_require__(7);
|
|
57524
57481
|
const error_1 = __webpack_require__(0);
|
|
57525
|
-
const topology_1 = __webpack_require__(
|
|
57482
|
+
const topology_1 = __webpack_require__(214);
|
|
57526
57483
|
function connect(mongoClient, options, callback) {
|
|
57527
57484
|
if (!callback) {
|
|
57528
57485
|
throw new error_1.MongoInvalidArgumentError('Callback function must be provided');
|
|
@@ -57603,7 +57560,7 @@ function createTopology(mongoClient, options, callback) {
|
|
|
57603
57560
|
//# sourceMappingURL=connect.js.map
|
|
57604
57561
|
|
|
57605
57562
|
/***/ }),
|
|
57606
|
-
/*
|
|
57563
|
+
/* 214 */
|
|
57607
57564
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57608
57565
|
|
|
57609
57566
|
"use strict";
|
|
@@ -57614,14 +57571,14 @@ const Denque = __webpack_require__(115);
|
|
|
57614
57571
|
const timers_1 = __webpack_require__(23);
|
|
57615
57572
|
const util_1 = __webpack_require__(14);
|
|
57616
57573
|
const bson_1 = __webpack_require__(4);
|
|
57617
|
-
const connection_string_1 = __webpack_require__(
|
|
57574
|
+
const connection_string_1 = __webpack_require__(60);
|
|
57618
57575
|
const constants_1 = __webpack_require__(7);
|
|
57619
57576
|
const error_1 = __webpack_require__(0);
|
|
57620
57577
|
const mongo_types_1 = __webpack_require__(8);
|
|
57621
57578
|
const read_preference_1 = __webpack_require__(6);
|
|
57622
57579
|
const utils_1 = __webpack_require__(1);
|
|
57623
57580
|
const common_1 = __webpack_require__(10);
|
|
57624
|
-
const events_1 = __webpack_require__(
|
|
57581
|
+
const events_1 = __webpack_require__(63);
|
|
57625
57582
|
const server_1 = __webpack_require__(116);
|
|
57626
57583
|
const server_description_1 = __webpack_require__(38);
|
|
57627
57584
|
const server_selection_1 = __webpack_require__(34);
|
|
@@ -58264,7 +58221,7 @@ exports.ServerCapabilities = ServerCapabilities;
|
|
|
58264
58221
|
//# sourceMappingURL=topology.js.map
|
|
58265
58222
|
|
|
58266
58223
|
/***/ }),
|
|
58267
|
-
/*
|
|
58224
|
+
/* 215 */
|
|
58268
58225
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58269
58226
|
|
|
58270
58227
|
"use strict";
|
|
@@ -58274,9 +58231,9 @@ exports.MessageStream = void 0;
|
|
|
58274
58231
|
const stream_1 = __webpack_require__(20);
|
|
58275
58232
|
const error_1 = __webpack_require__(0);
|
|
58276
58233
|
const utils_1 = __webpack_require__(1);
|
|
58277
|
-
const commands_1 = __webpack_require__(
|
|
58278
|
-
const compression_1 = __webpack_require__(
|
|
58279
|
-
const constants_1 = __webpack_require__(
|
|
58234
|
+
const commands_1 = __webpack_require__(64);
|
|
58235
|
+
const compression_1 = __webpack_require__(62);
|
|
58236
|
+
const constants_1 = __webpack_require__(28);
|
|
58280
58237
|
const MESSAGE_HEADER_SIZE = 16;
|
|
58281
58238
|
const COMPRESSION_DETAILS_SIZE = 9; // originalOpcode + uncompressedSize, compressorID
|
|
58282
58239
|
const kDefaultMaxBsonMessageSize = 1024 * 1024 * 16 * 4;
|
|
@@ -58445,7 +58402,7 @@ function processIncomingData(stream, callback) {
|
|
|
58445
58402
|
//# sourceMappingURL=message_stream.js.map
|
|
58446
58403
|
|
|
58447
58404
|
/***/ }),
|
|
58448
|
-
/*
|
|
58405
|
+
/* 216 */
|
|
58449
58406
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58450
58407
|
|
|
58451
58408
|
"use strict";
|
|
@@ -58502,7 +58459,7 @@ exports.StreamDescription = StreamDescription;
|
|
|
58502
58459
|
//# sourceMappingURL=stream_description.js.map
|
|
58503
58460
|
|
|
58504
58461
|
/***/ }),
|
|
58505
|
-
/*
|
|
58462
|
+
/* 217 */
|
|
58506
58463
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58507
58464
|
|
|
58508
58465
|
"use strict";
|
|
@@ -59058,7 +59015,7 @@ ConnectionPool.CONNECTION_CHECKED_IN = constants_1.CONNECTION_CHECKED_IN;
|
|
|
59058
59015
|
//# sourceMappingURL=connection_pool.js.map
|
|
59059
59016
|
|
|
59060
59017
|
/***/ }),
|
|
59061
|
-
/*
|
|
59018
|
+
/* 218 */
|
|
59062
59019
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59063
59020
|
|
|
59064
59021
|
"use strict";
|
|
@@ -59075,12 +59032,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
59075
59032
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59076
59033
|
exports.SocksClientError = exports.SocksClient = void 0;
|
|
59077
59034
|
const events_1 = __webpack_require__(27);
|
|
59078
|
-
const net = __webpack_require__(
|
|
59079
|
-
const ip = __webpack_require__(
|
|
59080
|
-
const smart_buffer_1 = __webpack_require__(
|
|
59035
|
+
const net = __webpack_require__(65);
|
|
59036
|
+
const ip = __webpack_require__(219);
|
|
59037
|
+
const smart_buffer_1 = __webpack_require__(220);
|
|
59081
59038
|
const constants_1 = __webpack_require__(120);
|
|
59082
|
-
const helpers_1 = __webpack_require__(
|
|
59083
|
-
const receivebuffer_1 = __webpack_require__(
|
|
59039
|
+
const helpers_1 = __webpack_require__(222);
|
|
59040
|
+
const receivebuffer_1 = __webpack_require__(223);
|
|
59084
59041
|
const util_1 = __webpack_require__(121);
|
|
59085
59042
|
Object.defineProperty(exports, "SocksClientError", { enumerable: true, get: function () { return util_1.SocksClientError; } });
|
|
59086
59043
|
class SocksClient extends events_1.EventEmitter {
|
|
@@ -59859,7 +59816,7 @@ exports.SocksClient = SocksClient;
|
|
|
59859
59816
|
//# sourceMappingURL=socksclient.js.map
|
|
59860
59817
|
|
|
59861
59818
|
/***/ }),
|
|
59862
|
-
/*
|
|
59819
|
+
/* 219 */
|
|
59863
59820
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59864
59821
|
|
|
59865
59822
|
const ip = exports;
|
|
@@ -60287,13 +60244,13 @@ ip.fromLong = function (ipl) {
|
|
|
60287
60244
|
|
|
60288
60245
|
|
|
60289
60246
|
/***/ }),
|
|
60290
|
-
/*
|
|
60247
|
+
/* 220 */
|
|
60291
60248
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60292
60249
|
|
|
60293
60250
|
"use strict";
|
|
60294
60251
|
|
|
60295
60252
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
60296
|
-
const utils_1 = __webpack_require__(
|
|
60253
|
+
const utils_1 = __webpack_require__(221);
|
|
60297
60254
|
// The default Buffer size if one is not provided.
|
|
60298
60255
|
const DEFAULT_SMARTBUFFER_SIZE = 4096;
|
|
60299
60256
|
// The default string encoding to use for reading/writing strings.
|
|
@@ -61526,7 +61483,7 @@ exports.SmartBuffer = SmartBuffer;
|
|
|
61526
61483
|
//# sourceMappingURL=smartbuffer.js.map
|
|
61527
61484
|
|
|
61528
61485
|
/***/ }),
|
|
61529
|
-
/*
|
|
61486
|
+
/* 221 */
|
|
61530
61487
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61531
61488
|
|
|
61532
61489
|
"use strict";
|
|
@@ -61640,7 +61597,7 @@ exports.bigIntAndBufferInt64Check = bigIntAndBufferInt64Check;
|
|
|
61640
61597
|
//# sourceMappingURL=utils.js.map
|
|
61641
61598
|
|
|
61642
61599
|
/***/ }),
|
|
61643
|
-
/*
|
|
61600
|
+
/* 222 */
|
|
61644
61601
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61645
61602
|
|
|
61646
61603
|
"use strict";
|
|
@@ -61774,7 +61731,7 @@ function isValidTimeoutValue(value) {
|
|
|
61774
61731
|
//# sourceMappingURL=helpers.js.map
|
|
61775
61732
|
|
|
61776
61733
|
/***/ }),
|
|
61777
|
-
/*
|
|
61734
|
+
/* 223 */
|
|
61778
61735
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61779
61736
|
|
|
61780
61737
|
"use strict";
|
|
@@ -61823,7 +61780,7 @@ exports.ReceiveBuffer = ReceiveBuffer;
|
|
|
61823
61780
|
//# sourceMappingURL=receivebuffer.js.map
|
|
61824
61781
|
|
|
61825
61782
|
/***/ }),
|
|
61826
|
-
/*
|
|
61783
|
+
/* 224 */
|
|
61827
61784
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61828
61785
|
|
|
61829
61786
|
"use strict";
|
|
@@ -61873,7 +61830,7 @@ exports.MongoCR = MongoCR;
|
|
|
61873
61830
|
//# sourceMappingURL=mongocr.js.map
|
|
61874
61831
|
|
|
61875
61832
|
/***/ }),
|
|
61876
|
-
/*
|
|
61833
|
+
/* 225 */
|
|
61877
61834
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61878
61835
|
|
|
61879
61836
|
"use strict";
|
|
@@ -61881,10 +61838,10 @@ exports.MongoCR = MongoCR;
|
|
|
61881
61838
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
61882
61839
|
exports.MongoDBAWS = void 0;
|
|
61883
61840
|
const crypto = __webpack_require__(15);
|
|
61884
|
-
const http = __webpack_require__(
|
|
61841
|
+
const http = __webpack_require__(226);
|
|
61885
61842
|
const url = __webpack_require__(33);
|
|
61886
61843
|
const BSON = __webpack_require__(4);
|
|
61887
|
-
const deps_1 = __webpack_require__(
|
|
61844
|
+
const deps_1 = __webpack_require__(31);
|
|
61888
61845
|
const error_1 = __webpack_require__(0);
|
|
61889
61846
|
const utils_1 = __webpack_require__(1);
|
|
61890
61847
|
const auth_provider_1 = __webpack_require__(18);
|
|
@@ -62083,13 +62040,13 @@ function request(uri, _options, callback) {
|
|
|
62083
62040
|
//# sourceMappingURL=mongodb_aws.js.map
|
|
62084
62041
|
|
|
62085
62042
|
/***/ }),
|
|
62086
|
-
/*
|
|
62043
|
+
/* 226 */
|
|
62087
62044
|
/***/ (function(module, exports) {
|
|
62088
62045
|
|
|
62089
62046
|
module.exports = require("http");
|
|
62090
62047
|
|
|
62091
62048
|
/***/ }),
|
|
62092
|
-
/*
|
|
62049
|
+
/* 227 */
|
|
62093
62050
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62094
62051
|
|
|
62095
62052
|
"use strict";
|
|
@@ -62122,7 +62079,7 @@ exports.Plain = Plain;
|
|
|
62122
62079
|
//# sourceMappingURL=plain.js.map
|
|
62123
62080
|
|
|
62124
62081
|
/***/ }),
|
|
62125
|
-
/*
|
|
62082
|
+
/* 228 */
|
|
62126
62083
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62127
62084
|
|
|
62128
62085
|
"use strict";
|
|
@@ -62131,7 +62088,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
62131
62088
|
exports.ScramSHA256 = exports.ScramSHA1 = void 0;
|
|
62132
62089
|
const crypto = __webpack_require__(15);
|
|
62133
62090
|
const bson_1 = __webpack_require__(4);
|
|
62134
|
-
const deps_1 = __webpack_require__(
|
|
62091
|
+
const deps_1 = __webpack_require__(31);
|
|
62135
62092
|
const error_1 = __webpack_require__(0);
|
|
62136
62093
|
const utils_1 = __webpack_require__(1);
|
|
62137
62094
|
const auth_provider_1 = __webpack_require__(18);
|
|
@@ -62416,7 +62373,7 @@ exports.ScramSHA256 = ScramSHA256;
|
|
|
62416
62373
|
//# sourceMappingURL=scram.js.map
|
|
62417
62374
|
|
|
62418
62375
|
/***/ }),
|
|
62419
|
-
/*
|
|
62376
|
+
/* 229 */
|
|
62420
62377
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62421
62378
|
|
|
62422
62379
|
"use strict";
|
|
@@ -62461,7 +62418,7 @@ function x509AuthenticateCommand(credentials) {
|
|
|
62461
62418
|
//# sourceMappingURL=x509.js.map
|
|
62462
62419
|
|
|
62463
62420
|
/***/ }),
|
|
62464
|
-
/*
|
|
62421
|
+
/* 230 */
|
|
62465
62422
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62466
62423
|
|
|
62467
62424
|
"use strict";
|
|
@@ -62477,7 +62434,7 @@ const error_1 = __webpack_require__(0);
|
|
|
62477
62434
|
const mongo_types_1 = __webpack_require__(8);
|
|
62478
62435
|
const utils_1 = __webpack_require__(1);
|
|
62479
62436
|
const common_1 = __webpack_require__(10);
|
|
62480
|
-
const events_1 = __webpack_require__(
|
|
62437
|
+
const events_1 = __webpack_require__(63);
|
|
62481
62438
|
const server_1 = __webpack_require__(116);
|
|
62482
62439
|
/** @internal */
|
|
62483
62440
|
const kServer = Symbol('server');
|
|
@@ -62880,7 +62837,7 @@ exports.MonitorInterval = MonitorInterval;
|
|
|
62880
62837
|
//# sourceMappingURL=monitor.js.map
|
|
62881
62838
|
|
|
62882
62839
|
/***/ }),
|
|
62883
|
-
/*
|
|
62840
|
+
/* 231 */
|
|
62884
62841
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62885
62842
|
|
|
62886
62843
|
"use strict";
|
|
@@ -63038,15 +62995,15 @@ GridFSBucket.INDEX = 'index';
|
|
|
63038
62995
|
//# sourceMappingURL=index.js.map
|
|
63039
62996
|
|
|
63040
62997
|
/***/ }),
|
|
63041
|
-
/*
|
|
62998
|
+
/* 232 */
|
|
63042
62999
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63043
63000
|
|
|
63044
63001
|
"use strict";
|
|
63045
63002
|
|
|
63046
63003
|
|
|
63047
63004
|
module.exports = function (modules) {
|
|
63048
|
-
const tls = __webpack_require__(
|
|
63049
|
-
const net = __webpack_require__(
|
|
63005
|
+
const tls = __webpack_require__(51);
|
|
63006
|
+
const net = __webpack_require__(65);
|
|
63050
63007
|
const fs = __webpack_require__(13);
|
|
63051
63008
|
const { once } = __webpack_require__(27);
|
|
63052
63009
|
const { SocksClient } = __webpack_require__(119);
|
|
@@ -63060,7 +63017,7 @@ module.exports = function (modules) {
|
|
|
63060
63017
|
const databaseNamespace = common.databaseNamespace;
|
|
63061
63018
|
const collectionNamespace = common.collectionNamespace;
|
|
63062
63019
|
const MongoCryptError = common.MongoCryptError;
|
|
63063
|
-
const { BufferPool } = __webpack_require__(
|
|
63020
|
+
const { BufferPool } = __webpack_require__(233);
|
|
63064
63021
|
|
|
63065
63022
|
// libmongocrypt states
|
|
63066
63023
|
const MONGOCRYPT_CTX_ERROR = 0;
|
|
@@ -63526,7 +63483,7 @@ module.exports = function (modules) {
|
|
|
63526
63483
|
|
|
63527
63484
|
|
|
63528
63485
|
/***/ }),
|
|
63529
|
-
/*
|
|
63486
|
+
/* 233 */
|
|
63530
63487
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63531
63488
|
|
|
63532
63489
|
"use strict";
|
|
@@ -63656,18 +63613,18 @@ module.exports = { BufferPool };
|
|
|
63656
63613
|
|
|
63657
63614
|
|
|
63658
63615
|
/***/ }),
|
|
63659
|
-
/*
|
|
63616
|
+
/* 234 */
|
|
63660
63617
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63661
63618
|
|
|
63662
63619
|
"use strict";
|
|
63663
63620
|
|
|
63664
63621
|
|
|
63665
63622
|
module.exports = function (modules) {
|
|
63666
|
-
const mc = __webpack_require__(
|
|
63623
|
+
const mc = __webpack_require__(32)('mongocrypt');
|
|
63667
63624
|
const common = __webpack_require__(41);
|
|
63668
63625
|
const databaseNamespace = common.databaseNamespace;
|
|
63669
63626
|
const StateMachine = modules.stateMachine.StateMachine;
|
|
63670
|
-
const MongocryptdManager = __webpack_require__(
|
|
63627
|
+
const MongocryptdManager = __webpack_require__(235).MongocryptdManager;
|
|
63671
63628
|
const MongoClient = modules.mongodb.MongoClient;
|
|
63672
63629
|
const MongoError = modules.mongodb.MongoError;
|
|
63673
63630
|
const BSON = modules.mongodb.BSON;
|
|
@@ -64047,13 +64004,13 @@ function decorateDecryptionResult(decrypted, original, bson, isTopLevelDecorateC
|
|
|
64047
64004
|
|
|
64048
64005
|
|
|
64049
64006
|
/***/ }),
|
|
64050
|
-
/*
|
|
64007
|
+
/* 235 */
|
|
64051
64008
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64052
64009
|
|
|
64053
64010
|
"use strict";
|
|
64054
64011
|
|
|
64055
64012
|
|
|
64056
|
-
const spawn = __webpack_require__(
|
|
64013
|
+
const spawn = __webpack_require__(236).spawn;
|
|
64057
64014
|
|
|
64058
64015
|
/**
|
|
64059
64016
|
* @ignore
|
|
@@ -64123,20 +64080,20 @@ module.exports = { MongocryptdManager };
|
|
|
64123
64080
|
|
|
64124
64081
|
|
|
64125
64082
|
/***/ }),
|
|
64126
|
-
/*
|
|
64083
|
+
/* 236 */
|
|
64127
64084
|
/***/ (function(module, exports) {
|
|
64128
64085
|
|
|
64129
64086
|
module.exports = require("child_process");
|
|
64130
64087
|
|
|
64131
64088
|
/***/ }),
|
|
64132
|
-
/*
|
|
64089
|
+
/* 237 */
|
|
64133
64090
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64134
64091
|
|
|
64135
64092
|
"use strict";
|
|
64136
64093
|
|
|
64137
64094
|
|
|
64138
64095
|
module.exports = function (modules) {
|
|
64139
|
-
const mc = __webpack_require__(
|
|
64096
|
+
const mc = __webpack_require__(32)('mongocrypt');
|
|
64140
64097
|
const common = __webpack_require__(41);
|
|
64141
64098
|
const databaseNamespace = common.databaseNamespace;
|
|
64142
64099
|
const collectionNamespace = common.collectionNamespace;
|
|
@@ -64829,7 +64786,7 @@ module.exports = function (modules) {
|
|
|
64829
64786
|
|
|
64830
64787
|
|
|
64831
64788
|
/***/ }),
|
|
64832
|
-
/*
|
|
64789
|
+
/* 238 */
|
|
64833
64790
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64834
64791
|
|
|
64835
64792
|
"use strict";
|
|
@@ -64903,7 +64860,7 @@ exports.hookLogger = hookLogger;
|
|
|
64903
64860
|
//# sourceMappingURL=log-hook.js.map
|
|
64904
64861
|
|
|
64905
64862
|
/***/ }),
|
|
64906
|
-
/*
|
|
64863
|
+
/* 239 */
|
|
64907
64864
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64908
64865
|
|
|
64909
64866
|
"use strict";
|
|
@@ -64968,13 +64925,13 @@ exports.ToggleableAnalytics = ToggleableAnalytics;
|
|
|
64968
64925
|
//# sourceMappingURL=analytics-helpers.js.map
|
|
64969
64926
|
|
|
64970
64927
|
/***/ }),
|
|
64971
|
-
/*
|
|
64928
|
+
/* 240 */
|
|
64972
64929
|
/***/ (function(module, exports) {
|
|
64973
64930
|
|
|
64974
|
-
module.exports =
|
|
64931
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__240__;
|
|
64975
64932
|
|
|
64976
64933
|
/***/ }),
|
|
64977
|
-
/*
|
|
64934
|
+
/* 241 */
|
|
64978
64935
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
64979
64936
|
|
|
64980
64937
|
"use strict";
|
|
@@ -64990,10 +64947,10 @@ __webpack_require__.d(__webpack_exports__, "metadata", function() { return /* re
|
|
|
64990
64947
|
var external_react_ = __webpack_require__(2);
|
|
64991
64948
|
var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
|
|
64992
64949
|
|
|
64993
|
-
// EXTERNAL MODULE: /
|
|
64950
|
+
// EXTERNAL MODULE: /home/runner/work/compass/compass/node_modules/react-redux/es/index.js + 26 modules
|
|
64994
64951
|
var es = __webpack_require__(128);
|
|
64995
64952
|
|
|
64996
|
-
// CONCATENATED MODULE: /
|
|
64953
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
64997
64954
|
function _defineProperty(obj, key, value) {
|
|
64998
64955
|
if (key in obj) {
|
|
64999
64956
|
Object.defineProperty(obj, key, {
|
|
@@ -65008,7 +64965,7 @@ function _defineProperty(obj, key, value) {
|
|
|
65008
64965
|
|
|
65009
64966
|
return obj;
|
|
65010
64967
|
}
|
|
65011
|
-
// CONCATENATED MODULE: /
|
|
64968
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/@babel/runtime/helpers/esm/objectSpread2.js
|
|
65012
64969
|
|
|
65013
64970
|
|
|
65014
64971
|
function ownKeys(object, enumerableOnly) {
|
|
@@ -65036,7 +64993,7 @@ function _objectSpread2(target) {
|
|
|
65036
64993
|
|
|
65037
64994
|
return target;
|
|
65038
64995
|
}
|
|
65039
|
-
// CONCATENATED MODULE: /
|
|
64996
|
+
// CONCATENATED MODULE: /home/runner/work/compass/compass/node_modules/redux/es/redux.js
|
|
65040
64997
|
|
|
65041
64998
|
|
|
65042
64999
|
/**
|
|
@@ -65746,24 +65703,22 @@ var app_registry_default = /*#__PURE__*/__webpack_require__.n(app_registry);
|
|
|
65746
65703
|
// Workaround for webpack require that overrides global require
|
|
65747
65704
|
function getRealRequire() {
|
|
65748
65705
|
// eslint-disable-next-line camelcase
|
|
65749
|
-
return true ?
|
|
65706
|
+
return true ?
|
|
65707
|
+
// eslint-disable-next-line camelcase, no-undef
|
|
65750
65708
|
require : undefined;
|
|
65751
65709
|
}
|
|
65710
|
+
|
|
65752
65711
|
/**
|
|
65753
65712
|
* @type {{ WorkerRuntime: typeof import('@mongosh/node-runtime-worker-thread').WorkerRuntime }}
|
|
65754
65713
|
*/
|
|
65755
|
-
|
|
65756
|
-
|
|
65757
65714
|
const {
|
|
65758
65715
|
WorkerRuntime
|
|
65759
65716
|
} = (() => {
|
|
65760
65717
|
const require = getRealRequire();
|
|
65761
|
-
|
|
65762
|
-
|
|
65718
|
+
const realModulePath = require.resolve('@mongosh/node-runtime-worker-thread');
|
|
65719
|
+
// Runtime needs to be outside the asar bundle to function properly, so if we
|
|
65763
65720
|
// resolved it inside of one, we will try to import it from outside (and hard
|
|
65764
65721
|
// fail if this didn't work)
|
|
65765
|
-
|
|
65766
|
-
|
|
65767
65722
|
if (/\.asar(?!\.unpacked)/.test(realModulePath)) {
|
|
65768
65723
|
try {
|
|
65769
65724
|
return require(realModulePath.replace('.asar', '.asar.unpacked'));
|
|
@@ -65772,32 +65727,31 @@ const {
|
|
|
65772
65727
|
throw e;
|
|
65773
65728
|
}
|
|
65774
65729
|
}
|
|
65775
|
-
|
|
65776
65730
|
return require(realModulePath);
|
|
65777
65731
|
})();
|
|
65778
65732
|
|
|
65779
|
-
|
|
65780
65733
|
// CONCATENATED MODULE: ./src/modules/runtime.js
|
|
65781
65734
|
|
|
65735
|
+
|
|
65782
65736
|
/**
|
|
65783
65737
|
* The prefix.
|
|
65784
65738
|
*/
|
|
65785
|
-
|
|
65786
65739
|
const PREFIX = 'shell/runtime';
|
|
65740
|
+
|
|
65787
65741
|
/**
|
|
65788
65742
|
* Data service connected.
|
|
65789
65743
|
*/
|
|
65790
|
-
|
|
65791
65744
|
const SETUP_RUNTIME = `${PREFIX}/SETUP_RUNTIME`;
|
|
65745
|
+
|
|
65792
65746
|
/**
|
|
65793
65747
|
* The initial state.
|
|
65794
65748
|
*/
|
|
65795
|
-
|
|
65796
65749
|
const INITIAL_STATE = {
|
|
65797
65750
|
error: null,
|
|
65798
65751
|
dataService: null,
|
|
65799
65752
|
runtime: null
|
|
65800
65753
|
};
|
|
65754
|
+
|
|
65801
65755
|
/**
|
|
65802
65756
|
* Reducer function for handling data service connected actions.
|
|
65803
65757
|
*
|
|
@@ -65806,15 +65760,12 @@ const INITIAL_STATE = {
|
|
|
65806
65760
|
*
|
|
65807
65761
|
* @returns {String} The new state.
|
|
65808
65762
|
*/
|
|
65809
|
-
|
|
65810
65763
|
function reducer(state = INITIAL_STATE, action) {
|
|
65811
65764
|
if (action.type === SETUP_RUNTIME) {
|
|
65812
65765
|
return reduceSetupRuntime(state, action);
|
|
65813
65766
|
}
|
|
65814
|
-
|
|
65815
65767
|
return state;
|
|
65816
65768
|
}
|
|
65817
|
-
|
|
65818
65769
|
function reduceSetupRuntime(state, action) {
|
|
65819
65770
|
if (action.error || !action.dataService) {
|
|
65820
65771
|
return {
|
|
@@ -65823,11 +65774,9 @@ function reduceSetupRuntime(state, action) {
|
|
|
65823
65774
|
runtime: null
|
|
65824
65775
|
};
|
|
65825
65776
|
}
|
|
65826
|
-
|
|
65827
65777
|
if (state.dataService === action.dataService) {
|
|
65828
65778
|
return state;
|
|
65829
65779
|
}
|
|
65830
|
-
|
|
65831
65780
|
const runtime = createWorkerRuntime(action.dataService, action.appRegistry);
|
|
65832
65781
|
return {
|
|
65833
65782
|
error: action.error,
|
|
@@ -65835,6 +65784,7 @@ function reduceSetupRuntime(state, action) {
|
|
|
65835
65784
|
runtime
|
|
65836
65785
|
};
|
|
65837
65786
|
}
|
|
65787
|
+
|
|
65838
65788
|
/**
|
|
65839
65789
|
* Setup the shell runtime with the supplied dataService instance.
|
|
65840
65790
|
*
|
|
@@ -65844,15 +65794,12 @@ function reduceSetupRuntime(state, action) {
|
|
|
65844
65794
|
*
|
|
65845
65795
|
* @returns {Object} The data service connected action.
|
|
65846
65796
|
*/
|
|
65847
|
-
|
|
65848
|
-
|
|
65849
65797
|
const setupRuntime = (error, dataService, appRegistry) => ({
|
|
65850
65798
|
type: SETUP_RUNTIME,
|
|
65851
65799
|
error,
|
|
65852
65800
|
dataService,
|
|
65853
65801
|
appRegistry
|
|
65854
65802
|
});
|
|
65855
|
-
|
|
65856
65803
|
function createWorkerRuntime(dataService, appRegistry) {
|
|
65857
65804
|
const {
|
|
65858
65805
|
url: driverUrl,
|
|
@@ -65861,7 +65808,8 @@ function createWorkerRuntime(dataService, appRegistry) {
|
|
|
65861
65808
|
cliOptions
|
|
65862
65809
|
} = dataService.getMongoClientConnectionOptions();
|
|
65863
65810
|
return new WorkerRuntime(driverUrl, driverOptions, cliOptions !== null && cliOptions !== void 0 ? cliOptions : {}, {
|
|
65864
|
-
env: {
|
|
65811
|
+
env: {
|
|
65812
|
+
...process.env,
|
|
65865
65813
|
ELECTRON_RUN_AS_NODE: 1
|
|
65866
65814
|
},
|
|
65867
65815
|
serialization: 'advanced'
|
|
@@ -65876,7 +65824,7 @@ const modules_reducer = combineReducers({
|
|
|
65876
65824
|
runtime: reducer
|
|
65877
65825
|
});
|
|
65878
65826
|
/* harmony default export */ var modules = (modules_reducer);
|
|
65879
|
-
// EXTERNAL MODULE: /
|
|
65827
|
+
// EXTERNAL MODULE: /home/runner/work/compass/compass/node_modules/@mongosh/logging/lib/index.js
|
|
65880
65828
|
var lib = __webpack_require__(131);
|
|
65881
65829
|
|
|
65882
65830
|
// EXTERNAL MODULE: external "@mongodb-js/compass-logging"
|
|
@@ -65891,7 +65839,6 @@ function store_defineProperty(obj, key, value) { if (key in obj) { Object.define
|
|
|
65891
65839
|
|
|
65892
65840
|
|
|
65893
65841
|
|
|
65894
|
-
|
|
65895
65842
|
const {
|
|
65896
65843
|
log,
|
|
65897
65844
|
debug,
|
|
@@ -65900,28 +65847,22 @@ const {
|
|
|
65900
65847
|
class store_CompassShellStore {
|
|
65901
65848
|
constructor() {
|
|
65902
65849
|
store_defineProperty(this, "globalAppRegistry", null);
|
|
65903
|
-
|
|
65904
65850
|
store_defineProperty(this, "onDataServiceConnected", (error, dataService) => {
|
|
65905
65851
|
this.reduxStore.dispatch(setupRuntime(error, dataService, this.globalAppRegistry));
|
|
65906
65852
|
});
|
|
65907
|
-
|
|
65908
65853
|
store_defineProperty(this, "onDataServiceDisconnected", () => {
|
|
65909
65854
|
const {
|
|
65910
65855
|
runtime: {
|
|
65911
65856
|
runtime
|
|
65912
65857
|
}
|
|
65913
65858
|
} = this.reduxStore.getState();
|
|
65914
|
-
|
|
65915
65859
|
if (runtime) {
|
|
65916
65860
|
runtime.terminate();
|
|
65917
65861
|
}
|
|
65918
|
-
|
|
65919
65862
|
this.reduxStore.dispatch(setupRuntime(null, null, null));
|
|
65920
65863
|
});
|
|
65921
|
-
|
|
65922
65864
|
this.reduxStore = redux_createStore(modules);
|
|
65923
65865
|
}
|
|
65924
|
-
|
|
65925
65866
|
onActivated(appRegistry) {
|
|
65926
65867
|
debug('activated');
|
|
65927
65868
|
this.globalAppRegistry = appRegistry;
|
|
@@ -65939,14 +65880,14 @@ class store_CompassShellStore {
|
|
|
65939
65880
|
}, {
|
|
65940
65881
|
platform: process.platform,
|
|
65941
65882
|
arch: process.arch
|
|
65942
|
-
}, __webpack_require__(
|
|
65883
|
+
}, __webpack_require__(66).version);
|
|
65884
|
+
// We also don't need to pass a proper user id, since that is
|
|
65943
65885
|
// handled by the Compass tracking code.
|
|
65886
|
+
appRegistry.emit('mongosh:new-user', '<compass user>');
|
|
65944
65887
|
|
|
65945
|
-
|
|
65946
|
-
|
|
65888
|
+
// Set the global app registry in the store.
|
|
65947
65889
|
this.reduxStore.dispatch(Object(app_registry["globalAppRegistryActivated"])(appRegistry));
|
|
65948
65890
|
}
|
|
65949
|
-
|
|
65950
65891
|
}
|
|
65951
65892
|
// CONCATENATED MODULE: ./src/stores/index.js
|
|
65952
65893
|
|
|
@@ -65954,11 +65895,9 @@ class store_CompassShellStore {
|
|
|
65954
65895
|
|
|
65955
65896
|
// CONCATENATED MODULE: ./src/modules/get-user-data-file-path.js
|
|
65956
65897
|
const path = __webpack_require__(19);
|
|
65957
|
-
|
|
65958
65898
|
const {
|
|
65959
65899
|
getStoragePaths
|
|
65960
|
-
} = __webpack_require__(
|
|
65961
|
-
|
|
65900
|
+
} = __webpack_require__(240);
|
|
65962
65901
|
const {
|
|
65963
65902
|
appName,
|
|
65964
65903
|
basepath
|
|
@@ -65978,14 +65917,15 @@ var external_path_default = /*#__PURE__*/__webpack_require__.n(external_path_);
|
|
|
65978
65917
|
// CONCATENATED MODULE: ./src/modules/history-storage.js
|
|
65979
65918
|
|
|
65980
65919
|
|
|
65920
|
+
|
|
65981
65921
|
/**
|
|
65982
65922
|
* Persists and retrieves history to / from disk
|
|
65983
65923
|
*/
|
|
65984
|
-
|
|
65985
65924
|
class history_storage_HistoryStorage {
|
|
65986
65925
|
constructor(filePath) {
|
|
65987
65926
|
this.filePath = filePath;
|
|
65988
65927
|
}
|
|
65928
|
+
|
|
65989
65929
|
/**
|
|
65990
65930
|
* Saves the history to disk, it creates the directory and the file if
|
|
65991
65931
|
* not existing and replaces the file content.
|
|
@@ -65993,11 +65933,8 @@ class history_storage_HistoryStorage {
|
|
|
65993
65933
|
* @param {string[]} history - An array of history entries sorted from
|
|
65994
65934
|
* newest to oldest.
|
|
65995
65935
|
*/
|
|
65996
|
-
|
|
65997
|
-
|
|
65998
65936
|
async save(history) {
|
|
65999
65937
|
const targetDir = external_path_default.a.dirname(this.filePath);
|
|
66000
|
-
|
|
66001
65938
|
try {
|
|
66002
65939
|
await external_fs_default.a.promises.mkdir(targetDir, {
|
|
66003
65940
|
recursive: true
|
|
@@ -66007,9 +65944,9 @@ class history_storage_HistoryStorage {
|
|
|
66007
65944
|
throw error;
|
|
66008
65945
|
}
|
|
66009
65946
|
}
|
|
66010
|
-
|
|
66011
65947
|
await external_fs_default.a.promises.writeFile(this.filePath, JSON.stringify(history));
|
|
66012
65948
|
}
|
|
65949
|
+
|
|
66013
65950
|
/**
|
|
66014
65951
|
* Loads the history from disk. Returns an empty array if the file does
|
|
66015
65952
|
* not exist or cannot be accessed.
|
|
@@ -66017,17 +65954,13 @@ class history_storage_HistoryStorage {
|
|
|
66017
65954
|
* @returns {string[]} An array of history entries sorted from
|
|
66018
65955
|
* newest to oldest.
|
|
66019
65956
|
*/
|
|
66020
|
-
|
|
66021
|
-
|
|
66022
65957
|
async load() {
|
|
66023
65958
|
if (!(await this._canAccess(this.filePath))) {
|
|
66024
65959
|
return [];
|
|
66025
65960
|
}
|
|
66026
|
-
|
|
66027
65961
|
const content = await external_fs_default.a.promises.readFile(this.filePath, 'utf-8');
|
|
66028
65962
|
return JSON.parse(content);
|
|
66029
65963
|
}
|
|
66030
|
-
|
|
66031
65964
|
async _canAccess(filePath) {
|
|
66032
65965
|
try {
|
|
66033
65966
|
await external_fs_default.a.promises.access(filePath);
|
|
@@ -66036,7 +65969,6 @@ class history_storage_HistoryStorage {
|
|
|
66036
65969
|
return false;
|
|
66037
65970
|
}
|
|
66038
65971
|
}
|
|
66039
|
-
|
|
66040
65972
|
}
|
|
66041
65973
|
// CONCATENATED MODULE: ./src/plugin.js
|
|
66042
65974
|
|
|
@@ -66044,25 +65976,20 @@ class history_storage_HistoryStorage {
|
|
|
66044
65976
|
|
|
66045
65977
|
|
|
66046
65978
|
|
|
66047
|
-
|
|
66048
65979
|
function createPlugin() {
|
|
66049
65980
|
const store = new stores();
|
|
66050
|
-
|
|
66051
65981
|
function CompassShellPlugin() {
|
|
66052
65982
|
const [ShellComponent, setShellComponent] = Object(external_react_["useState"])(null);
|
|
66053
65983
|
const historyStorage = Object(external_react_["useRef"])(null);
|
|
66054
|
-
|
|
66055
65984
|
if (!historyStorage.current) {
|
|
66056
65985
|
const historyFilePath = getUserDataFilePath('shell-history.json');
|
|
66057
|
-
|
|
66058
65986
|
if (historyFilePath) {
|
|
66059
65987
|
historyStorage.current = new history_storage_HistoryStorage(historyFilePath);
|
|
66060
65988
|
}
|
|
66061
65989
|
}
|
|
66062
|
-
|
|
66063
65990
|
Object(external_react_["useEffect"])(() => {
|
|
66064
65991
|
let mounted = true;
|
|
66065
|
-
Promise.all(/* import() */[__webpack_require__.e(1), __webpack_require__.e(2)]).then(__webpack_require__.bind(null,
|
|
65992
|
+
Promise.all(/* import() */[__webpack_require__.e(1), __webpack_require__.e(2)]).then(__webpack_require__.bind(null, 473)).then(({
|
|
66066
65993
|
default: Component
|
|
66067
65994
|
}) => {
|
|
66068
65995
|
if (mounted) {
|
|
@@ -66073,7 +66000,6 @@ function createPlugin() {
|
|
|
66073
66000
|
mounted = false;
|
|
66074
66001
|
};
|
|
66075
66002
|
}, []);
|
|
66076
|
-
|
|
66077
66003
|
if (ShellComponent) {
|
|
66078
66004
|
return /*#__PURE__*/external_react_default.a.createElement(es["a" /* Provider */], {
|
|
66079
66005
|
store: store.reduxStore
|
|
@@ -66081,19 +66007,16 @@ function createPlugin() {
|
|
|
66081
66007
|
historyStorage: historyStorage.current
|
|
66082
66008
|
}));
|
|
66083
66009
|
}
|
|
66084
|
-
|
|
66085
66010
|
return null;
|
|
66086
66011
|
}
|
|
66087
|
-
|
|
66088
66012
|
return {
|
|
66089
66013
|
store,
|
|
66090
66014
|
Plugin: CompassShellPlugin
|
|
66091
66015
|
};
|
|
66092
66016
|
}
|
|
66093
|
-
|
|
66094
66017
|
/* harmony default export */ var src_plugin = (createPlugin);
|
|
66095
66018
|
// EXTERNAL MODULE: ./package.json
|
|
66096
|
-
var package_0 = __webpack_require__(
|
|
66019
|
+
var package_0 = __webpack_require__(66);
|
|
66097
66020
|
|
|
66098
66021
|
// CONCATENATED MODULE: ./src/index.js
|
|
66099
66022
|
|
|
@@ -66101,39 +66024,37 @@ const {
|
|
|
66101
66024
|
store: src_store,
|
|
66102
66025
|
Plugin
|
|
66103
66026
|
} = src_plugin();
|
|
66027
|
+
|
|
66104
66028
|
/**
|
|
66105
66029
|
* Activate all the components in the Compass Shell package.
|
|
66106
66030
|
* @param {Object} appRegistry - The Hadron appRegisrty to activate this plugin with.
|
|
66107
66031
|
**/
|
|
66108
|
-
|
|
66109
66032
|
function activate(appRegistry) {
|
|
66110
66033
|
// Register the shell plugin's role in Compass.
|
|
66111
66034
|
appRegistry.registerComponent('Global.Shell', Plugin);
|
|
66112
66035
|
appRegistry.registerStore('CompassShell.Store', src_store);
|
|
66113
66036
|
}
|
|
66037
|
+
|
|
66114
66038
|
/**
|
|
66115
66039
|
* Deactivate all the components in the Compass Shell package.
|
|
66116
66040
|
* @param {Object} appRegistry - The Hadron appRegisrty to deactivate this plugin with.
|
|
66117
66041
|
**/
|
|
66118
|
-
|
|
66119
|
-
|
|
66120
66042
|
function deactivate(appRegistry) {
|
|
66121
66043
|
appRegistry.registerComponent('Global.Shell', Plugin);
|
|
66122
66044
|
appRegistry.deregisterStore('CompassShell.Store');
|
|
66123
66045
|
}
|
|
66124
|
-
|
|
66125
66046
|
/* harmony default export */ var src = __webpack_exports__["default"] = (Plugin);
|
|
66126
66047
|
|
|
66127
66048
|
|
|
66128
66049
|
|
|
66129
66050
|
/***/ }),
|
|
66130
|
-
/*
|
|
66051
|
+
/* 242 */
|
|
66131
66052
|
/***/ (function(module, exports) {
|
|
66132
66053
|
|
|
66133
|
-
module.exports =
|
|
66054
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__242__;
|
|
66134
66055
|
|
|
66135
66056
|
/***/ }),
|
|
66136
|
-
/*
|
|
66057
|
+
/* 243 */
|
|
66137
66058
|
/***/ (function(module, exports) {
|
|
66138
66059
|
|
|
66139
66060
|
module.exports = require("clipboard");
|