@sentiance-react-native/core 6.14.1 → 6.15.0-rc.2
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/RNSentianceCore.podspec +2 -1
- package/android/src/main/java/com/sentiance/react/bridge/core/common/base/AbstractSentianceEmitter.java +41 -38
- package/ios/RNSentianceCore+Converter.m +12 -0
- package/lib/generated/sentiance-event-emitter.d.ts +3 -3
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/android/src/main/java/com/sentiance/react/bridge/core/common/util/ReactContextProvider.java +0 -94
package/RNSentianceCore.podspec
CHANGED
|
@@ -5,7 +5,7 @@ sentiance_sdk_env_var_version = ENV["SENTIANCE_RN_IOS_SDK_VERSION"]
|
|
|
5
5
|
|
|
6
6
|
Pod::Spec.new do |s|
|
|
7
7
|
s.name = "RNSentianceCore"
|
|
8
|
-
s.version = "6.
|
|
8
|
+
s.version = "6.15.0-rc.2"
|
|
9
9
|
s.summary = "RNSentianceCore"
|
|
10
10
|
s.description = <<-DESC
|
|
11
11
|
RNSentianceCore
|
|
@@ -19,6 +19,7 @@ Pod::Spec.new do |s|
|
|
|
19
19
|
s.source_files = "ios/**/*.{h,m,swift}"
|
|
20
20
|
s.requires_arc = true
|
|
21
21
|
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '${PODS_ROOT}/SENTSDK' }
|
|
22
|
+
s.static_framework = true
|
|
22
23
|
|
|
23
24
|
s.dependency "React"
|
|
24
25
|
|
|
@@ -4,53 +4,56 @@ import android.content.Context;
|
|
|
4
4
|
import android.os.Handler;
|
|
5
5
|
import android.os.Looper;
|
|
6
6
|
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
|
|
7
|
+
import com.facebook.react.ReactApplication;
|
|
8
|
+
import com.facebook.react.ReactNativeHost;
|
|
10
9
|
import com.facebook.react.bridge.ReactContext;
|
|
11
10
|
import com.facebook.react.bridge.WritableMap;
|
|
12
11
|
import com.facebook.react.modules.core.DeviceEventManagerModule;
|
|
13
|
-
import com.sentiance.react.bridge.core.common.util.ReactContextProvider;
|
|
14
12
|
|
|
15
13
|
public abstract class AbstractSentianceEmitter {
|
|
16
14
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
15
|
+
protected final Handler mHandler = new Handler(Looper.getMainLooper());
|
|
16
|
+
protected ReactContext reactContext;
|
|
17
|
+
protected ReactNativeHost reactNativeHost;
|
|
18
|
+
|
|
19
|
+
protected AbstractSentianceEmitter(Context context) {
|
|
20
|
+
ReactApplication reactApplication = ((ReactApplication) context.getApplicationContext());
|
|
21
|
+
reactNativeHost = reactApplication.getReactNativeHost();
|
|
22
|
+
reactContext = createReactContext();
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
protected ReactContext createReactContext() {
|
|
26
|
+
if (!reactNativeHost.getReactInstanceManager().hasStartedCreatingInitialContext())
|
|
27
|
+
reactNativeHost.getReactInstanceManager().createReactContextInBackground();
|
|
28
|
+
return reactNativeHost.getReactInstanceManager().getCurrentReactContext();
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
protected void sendEvent(final String key, final WritableMap map) {
|
|
32
|
+
if (reactContext != null && reactContext.hasActiveCatalystInstance()) {
|
|
33
|
+
this.reactContext.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class).emit(key, map);
|
|
34
|
+
} else {
|
|
35
|
+
// add delay
|
|
36
|
+
final Counter retry = new Counter(20);
|
|
37
|
+
mHandler.postDelayed(new Runnable() {
|
|
38
|
+
@Override
|
|
39
|
+
public void run() {
|
|
40
|
+
if (AbstractSentianceEmitter.this.reactContext == null)
|
|
41
|
+
AbstractSentianceEmitter.this.reactContext = createReactContext();
|
|
42
|
+
if (AbstractSentianceEmitter.this.reactContext != null && AbstractSentianceEmitter.this.reactContext.hasActiveCatalystInstance()) {
|
|
43
|
+
AbstractSentianceEmitter.this.reactContext.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class).emit(key, map);
|
|
44
|
+
} else if (retry.count-- > 0) {
|
|
45
|
+
mHandler.postDelayed(this, 500);
|
|
46
|
+
}
|
|
46
47
|
}
|
|
48
|
+
}, 500);
|
|
47
49
|
}
|
|
50
|
+
}
|
|
48
51
|
|
|
49
|
-
|
|
50
|
-
|
|
52
|
+
private static class Counter {
|
|
53
|
+
int count;
|
|
51
54
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
+
Counter(int count) {
|
|
56
|
+
this.count = count;
|
|
55
57
|
}
|
|
58
|
+
}
|
|
56
59
|
}
|
|
@@ -821,6 +821,7 @@ static NSString * const SmartGeofencesErrorDomain = @"com.sentiance.SmartGeofenc
|
|
|
821
821
|
}
|
|
822
822
|
dict[@"precedingLocations"] = precedingLocations;
|
|
823
823
|
dict[@"severity"] = [self convertCrashSeverityToString:crashEvent.severity];
|
|
824
|
+
dict[@"detectorMode"] = [self convertCrashDetectorModeToString:crashEvent.detectorMode];
|
|
824
825
|
|
|
825
826
|
return [dict copy];
|
|
826
827
|
}
|
|
@@ -838,6 +839,17 @@ static NSString * const SmartGeofencesErrorDomain = @"com.sentiance.SmartGeofenc
|
|
|
838
839
|
}
|
|
839
840
|
}
|
|
840
841
|
|
|
842
|
+
- (NSString*)convertCrashDetectorModeToString:(SENTVehicleCrashDetectorMode) detectorMode {
|
|
843
|
+
switch (detectorMode) {
|
|
844
|
+
case SENTVehicleCrashDetectorMode_Car:
|
|
845
|
+
return @"CAR";
|
|
846
|
+
case SENTVehicleCrashDetectorMode_TwoWheeler:
|
|
847
|
+
return @"TWO_WHEELER";
|
|
848
|
+
case SENTVehicleCrashDetectorMode_Unknown:
|
|
849
|
+
return @"UNKNOWN";
|
|
850
|
+
}
|
|
851
|
+
}
|
|
852
|
+
|
|
841
853
|
- (NSString *)_vehicleCrashDiagnosticStateName:(SENTVehicleCrashDetectionState)crashDetectionState {
|
|
842
854
|
switch (crashDetectionState) {
|
|
843
855
|
case 0:
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type EmitterSubscription, NativeEventEmitter } from "react-native";
|
|
2
2
|
import { type NativeModule } from "./native-module";
|
|
3
|
-
export default class SentianceEventEmitter {
|
|
4
|
-
protected nativeModule:
|
|
3
|
+
export default class SentianceEventEmitter<NM extends NativeModule> {
|
|
4
|
+
protected nativeModule: NM;
|
|
5
5
|
protected reactNativeEventEmitter: NativeEventEmitter;
|
|
6
|
-
constructor(nativeModule:
|
|
6
|
+
constructor(nativeModule: NM);
|
|
7
7
|
/**
|
|
8
8
|
* Registers a new listener with the React Native framework, in addition to our own
|
|
9
9
|
* native modules via the `addNativeListener` binding.
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es6.d.ts","../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../src/native-module.ts","../../../node_modules/@types/react-native/modules/BatchedBridge.d.ts","../../../node_modules/@types/react-native/modules/Codegen.d.ts","../../../node_modules/@types/react-native/modules/Devtools.d.ts","../../../node_modules/@types/react-native/modules/globals.d.ts","../../../node_modules/@types/react-native/modules/LaunchScreen.d.ts","../../../node_modules/@types/react/ts5.0/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/ts5.0/index.d.ts","../../../node_modules/@types/react-native/node_modules/@react-native/virtualized-lists/Lists/VirtualizedList.d.ts","../../../node_modules/@types/react-native/node_modules/@react-native/virtualized-lists/index.d.ts","../../../node_modules/@types/react-native/private/Utilities.d.ts","../../../node_modules/@types/react-native/public/Insets.d.ts","../../../node_modules/@types/react-native/public/ReactNativeTypes.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/RendererProxy.d.ts","../../../node_modules/@types/react-native/Libraries/Types/CoreEventTypes.d.ts","../../../node_modules/@types/react-native/public/ReactNativeRenderer.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Touchable/Touchable.d.ts","../../../node_modules/@types/react-native/Libraries/Components/View/ViewAccessibility.d.ts","../../../node_modules/@types/react-native/Libraries/Components/View/ViewPropTypes.d.ts","../../../node_modules/@types/react-native/Libraries/Components/RefreshControl/RefreshControl.d.ts","../../../node_modules/@types/react-native/Libraries/Components/ScrollView/ScrollView.d.ts","../../../node_modules/@types/react-native/Libraries/Components/View/View.d.ts","../../../node_modules/@types/react-native/Libraries/Image/ImageResizeMode.d.ts","../../../node_modules/@types/react-native/Libraries/Image/ImageSource.d.ts","../../../node_modules/@types/react-native/Libraries/Image/Image.d.ts","../../../node_modules/@types/react-native/Libraries/Lists/FlatList.d.ts","../../../node_modules/@types/react-native/Libraries/Lists/SectionList.d.ts","../../../node_modules/@types/react-native/Libraries/Text/Text.d.ts","../../../node_modules/@types/react-native/Libraries/Animated/Animated.d.ts","../../../node_modules/@types/react-native/Libraries/StyleSheet/StyleSheetTypes.d.ts","../../../node_modules/@types/react-native/Libraries/StyleSheet/StyleSheet.d.ts","../../../node_modules/@types/react-native/Libraries/StyleSheet/processColor.d.ts","../../../node_modules/@types/react-native/Libraries/ActionSheetIOS/ActionSheetIOS.d.ts","../../../node_modules/@types/react-native/Libraries/Alert/Alert.d.ts","../../../node_modules/@types/react-native/Libraries/Animated/Easing.d.ts","../../../node_modules/@types/react-native/Libraries/Animated/useAnimatedValue.d.ts","../../../node_modules/@types/react-native/Libraries/vendor/emitter/EventEmitter.d.ts","../../../node_modules/@types/react-native/Libraries/EventEmitter/RCTDeviceEventEmitter.d.ts","../../../node_modules/@types/react-native/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts","../../../node_modules/@types/react-native/Libraries/AppState/AppState.d.ts","../../../node_modules/@types/react-native/Libraries/BatchedBridge/NativeModules.d.ts","../../../node_modules/@types/react-native/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts","../../../node_modules/@types/react-native/Libraries/Components/ActivityIndicator/ActivityIndicator.d.ts","../../../node_modules/@types/react-native/private/TimerMixin.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Touchable/TouchableWithoutFeedback.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Touchable/TouchableOpacity.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Button.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Clipboard/Clipboard.d.ts","../../../node_modules/@types/react-native/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.d.ts","../../../node_modules/@types/react-native/Libraries/EventEmitter/NativeEventEmitter.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Keyboard/Keyboard.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Keyboard/KeyboardAvoidingView.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Pressable/Pressable.d.ts","../../../node_modules/@types/react-native/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.d.ts","../../../node_modules/@types/react-native/Libraries/Components/SafeAreaView/SafeAreaView.d.ts","../../../node_modules/@types/react-native/Libraries/Components/StatusBar/StatusBar.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Switch/Switch.d.ts","../../../node_modules/@types/react-native/Libraries/Components/TextInput/InputAccessoryView.d.ts","../../../node_modules/@types/react-native/Libraries/Components/TextInput/TextInput.d.ts","../../../node_modules/@types/react-native/Libraries/Components/ToastAndroid/ToastAndroid.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Touchable/TouchableHighlight.d.ts","../../../node_modules/@types/react-native/Libraries/DevToolsSettings/DevToolsSettingsManager.d.ts","../../../node_modules/@types/react-native/Libraries/Interaction/InteractionManager.d.ts","../../../node_modules/@types/react-native/Libraries/Interaction/PanResponder.d.ts","../../../node_modules/@types/react-native/Libraries/LayoutAnimation/LayoutAnimation.d.ts","../../../node_modules/@types/react-native/Libraries/Linking/Linking.d.ts","../../../node_modules/@types/react-native/Libraries/LogBox/LogBox.d.ts","../../../node_modules/@types/react-native/Libraries/Modal/Modal.d.ts","../../../node_modules/@types/react-native/Libraries/Performance/Systrace.d.ts","../../../node_modules/@types/react-native/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts","../../../node_modules/@types/react-native/Libraries/PushNotificationIOS/PushNotificationIOS.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/IPerformanceLogger.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/AppRegistry.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/I18nManager.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/requireNativeComponent.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/RootTag.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/UIManager.d.ts","../../../node_modules/@types/react-native/Libraries/Settings/Settings.d.ts","../../../node_modules/@types/react-native/Libraries/Share/Share.d.ts","../../../node_modules/@types/react-native/Libraries/StyleSheet/PlatformColorValueTypes.d.ts","../../../node_modules/@types/react-native/Libraries/StyleSheet/PlatformColorValueTypesIOS.d.ts","../../../node_modules/@types/react-native/Libraries/TurboModule/RCTExport.d.ts","../../../node_modules/@types/react-native/Libraries/TurboModule/TurboModuleRegistry.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/Appearance.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/BackHandler.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/DevSettings.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/Dimensions.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/PixelRatio.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/Platform.d.ts","../../../node_modules/@types/react-native/Libraries/vendor/core/ErrorUtils.d.ts","../../../node_modules/@types/react-native/Libraries/Vibration/Vibration.d.ts","../../../node_modules/@types/react-native/Libraries/YellowBox/YellowBoxDeprecated.d.ts","../../../node_modules/@types/react-native/public/DeprecatedPropertiesAlias.d.ts","../../../node_modules/@types/react-native/index.d.ts","../src/require-native-module.ts","../src/subscription-id-gen.ts","../src/sentiance-event-emitter.ts","../src/utils.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/node/ts5.1/compatibility/disposable.d.ts","../../../node_modules/@types/node/ts5.6/compatibility/float16array.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/ts5.1/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/linkify-it/build/index.cjs.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/mdurl/build/index.cjs.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"43f0a4ae1d60f8aaad80d87a9191690ded97713c80fc4f04697097366ad44797","signature":"6bf5bb4e4058f73eb92fc119e018382746f20901b75197986f6e24f6b9ecbf6d"},{"version":"c60f4f6cb8949ec208168c0baf7be477a3c664f058659ff6139070dc512c2d87","affectsGlobalScope":true},"e416b94d8a6c869ef30cc3d02404ae9fdd2dfac7fea69ee92008eba42af0d9e2","86731885eee74239467f62abe70a2fc791f2e5afd74dda95fef878fd293c5627",{"version":"e589be628ce7f4c426c5e1f2714def97a801af5d30e744578421fc180a6ee0b4","affectsGlobalScope":true},"d08cd8b8a3615844c40641ad0eda689be45467c06c4c20d2fc9d0fcf3c96ae3f",{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","2d27d86432b871be0d83c0988a42ae71a70aa516ac3e0944c296708aaaa24c63","46bc25e3501d321a70d0878e82a1d47b16ab77bdf017c8fecc76343f50806a0d","42bacb33cddecbcfe3e043ee1117ba848801749e44f947626765b3e0aec74b1c","34e161d6a8dc3ce4afcb63611f5feab4da158d419802cea10c1af43630385a17","7e9c2527af5b6feefefca328de85caf3cc39306754ea68be192ba6d90239d050","f8cadf711d9670cb9deb4ad714faf520a98a6d42c38b88f75fdd55f01d3567f6","b7f6e556fb46eccf736a7ab9a19495d6b0a56abd3a2f74e992edc2b0322bf177","5bb66fd6ca6e3d19d2aa19242e1065703f24b9fb83b1153bd9d4425fb60639e8","8e214d0471532c7a1650209948397e90696d41b72985794d31f96eeda0295c23","449d3856698d518d93760ed96c0c3bdb3fb5813bf427477c090fa01febd7adad","e2411d8114f390edcfe8626676953f094e6dbde8563b6feb95f6449787d24924","f9cd4e7b1f4806cba50a786e326536628745beb147d564dbaf3794dad39c1ebf","47ae2b10e24222e90475ece227f99ef785b5c4fa23800705fa929279a2f6247e","d151fe965fafee1cc2da99071925784402137d646e8296a2019003a0ffd54d4c","7353e1468d826c5f0bb52c5e5b01b273a99b698fd587519b4415b2e85c68231e","a18f805e2e60e08e82072b4216af4843f70764be38c81d89bbbbe3cecc1e8283","d340aed4ea2ad4968e3ea53b97ae3419ac009b45d10612550a13a60b02f9fd7a","91986f599aa6c84df8821fcd6af5127009e8cdb3a94c318269620af0b9a6787f","1704c3d1b6b2ba01df7da6e8fec759d989f7d35a059ebd874100d275bb9d8f9f","be12f69f266043d3abdf578f7953821d09d3f7d978fb65fe233e641b1743b219","879cbcc40f2221c23bf88bcccc431d1074d335835d66b0576f4b6778765647b3","5d3c6c58f8e26a262ce0aa5fe6ae5ebdaf759d2badff67981835c09fe4996692","3c85c8e17e1cbdda03dd23e7a48b1b7b8ce3703c99a6c136055cfbeac825ba51","3eb8adc003309a012f8dc4048590cf445d2035ad080877ccea33b94a41c020fc","51acaa16c2d97faa0f2aa71d548fcaa470563a34004220721c48c82bd359c802","aa8af960007a6e8e66cef9bb5687184a174bf1471a02ca563e81e874db92adca","4febf5eece243b290804c2479efdc7489a9c7da5168dd25b81c2d048061147dc","ac731853919f198a8248f018170281be31bb3d47d19add2bbdb2a99d9a3c6ce0","c874a28b997527532a389450f235b73b6a78111812aeb0d1988756ec35924aa9","56896eb0ef40f6f87ac2900943294a03aa0992613f26acd9ab434cd7eaed48f8","968a93119624ba53dfef612fd91d9c14a45cd58eabdbaf702d0dff88a335a39d","e2ae49c364a6486435d912b1523881df15e523879b70d1794a3ec66dbd441d24","dcbf123191b66f1d6444da48765af1c38a25f4f38f38ace6c470c10481237808","2aeee6c0d858c0d6ccb8983f1c737080914ef97098e7c0f62c5ad1c131a5c181","86fdf0be5d1ba2b40d8663732f4b50ece796271487e43aeb02d753537b5fb9e3","92ae3fae8c628602733f84ad38ea28e5ca1b88435c4888926049babfceb05eaa","9c9eb1fb15538761eb77582392025f73d467088d83f08918dc22cd2e4b08f5d8","d7ff2406f3ee2db99c81d60caa1f45ae0d25f9682b91b075f3fc385ea37f5ccf","194d4cfbb09b9243ef4e629b3903ffb120eb9decbb0e370522b9d0963427b9b2","5b3453a2fd9d42475d8e96afa8a2615335702ca47e97f2c1281d085363c23135","6e2924741947efb1bd2a035026362bda08ddfd0de5186a0143cd952e51fbdbfe","32cd0f92f95f8ffeb1b3164f9b5e55bfcf81f785b9a2efb069fffe9103ce45b3","928a713110d4c7747311abe3faec06e1533c84fff413042a1c16eeae33ff9b1f","5c6b58b5e6861925ede774d6008945a71b7a5e05ebce154ea227993deecae1b9","16c316d1d0f836906da5cdc0cdc5035fe70f5035e6ba388db7fc92434b46f6c2","d111f863605d08968d75e87b192d81497f32dc9243230d35e8fc91ef4bf5dd6e","77812250e493c216c7a3136af947b82422d28425fa787793c999c1e900c7eb7c","6b39e28ec07e1bb54dd61e56cc3378f01c00f8c5a6c8ecb3436b9d643e205fcc","45bae1787c8ab6751b4ad6917e962ea713d8a92800bdaf77c52b402664767a47","f3af1bf305be5c7e917445cc1b44e01f3e405738ffae0795dfba501d8cca78ff","dc23e5ed9434661953d1ebd5e45367c6869fb4099cf95a5876feb4933c30cf0a","6ae1bbe9f4f35aad46a0009e7316c687f305d7a06065a1c0b37a8c95907c654a","a642996bc1867da34cb5b964e1c67ecdd3ad4b67270099afddfc51f0dffa6d1e","b8bdcd9f6e141e7a83be2db791b1f7fdec2a82ebc777a4ea0eee16afe835104f","f1f6c56a5d7f222c9811af75daa4509240d452e3655a504238dff5c00a60b0ed","7cb2dc123938d5eab79b9438e52a3af30b53e9d9b6960500a29b5a05088da29d","6749bbaf081b3b746fe28822b9931ba4aa848c709d85b919c7c676f22b89f4b7","6434b1b1e6334a910870b588e86dba714e0387c7b7db3c72f181411e0c528d8d","73d0ac4dcc35f6cc9d4b2246f3c1207682308d091b825de7ebba0b34989a0f21","c0a9bfebf2f46729fa5d6e35b7da397503dc6f795f8e563f6c28da714a94364a","c5aa1bba9f9d33125be559fbd8126ee469578c3195c49e3f57cb7d0e6f335d97","cf4988e1b4d8e59be5b38b7cbc2a1fb2443488e31da5d2fb323a920a9b063120","3110cf24ef097769886e9ac467c64a64a27fb807efe73bcaf22438f16861ad0e","50a2508d3e8146af4409942cdc84de092d529f6852847730fbf4c411da1ce06f","90670dfd6c6ad8219cb1bf9cbf471aa72c68facd0fa819155ddfc997cac8cf01","63ea1464aa98814c5b75bf323f6b0ad68ea57d03d2fd3ba6d12d2b4a1f848fbe","b76d3075a567b6a3304bf0259b59a0d614ff6edc05a0992a137abe0a10734f0c","7c5ec23ed294cdceca69c9b9095f80add12194758790000d86cdc0f658188763","44f969cf15c54dbe25413bddab692f10e703f8513ee258e2c2a6aa6d706e30a4","22e970f02dfc320ada893b2d55cb0b13bc3ffbcc6b9114f146df63572bd24221","49eca32fc2c9d904ae7ab72dd729d098b6d60c50d615012a269949524f6d138e","734daa2c20c7c750bd1c1c957cf7b888e818b35d90bc22d1c2658b5a7d73c5a5","a67c6cf76fe060eceaa67930702a6be9bf2f4bb6704d886e5dd672b941ddcf75","6b17aa711c783dbaed09b7a81c14ff88a8a4965e48470a4d5865fb78a9eda740","5b6c400ab30de6d9cee8902d7b57487beecb0a4a2c723a83124e352c4c4ffa62","3fe33d2a424334cf185fb25808d2d058566b5d287fcd725193c327644dbe44de","3745facc6bd1c046cdb2b44232d5a5a1614ba4d2f5719a6f2ec23c2fe69325f5","9384bb3f571c8b3d2deb35f65c51a7fa4f78a5cfd5aa5870bff9d9563699f1b7","35242b153278780741db7a6782ffb4924a0c4d727b1fd398e88da0e8ce24c278","cf6e35062b71c8c66ccf778e04615b33bcb2227109865d8dfb8c9dce4435786b","971eeb13d51b8381bef11e17892b0a56863598d01504b2f055f1387865a4cdea","da7f8e26f473c0f59823b6ca54d6b66c545963273e46fcc7e80a87c2440d6963","a6141414bc469fdca2a19e8040e3d09d41f9dada8196e83b3ca8dbd8c8b3f176","fe494d4c9807d72e94acdad7550411fa6b8b4c5d9f1dff514770147ce4ec47b0","27b83e83398ae288481db6d543dea1a971d0940cd0e3f85fc931a8d337c8706c","f1fe1773529c71e0998d93aef2d5fca1a7af4a7ba2628920e7e03313497e6709","097a706b8b014ea5f2cdd4e6317d1df03fbfbd4841b543e672211627436d0377",{"version":"1c0b0a09c2944a208ae256e3419a69414813eb84d0c41d558f95fed76284b6b3","affectsGlobalScope":true},{"version":"54ff21aa6571d7673ef7fe332dbe679e6c014d8c9b06480e64832d3f24c73ed0","signature":"da7fce67bb73e95ddd3ee098927ae87461214c7887e52e4106f4bdc1ebda8b3d"},{"version":"1a9ab60425a2a423261aff57fd6f9637bc49426a828fd8fc65178f078dfb16ca","signature":"5b55af61ae51195a2cd3115b7f4f92454ac3f77d70c67971ff425955d45d314f"},{"version":"6be5aea98e486c225f9bb9ca2e3b9ebecbb73691d87720dc8cc1bfbd4a4ef63f","signature":"6162281998e272461436ab12e212746d646a13f841782c1cd40f668ffa3f9cb4"},{"version":"47b6642018de635976ae0f3db9b023df631dfee6bec0885883f3c64e18973430","signature":"ea0c10e5b06f5f4fa88ef37613e36e90fff03ec040660caf7873dc326acd9269"},"d88b3dc8b7055665059ea06ffafce9467fc4bdfa7cb2d7a6f4262556bb482b0d","b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","32ddc6ad753ae79571bbf28cebff7a383bf7f562ac5ef5d25c94ef7f71609d49","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","81df92841a7a12d551fcbc7e4e83dbb7d54e0c73f33a82162d13e9ae89700079","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1",{"version":"6876211ece0832abdfe13c43c65a555549bb4ca8c6bb4078d68cf923aeb6009e","affectsGlobalScope":true},{"version":"394fda71d5d6bd00a372437dff510feab37b92f345861e592f956d6995e9c1ce","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},{"version":"c564fc7c6f57b43ebe0b69bc6719d38ff753f6afe55dadf2dba36fb3558f39b6","affectsGlobalScope":true},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","affectsGlobalScope":true},"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","17fe9131bec653b07b0a1a8b99a830216e3e43fe0ea2605be318dc31777c8bbf","3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","2472ef4c28971272a897fdb85d4155df022e1f5d9a474a526b8fc2ef598af94e","6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","19851a6596401ca52d42117108d35e87230fc21593df5c4d3da7108526b6111c","3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","40bfc70953be2617dc71979c14e9e99c5e65c940a4f1c9759ddb90b0f8ff6b1a","da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","561c60d8bfe0fec2c08827d09ff039eca0c1f9b50ef231025e5a549655ed0298","1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e",{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true},"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7",{"version":"59c893bb05d8d6da5c6b85b6670f459a66f93215246a92b6345e78796b86a9a7","affectsGlobalScope":true},"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c",{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"12fb9c13f24845000d7bd9660d11587e27ef967cbd64bd9df19ae3e6aa9b52d4","affectsGlobalScope":true},"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","4ea4cb9f755b97e72fd2f42e2d9786baf9184a8625085a24dc7ea96734d5986b","bd1b3b48920e1bd6d52133f95153a5d94aa1b3555e5f30b2154336e52abd29bd","ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c",{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true},"2f32444438ecb1fa4519f6ec3977d69ce0e3acfa18b803e5cd725c204501f350","0ab3c844f1eb5a1d94c90edc346a25eb9d3943af7a7812f061bf2d627d8afac0","ecfb45485e692f3eb3d0aef6e460adeabf670cef2d07e361b2be20cecfd0046b","161f09445a8b4ba07f62ae54b27054e4234e7957062e34c6362300726dabd315","77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","e6057f9e7b0c64d4527afeeada89f313f96a53291705f069a9193c18880578cb",{"version":"04d05a9e1a2bc190bb5401373ad04622b844b3383a199f1c480000f53a2cdb5c","affectsGlobalScope":true},"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86",{"version":"237581f5ec4620a17e791d3bb79bad3af01e27a274dbee875ac9b0721a4fe97d","affectsGlobalScope":true},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true},"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","e6d81b1f7ab11dc1b1ad7ad29fcfad6904419b36baf55ed5e80df48d56ac3aff","1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","b6b8e3736383a1d27e2592c484a940eeb37ec4808ba9e74dd57679b2453b5865","d6f36b683c59ac0d68a1d5ee906e578e2f5e9a285bca80ff95ce61cdc9ddcdeb","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true},"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6",{"version":"cd9c0ecbe36a3be0775bfc16ae30b95af2a4a1f10e7949ceab284c98750bcebd","affectsGlobalScope":true},{"version":"2918b7c516051c30186a1055ebcdb3580522be7190f8a2fff4100ea714c7c366","affectsGlobalScope":true},"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055",{"version":"d67fc92a91171632fc74f413ce42ff1aa7fbcc5a85b127101f7ec446d2039a1f","affectsGlobalScope":true},{"version":"d40e4631100dbc067268bce96b07d7aff7f28a541b1bfb7ef791c64a696b3d33","affectsGlobalScope":true},"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446",{"version":"e4c653466d0497d87fa9ffd00e59a95f33bc1c1722c3f5c84dab2e950c18da70","affectsGlobalScope":true},"e6dcc3b933e864e91d4bea94274ad69854d5d2a1311a4b0e20408a57af19e95d","2119ab23f794e7b563cc1a005b964e2f59b8ebcb3dfe2ce61d0c782bfd5e02a2","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","742f21debb3937c3839a63245648238555bdab1ea095d43fd10c88a64029bf76","7cfdf3b9a5ba934a058bfc9390c074104dc7223b7e3c16fd5335206d789bc3d3","0944f27ebff4b20646b71e7e3faaaae50a6debd40bc63e225de1320dd15c5795","5d30565583300c9256072a013ac0318cc603ff769b4c5cafc222394ea93963e1","0f9e381eecc5860f693c31fe463b3ca20a64ca9b8db0cf6208cd4a053f064809","95902d5561c6aac5dfc40568a12b0aca324037749dcd32a81f23423bfde69bab","5dfb2aca4136abdc5a2740f14be8134a6e6b66fd53470bb2e954e40f8abfaf3e","577463167dd69bd81f76697dfc3f7b22b77a6152f60a602a9218e52e3183ad67","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","4b28e1c5bf88d891e07a1403358b81a51b3ba2eae1ffada51cca7476b5ac6407","7150ad575d28bf98fae321a1c0f10ad17b127927811f488ded6ff1d88d4244e5","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","93733466609dd8bf72eace502a24ca7574bd073d934216e628f1b615c8d3cb3c","45e9228761aabcadb79c82fb3008523db334491525bdb8e74e0f26eaf7a4f7f4","aeacac2778c9821512b6b889da79ac31606a863610c8f28da1e483579627bf90","569fdb354062fc098a6a3ba93a029edf22d6fe480cf72b231b3c07832b2e7c97","bf9876e62fb7f4237deafab8c7444770ef6e82b4cad2d5dc768664ff340feeb2","6cf60e76d37faf0fbc2f80a873eab0fd545f6b1bf300e7f0823f956ddb3083e9","6adaa6103086f931e3eee20f0987e86e8879e9d13aa6bd6075ccfc58b9c5681c","ee0af0f2b8d3b4d0baf669f2ff6fcef4a8816a473c894cc7c905029f7505fed0","6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","202f8582ee3cd89e06c4a17d8aabb925ff8550370559c771d1cc3ec3934071c2","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7"],"options":{"composite":true,"declaration":true,"declarationDir":"./generated","esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"noUnusedParameters":true,"outDir":"./generated","rootDir":"../src","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[146,158,202],[158,202],[146,147,148,149,150,158,202],[146,148,158,202],[152,158,202],[158,202,215,252],[158,202,254],[158,202,255],[158,202,258],[158,202,276],[158,202,261],[158,202,265,266,267],[158,202,264],[158,202,266],[158,202,259,262,263,268,271,273,274,275],[158,202,263,269,270,276],[158,202,269,272],[158,202,263,264,269,276],[158,202,263,276],[158,202,278],[158,202,260],[158,199,202],[158,201,202],[158,202,207,237],[158,202,203,208,214,215,222,234,245],[158,202,203,204,214,222],[158,202,205,246],[158,202,206,207,215,223],[158,202,207,234,242],[158,202,208,210,214,222],[158,201,202,209],[158,202,210,211],[158,202,212,214],[158,201,202,214],[158,202,214,215,216,234,245],[158,202,214,215,216,229,234,237],[158,197,202],[158,197,202,210,214,217,222,234,245],[158,202,214,215,217,218,222,234,242,245],[158,202,217,219,234,242,245],[158,202,214,220],[158,202,221,245],[158,202,210,214,222,234],[158,202,223],[158,202,224],[158,201,202,225],[158,199,200,201,202,203,204,205,206,207,208,209,210,211,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],[158,202,227],[158,202,228],[158,202,214,229,230],[158,202,229,231,246,248],[158,202,214,234,235,237],[158,202,236,237],[158,202,234,235],[158,202,237],[158,202,238],[158,199,202,234],[158,202,214,240,241],[158,202,240,241],[158,202,207,222,234,242],[158,202,243],[154,155,156,157,158,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],[202],[158,202,222,244],[158,202,217,228,245],[158,202,207,246],[158,202,234,247],[158,202,221,248],[158,202,249],[158,202,214,216,225,234,237,245,247,248,250],[158,202,234,251],[77,78,158,202],[54,61,67,68,71,72,73,74,77,158,202],[75,158,202],[85,158,202],[54,59,83,158,202],[54,57,59,61,65,76,77,158,202],[54,77,92,93,158,202],[54,57,59,61,65,77,158,202],[83,97,158,202],[54,57,65,76,77,90,158,202],[54,58,61,64,65,68,76,77,158,202],[54,57,59,65,77,158,202],[54,57,59,65,158,202],[54,57,58,61,63,65,66,76,77,158,202],[54,77,158,202],[54,76,77,158,202],[54,57,59,61,64,65,76,77,83,90,158,202],[54,58,61,158,202],[54,57,59,63,76,77,90,91,158,202],[54,57,63,77,91,92,158,202],[54,57,59,63,65,90,91,158,202],[54,57,58,61,63,64,76,77,90,158,202],[61,158,202],[54,58,61,62,63,64,76,77,158,202],[83,158,202],[84,158,202],[54,57,58,59,61,64,69,70,76,77,158,202],[61,62,158,202],[54,56,67,68,76,77,158,202],[54,56,60,67,76,77,158,202],[54,61,65,158,202],[54,119,158,202],[54,158,202],[54,59,158,202],[59,158,202],[77,158,202],[76,158,202],[69,75,77,158,202],[54,57,59,61,64,76,77,158,202],[129,158,202],[54,59,60,158,202],[97,158,202],[47,48,49,50,51,56,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,158,202],[141,158,202],[49,158,202],[54,141,158,202],[55,158,202],[52,53,158,202],[158,202,280,319],[158,202,280,304,319],[158,202,319],[158,202,280],[158,202,280,305,319],[158,202,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318],[158,202,305,319],[158,202,321],[158,167,171,202,245],[158,167,202,234,245],[158,202,234],[158,162,202],[158,164,167,202,245],[158,202,222,242],[158,202,252],[158,162,202,252],[158,164,167,202,222,245],[158,159,160,161,163,166,202,214,234,245],[158,167,175,202],[158,160,165,202],[158,167,191,192,202],[158,160,163,167,202,237,245,252],[158,167,202],[158,159,202],[158,162,163,164,165,166,167,168,169,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,192,193,194,195,196,202],[158,167,184,187,202,210],[158,167,175,176,177,202],[158,165,167,176,178,202],[158,166,202],[158,160,162,167,202],[158,167,171,176,178,202],[158,171,202],[158,165,167,170,202,245],[158,160,164,167,175,202],[158,167,184,202],[158,162,167,191,202,237,250,252],[46,141,158,202],[46,141,143,158,202],[46],[46,141]],"referencedMap":[[148,1],[146,2],[151,3],[147,1],[149,4],[150,1],[153,5],[253,6],[254,2],[255,7],[256,8],[257,2],[258,2],[259,9],[277,10],[262,11],[268,12],[266,2],[265,13],[267,14],[276,15],[271,16],[273,17],[274,18],[275,19],[269,2],[270,19],[272,19],[264,19],[263,2],[279,20],[260,2],[261,21],[152,2],[199,22],[200,22],[201,23],[202,24],[203,25],[204,26],[156,2],[205,27],[206,28],[207,29],[208,30],[209,31],[210,32],[211,32],[213,2],[212,33],[214,34],[215,35],[216,36],[198,37],[217,38],[218,39],[219,40],[220,41],[221,42],[222,43],[223,44],[224,45],[225,46],[226,47],[227,48],[228,49],[229,50],[230,50],[231,51],[232,2],[233,2],[234,52],[236,53],[235,54],[237,55],[238,56],[239,57],[240,58],[241,59],[242,60],[243,61],[154,2],[252,62],[158,63],[155,2],[157,2],[244,64],[245,65],[246,66],[247,67],[248,68],[249,69],[250,70],[251,71],[79,72],[80,2],[75,73],[81,2],[82,74],[86,75],[87,2],[88,76],[89,77],[94,78],[95,2],[96,79],[98,80],[99,81],[100,82],[101,83],[66,83],[102,84],[67,85],[103,86],[104,77],[105,87],[106,88],[107,2],[63,89],[108,90],[93,91],[92,92],[91,93],[68,84],[64,94],[65,95],[109,2],[97,96],[84,96],[85,97],[71,98],[69,2],[70,2],[110,96],[111,99],[112,2],[113,80],[72,100],[73,101],[114,2],[115,102],[116,2],[117,2],[118,2],[120,103],[121,2],[60,104],[123,104],[124,105],[122,106],[125,2],[126,107],[127,107],[128,107],[77,108],[76,109],[78,107],[74,110],[129,2],[130,111],[61,112],[131,75],[132,75],[133,113],[134,96],[119,2],[135,2],[136,2],[138,2],[139,104],[137,2],[83,2],[141,114],[47,2],[48,115],[49,116],[51,2],[50,2],[55,117],[56,118],[90,2],[57,2],[140,115],[58,2],[62,94],[59,104],[52,2],[54,119],[304,120],[305,121],[280,122],[283,122],[302,120],[303,120],[293,120],[292,123],[290,120],[285,120],[298,120],[296,120],[300,120],[284,120],[297,120],[301,120],[286,120],[287,120],[299,120],[281,120],[288,120],[289,120],[291,120],[295,120],[306,124],[294,120],[282,120],[319,125],[318,2],[313,124],[315,126],[314,124],[307,124],[308,124],[310,124],[312,124],[316,126],[317,126],[309,126],[311,126],[320,2],[278,2],[321,2],[322,127],[53,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[37,2],[34,2],[35,2],[36,2],[38,2],[8,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[2,2],[1,2],[12,2],[11,2],[175,128],[186,129],[173,128],[187,130],[196,131],[165,132],[164,133],[195,134],[190,135],[194,136],[167,137],[183,138],[166,139],[193,140],[162,141],[163,135],[168,142],[169,2],[174,132],[172,142],[160,143],[197,144],[188,145],[178,146],[177,142],[179,147],[181,148],[176,149],[180,150],[191,134],[170,151],[171,152],[182,153],[161,130],[185,154],[184,142],[189,2],[159,2],[192,155],[46,2],[142,156],[144,157],[143,2],[145,2]],"exportedModulesMap":[[148,1],[146,2],[151,3],[147,1],[149,4],[150,1],[153,5],[253,6],[254,2],[255,7],[256,8],[257,2],[258,2],[259,9],[277,10],[262,11],[268,12],[266,2],[265,13],[267,14],[276,15],[271,16],[273,17],[274,18],[275,19],[269,2],[270,19],[272,19],[264,19],[263,2],[279,20],[260,2],[261,21],[152,2],[199,22],[200,22],[201,23],[202,24],[203,25],[204,26],[156,2],[205,27],[206,28],[207,29],[208,30],[209,31],[210,32],[211,32],[213,2],[212,33],[214,34],[215,35],[216,36],[198,37],[217,38],[218,39],[219,40],[220,41],[221,42],[222,43],[223,44],[224,45],[225,46],[226,47],[227,48],[228,49],[229,50],[230,50],[231,51],[232,2],[233,2],[234,52],[236,53],[235,54],[237,55],[238,56],[239,57],[240,58],[241,59],[242,60],[243,61],[154,2],[252,62],[158,63],[155,2],[157,2],[244,64],[245,65],[246,66],[247,67],[248,68],[249,69],[250,70],[251,71],[79,72],[80,2],[75,73],[81,2],[82,74],[86,75],[87,2],[88,76],[89,77],[94,78],[95,2],[96,79],[98,80],[99,81],[100,82],[101,83],[66,83],[102,84],[67,85],[103,86],[104,77],[105,87],[106,88],[107,2],[63,89],[108,90],[93,91],[92,92],[91,93],[68,84],[64,94],[65,95],[109,2],[97,96],[84,96],[85,97],[71,98],[69,2],[70,2],[110,96],[111,99],[112,2],[113,80],[72,100],[73,101],[114,2],[115,102],[116,2],[117,2],[118,2],[120,103],[121,2],[60,104],[123,104],[124,105],[122,106],[125,2],[126,107],[127,107],[128,107],[77,108],[76,109],[78,107],[74,110],[129,2],[130,111],[61,112],[131,75],[132,75],[133,113],[134,96],[119,2],[135,2],[136,2],[138,2],[139,104],[137,2],[83,2],[141,114],[47,2],[48,115],[49,116],[51,2],[50,2],[55,117],[56,118],[90,2],[57,2],[140,115],[58,2],[62,94],[59,104],[52,2],[54,119],[304,120],[305,121],[280,122],[283,122],[302,120],[303,120],[293,120],[292,123],[290,120],[285,120],[298,120],[296,120],[300,120],[284,120],[297,120],[301,120],[286,120],[287,120],[299,120],[281,120],[288,120],[289,120],[291,120],[295,120],[306,124],[294,120],[282,120],[319,125],[318,2],[313,124],[315,126],[314,124],[307,124],[308,124],[310,124],[312,124],[316,126],[317,126],[309,126],[311,126],[320,2],[278,2],[321,2],[322,127],[53,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[37,2],[34,2],[35,2],[36,2],[38,2],[8,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[2,2],[1,2],[12,2],[11,2],[175,128],[186,129],[173,128],[187,130],[196,131],[165,132],[164,133],[195,134],[190,135],[194,136],[167,137],[183,138],[166,139],[193,140],[162,141],[163,135],[168,142],[169,2],[174,132],[172,142],[160,143],[197,144],[188,145],[178,146],[177,142],[179,147],[181,148],[176,149],[180,150],[191,134],[170,151],[171,152],[182,153],[161,130],[185,154],[184,142],[189,2],[159,2],[192,155],[142,158],[144,159]],"semanticDiagnosticsPerFile":[148,146,151,147,149,150,153,253,254,255,256,257,258,259,277,262,268,266,265,267,276,271,273,274,275,269,270,272,264,263,279,260,261,152,199,200,201,202,203,204,156,205,206,207,208,209,210,211,213,212,214,215,216,198,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,235,237,238,239,240,241,242,243,154,252,158,155,157,244,245,246,247,248,249,250,251,79,80,75,81,82,86,87,88,89,94,95,96,98,99,100,101,66,102,67,103,104,105,106,107,63,108,93,92,91,68,64,65,109,97,84,85,71,69,70,110,111,112,113,72,73,114,115,116,117,118,120,121,60,123,124,122,125,126,127,128,77,76,78,74,129,130,61,131,132,133,134,119,135,136,138,139,137,83,141,47,48,49,51,50,55,56,90,57,140,58,62,59,52,54,304,305,280,283,302,303,293,292,290,285,298,296,300,284,297,301,286,287,299,281,288,289,291,295,306,294,282,319,318,313,315,314,307,308,310,312,316,317,309,311,320,278,321,322,53,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,37,34,35,36,38,8,39,44,45,40,41,42,43,2,1,12,11,175,186,173,187,196,165,164,195,190,194,167,183,166,193,162,163,168,169,174,172,160,197,188,178,177,179,181,176,180,191,170,171,182,161,185,184,189,159,192,46,142,144,143,145],"latestChangedDtsFile":"./generated/utils.d.ts"},"version":"4.9.5"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es6.d.ts","../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../src/native-module.ts","../../../node_modules/@types/react-native/modules/BatchedBridge.d.ts","../../../node_modules/@types/react-native/modules/Codegen.d.ts","../../../node_modules/@types/react-native/modules/Devtools.d.ts","../../../node_modules/@types/react-native/modules/globals.d.ts","../../../node_modules/@types/react-native/modules/LaunchScreen.d.ts","../../../node_modules/@types/react/ts5.0/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/ts5.0/index.d.ts","../../../node_modules/@types/react-native/node_modules/@react-native/virtualized-lists/Lists/VirtualizedList.d.ts","../../../node_modules/@types/react-native/node_modules/@react-native/virtualized-lists/index.d.ts","../../../node_modules/@types/react-native/private/Utilities.d.ts","../../../node_modules/@types/react-native/public/Insets.d.ts","../../../node_modules/@types/react-native/public/ReactNativeTypes.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/RendererProxy.d.ts","../../../node_modules/@types/react-native/Libraries/Types/CoreEventTypes.d.ts","../../../node_modules/@types/react-native/public/ReactNativeRenderer.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Touchable/Touchable.d.ts","../../../node_modules/@types/react-native/Libraries/Components/View/ViewAccessibility.d.ts","../../../node_modules/@types/react-native/Libraries/Components/View/ViewPropTypes.d.ts","../../../node_modules/@types/react-native/Libraries/Components/RefreshControl/RefreshControl.d.ts","../../../node_modules/@types/react-native/Libraries/Components/ScrollView/ScrollView.d.ts","../../../node_modules/@types/react-native/Libraries/Components/View/View.d.ts","../../../node_modules/@types/react-native/Libraries/Image/ImageResizeMode.d.ts","../../../node_modules/@types/react-native/Libraries/Image/ImageSource.d.ts","../../../node_modules/@types/react-native/Libraries/Image/Image.d.ts","../../../node_modules/@types/react-native/Libraries/Lists/FlatList.d.ts","../../../node_modules/@types/react-native/Libraries/Lists/SectionList.d.ts","../../../node_modules/@types/react-native/Libraries/Text/Text.d.ts","../../../node_modules/@types/react-native/Libraries/Animated/Animated.d.ts","../../../node_modules/@types/react-native/Libraries/StyleSheet/StyleSheetTypes.d.ts","../../../node_modules/@types/react-native/Libraries/StyleSheet/StyleSheet.d.ts","../../../node_modules/@types/react-native/Libraries/StyleSheet/processColor.d.ts","../../../node_modules/@types/react-native/Libraries/ActionSheetIOS/ActionSheetIOS.d.ts","../../../node_modules/@types/react-native/Libraries/Alert/Alert.d.ts","../../../node_modules/@types/react-native/Libraries/Animated/Easing.d.ts","../../../node_modules/@types/react-native/Libraries/Animated/useAnimatedValue.d.ts","../../../node_modules/@types/react-native/Libraries/vendor/emitter/EventEmitter.d.ts","../../../node_modules/@types/react-native/Libraries/EventEmitter/RCTDeviceEventEmitter.d.ts","../../../node_modules/@types/react-native/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts","../../../node_modules/@types/react-native/Libraries/AppState/AppState.d.ts","../../../node_modules/@types/react-native/Libraries/BatchedBridge/NativeModules.d.ts","../../../node_modules/@types/react-native/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts","../../../node_modules/@types/react-native/Libraries/Components/ActivityIndicator/ActivityIndicator.d.ts","../../../node_modules/@types/react-native/private/TimerMixin.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Touchable/TouchableWithoutFeedback.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Touchable/TouchableOpacity.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Button.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Clipboard/Clipboard.d.ts","../../../node_modules/@types/react-native/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.d.ts","../../../node_modules/@types/react-native/Libraries/EventEmitter/NativeEventEmitter.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Keyboard/Keyboard.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Keyboard/KeyboardAvoidingView.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Pressable/Pressable.d.ts","../../../node_modules/@types/react-native/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.d.ts","../../../node_modules/@types/react-native/Libraries/Components/SafeAreaView/SafeAreaView.d.ts","../../../node_modules/@types/react-native/Libraries/Components/StatusBar/StatusBar.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Switch/Switch.d.ts","../../../node_modules/@types/react-native/Libraries/Components/TextInput/InputAccessoryView.d.ts","../../../node_modules/@types/react-native/Libraries/Components/TextInput/TextInput.d.ts","../../../node_modules/@types/react-native/Libraries/Components/ToastAndroid/ToastAndroid.d.ts","../../../node_modules/@types/react-native/Libraries/Components/Touchable/TouchableHighlight.d.ts","../../../node_modules/@types/react-native/Libraries/DevToolsSettings/DevToolsSettingsManager.d.ts","../../../node_modules/@types/react-native/Libraries/Interaction/InteractionManager.d.ts","../../../node_modules/@types/react-native/Libraries/Interaction/PanResponder.d.ts","../../../node_modules/@types/react-native/Libraries/LayoutAnimation/LayoutAnimation.d.ts","../../../node_modules/@types/react-native/Libraries/Linking/Linking.d.ts","../../../node_modules/@types/react-native/Libraries/LogBox/LogBox.d.ts","../../../node_modules/@types/react-native/Libraries/Modal/Modal.d.ts","../../../node_modules/@types/react-native/Libraries/Performance/Systrace.d.ts","../../../node_modules/@types/react-native/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts","../../../node_modules/@types/react-native/Libraries/PushNotificationIOS/PushNotificationIOS.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/IPerformanceLogger.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/AppRegistry.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/I18nManager.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/requireNativeComponent.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/RootTag.d.ts","../../../node_modules/@types/react-native/Libraries/ReactNative/UIManager.d.ts","../../../node_modules/@types/react-native/Libraries/Settings/Settings.d.ts","../../../node_modules/@types/react-native/Libraries/Share/Share.d.ts","../../../node_modules/@types/react-native/Libraries/StyleSheet/PlatformColorValueTypes.d.ts","../../../node_modules/@types/react-native/Libraries/StyleSheet/PlatformColorValueTypesIOS.d.ts","../../../node_modules/@types/react-native/Libraries/TurboModule/RCTExport.d.ts","../../../node_modules/@types/react-native/Libraries/TurboModule/TurboModuleRegistry.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/Appearance.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/BackHandler.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/DevSettings.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/Dimensions.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/PixelRatio.d.ts","../../../node_modules/@types/react-native/Libraries/Utilities/Platform.d.ts","../../../node_modules/@types/react-native/Libraries/vendor/core/ErrorUtils.d.ts","../../../node_modules/@types/react-native/Libraries/Vibration/Vibration.d.ts","../../../node_modules/@types/react-native/Libraries/YellowBox/YellowBoxDeprecated.d.ts","../../../node_modules/@types/react-native/public/DeprecatedPropertiesAlias.d.ts","../../../node_modules/@types/react-native/index.d.ts","../src/require-native-module.ts","../src/subscription-id-gen.ts","../src/sentiance-event-emitter.ts","../src/utils.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/node/ts5.1/compatibility/disposable.d.ts","../../../node_modules/@types/node/ts5.6/compatibility/float16array.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/ts5.1/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/linkify-it/build/index.cjs.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/mdurl/build/index.cjs.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"43f0a4ae1d60f8aaad80d87a9191690ded97713c80fc4f04697097366ad44797","signature":"6bf5bb4e4058f73eb92fc119e018382746f20901b75197986f6e24f6b9ecbf6d"},{"version":"c60f4f6cb8949ec208168c0baf7be477a3c664f058659ff6139070dc512c2d87","affectsGlobalScope":true},"e416b94d8a6c869ef30cc3d02404ae9fdd2dfac7fea69ee92008eba42af0d9e2","86731885eee74239467f62abe70a2fc791f2e5afd74dda95fef878fd293c5627",{"version":"e589be628ce7f4c426c5e1f2714def97a801af5d30e744578421fc180a6ee0b4","affectsGlobalScope":true},"d08cd8b8a3615844c40641ad0eda689be45467c06c4c20d2fc9d0fcf3c96ae3f",{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","2d27d86432b871be0d83c0988a42ae71a70aa516ac3e0944c296708aaaa24c63","46bc25e3501d321a70d0878e82a1d47b16ab77bdf017c8fecc76343f50806a0d","42bacb33cddecbcfe3e043ee1117ba848801749e44f947626765b3e0aec74b1c","34e161d6a8dc3ce4afcb63611f5feab4da158d419802cea10c1af43630385a17","7e9c2527af5b6feefefca328de85caf3cc39306754ea68be192ba6d90239d050","f8cadf711d9670cb9deb4ad714faf520a98a6d42c38b88f75fdd55f01d3567f6","b7f6e556fb46eccf736a7ab9a19495d6b0a56abd3a2f74e992edc2b0322bf177","5bb66fd6ca6e3d19d2aa19242e1065703f24b9fb83b1153bd9d4425fb60639e8","8e214d0471532c7a1650209948397e90696d41b72985794d31f96eeda0295c23","449d3856698d518d93760ed96c0c3bdb3fb5813bf427477c090fa01febd7adad","e2411d8114f390edcfe8626676953f094e6dbde8563b6feb95f6449787d24924","f9cd4e7b1f4806cba50a786e326536628745beb147d564dbaf3794dad39c1ebf","47ae2b10e24222e90475ece227f99ef785b5c4fa23800705fa929279a2f6247e","d151fe965fafee1cc2da99071925784402137d646e8296a2019003a0ffd54d4c","7353e1468d826c5f0bb52c5e5b01b273a99b698fd587519b4415b2e85c68231e","a18f805e2e60e08e82072b4216af4843f70764be38c81d89bbbbe3cecc1e8283","d340aed4ea2ad4968e3ea53b97ae3419ac009b45d10612550a13a60b02f9fd7a","91986f599aa6c84df8821fcd6af5127009e8cdb3a94c318269620af0b9a6787f","1704c3d1b6b2ba01df7da6e8fec759d989f7d35a059ebd874100d275bb9d8f9f","be12f69f266043d3abdf578f7953821d09d3f7d978fb65fe233e641b1743b219","879cbcc40f2221c23bf88bcccc431d1074d335835d66b0576f4b6778765647b3","5d3c6c58f8e26a262ce0aa5fe6ae5ebdaf759d2badff67981835c09fe4996692","3c85c8e17e1cbdda03dd23e7a48b1b7b8ce3703c99a6c136055cfbeac825ba51","3eb8adc003309a012f8dc4048590cf445d2035ad080877ccea33b94a41c020fc","51acaa16c2d97faa0f2aa71d548fcaa470563a34004220721c48c82bd359c802","aa8af960007a6e8e66cef9bb5687184a174bf1471a02ca563e81e874db92adca","4febf5eece243b290804c2479efdc7489a9c7da5168dd25b81c2d048061147dc","ac731853919f198a8248f018170281be31bb3d47d19add2bbdb2a99d9a3c6ce0","c874a28b997527532a389450f235b73b6a78111812aeb0d1988756ec35924aa9","56896eb0ef40f6f87ac2900943294a03aa0992613f26acd9ab434cd7eaed48f8","968a93119624ba53dfef612fd91d9c14a45cd58eabdbaf702d0dff88a335a39d","e2ae49c364a6486435d912b1523881df15e523879b70d1794a3ec66dbd441d24","dcbf123191b66f1d6444da48765af1c38a25f4f38f38ace6c470c10481237808","2aeee6c0d858c0d6ccb8983f1c737080914ef97098e7c0f62c5ad1c131a5c181","86fdf0be5d1ba2b40d8663732f4b50ece796271487e43aeb02d753537b5fb9e3","92ae3fae8c628602733f84ad38ea28e5ca1b88435c4888926049babfceb05eaa","9c9eb1fb15538761eb77582392025f73d467088d83f08918dc22cd2e4b08f5d8","d7ff2406f3ee2db99c81d60caa1f45ae0d25f9682b91b075f3fc385ea37f5ccf","194d4cfbb09b9243ef4e629b3903ffb120eb9decbb0e370522b9d0963427b9b2","5b3453a2fd9d42475d8e96afa8a2615335702ca47e97f2c1281d085363c23135","6e2924741947efb1bd2a035026362bda08ddfd0de5186a0143cd952e51fbdbfe","32cd0f92f95f8ffeb1b3164f9b5e55bfcf81f785b9a2efb069fffe9103ce45b3","928a713110d4c7747311abe3faec06e1533c84fff413042a1c16eeae33ff9b1f","5c6b58b5e6861925ede774d6008945a71b7a5e05ebce154ea227993deecae1b9","16c316d1d0f836906da5cdc0cdc5035fe70f5035e6ba388db7fc92434b46f6c2","d111f863605d08968d75e87b192d81497f32dc9243230d35e8fc91ef4bf5dd6e","77812250e493c216c7a3136af947b82422d28425fa787793c999c1e900c7eb7c","6b39e28ec07e1bb54dd61e56cc3378f01c00f8c5a6c8ecb3436b9d643e205fcc","45bae1787c8ab6751b4ad6917e962ea713d8a92800bdaf77c52b402664767a47","f3af1bf305be5c7e917445cc1b44e01f3e405738ffae0795dfba501d8cca78ff","dc23e5ed9434661953d1ebd5e45367c6869fb4099cf95a5876feb4933c30cf0a","6ae1bbe9f4f35aad46a0009e7316c687f305d7a06065a1c0b37a8c95907c654a","a642996bc1867da34cb5b964e1c67ecdd3ad4b67270099afddfc51f0dffa6d1e","b8bdcd9f6e141e7a83be2db791b1f7fdec2a82ebc777a4ea0eee16afe835104f","f1f6c56a5d7f222c9811af75daa4509240d452e3655a504238dff5c00a60b0ed","7cb2dc123938d5eab79b9438e52a3af30b53e9d9b6960500a29b5a05088da29d","6749bbaf081b3b746fe28822b9931ba4aa848c709d85b919c7c676f22b89f4b7","6434b1b1e6334a910870b588e86dba714e0387c7b7db3c72f181411e0c528d8d","73d0ac4dcc35f6cc9d4b2246f3c1207682308d091b825de7ebba0b34989a0f21","c0a9bfebf2f46729fa5d6e35b7da397503dc6f795f8e563f6c28da714a94364a","c5aa1bba9f9d33125be559fbd8126ee469578c3195c49e3f57cb7d0e6f335d97","cf4988e1b4d8e59be5b38b7cbc2a1fb2443488e31da5d2fb323a920a9b063120","3110cf24ef097769886e9ac467c64a64a27fb807efe73bcaf22438f16861ad0e","50a2508d3e8146af4409942cdc84de092d529f6852847730fbf4c411da1ce06f","90670dfd6c6ad8219cb1bf9cbf471aa72c68facd0fa819155ddfc997cac8cf01","63ea1464aa98814c5b75bf323f6b0ad68ea57d03d2fd3ba6d12d2b4a1f848fbe","b76d3075a567b6a3304bf0259b59a0d614ff6edc05a0992a137abe0a10734f0c","7c5ec23ed294cdceca69c9b9095f80add12194758790000d86cdc0f658188763","44f969cf15c54dbe25413bddab692f10e703f8513ee258e2c2a6aa6d706e30a4","22e970f02dfc320ada893b2d55cb0b13bc3ffbcc6b9114f146df63572bd24221","49eca32fc2c9d904ae7ab72dd729d098b6d60c50d615012a269949524f6d138e","734daa2c20c7c750bd1c1c957cf7b888e818b35d90bc22d1c2658b5a7d73c5a5","a67c6cf76fe060eceaa67930702a6be9bf2f4bb6704d886e5dd672b941ddcf75","6b17aa711c783dbaed09b7a81c14ff88a8a4965e48470a4d5865fb78a9eda740","5b6c400ab30de6d9cee8902d7b57487beecb0a4a2c723a83124e352c4c4ffa62","3fe33d2a424334cf185fb25808d2d058566b5d287fcd725193c327644dbe44de","3745facc6bd1c046cdb2b44232d5a5a1614ba4d2f5719a6f2ec23c2fe69325f5","9384bb3f571c8b3d2deb35f65c51a7fa4f78a5cfd5aa5870bff9d9563699f1b7","35242b153278780741db7a6782ffb4924a0c4d727b1fd398e88da0e8ce24c278","cf6e35062b71c8c66ccf778e04615b33bcb2227109865d8dfb8c9dce4435786b","971eeb13d51b8381bef11e17892b0a56863598d01504b2f055f1387865a4cdea","da7f8e26f473c0f59823b6ca54d6b66c545963273e46fcc7e80a87c2440d6963","a6141414bc469fdca2a19e8040e3d09d41f9dada8196e83b3ca8dbd8c8b3f176","fe494d4c9807d72e94acdad7550411fa6b8b4c5d9f1dff514770147ce4ec47b0","27b83e83398ae288481db6d543dea1a971d0940cd0e3f85fc931a8d337c8706c","f1fe1773529c71e0998d93aef2d5fca1a7af4a7ba2628920e7e03313497e6709","097a706b8b014ea5f2cdd4e6317d1df03fbfbd4841b543e672211627436d0377",{"version":"1c0b0a09c2944a208ae256e3419a69414813eb84d0c41d558f95fed76284b6b3","affectsGlobalScope":true},{"version":"54ff21aa6571d7673ef7fe332dbe679e6c014d8c9b06480e64832d3f24c73ed0","signature":"da7fce67bb73e95ddd3ee098927ae87461214c7887e52e4106f4bdc1ebda8b3d"},{"version":"1a9ab60425a2a423261aff57fd6f9637bc49426a828fd8fc65178f078dfb16ca","signature":"5b55af61ae51195a2cd3115b7f4f92454ac3f77d70c67971ff425955d45d314f"},{"version":"1f6580032c8e608ddd114fa150e8dedee2767c0068b43acee0417cef1057ad77","signature":"57a1a2f9e5241a42818bf18ed14e3154b0ad33e8f258cff36186409d0b45fad2"},{"version":"47b6642018de635976ae0f3db9b023df631dfee6bec0885883f3c64e18973430","signature":"ea0c10e5b06f5f4fa88ef37613e36e90fff03ec040660caf7873dc326acd9269"},"7468ce3ef8243a51ee69aeb3b050f01f34c1e84cd4766fedd1b3594c03e30bbe","b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","82e5a50e17833a10eb091923b7e429dc846d42f1c6161eb6beeb964288d98a15","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","81df92841a7a12d551fcbc7e4e83dbb7d54e0c73f33a82162d13e9ae89700079","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1",{"version":"6876211ece0832abdfe13c43c65a555549bb4ca8c6bb4078d68cf923aeb6009e","affectsGlobalScope":true},{"version":"394fda71d5d6bd00a372437dff510feab37b92f345861e592f956d6995e9c1ce","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},{"version":"c564fc7c6f57b43ebe0b69bc6719d38ff753f6afe55dadf2dba36fb3558f39b6","affectsGlobalScope":true},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","affectsGlobalScope":true},"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","17fe9131bec653b07b0a1a8b99a830216e3e43fe0ea2605be318dc31777c8bbf","3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","2472ef4c28971272a897fdb85d4155df022e1f5d9a474a526b8fc2ef598af94e","6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","19851a6596401ca52d42117108d35e87230fc21593df5c4d3da7108526b6111c","3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","40bfc70953be2617dc71979c14e9e99c5e65c940a4f1c9759ddb90b0f8ff6b1a","da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","561c60d8bfe0fec2c08827d09ff039eca0c1f9b50ef231025e5a549655ed0298","1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e",{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true},"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7",{"version":"4a48915fb0c07aa96d315dcb98231aa135151fb961cd3c6093cf29d64304c5d0","affectsGlobalScope":true},"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c",{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"12fb9c13f24845000d7bd9660d11587e27ef967cbd64bd9df19ae3e6aa9b52d4","affectsGlobalScope":true},"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","4ea4cb9f755b97e72fd2f42e2d9786baf9184a8625085a24dc7ea96734d5986b","bd1b3b48920e1bd6d52133f95153a5d94aa1b3555e5f30b2154336e52abd29bd","ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c",{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true},"2f32444438ecb1fa4519f6ec3977d69ce0e3acfa18b803e5cd725c204501f350","0ab3c844f1eb5a1d94c90edc346a25eb9d3943af7a7812f061bf2d627d8afac0","e8c431ccd0dd211303eeeaef6329d70d1ba8d4f6fa23b9c1a625cebd29226c1e","161f09445a8b4ba07f62ae54b27054e4234e7957062e34c6362300726dabd315","77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","e6057f9e7b0c64d4527afeeada89f313f96a53291705f069a9193c18880578cb",{"version":"34ecb9596317c44dab586118fb62c1565d3dad98d201cd77f3e6b0dde453339c","affectsGlobalScope":true},"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86",{"version":"237581f5ec4620a17e791d3bb79bad3af01e27a274dbee875ac9b0721a4fe97d","affectsGlobalScope":true},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true},"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","e6d81b1f7ab11dc1b1ad7ad29fcfad6904419b36baf55ed5e80df48d56ac3aff","1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","b6b8e3736383a1d27e2592c484a940eeb37ec4808ba9e74dd57679b2453b5865","d6f36b683c59ac0d68a1d5ee906e578e2f5e9a285bca80ff95ce61cdc9ddcdeb","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"12aad38de6f0594dc21efa78a2c1f67bf6a7ef5a389e05417fe9945284450908","affectsGlobalScope":true},"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","b338a6e6c1d456e65a6ea78da283e3077fe8edf7202ae10490abbba5b952b05e",{"version":"2918b7c516051c30186a1055ebcdb3580522be7190f8a2fff4100ea714c7c366","affectsGlobalScope":true},"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055",{"version":"d67fc92a91171632fc74f413ce42ff1aa7fbcc5a85b127101f7ec446d2039a1f","affectsGlobalScope":true},{"version":"d40e4631100dbc067268bce96b07d7aff7f28a541b1bfb7ef791c64a696b3d33","affectsGlobalScope":true},"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446",{"version":"e4c653466d0497d87fa9ffd00e59a95f33bc1c1722c3f5c84dab2e950c18da70","affectsGlobalScope":true},"e6dcc3b933e864e91d4bea94274ad69854d5d2a1311a4b0e20408a57af19e95d","2119ab23f794e7b563cc1a005b964e2f59b8ebcb3dfe2ce61d0c782bfd5e02a2","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","742f21debb3937c3839a63245648238555bdab1ea095d43fd10c88a64029bf76","7cfdf3b9a5ba934a058bfc9390c074104dc7223b7e3c16fd5335206d789bc3d3","0944f27ebff4b20646b71e7e3faaaae50a6debd40bc63e225de1320dd15c5795","5d30565583300c9256072a013ac0318cc603ff769b4c5cafc222394ea93963e1","0f9e381eecc5860f693c31fe463b3ca20a64ca9b8db0cf6208cd4a053f064809","95902d5561c6aac5dfc40568a12b0aca324037749dcd32a81f23423bfde69bab","5dfb2aca4136abdc5a2740f14be8134a6e6b66fd53470bb2e954e40f8abfaf3e","577463167dd69bd81f76697dfc3f7b22b77a6152f60a602a9218e52e3183ad67","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","4b28e1c5bf88d891e07a1403358b81a51b3ba2eae1ffada51cca7476b5ac6407","7150ad575d28bf98fae321a1c0f10ad17b127927811f488ded6ff1d88d4244e5","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","93733466609dd8bf72eace502a24ca7574bd073d934216e628f1b615c8d3cb3c","45e9228761aabcadb79c82fb3008523db334491525bdb8e74e0f26eaf7a4f7f4","aeacac2778c9821512b6b889da79ac31606a863610c8f28da1e483579627bf90","569fdb354062fc098a6a3ba93a029edf22d6fe480cf72b231b3c07832b2e7c97","bf9876e62fb7f4237deafab8c7444770ef6e82b4cad2d5dc768664ff340feeb2","6cf60e76d37faf0fbc2f80a873eab0fd545f6b1bf300e7f0823f956ddb3083e9","6adaa6103086f931e3eee20f0987e86e8879e9d13aa6bd6075ccfc58b9c5681c","ee0af0f2b8d3b4d0baf669f2ff6fcef4a8816a473c894cc7c905029f7505fed0","6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","202f8582ee3cd89e06c4a17d8aabb925ff8550370559c771d1cc3ec3934071c2","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7"],"options":{"composite":true,"declaration":true,"declarationDir":"./generated","esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"noUnusedParameters":true,"outDir":"./generated","rootDir":"../src","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[146,158,202],[158,202],[146,147,148,149,150,158,202],[146,148,158,202],[152,158,202],[158,202,215,252],[158,202,254],[158,202,255],[158,202,258],[158,202,276],[158,202,261],[158,202,265,266,267],[158,202,264],[158,202,266],[158,202,259,262,263,268,271,273,274,275],[158,202,263,269,270,276],[158,202,269,272],[158,202,263,264,269,276],[158,202,263,276],[158,202,278],[158,202,260],[158,199,202],[158,201,202],[158,202,207,237],[158,202,203,208,214,215,222,234,245],[158,202,203,204,214,222],[158,202,205,246],[158,202,206,207,215,223],[158,202,207,234,242],[158,202,208,210,214,222],[158,201,202,209],[158,202,210,211],[158,202,212,214],[158,201,202,214],[158,202,214,215,216,234,245],[158,202,214,215,216,229,234,237],[158,197,202],[158,197,202,210,214,217,222,234,245],[158,202,214,215,217,218,222,234,242,245],[158,202,217,219,234,242,245],[158,202,214,220],[158,202,221,245],[158,202,210,214,222,234],[158,202,223],[158,202,224],[158,201,202,225],[158,199,200,201,202,203,204,205,206,207,208,209,210,211,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],[158,202,227],[158,202,228],[158,202,214,229,230],[158,202,229,231,246,248],[158,202,214,234,235,237],[158,202,236,237],[158,202,234,235],[158,202,237],[158,202,238],[158,199,202,234,239],[158,202,214,240,241],[158,202,240,241],[158,202,207,222,234,242],[158,202,243],[154,155,156,157,158,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],[202],[158,202,222,244],[158,202,217,228,245],[158,202,207,246],[158,202,234,247],[158,202,221,248],[158,202,249],[158,202,214,216,225,234,237,245,247,248,250],[158,202,234,251],[77,78,158,202],[54,61,67,68,71,72,73,74,77,158,202],[75,158,202],[85,158,202],[54,59,83,158,202],[54,57,59,61,65,76,77,158,202],[54,77,92,93,158,202],[54,57,59,61,65,77,158,202],[83,97,158,202],[54,57,65,76,77,90,158,202],[54,58,61,64,65,68,76,77,158,202],[54,57,59,65,77,158,202],[54,57,59,65,158,202],[54,57,58,61,63,65,66,76,77,158,202],[54,77,158,202],[54,76,77,158,202],[54,57,59,61,64,65,76,77,83,90,158,202],[54,58,61,158,202],[54,57,59,63,76,77,90,91,158,202],[54,57,63,77,91,92,158,202],[54,57,59,63,65,90,91,158,202],[54,57,58,61,63,64,76,77,90,158,202],[61,158,202],[54,58,61,62,63,64,76,77,158,202],[83,158,202],[84,158,202],[54,57,58,59,61,64,69,70,76,77,158,202],[61,62,158,202],[54,56,67,68,76,77,158,202],[54,56,60,67,76,77,158,202],[54,61,65,158,202],[54,119,158,202],[54,158,202],[54,59,158,202],[59,158,202],[77,158,202],[76,158,202],[69,75,77,158,202],[54,57,59,61,64,76,77,158,202],[129,158,202],[54,59,60,158,202],[97,158,202],[47,48,49,50,51,56,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,158,202],[141,158,202],[49,158,202],[54,141,158,202],[55,158,202],[52,53,158,202],[158,202,280,319],[158,202,280,304,319],[158,202,319],[158,202,280],[158,202,280,305,319],[158,202,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318],[158,202,305,319],[158,202,321],[158,167,171,202,245],[158,167,202,234,245],[158,202,234],[158,162,202],[158,164,167,202,245],[158,202,222,242],[158,202,252],[158,162,202,252],[158,164,167,202,222,245],[158,159,160,161,163,166,202,214,234,245],[158,167,175,202],[158,160,165,202],[158,167,191,192,202],[158,160,163,167,202,237,245,252],[158,167,202],[158,159,202],[158,162,163,164,165,166,167,168,169,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,192,193,194,195,196,202],[158,167,184,187,202,210],[158,167,175,176,177,202],[158,165,167,176,178,202],[158,166,202],[158,160,162,167,202],[158,167,171,176,178,202],[158,171,202],[158,165,167,170,202,245],[158,160,164,167,175,202],[158,167,184,202],[158,162,167,191,202,237,250,252],[46,141,158,202],[46,141,143,158,202],[46],[46,141]],"referencedMap":[[148,1],[146,2],[151,3],[147,1],[149,4],[150,1],[153,5],[253,6],[254,2],[255,7],[256,8],[257,2],[258,2],[259,9],[277,10],[262,11],[268,12],[266,2],[265,13],[267,14],[276,15],[271,16],[273,17],[274,18],[275,19],[269,2],[270,19],[272,19],[264,19],[263,2],[279,20],[260,2],[261,21],[152,2],[199,22],[200,22],[201,23],[202,24],[203,25],[204,26],[156,2],[205,27],[206,28],[207,29],[208,30],[209,31],[210,32],[211,32],[213,2],[212,33],[214,34],[215,35],[216,36],[198,37],[217,38],[218,39],[219,40],[220,41],[221,42],[222,43],[223,44],[224,45],[225,46],[226,47],[227,48],[228,49],[229,50],[230,50],[231,51],[232,2],[233,2],[234,52],[236,53],[235,54],[237,55],[238,56],[239,57],[240,58],[241,59],[242,60],[243,61],[154,2],[252,62],[158,63],[155,2],[157,2],[244,64],[245,65],[246,66],[247,67],[248,68],[249,69],[250,70],[251,71],[79,72],[80,2],[75,73],[81,2],[82,74],[86,75],[87,2],[88,76],[89,77],[94,78],[95,2],[96,79],[98,80],[99,81],[100,82],[101,83],[66,83],[102,84],[67,85],[103,86],[104,77],[105,87],[106,88],[107,2],[63,89],[108,90],[93,91],[92,92],[91,93],[68,84],[64,94],[65,95],[109,2],[97,96],[84,96],[85,97],[71,98],[69,2],[70,2],[110,96],[111,99],[112,2],[113,80],[72,100],[73,101],[114,2],[115,102],[116,2],[117,2],[118,2],[120,103],[121,2],[60,104],[123,104],[124,105],[122,106],[125,2],[126,107],[127,107],[128,107],[77,108],[76,109],[78,107],[74,110],[129,2],[130,111],[61,112],[131,75],[132,75],[133,113],[134,96],[119,2],[135,2],[136,2],[138,2],[139,104],[137,2],[83,2],[141,114],[47,2],[48,115],[49,116],[51,2],[50,2],[55,117],[56,118],[90,2],[57,2],[140,115],[58,2],[62,94],[59,104],[52,2],[54,119],[304,120],[305,121],[280,122],[283,122],[302,120],[303,120],[293,120],[292,123],[290,120],[285,120],[298,120],[296,120],[300,120],[284,120],[297,120],[301,120],[286,120],[287,120],[299,120],[281,120],[288,120],[289,120],[291,120],[295,120],[306,124],[294,120],[282,120],[319,125],[318,2],[313,124],[315,126],[314,124],[307,124],[308,124],[310,124],[312,124],[316,126],[317,126],[309,126],[311,126],[320,2],[278,2],[321,2],[322,127],[53,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[37,2],[34,2],[35,2],[36,2],[38,2],[8,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[2,2],[1,2],[12,2],[11,2],[175,128],[186,129],[173,128],[187,130],[196,131],[165,132],[164,133],[195,134],[190,135],[194,136],[167,137],[183,138],[166,139],[193,140],[162,141],[163,135],[168,142],[169,2],[174,132],[172,142],[160,143],[197,144],[188,145],[178,146],[177,142],[179,147],[181,148],[176,149],[180,150],[191,134],[170,151],[171,152],[182,153],[161,130],[185,154],[184,142],[189,2],[159,2],[192,155],[46,2],[142,156],[144,157],[143,2],[145,2]],"exportedModulesMap":[[148,1],[146,2],[151,3],[147,1],[149,4],[150,1],[153,5],[253,6],[254,2],[255,7],[256,8],[257,2],[258,2],[259,9],[277,10],[262,11],[268,12],[266,2],[265,13],[267,14],[276,15],[271,16],[273,17],[274,18],[275,19],[269,2],[270,19],[272,19],[264,19],[263,2],[279,20],[260,2],[261,21],[152,2],[199,22],[200,22],[201,23],[202,24],[203,25],[204,26],[156,2],[205,27],[206,28],[207,29],[208,30],[209,31],[210,32],[211,32],[213,2],[212,33],[214,34],[215,35],[216,36],[198,37],[217,38],[218,39],[219,40],[220,41],[221,42],[222,43],[223,44],[224,45],[225,46],[226,47],[227,48],[228,49],[229,50],[230,50],[231,51],[232,2],[233,2],[234,52],[236,53],[235,54],[237,55],[238,56],[239,57],[240,58],[241,59],[242,60],[243,61],[154,2],[252,62],[158,63],[155,2],[157,2],[244,64],[245,65],[246,66],[247,67],[248,68],[249,69],[250,70],[251,71],[79,72],[80,2],[75,73],[81,2],[82,74],[86,75],[87,2],[88,76],[89,77],[94,78],[95,2],[96,79],[98,80],[99,81],[100,82],[101,83],[66,83],[102,84],[67,85],[103,86],[104,77],[105,87],[106,88],[107,2],[63,89],[108,90],[93,91],[92,92],[91,93],[68,84],[64,94],[65,95],[109,2],[97,96],[84,96],[85,97],[71,98],[69,2],[70,2],[110,96],[111,99],[112,2],[113,80],[72,100],[73,101],[114,2],[115,102],[116,2],[117,2],[118,2],[120,103],[121,2],[60,104],[123,104],[124,105],[122,106],[125,2],[126,107],[127,107],[128,107],[77,108],[76,109],[78,107],[74,110],[129,2],[130,111],[61,112],[131,75],[132,75],[133,113],[134,96],[119,2],[135,2],[136,2],[138,2],[139,104],[137,2],[83,2],[141,114],[47,2],[48,115],[49,116],[51,2],[50,2],[55,117],[56,118],[90,2],[57,2],[140,115],[58,2],[62,94],[59,104],[52,2],[54,119],[304,120],[305,121],[280,122],[283,122],[302,120],[303,120],[293,120],[292,123],[290,120],[285,120],[298,120],[296,120],[300,120],[284,120],[297,120],[301,120],[286,120],[287,120],[299,120],[281,120],[288,120],[289,120],[291,120],[295,120],[306,124],[294,120],[282,120],[319,125],[318,2],[313,124],[315,126],[314,124],[307,124],[308,124],[310,124],[312,124],[316,126],[317,126],[309,126],[311,126],[320,2],[278,2],[321,2],[322,127],[53,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[37,2],[34,2],[35,2],[36,2],[38,2],[8,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[2,2],[1,2],[12,2],[11,2],[175,128],[186,129],[173,128],[187,130],[196,131],[165,132],[164,133],[195,134],[190,135],[194,136],[167,137],[183,138],[166,139],[193,140],[162,141],[163,135],[168,142],[169,2],[174,132],[172,142],[160,143],[197,144],[188,145],[178,146],[177,142],[179,147],[181,148],[176,149],[180,150],[191,134],[170,151],[171,152],[182,153],[161,130],[185,154],[184,142],[189,2],[159,2],[192,155],[142,158],[144,159]],"semanticDiagnosticsPerFile":[148,146,151,147,149,150,153,253,254,255,256,257,258,259,277,262,268,266,265,267,276,271,273,274,275,269,270,272,264,263,279,260,261,152,199,200,201,202,203,204,156,205,206,207,208,209,210,211,213,212,214,215,216,198,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,235,237,238,239,240,241,242,243,154,252,158,155,157,244,245,246,247,248,249,250,251,79,80,75,81,82,86,87,88,89,94,95,96,98,99,100,101,66,102,67,103,104,105,106,107,63,108,93,92,91,68,64,65,109,97,84,85,71,69,70,110,111,112,113,72,73,114,115,116,117,118,120,121,60,123,124,122,125,126,127,128,77,76,78,74,129,130,61,131,132,133,134,119,135,136,138,139,137,83,141,47,48,49,51,50,55,56,90,57,140,58,62,59,52,54,304,305,280,283,302,303,293,292,290,285,298,296,300,284,297,301,286,287,299,281,288,289,291,295,306,294,282,319,318,313,315,314,307,308,310,312,316,317,309,311,320,278,321,322,53,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,37,34,35,36,38,8,39,44,45,40,41,42,43,2,1,12,11,175,186,173,187,196,165,164,195,190,194,167,183,166,193,162,163,168,169,174,172,160,197,188,178,177,179,181,176,180,191,170,171,182,161,185,184,189,159,192,46,142,144,143,145],"latestChangedDtsFile":"./generated/utils.d.ts"},"version":"4.9.5"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentiance-react-native/core",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.15.0-rc.2",
|
|
4
4
|
"description": "The Sentiance Core library",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"targetSdk": 34,
|
|
30
30
|
"compileSdk": 34,
|
|
31
31
|
"buildTools": "34.0.0",
|
|
32
|
-
"sentiance": "6.
|
|
32
|
+
"sentiance": "6.15.0-rc3"
|
|
33
33
|
},
|
|
34
34
|
"ios": {
|
|
35
|
-
"sentiance": "
|
|
35
|
+
"sentiance": "6.15.0-rc3"
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
}
|
package/android/src/main/java/com/sentiance/react/bridge/core/common/util/ReactContextProvider.java
DELETED
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
package com.sentiance.react.bridge.core.common.util;
|
|
2
|
-
|
|
3
|
-
import android.content.Context;
|
|
4
|
-
import android.util.Log;
|
|
5
|
-
|
|
6
|
-
import androidx.annotation.Nullable;
|
|
7
|
-
|
|
8
|
-
import com.facebook.react.ReactApplication;
|
|
9
|
-
import com.facebook.react.ReactNativeHost;
|
|
10
|
-
import com.facebook.react.bridge.ReactContext;
|
|
11
|
-
|
|
12
|
-
public final class ReactContextProvider {
|
|
13
|
-
|
|
14
|
-
private static final String TAG = "ReactNativeContextProvider";
|
|
15
|
-
private static Boolean isNewArchEnabled = null;
|
|
16
|
-
|
|
17
|
-
private final Context mApplicationContext;
|
|
18
|
-
private final ReactApplication mReactApplication;
|
|
19
|
-
|
|
20
|
-
public ReactContextProvider(Context applicationContext) {
|
|
21
|
-
mApplicationContext = applicationContext;
|
|
22
|
-
mReactApplication = (ReactApplication) mApplicationContext;
|
|
23
|
-
|
|
24
|
-
if (isNewArchEnabled == null) {
|
|
25
|
-
isNewArchEnabled = isNewArchEnabled();
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* Triggers the initialization of a React context if it is not initializing already,
|
|
31
|
-
* or returns the current React context if it is already initialized.
|
|
32
|
-
*
|
|
33
|
-
* If this call does end up triggering the initialization of a React context,
|
|
34
|
-
* then it will probably return <code>null</code> since the operation is asynchronous.
|
|
35
|
-
*
|
|
36
|
-
* @return a ReactContext if it exists, null otherwise.
|
|
37
|
-
*/
|
|
38
|
-
@Nullable
|
|
39
|
-
public ReactContext createReactContext() {
|
|
40
|
-
if (isNewArchEnabled) {
|
|
41
|
-
return createReactContextInNewArchMode();
|
|
42
|
-
} else {
|
|
43
|
-
return createReactContextInLegacyArchMode();
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
@Nullable
|
|
48
|
-
private ReactContext createReactContextInNewArchMode() {
|
|
49
|
-
try {
|
|
50
|
-
java.lang.reflect.Method getReactHost = mReactApplication.getClass().getMethod("getReactHost");
|
|
51
|
-
Object reactHost = getReactHost.invoke(mReactApplication);
|
|
52
|
-
Class<?> reactHostClass = Class.forName("com.facebook.react.ReactHost");
|
|
53
|
-
|
|
54
|
-
java.lang.reflect.Method start = reactHostClass.getMethod("start");
|
|
55
|
-
java.lang.reflect.Method getCurrentReactContext = reactHostClass.getMethod("getCurrentReactContext");
|
|
56
|
-
|
|
57
|
-
// Trigger the initialization of a React context, should be safe to call multiple times
|
|
58
|
-
// https://github.com/facebook/react-native/blob/main/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImpl.kt#L723
|
|
59
|
-
start.invoke(reactHost);
|
|
60
|
-
|
|
61
|
-
return (ReactContext) getCurrentReactContext.invoke(reactHost);
|
|
62
|
-
} catch (Throwable t) {
|
|
63
|
-
Log.d(TAG, "Failed to create React context");
|
|
64
|
-
return null;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
@Nullable
|
|
69
|
-
private ReactContext createReactContextInLegacyArchMode() {
|
|
70
|
-
ReactNativeHost reactNativeHost = mReactApplication.getReactNativeHost();
|
|
71
|
-
|
|
72
|
-
// Trigger the initialization of a React context
|
|
73
|
-
if (!reactNativeHost.getReactInstanceManager().hasStartedCreatingInitialContext())
|
|
74
|
-
reactNativeHost.getReactInstanceManager().createReactContextInBackground();
|
|
75
|
-
|
|
76
|
-
return reactNativeHost.getReactInstanceManager().getCurrentReactContext();
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
private boolean isNewArchEnabled() {
|
|
80
|
-
try {
|
|
81
|
-
String pkg = mApplicationContext.getPackageName();
|
|
82
|
-
Class<?> cfg = Class.forName(pkg + ".BuildConfig");
|
|
83
|
-
return cfg.getField("IS_NEW_ARCHITECTURE_ENABLED").getBoolean(null);
|
|
84
|
-
} catch (Throwable ignore) { /* app wasn't generated with the flag */ }
|
|
85
|
-
|
|
86
|
-
try {
|
|
87
|
-
Class<?> cfg = Class.forName("com.facebook.react.BuildConfig");
|
|
88
|
-
return cfg.getField("IS_NEW_ARCHITECTURE_ENABLED").getBoolean(null);
|
|
89
|
-
} catch (Throwable ignore) {
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
return false;
|
|
93
|
-
}
|
|
94
|
-
}
|