From f68d987bcf2ae2fee1abe133efd096095b514f31 Mon Sep 17 00:00:00 2001 From: Jay Kim Date: Tue, 31 Dec 2024 02:43:53 +0900 Subject: [PATCH] feat: Initial Native Ad Support --- README.md | 6 +- RNGoogleMobileAdsExample/App.tsx | 241 +- .../android/app/build.gradle | 5 +- .../android/gradle/wrapper/gradle-wrapper.jar | Bin 43453 -> 43583 bytes .../android/settings.gradle | 1 - RNGoogleMobileAdsExample/ios/Podfile | 25 +- RNGoogleMobileAdsExample/ios/Podfile.lock | 552 +- .../project.pbxproj | 54 +- RNGoogleMobileAdsExample/package.json | 22 +- .../patches/detox+19.13.0.patch | 65 - .../patches/detox+20.31.0.patch | 110126 +++++++++++++++ .../patches/jet+0.8.0.patch | 42002 ++++++ RNGoogleMobileAdsExample/yarn.lock | 2943 +- android/build.gradle | 10 + .../googlemobileads/ReactNativeAppModule.java | 4 +- ...actNativeGoogleMobileAdsConsentModule.java | 4 +- .../ReactNativeGoogleMobileAdsMediaView.kt | 57 + ...ctNativeGoogleMobileAdsMediaViewManager.kt | 55 + .../ReactNativeGoogleMobileAdsModule.kt | 9 +- .../ReactNativeGoogleMobileAdsNativeAdView.kt | 107 + ...ativeGoogleMobileAdsNativeAdViewManager.kt | 85 + .../ReactNativeGoogleMobileAdsNativeModule.kt | 211 + .../ReactNativeGoogleMobileAdsPackage.kt | 115 +- ...ogleMobileAdsMediaViewManagerDelegate.java | 29 + ...gleMobileAdsMediaViewManagerInterface.java | 10 + ...gleMobileAdsNativeViewManagerDelegate.java | 33 + ...leMobileAdsNativeViewManagerInterface.java | 10 + .../NativeGoogleMobileAdsNativeModuleSpec.kt | 18 + docs.json | 1 + docs/displaying-ads.mdx | 4 + docs/native-ads.mdx | 365 + .../RNGoogleMobileAdsMediaView.h | 49 + .../RNGoogleMobileAdsMediaView.mm | 152 + .../RNGoogleMobileAdsNativeModule.h | 35 + .../RNGoogleMobileAdsNativeModule.mm | 290 + .../RNGoogleMobileAdsNativeView.h | 48 + .../RNGoogleMobileAdsNativeView.mm | 218 + jest.setup.ts | 7 + refresh-example.sh | 33 +- src/NativeAdEventType.ts | 46 + src/TestIds.ts | 19 +- src/ads/native-ad/NativeAd.ts | 152 + src/ads/native-ad/NativeAdContext.ts | 26 + src/ads/native-ad/NativeAdView.tsx | 43 + src/ads/native-ad/NativeAsset.tsx | 66 + src/ads/native-ad/NativeMediaView.tsx | 44 + src/common/ref.ts | 44 + src/index.ts | 5 + ...oogleMobileAdsBannerViewNativeComponent.ts | 17 + ...GoogleMobileAdsMediaViewNativeComponent.ts | 30 + ...oogleMobileAdsNativeViewNativeComponent.ts | 44 + .../modules/NativeGoogleMobileAdsModule.ts | 4 +- .../NativeGoogleMobileAdsNativeModule.ts | 64 + src/types/NativeAdRequestOptions.ts | 55 + src/types/index.ts | 1 + 55 files changed, 156660 insertions(+), 2001 deletions(-) delete mode 100644 RNGoogleMobileAdsExample/patches/detox+19.13.0.patch create mode 100644 RNGoogleMobileAdsExample/patches/detox+20.31.0.patch create mode 100644 RNGoogleMobileAdsExample/patches/jet+0.8.0.patch create mode 100644 android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsMediaView.kt create mode 100644 android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsMediaViewManager.kt create mode 100644 android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeAdView.kt create mode 100644 android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeAdViewManager.kt create mode 100644 android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeModule.kt create mode 100644 android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsMediaViewManagerDelegate.java create mode 100644 android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsMediaViewManagerInterface.java create mode 100644 android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsNativeViewManagerDelegate.java create mode 100644 android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsNativeViewManagerInterface.java create mode 100644 android/src/oldarch/io/invertase/googlemobileads/NativeGoogleMobileAdsNativeModuleSpec.kt create mode 100644 docs/native-ads.mdx create mode 100644 ios/RNGoogleMobileAds/RNGoogleMobileAdsMediaView.h create mode 100644 ios/RNGoogleMobileAds/RNGoogleMobileAdsMediaView.mm create mode 100644 ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeModule.h create mode 100644 ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeModule.mm create mode 100644 ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeView.h create mode 100644 ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeView.mm create mode 100644 src/NativeAdEventType.ts create mode 100644 src/ads/native-ad/NativeAd.ts create mode 100644 src/ads/native-ad/NativeAdContext.ts create mode 100644 src/ads/native-ad/NativeAdView.tsx create mode 100644 src/ads/native-ad/NativeAsset.tsx create mode 100644 src/ads/native-ad/NativeMediaView.tsx create mode 100644 src/common/ref.ts create mode 100644 src/specs/components/GoogleMobileAdsMediaViewNativeComponent.ts create mode 100644 src/specs/components/GoogleMobileAdsNativeViewNativeComponent.ts create mode 100644 src/specs/modules/NativeGoogleMobileAdsNativeModule.ts create mode 100644 src/types/NativeAdRequestOptions.ts diff --git a/README.md b/README.md index 7c6166a6..efa3f55e 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ You decide how and where they're placed, so the layout is more consistent your a Native -[Work In Progress](https://github.com/invertase/react-native-google-mobile-ads/pull/650) +[Learn More](https://docs.page/invertase/react-native-google-mobile-ads/native-ads) ### Interstitial @@ -119,16 +119,18 @@ This package can be used in both The Old and [The New Architecture](https://reac When using The New Architecture, some legacy code will still be used though. See status below: | Platform | Feature | Status | -| -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | +| -------- |----------------------------------------------------------------------------------------------------------------------------------------------------------------| ----------- | | iOS | Mobile Ads SDK Methods (Turbo Native Module) | ✅ Complete | | iOS | Banners (Fabric Native Component) | ✅ Complete | | iOS | Full Screen Ads (Turbo Native Module) | ✅ Complete | +| iOS | Native Ads (Turbo Native Module, Fabric Native Component) | ✅ Complete | | iOS | User Messaging Platform (Turbo Native Module) | ✅ Complete | | iOS | [EventEmitter](https://github.com/reactwg/react-native-new-architecture/blob/main/docs/turbo-modules.md#add-event-emitting-capabilities) (Turbo Native Module) | ⏳ To-Do | | iOS | Revenue Precision Constants (Turbo Native Module) | ✅ Complete | | Android | Mobile Ads SDK Methods (Turbo Native Module) | ⏳ To-Do | | Android | Banners (Fabric Native Component) | ⏳ To-Do | | Android | Full Screen Ads (Turbo Native Module) | ⏳ To-Do | +| Android | Native Ads (Turbo Native Module, Fabric Native Component) | ✅ Complete | | Android | User Messaging Platform (Turbo Native Module) | ⏳ To-Do | | Android | [EventEmitter](https://github.com/reactwg/react-native-new-architecture/blob/main/docs/turbo-modules.md#add-event-emitting-capabilities) (Turbo Native Module) | ⏳ To-Do | | Android | Revenue Precision Constants (Turbo Native Module) | ⏳ To-Do | diff --git a/RNGoogleMobileAdsExample/App.tsx b/RNGoogleMobileAdsExample/App.tsx index de6ab97d..74f3126e 100644 --- a/RNGoogleMobileAdsExample/App.tsx +++ b/RNGoogleMobileAdsExample/App.tsx @@ -1,6 +1,9 @@ -import React, {useEffect, useRef} from 'react'; +/* eslint-disable no-console, @typescript-eslint/no-explicit-any */ + +import React, {RefObject, useEffect, useRef, useState} from 'react'; import { Button, + Image, Platform, SafeAreaView, ScrollView, @@ -8,29 +11,42 @@ import { Text, View, } from 'react-native'; -import {Test, TestRegistry, TestResult, TestRunner, TestType} from 'jet'; +import { + AutoExecutableTest, + TestRegistry, + TestResult, + TestRunner, + TestType, +} from 'jet'; import MobileAds, { - type PaidEvent, AdEventType, AdsConsent, AdsConsentDebugGeography, AppOpenAd, - InterstitialAd, - TestIds, BannerAd, BannerAdSize, + GAMAdEventType, + GAMBannerAd, GAMBannerAdSize, + GAMInterstitialAd, + InterstitialAd, + NativeAd, + NativeAdEventType, + NativeAdView, + NativeAsset, + NativeAssetType, + NativeMediaAspectRatio, + NativeMediaView, + type PaidEvent, RevenuePrecisions, RewardedAd, RewardedAdEventType, - useInterstitialAd, + RewardedInterstitialAd, + TestIds, useAppOpenAd, + useInterstitialAd, useRewardedAd, - GAMInterstitialAd, - GAMAdEventType, - GAMBannerAd, - RewardedInterstitialAd, useRewardedInterstitialAd, } from 'react-native-google-mobile-ads'; @@ -38,7 +54,7 @@ const appOpen = AppOpenAd.createForAdRequest(TestIds.APP_OPEN, { requestNonPersonalizedAdsOnly: true, }); -class AppOpenTest implements Test { +class AppOpenTest implements AutoExecutableTest { adListener: () => void; adLoaded = false; @@ -95,7 +111,7 @@ class AppOpenTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -113,7 +129,7 @@ const interstitial = InterstitialAd.createForAdRequest(TestIds.INTERSTITIAL, { }); // To implement a test you must make a new object implementing a specific interface. -class InterstitialTest implements Test { +class InterstitialTest implements AutoExecutableTest { adListener: () => void; adLoaded = false; @@ -170,7 +186,7 @@ class InterstitialTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -182,10 +198,11 @@ class InterstitialTest implements Test { } } -class BannerTest implements Test { +class BannerTest implements AutoExecutableTest { bannerAdSize: BannerAdSize | string; + bannerRef: RefObject; - constructor(bannerAdSize) { + constructor(bannerAdSize: BannerAdSize) { this.bannerAdSize = bannerAdSize; this.bannerRef = React.createRef(); } @@ -233,7 +250,7 @@ class BannerTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -244,7 +261,7 @@ class BannerTest implements Test { } } -class CollapsibleBannerTest implements Test { +class CollapsibleBannerTest implements AutoExecutableTest { getPath(): string { return 'CollapsibleBanner'; } @@ -270,7 +287,7 @@ class CollapsibleBannerTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -285,7 +302,7 @@ const rewarded = RewardedAd.createForAdRequest(TestIds.REWARDED, { requestNonPersonalizedAdsOnly: true, keywords: ['fashion', 'clothing'], }); -class RewardedTest implements Test { +class RewardedTest implements AutoExecutableTest { adListener: () => void; adLoaded = false; @@ -345,7 +362,7 @@ class RewardedTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -364,7 +381,7 @@ const rewardedInterstitial = RewardedInterstitialAd.createForAdRequest( keywords: ['fashion', 'clothing'], }, ); -class RewardedInterstitialTest implements Test { +class RewardedInterstitialTest implements AutoExecutableTest { adListener: () => void; adLoaded = false; @@ -430,7 +447,7 @@ class RewardedInterstitialTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -442,7 +459,134 @@ class RewardedInterstitialTest implements Test { } } -class AdConsentTest implements Test { +const NativeComponent = () => { + const [nativeAd, setNativeAd] = useState(); + + useEffect(() => { + NativeAd.createForAdRequest(TestIds.GAM_NATIVE, { + aspectRatio: NativeMediaAspectRatio.LANDSCAPE, + }) + .then(setNativeAd) + .catch(console.error); + }, []); + + useEffect(() => { + if (!nativeAd) { + return; + } + nativeAd.addAdEventListener(NativeAdEventType.IMPRESSION, () => { + console.debug('Native ad impression'); + }); + nativeAd.addAdEventListener(NativeAdEventType.CLICKED, () => { + console.debug('Native ad clicked'); + }); + nativeAd.addAdEventListener(NativeAdEventType.VIDEO_PLAYED, () => { + console.debug('Native ad video played'); + }); + nativeAd.addAdEventListener(NativeAdEventType.VIDEO_PAUSED, () => { + console.debug('Native ad video paused'); + }); + nativeAd.addAdEventListener(NativeAdEventType.VIDEO_ENDED, () => { + console.debug('Native ad video ended'); + }); + nativeAd.addAdEventListener(NativeAdEventType.VIDEO_MUTED, () => { + console.debug('Native ad video muted'); + }); + nativeAd.addAdEventListener(NativeAdEventType.VIDEO_UNMUTED, () => { + console.debug('Native ad video unmuted'); + }); + return () => nativeAd.destroy(); + }, [nativeAd]); + + if (!nativeAd) { + return null; + } + + return ( + + + + {nativeAd.icon && ( + + + + )} + + + {nativeAd.headline} + + + + AD + + + {nativeAd.advertiser && ( + + {nativeAd.advertiser} + + )} + + {nativeAd.body} + + + + + + {nativeAd.callToAction} + + + + ); +}; + +class NativeTest implements AutoExecutableTest { + constructor() {} + + getPath(): string { + return 'Native'; + } + + getTestType(): TestType { + return TestType.Interactive; + } + + render(onMount: (component: any) => void): React.ReactNode { + return ( + + + + ); + } + + execute(component: any, complete: (result: TestResult) => void): void { + const results = new TestResult(); + try { + // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. + } catch (error) { + results.errors.push('Received unexpected error...'); + } finally { + complete(results); + } + } +} + +class AdConsentTest implements AutoExecutableTest { getPath(): string { return 'ConsentForm'; } @@ -484,7 +628,7 @@ class AdConsentTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -530,8 +674,9 @@ const InterstitialHookComponent = React.forwardRef((_, ref) => { ); }); +InterstitialHookComponent.displayName = 'InterstitialHookComponent'; -class InterstitialHookTest implements Test { +class InterstitialHookTest implements AutoExecutableTest { getPath(): string { return 'InterstitialHook'; } @@ -545,7 +690,7 @@ class InterstitialHookTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -603,8 +748,9 @@ const RewardedHookComponent = React.forwardRef((_, ref) => { ); }); +RewardedHookComponent.displayName = 'RewardedHookComponent'; -class RewardedHookTest implements Test { +class RewardedHookTest implements AutoExecutableTest { getPath(): string { return 'RewardedHook'; } @@ -618,7 +764,7 @@ class RewardedHookTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -680,8 +826,10 @@ const RewardedInterstitialHookComponent = React.forwardRef((_, ref) => { ); }); +RewardedInterstitialHookComponent.displayName = + 'RewardedInterstitialHookComponent'; -class RewardedInterstitialHookTest implements Test { +class RewardedInterstitialHookTest implements AutoExecutableTest { getPath(): string { return 'RewardedInterstitialHook'; } @@ -695,7 +843,7 @@ class RewardedInterstitialHookTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -737,7 +885,9 @@ const AppOpenHookComponent = React.forwardRef((_, ref) => { ); }); -class AppOpenHookTest implements Test { +AppOpenHookComponent.displayName = 'AppOpenHookComponent'; + +class AppOpenHookTest implements AutoExecutableTest { getPath(): string { return 'AppOpenHook'; } @@ -751,7 +901,7 @@ class AppOpenHookTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -762,7 +912,7 @@ class AppOpenHookTest implements Test { } } -class AdInspectorTest implements Test { +class AdInspectorTest implements AutoExecutableTest { getPath(): string { return 'AdInspectorTest'; } @@ -785,7 +935,7 @@ class AdInspectorTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -800,7 +950,7 @@ const GAMBannerComponent = React.forwardRef< View, { unitId: string; - sizes: GAMBannerAdSize[]; + sizes: (keyof typeof GAMBannerAdSize)[]; } >(({unitId, sizes}, ref) => { const bannerRef = useRef(null); @@ -826,11 +976,13 @@ const GAMBannerComponent = React.forwardRef< ); }); -class GAMBannerTest implements Test { +GAMBannerComponent.displayName = 'GAMBannerComponent'; + +class GAMBannerTest implements AutoExecutableTest { constructor( private readonly props: { unitId: string; - sizes: GAMBannerAdSize[]; + sizes: (keyof typeof GAMBannerAdSize)[]; }, ) {} @@ -861,7 +1013,7 @@ class GAMBannerTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -880,7 +1032,7 @@ const gamInterstitial = GAMInterstitialAd.createForAdRequest( }, ); -class GAMInterstitialTest implements Test { +class GAMInterstitialTest implements AutoExecutableTest { adListener: () => void; adLoaded = false; @@ -941,7 +1093,7 @@ class GAMInterstitialTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -953,7 +1105,7 @@ class GAMInterstitialTest implements Test { } } -class DebugMenuTest implements Test { +class DebugMenuTest implements AutoExecutableTest { constructor() { // Android requires SDK initialization before opening the Debug Menu Platform.OS === 'android' && MobileAds().initialize().catch(console.error); @@ -981,7 +1133,7 @@ class DebugMenuTest implements Test { } execute(component: any, complete: (result: TestResult) => void): void { - let results = new TestResult(); + const results = new TestResult(); try { // You can do anything here, it will execute on-device + in-app. Results are aggregated + visible in-app. } catch (error) { @@ -993,7 +1145,7 @@ class DebugMenuTest implements Test { } // All tests must be registered - a future feature will allow auto-bundling of tests via configured path or regex -Object.keys(BannerAdSize).forEach(bannerAdSize => { +Object.values(BannerAdSize).forEach(bannerAdSize => { TestRegistry.registerTest(new BannerTest(bannerAdSize)); }); TestRegistry.registerTest(new CollapsibleBannerTest()); @@ -1006,6 +1158,7 @@ TestRegistry.registerTest(new InterstitialHookTest()); TestRegistry.registerTest(new RewardedHookTest()); TestRegistry.registerTest(new AppOpenHookTest()); TestRegistry.registerTest(new RewardedInterstitialHookTest()); +TestRegistry.registerTest(new NativeTest()); TestRegistry.registerTest(new AdInspectorTest()); TestRegistry.registerTest( new GAMBannerTest({ diff --git a/RNGoogleMobileAdsExample/android/app/build.gradle b/RNGoogleMobileAdsExample/android/app/build.gradle index 9a093215..9319d916 100644 --- a/RNGoogleMobileAdsExample/android/app/build.gradle +++ b/RNGoogleMobileAdsExample/android/app/build.gradle @@ -49,9 +49,10 @@ react { // // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map" // hermesFlags = ["-O", "-output-source-map"] - + /* Autolinking */ - autolinkLibrariesWithApp()} + autolinkLibrariesWithApp() +} /** * Set this to true to Run Proguard on Release builds to minify the Java bytecode. diff --git a/RNGoogleMobileAdsExample/android/gradle/wrapper/gradle-wrapper.jar b/RNGoogleMobileAdsExample/android/gradle/wrapper/gradle-wrapper.jar index e6441136f3d4ba8a0da8d277868979cfbc8ad796..a4b76b9530d66f5e68d973ea569d8e19de379189 100644 GIT binary patch delta 12612 zcmY+pRa6|n(lttO3GVLh?(Xh3xVuAe26uONcL=V5;I6?T_zdn2`Oi5I_gl9gx~lft zRjVKRp?B~8Wyrx5$mS3|py!Njy{0Wt4i%@s8v88pK z6fPNA45)|*9+*w5kcg$o)}2g}%JfXe6l9ig4T8ia3Hlw#3f^fAKW63%<~GZJd-0YA z9YjleCs~#Y?V+`#nr+49hhsr$K$k!lg}AZDw@>2j=f7t~5IW6#K|lAX7|^N}lJ)I!km`nrwx> z))1Es16__aXGVzQM0EC8xH+O!nqTFBg9Ci{NwRK*CP<6s`Gq(~#lqb(zOlh6ZDBK* zr$|NDj^s6VanrKa+QC;5>twePaexqRI%RO~OY075y?NN90I|f^(P# zF=b>fZ73b5JzD`#GC3lTQ_B3lMeBWgQUGYnFw*HQC}^z{$6G4j(n4y-pRxPT(d2Wgb%vCH(?+t&Pj z)QM`zc`U`+<~D+9E{4Uj2kc#*6eZMU$4Oj6QMfA^K!rbl`iBix=2sPrs7j@aqIrE zTaZJ2M09>rp$mgyUZ!r2$UK{+DGqgl`n;*qFF~M(r#eh`T{MO?2&j?xgr8FU$u3-` zhRDc_I23LL4)K&xg$^&l-W=!Jp-P(_Ie07q>Je;QLxi8LaEc%;WIacJD_T69egF?7 z;I_Sg_!+qrur8$Hq4grigaiVF>U7uWJ@Hkd&%kmFnQN-P^fq0gB1|uRt!U#X;DnlV zo?yHWTw7g5B;#xxY`adhi4yZn@f(7-Xa(J6S=#d@&rlFw!qfvholE>MEb|VWn^g}G zMSrK&zQ^vDId&ojL!{%{o7?s{7;{+u%L{|tar(gp?Uxq3p?xAysB>0E$eG#$tvkk9 z2Q2gEP17{U6@UD*v({5MP-CTZfvWMItVjb4c;i~WLq&{?Q1(koX&vt7+$z}10{^Id z{KDjGi0JpD7@;~odF__0m|p;5rIrHidOP9^mwKe#-&JX-X@acc)06G{LO1Wu)#gvZ za~y9(fhA%UwkDOVU1LBJ`0ROE z4&)dJKK%mG@+CIm?+wt9f~@xIMr8}UH*K1j| z0pppo{7gv3v{URwxVMeg>Ps!L5IKxm zjac2egjgb0vH5i75$s|sY_RYec#>faqJk|AGgV;v=^%BM(^p{p;(^SVt-88G9f!q; z>p}9E4^f0=01S2pQBE4}9YqE%TV)*hlU^8k9{&=K76+*Ax^r=AkBb%OCP^P2nm0Ri z;D-|Zk?gGeU<12ti2CnPVNA(Pb)02+r|&yTWW-OJO7 zNLb0pps6aN?A~NJp5kj{{IOlf!5KWMleV@-hYLift)D>-7K+tgs=7Ake}oBnIy-y1 z(Hn@Hjw=_(x>dO5ysQsrnE%A*bk0K<-j{1Yqz@#n#jOL^AzCr#wR|WYzqk6i7v)Lf zkXdKxzuu20aP{Tbg$(+9&oh7cd(Uoqqf<#ujb$q4sZ~gxFbQfS zS)kNklyL*{2AELgjZ(LBu*>S(oH5AaJ;YiB@;l@=O%F6B?oanzoYRM^fQ9-<~^=3$H0g^JPMLQo@SZ@QuNvy)tyJ)LSj`+()#fy?{aV4Yg^7dlQ7AQM^3GLCR2dAFR zJjtfKiVqF`l-H_fz0HD|9g>)pOxn}k!vdZ=DO!7Sikm{Z%P6BrRkBS6W?ZB5W&7rT z@uYpf@M@a!z7H&o@-yrcCL^Ff3e7p3T`R9p?@o-acXmbTSa0>ZANzCSgovsd%;i$| zVus`not!oL#(W`L-!9w0jdaECaG4hk{V7IOs676ZquZH~0TX5hDq|)x z6T497l|E?f4)LA>j=S8}b$0LS=I4h|hUFJYJODT8Li@#6kF$k0)@*l{RnM1HQ%?VT ze-Pqlc!~t(oumVC*?5fwR;P6u{tHaZ~*LlD;B)4f? z?lpWfa2P@)g57flVl83Ej%P`2)gGyaPjhvD(%i~{`2b>#3!+y&` z!2nuwHMFA-zUY}f1^0B8<`N)Gr=A4TS@b1qykmd0Pq{?r)+1^^+D(=xasb^Tf!oK9 zBLL+*p6M_#ufgLzgq1zcSwZsZnQWFLC3`Yxdg-2=*tT`J9nrfYt)RF)YryBf8_gW{ zvKbB+oZLehfT)S#<|y1)E0hW^?+AnqPXq9Hu;v3dsMGdr{SVyF63;K<8VcgI#~}1i zLYSBL0K;RTT(;>2x=*!1Di9w0mwr;`CN}kM65|Ay{~z}_^JKOsRaN<~#9O^iiW<5P zYN7r~HV!#Nz~IZU`P>1Xe%4f~K}KcF#X&5kO*G}-)74S*tQ8CietdPcA1Yl;S=Mr# z`#MYY!{s^uo=jn7;k6O%(}fN+*0cWMpt~#n9DR<3NyU?+3D^AgI}S)Cu-Tljg`VY} zX1=fq$?8$DtOeGxE6f8lbS_6Q3C4+LDTO$}_IpM$Xv<|QSC%+Oll^q$y`7o@jD{dp zNDl|&X)r7wETa-#h*d`KXntxI(Y{vLha{$0i7@G8xx^m=c<{lJ9?p-i!^W{%j7-oo z0W^SzZ^(Wkyz*We{lEn%Yhu-ycUOHtrRiVJL4~&S91*D0MrLu}Q>v-Mc?GcWfpyz% zX|UvcN@krFO#@v|CtYM}g|=L3%aMo$E5<@CM%c*;?u>LOTz00@+dt1{yg1y=$h+{|D17U}$*^fE^H&8b431EUE z<9tv0V_#%#&1N#j7AKCj!tTK@J%oFW*ESW<(#Gl#Xs%v<@AitI?s92nLzm<)w3Wkkom1f$gcdUi%g_*jofy&}N#luL<$GVIe{iQkQ)sIHVy zBgItnPBFamrv6Kb{eE($Q(f`ZPeW!Hm%Y@F*OF1sKB{Yy|C>WEv_mfvv-N-jh)B-5 z4a!1WcT@9a+hGaBrc~sz=>G?Q!*Zp^JFRUvBMyNR1;`)j$RhH$6gEyVKhd$&K-CFT zXaWC-Y=fyOnqT84iMn9o5oLEOI(_3fk!W^8-74|q1QhQ|CmT0i=b;6Z3u?E{p7V{? z;f#Q-33!L+4&QQcZ~GAqu$NS{M;u%`+#9=7^Oa5PKvCCCWNG_~l(CidS!+xr-*gg{ z$UQ`_1tLT_9jB=Hckkwu>G{s0b0F4bnR7GibmHo?>TR&<3?D;5Fb#gd8*wYa$$~ar z7epl1qM)L{kwiNjQk}?)CFpNTd?0wAOUZ|gC{Ub|c-7h~+Rm(JbdoRe!RNVBQi!M8 z+~U6E2X&KSA*T6KJvsqwqZl#1&==Dm(#b^&VAKQ>7ygv*Fyr;)q9*^F@dCTg2g!w~ z%hg)UXAUyIpIbLXJv1nZX+a_C)BOH2hUim|>=JHCRf(!dtTidb&*~I!JrfRe+PO>w z@ox$G2a3i9d_N9J=|2$y2m-P&#PTNwe!oLBZFs;z|F5kXvBDn<)WwE0E3$ow=zg3R zK(9;sf0t;VEV3@gAg7jRtnj%-6O@!Hvg*;XcUAw}!=2*aErvB(eQIm(-UGmq^J=XN zTqJo$Y|WKo^HlBF3BXJrA#}7ZLg=r*w`I*~Ix`o&2k8^(0mt8Rp=A>F`&gehhp@Jy z^e^#B2!~$LvNCKugg)8)-G%&THdk~kfextilegP9?#C#()F59U$&eo(h|5>ceo*Em z{PEE79T$YP|Kr7K`WBHbtQwyxFkCl6xX&+oUf90B5xoi3_5KHHCyEE*oPbOQkfMz& z6^hT8_NXd2iWk{q9IKae1{_7hMPH8I7_BMtVOM4 z6jm?E0QJOn$qrgsJ`9w##GB9?G})-GXSQo6(tYS(Q0-Ct$co?Zzl0?NHsDRron?;_ zZZgQg)%XW>P?8_&zoGuF(>Och2kEJXsu1_X&~w87x!b z>~h!a>e7{`p@+#hXF88wI*JeWRZ;J4ev4<}HWf|Z;(7$E!S5l9wzBHFe>^I{2`a;a)QnAwa2xv1e(bq$<}!8o^ofGvYpk7dBR+`*%iE;hUY5 zaHF}OjGO9r*{%lmcK^uFiTHgoUD`^9Nx@~;Bg!V* zuuJ&ti{DQiq7RyJAR94wem{}cPK1J(Yxnn_{=>?USqz-~&QXRStS^s-7TksZ$AEI! z#og36s3JGtGU{CnDHRFtipFqvrE*gw7_K@NN0h+ItTq@4fqN!HeQU1y7*X?9+IfZT4Vxebpt z%#VzgdDK~-&+=Z*#>=n#XUhNvBZp3=Cr41jMqwJkHLf3L7Vm~V#GgJ(Jpii~PmJ#s zA7Ft!{xD@z>9DUb4JbiUBdNEcU4BO$651iN*mp*f)HbRRM`Cx5cR?5IfEcU{IZWwf zz(M6CDv)>xa3x}K6%tP^i15P1&&DOLK=k~+jNR$UK3frSl+|PjSC-dBItvD~LL! z>_g(YYdO4k(5EbPOw+v+;G7~jYm>F@Ai|o`gs%F)F8tDz$dl7Q%aCe|v|$UkAul_R zNlA-beBX^IJU?kgS`E$it7nF4DaI!SJAGq)2P&Few(-|tp z?K+%D3e4{pfkayrcbm0ftu6Ol2ZzdKM+4i!hNP3NRL`EvvZJ3yvNr2MV%igZ4kj``Qrdb_OI$7jWP z;l0DYf&0(-*QcP5zrP`HVznW+SbH63Qx$7_9~NjRNg7eKqI!UJ=XH`g^=t8GiFTu( z?2L{JKEu%jJx&XjNzU(*!ZNmL1@RlJA0G$2_LrAb_7lmjil(GSlSM zwTes`m+3R;3#N~Xg#9owh3ycXV8@ZlaY_16kpPFA={721b~URO4HD3sp%fmkZM}k) zZB0#)kP=RkNB~R-MCk8aljG_bagt4vIb~8)BV%(b8_;)&Kf9GX+%O_cNG|(D$!3&D zL(I8}*LqN5NntipFlN13=`D>6!{D@CFMBH0kW3=HccJV+xW~|$qeFR5i-2{X+iWMu zI2$gepQ)H_B%ip_BlWOQ*|pErXs|4ir{IHccgaIJ84irE{?+$KDABXr&f`jB^V-c% z$$u`uU1YB^{<+UN2cNg#7&0bz@yF?5>j|;)5&IV3wIQp58X#OE-M^$HdyvL|Um5t? zhZlAG!Mz%XkUe3t471JM*Yur}o30vzu6RN7gJyNcf!IItsDO730mcJ*O!~V``y5=3 zNJGp34DZ}wd1H6V`Uuy%es>BiO_aE-S8jzir#$& zyk)@2a5tP$@g%jW^b^JGdo)X@Q%sE`^lDQmY9m%uDFpPX`w9%=yQ+nneMm#OaXcD` z9}{tn5A2b2z9783vL2_jSao?uxJhWJoq%47*RafM4o0@gY(p)F>qT4^XM5GLzV#6j zC+HoGhAne7o_w{WUo(B++z7lU3Y0k1rYv9|TSv0vR-Du(5=VakbbelgZTeDn+a_Wv zq_j-^+Qz1WAl;Zg>ahX|CERbX1V%B!hTKN?M}fGoA07M(WU&NfT&TmN`P@56U2 z^)vLDs|Ln~0iTtn-?KTeQl@T&bskJFuTUS!m+$CS9vnd}8(UMO|Kv6TCfGN9NUu&4 zL{)GTxPq>fwsJ~aU=4Qhuq8*RzDsP(LZh$BHezq&9gK$IS<|DYbm})$QTGCS6T;Dr zEkLct!b+#<1r9OKG@P!f1wm8>=Nz!7OzJm!g<+`?N3;YaA3(P@EL=(sTaRMDD!c8=-XN^4BXp(eVkj$NmEMYPP>YJ4bJ3yUud z<3BeJAJ$6z^TuywnfH5lv#$lgwraNw{IV=tIznPH1DT`v-5yS=!)J<}xxl}uZf9azA2A97Haf!;<3y01hlw?dWNEv@TLi1s-mO4vmIT%O_42nS z$VRWrs9NngqRRkWAnWkn%`Rw@?wH|)7XL`EL5EZu$qyJW31&CB^T_)qwIv!{;E_6 zo-9XAryQRlk-O0>o#-SZO>|6OYq;}<*>Wu1AsVRiXY4f8qb;+sItv3AyS!4Ry+q}) zA!pAB|BmC;=RIOk^^vlsEH(!Q!7_1FK~ZB2err*o!+b(r=m1b?$6d!%zmN+69LXnT z&gRmM+n_R-F@sT*IYv0_mGPvur!u`iWbQO7SqiGFLeY&yga zf`lM&B74FA2C?N@8_z652fjhBEoDUKbP8hL{0{HAF%qDo7)o3=3rg#6)T7%%5^wl% z9R0*S*<~>nzYOdQk2l`9h#t+gJy_xujw6xjV(8S<_DbVg61&pT%Hi42l%D73G?adn znB%UdNM0p}lEF-P2%TAMam2zpQev71e>a$$%i+r~b+D9G9pF|oY_*(-u*89oKsXLY+UIbqq)MQ%(GYS{(*n_S_*RN$*~`zUtab%0aKwhx znc)Yo?{xq1sJCgQD)TeTci1ucvbez9q=A72H(-SB18Kl&6^vHV8^i!p@>iF!DIw17 z+8Q)TNisB7>pwyww4y)yJx*wX6SJO78eLBC-ar1+k$Z9fy;wBD|3kzI{<+l*>PSY^ z_?nLOZaeWbU@C3hfK?X;Di*8CHCPkx2qco6(ZyJdqSzp^TJ_5Lpa0UP{Gy+!b0Lr% z@xYxSjUKoY6L#>$qx~KD$-0=|OF7zhVP~ntMgEALYPIfhj@+ z!;JJ7te>CcovruwHsJH6Lta$nm|%^C@=V-rmhU{+I~0(|XHQ9jt@L7pb{gx#{4r!) zg($FyFTslcgu(~6lYr$nW?)%*l#VJ=R-jxK(x=t1bWlu(nL66T#qj%3aZ@uVhy}Co zDU_q61DD5FqqJ*#c|(M5tV)XBN?Ac^12*q)VN4yKPJ|#==S_`_QD9|0ls!`2)SwuHDRA_OfXQDq3%qW&MZB}Z!=k-9xqev8jHz(H z{^D@cIB~QiK>~wa)A&^Ll^Wi6QgCzU;iv-BHsLBs zH7=jN%|>0S`SjP%M&AF1PNVDp_FZ?2Bm@7`DC&v(pYrw!!yD#4 z6+<=HS0Ln6MhoKxF<%~H`y20{vf#pxh=;j{zY381gvAFekgG|>G1zo8$&az{V=;JR zy_puF4$L$?EMhT?;TpQoR*j16ll`#AS4e96C}yp_aGKkBe?1H|k_;gG-~Xorc<;lI zkB}fB{$c-D2mGA&{rm<*@F5)c3X+6??g~XoEwuzSuch0D@W~P5(2I8v8F$c2$Vw51 zP#YLSBDqtWW^EYBl^QYHF+MA7am6f4DOhwnJM=W9$uvMOsZ%_~?)2C#wb?CkI$7{K zEi)=#|5pFvg^){zK5kpBLjB2kZ+$ZB|L=W|aNwyyb(gC2l7bcpx{E-H@)q6@D6N^xh`{1E%ItF2$eeB_SjI@b2WgTpS1thwg&n`jiIzw^TtXUyB{00($GIq>vbj|}bav}}Q_~wp3>k8!E@hVC;OMUTu|= zAy#vXH*GrUHu7^cNZWe1>y;2(51js9wbu+R3Aa*(wzH9+X0dIsf&gc_x|_LP z>~CF^?(~U}+l~ehe|i>?4eo!xkq&Lk+RR-1duNP#o~>@1x)s&i&u zRaYL@+D&_M|JLI6fHbEr_`U;HgPTh#E3?sB)A$*gqyBgg*ql|a-m*TX5rACbWKCE6 zdeQ`v8m6>g^ugv`p|HY^#1QZrGGUj0^HVDc@{?Q0yhalbBEV{+|HzC^-{&e{5K%z9 z6Bxtnfu1!@Mp+Q&*&~;FOg&*Vm<@4b;{FG0-!UUXX!|)1w}op!B_|7_s~d(+=9Gba zKp8`LaB4D(H=cGcspJ_TjYaOwMb=sGn^gtUVhK!UI~2KKYEE-NC}F>+BEY7IVvy%KRvm00tg!Q`y=er}wpEetX}K@;}(}{s9AzV#q2@ zBy7}->|N?13POrs`;U?(qAG(I$~Gt+Rgw%aNZ_0fs_utVvRJT-7z4!@x36v@=NBX=IqkK{#Kg0w48de@?#Yb4M(Svj5=T+<ONr8-oh7l?Cji@+erqur zFhZ=9|Lk=$`c}v4u`)-!!UI=!9Jo@h&7p4RlS#u! zZ7-prn75JkV?VjptX;@$#`U`{vB!=Z?V`T*FBF>J?vsML7e6@2GbUteMFfX-TUu{2 zLNIG*;dV)8GV8gAgEf#)X3A>p3^CRka1v?~8x^anBhQ=L=LsOl=&pcOYHo98m##ye z34MtGCDK!`ptl?taGMr5q{!zVc? zG00e){TV?`YA9eB;(lA3lXI?RrB4BYQGk?vOmTIUJED=(`_*gtn2DB-t4WW54as*W zb2kD-lWX>lb$+W!VFakki>B^Vc+u$?NLF>)!U%b@Y}gYJ>m2H=^x0=nsE0TF^Yu0h ztgH8-o1%+jCk(+&`|)tTfEVHq0cMeFa{Uz)X$;fCq%Y=SOWML6bYfeP8j5hktL`KK z(18`XrUn&WN9PtFxh&dX`y~YBsmdhi7Kw%tKzM%^VEhdD<_XkulW-x=JN6OPbFI4@ zzDDRN+f=@{0h*MswwOqG6gJ?{NuHx(y-|FUGsxyZ*x0~$MW(eY>vqq4Fh#t7uzw=- zKB?|!0N~!h^AMdLa)oR!Ca#HZ9&Zf)ghuO<^RN)4twRlygHnQG(BE{cDc5E}OF4;xss6gYyV~EcJvJkX)xNWb=@yw!uq0v-sf^rvkp-;?DPWK@*SEw|V;IH=7 zfQqEV_>DjOPT~8X*J|H8=&RnzK4~S7ML~nLX^%s-Vqc^aWy7N$y57qciZGcqy#=zU zs8hcHiI=D$+RB{|62{ohCTiaML6FI4Uhzo5D{Jik@poCs0w7F)*w}F4r0sJ~#u-72 z5bK=ANt=M$Dh5NKnxGsg9NRR?WD-x|FhTwBjd zD<-K>44DB~i%frJOfnzh1R>PRY34kw!6~p3M$JLaD1r@`=h)~Ngks-(gdXh^Q?BTP zZ^Zj5w1AwtuR2$~E7s9iZdF}z%pv1em^V2rM{1tLUY@-+Sc0(9jA|iZWml1;v13=U zHf?y@#mb--7z6$ue>`qjhE~brk$AY-RG90~5wcBbDReXR2)pKg{L>;H(DI`U!MLNQ zY9rFJP@ZQ}jlcMh%WSCo%vf+nd0Gmd*F%KMIe>slCUh)8Ma|;M_I+v#;|ueg9oLg; zq2HtZX%&#F7vdpNlkX?}(C7dGC^y#NB#m4%69RzTNrk%4ol~hSI%>2r6B|*ZkW(*P z;u#s;+faHo{tfy+1L^RzWDi*^JR0iY(zJDB36y_QJ+|E-2x+cY z!V8uLNktH~q>WQZuY!Ap66WP|E!0PA1jK~)^8oJVGbspJs6QL!!-5Qm7 zHYI|_`Actg?vDzdg5{86w@GS$G6ANzff7->6i5pB$T4O}`fZ_;{217Om0gN5zTr12 z5mW{hCzCE-QubjxN$TAE-XgI-8dTY@OZmq`y+y_>dk*(qXF0{nam|q@~i}Utp*k{yurq(DW54hkDT4bbg z=_etM?Nf5W^o-HEu9_?&xEqPg^P^mTxLH8n%u$!mWvFG|{&)jtnU&6|5-`~eaNz0%D1BDo`{ zS1N5(KW5v^2eLdd_%`uaRndF@h0Uo6=M|8?b~KbOLZk{HXEnGmtgZXf2inI*1r%n! zQ3&%RI4r{f&dwW~HwH0Ked9b!k6{>_19H z_Ai>5IChDMY(FfMyG%;30?SQ{iV9KyGru62+Y)~qSQ91}b~}w<&*}R&1c#$O`H@~c z5)2S_eXx}M#N{MuGeQS9@#UJB@;W_j50b}jIhxMPloEFQZdvwxiU^RYycTzgK)-vl3LT&$L8~@68$C8~5_U{cR$E#w*x65(qw&eoL@>%ZHvj zWnEMlSh*(o&oy|J7eJ5OD`ssy%F?*Vp?`Cq;FShyl{ZoKCG5g{y}>usznni#8ki(i zO{w@n{iAj1_ooX@+s*!uW60WcH~*bNOT6z%0jVML5};wVrQp~`Uss_{cO2oud_nNA8^B$?07fJ6?iI)Q zuo9G)O-z)DqstrBqf>B%S05hf-wep0@$BFHKSrkZ{za3D)yVzRz)2{wf8(Wp+xyAM z$rtyx$gi3A=V~V!`Q3;BM0$>*VVtxEM|xDL^gew7ydy3Q6YzD&THRz*q33Ms_D;M- zbCx1Ft#UNB)V3bf`~{ImI72OTp^|bF8?G8#FRj+Biy8ET5#rA3sd|0FR@U(LAJ%w8 zS1%n8Z=Amhw)92rIsof=YVWF4jw&F*j1LG@-`+cR0-~2LqXRH8(Ccne{y#MCPncF64U`0uO zWmi$dlii~1D0rLR{qc|_2M!C$t8^=G7xQY)9!#Y331A|>N)EhmyVdLWL9I3YLJ`7? zZmpqUJB>Ni9oiL)^1IK1UoMyhWE{$9M2M6Xi zPKk7GpMsA6vjZbU7~i+u|J6Nk|Ci!Y3UMUT2|`M;JsNQACdJ%ooo9Yt{?A+0hMpxi znEa~~sxC>rKrU6bd=WRb;%wsH>A#j4{({&1GYSNR57Gama(3)2A;SM>qop}l>Jk2* zn1+C$fIxuwzg3mCU#SOqb-wOCb6mBcYlA5+mt<&_J~sBxc(GQtBFINUO~Mr7<-uu($>P HJ4oML2Lo<@i8BwbL^1~GkG`E7C$SEa_ zF^}Ea+#Je`Xy6;#D0FPnSrR%Y!QGA~NA^{oWmW8C<3dr{x6wWQ{4+bzemqV5W$i5~ z=J0jXZ>uZb>DT@0Ks?4QJ{`z?8JWl3$y;2pj#$XP*pv$>$g(z43{YH9KmmR6<#sIn zA`#=0#sgycaBQ^&}Xba!|KaZ8~b30v~nLt z9%#gz_*=~KD{3t^X~l>480*}PhKN=??g`RV|4Ud{Gyyl187MJ}r(#e+H$GEdI+p1s zq_25h;fV)$EPK%Dw-(G=f`yHB-_tttsC!?k7*#!|4a>`Ahj8nm?&n>NRs%jkZW^3-0P_yMP5&*6a26{MRj1&TPF zyE#|c)5uUHzMWx=rMKpuPih*V=S;W3MzIZTw2uTbr}8`p2bm+Z6Sa%vvWAWSf4H)p(+ zSQ8;EvUa#wqWV+9vmIio(%7wukK2SwjUS8Yl%Rq%=~PU)2$Tvm6`1!r3H@U#_|bB0 zmlT1PS3wPB(b&^+@YY7Y$n4l3mV3-X0$>z|gZp6O*Lhzn&?Gad2ZCF;+#95-Y?#y+ z?*l@Yf=a4w{Px=o!N|3~_XKfk&G;fN>Ps&dp2FpA~qD=0~=!NOS@B#XAKKkND>Y{4>rqxrViKD7;?>j8`R` z&G)3FN|dfsxnaI^!d1G%=>AbTTxZWo;n-DLrQ!sj=f~VAOe5zhGS(dgx|!ls62fbX zV@<7Ck^!}R=`Swr?(7w1rY6Nmq~sfXJ?TiKJLn=&SQdEt9$@0 zA+h1Wbwbri0s-stc8yVq;mRa6@kEf8^KXUz&jcic!+avDvvJFa>k0ioWug=T3oPw; zyj4it&0@>_*uI@2=^+T7sL1_!^aJW@Xfo8aC#3^WtQC7fET8b9C} z*u^ue6Ojn z7@(eskJ2+cNnH9~VyfIh<-|7!je~vGy*odz(sk-u$~SrYF3glruZ*W`{sqnS+9=;Z zh{D@MSG91%lr&ua8%$sJF%y1I<|e;EdfJykY8#D$Hc_81n5`$7;1N|b0tvvPLzSg& zn7!5x?T*@rQUKcUhTIjV(rw*5oQYlm5DbEO?60#mohHfbR$3_x#+PZoYi@Vd4`#YgKyTd^!4n{fN~WZDY61sAOm6 zl!d^i*a01QxpWM9Pcl?&{RgO}uq%ErOk5WpECvnfEh!*YP&1Sl)uTN4hg??Vqs~i5 zYsfufz3?{TtwuBN=`0~Qg1PlWH#OGG$ zLLWU17$v``)CE1cds_7kj8mJ{-+l8{DS|zAQ&3|qpOY=!J|kXUhXue9|H>4gqk|n) z-i34GmxLFj8asb3D#D&=ya*a5`C<=o?G;Ev^LV%;l#nH#O=7Nh@z1Do>j6Q;I5S2P zhg|AZbC&|c7}uSJt57s2IK#rSWuararn-02dkptTjo*R{c5o(bWV}_k3BBnKcE|6l zrHl&ezUyw^DmaMdDFVn<8ZY=7_{u{uW&*F<7Al6};lD(u;SB=RpIwI)PTyL=e25h* zGi{lRT}snjbMK~IUx|EGonH+w;iC2Ws)x>=5_{5$m?K z5(*1jMn%u0V1Y%m@`YS3kskt~`1p(rA4uk;Cs!w^KL$w>MH)+cP6|XKr4FfHIATJH z!EGAK4N>1yFR`-zW|w%ByRe#=&kA&#WyUldDGpt!wf-8SFWiSi!5QZL+l7*CE?u!NW1T$<1rdLJ9y3u{_zvHaM?#Rm4 zFk}^1!ffcrB|XK3gsO-s=wr*sUe&^$yN|KxrA)uW00Gu60%pw_+DcUjW`oW<35OC8 zq2{j8SgC}W$?10pvFU83(SL$%C?Kctu3*cs0aa%q!fjn1%xD*Jrm!F3HGR9-C{b?- zHp(cL;ezXMpL@0-1v0DMWddSDNZ5h?q50cOZyVi#bU3&PWE=(hpVn|M4_KYG5h9LffKNRsfhr^=SYiKg?#r&HNMi2@cd4aYL9lw(5_IvQJ zcB*DD()hUSAD^PdA0y|QrVnqwgI@pUXZXjHq3lG2OU&7sPOxxU$Y3&ytj6Qb=2#cC z;{d-{k|xI*bu+Vy&N+}{i(+1me!M;nshY_*&ZQLTGG*xNw#{RpI`3^eGfHck+*38NRgiGahkFethtVY=czJs#)VVc{T65rhU#3Vf?X)8f0)X{w!J3J{z|Sq|%?)nA+zo?$>L9@o`Kc|*7sJo4UjIqu0Ir~S5k^vEH};6K?-dZ0h*m%-1L zf!VC%YbM1~sZOG5zu&Sh>R;(md*_)kGHP)<;OA44W?y53PI%{&@MEN}9TOiqu+1a3AGetBr$c)Ao3OX>iGxmA;^^_alwS818r4Pn&uYe^;z6dh z)68T|AN=hjNdGpF7n>y+RTAZc9&opTXf zqWfK_dUv=mW{p_vN>|(cIkd(+Jy}qnK{IW%X*3!l`^H~FbAHwof+vLZ0C2ZXN1$v7 zgN&R9c8IO`fkR{6U%ERq8FN<1DQYbAN0-pH7EfcA{A&nhT!Be>jj>J!bNRw4NF|}! z1c70_#fkk!VQ!q1h2ff@`yDyrI1`np>*e#D4-Z~*!T^8#o*$V~!8bWQaie?P@KGBb z8rXc!YDL!$3ZgZZ%;-%~0Kn<+d+{xJ$stQbtN8GWV?MCJvzPU|(E(1z;rFw{&6vy) z3*@y%7Tx8rH-p$boS>bLyod?OKRE8v`QSBvGfY6f}_{Zo1q85xoyOF16n~yHx2W ziydUoYLkJmzq|n&2S(O!ZmLdP1(o1Jsq88cX)x3V-BK5eF&0e_0G!5?U7&3KN0`mc zH&Lt)q8!d_VgzxyL^(@xrbp2y)Hmr^V48));RSfE=*Ly0uh9!$3dv-vMZr2URf@l5zdwLjGZB zugY>7_fd_vbV*Qv1?H~>Z%RD%nEeFSI$n$$Lrpc6g>i4+XdBB!%zM$Bhrz5Swzyg? z$~I~n@~-wTBY3-T&pr+|gC+OHDoR?I(eLWa{Z#Rsh>lc~%u0!&R|s0pA*w<7QZ}{i z*AFr~0F3y~f$MGh_HDL7J_1?SxKL}fWIk!$G}`^{)xh*dZ5kK>xGL9>V`WZZg_ z)^Vm)EQK`yfh5KiR(vb&aHvhich z_5o+{d~0+4BEBqYJXyXBIEb1UgVDs;a!N2$9WA>CbfrWryqT25)S4E4)QXBd*3jN} z?phkAt`1rKW?xoLzEm!*IfkH|P>BtECVr0l8-IGk_`UjE#IWkUGqvyS+dMrCnFl<7RCgSMX^qn|Ld_4iYRldO zY&cHhv)GDo8nKvKwAbfyLR%t?9gG?R7~PSD#4D-;?F&!kV59O}neYut5AGbKwy-(U zqyBi=&Mgj|VIo>$u!DHM`R7O?W8-idbePuxiJMH``6c_5L-chKd}=rGC5Gfrc{f!* zWFEBm?l@_b7kzY7%1RQQbG5V<4=ZlkZ%sF74Q|mKOc7Ak7dP2#quiGcZ0_J%7Q?j{ zv9{WFw;n5G-Mn%r#0R;{jLt{yy}9J6rQ(>X9pJ`7Xy?Zv z=lNit#qXaq?CnElK^zF~sG}U5oCpR0T>FH=ZX}Prju$);?;VOhFH8L3I><9P_A|C+ z{;>~dk%9rrq(snjsEm}oUz2FQ21MCG*e?g)?{!&|eg7PX@I+Q0!hL6C7ZVY|g2E>i zr!Ri2@OfEu$)d52+>+cpgh6Z;cLYCZ&EMR0i<^~4&wEu_bdo;y^6}+U2GIQgW$|Od z_jg{O=pU>0-H$P-EOlWyQy#W0r@@_uT}Lg+!d5NxMii7aT1=|qm6BRaWOf{Pws54v zTu=}LR!V(JzI07>QR;;px0+zq=(s+XH-0~rVbmGp8<)7G+Jf)UYs<$Dd>-K+4}CsD zS}KYLmkbRvjwBO3PB%2@j(vOpm)!JABH_E7X^f#V-bzifSaKtE)|QrczC1$sC<<*Y z$hY*3E10fYk`2W09gM_U<2>+r^+ro$Bqh-O7uSa)cfPE_<#^O) zF+5V;-8LaCLKdIh3UB@idQZL`0Vx8`OE#6*1<;8(zi&E7MWB1S%~HAm%axyIHN2vd zA(pJGm_PraB0Aat3~?obWBs?iSc*NhM!{-l_WNCx4@F7I?)5&oI|z{o@JKd1HZ}zf*#}JjK3$ z-;3V*WJZvUcKvSOBH4c7C{fl8oRw8-vfgKQjNiR|KhQ%k6hWNEke(k8w-Ro| z7Y3)FsY-?7%;VT64vRM)l0%&HI~BXkSAOV#F3Bf#|3QLZM%6C{paqLTb3MU-_)`{R zRdfVQ)uX90VCa3ja$8m;cdtxQ*(tNjIfVb%#TCJWeH?o4RY#LWpyZBJHR| z6G-!4W5O^Z8U}e5GfZ!_M{B``ve{r0Z#CXV0x@~X#Pc;}{{ClY_uw^=wWurj0RKnoFzeY` z;gS!PCLCo*c}-hLc?C&wv&>P1hH75=p#;D3{Q8UZ0ctX!b)_@Ur=WCMEuz>pTs$@s z#7bIutL9Pm2FDb~d+H}uBI#pu6R}T{nzpz9U0XLb9lu@=9bTY&PEyFwhHHtXFX~6C zrcg|qqTk(|MIM%KQ<@j=DOjt|V)+8K26wE_CBNnZTg+Z+s}AU|jp6CFoIptG1{J*# z7Ne~l;ba*=bSwAMQ|Vq#fW~+je4PXA91YFzBubNF?ovIOw-$C-8=Ehed{lGD0}(Id zRe4sh8L>&T%{>8o))he}eE;5_ zxoXk3wX?MyNl-xF!q1d$G?=wp^`@09(jU&X zOqZIBI#dN`2PJNdATR3ivtub|nO$dulSaP|e4)WXF1YAGN1pDQIbIjXFG!oC85Mt; zW$eteoL{y^5t4TMRwP$jNPjZFpGsWnGe=jMMqKtcZm9Y9PFZLi*1p@qoKKub^T@2+ zk$@*KYdQ?Z`}<%4ALwk*Yc{(WTf@#u;as(fvE^9{Gk)lWbJP*SjttWofV0s?AB({~l zZI1hZVWFT~W-T?nfMMcnCS4-#6H-MU7H$KxD;yaM46K4Kc@~Q>xzB+QnD_I`b_l3m zo9pRx46b!p?a^&zCDwygqqV3epjs(s0NQI6ARA1n!Yy-qduipxQ& zUAlqRpNjBS+y-ZheD(!R;F}&^V_}b_gqH%tVZ5%%ziO7k^w=es+wZtK^i*vmrWNLMs{oWu_CIov|s1raZiS)>38>pYu;i+-t zI_DiNe6aA4KTZ2P09qPj(0~K4nUq^0+f(2$g`229zkG4jLzRvJUWE0oF1XHL4t3UN zDH466G56sy9hTZoAJB!C3;@F;ONxEk5u6Mv%zdo}Rq`=* zw1n7MOhfNSV48TS989ArIcj`C%Gk8~93~u>)!Yt2b4ZriKj9x2d`H2HQNJ=I>hkDlcZn zqRj>!;oRMTIOu zx|Zfsu~v76T{z7AC(jxj^c@tnJHZtGPsq$DE!8kqvkDx5W?KUJPL+!Ffpwfa+|5z5 zKPCiOPqZZrAG;2%OH0T$W|`C@C*!Z`@Wkop{CTjB&Tk`+{XPnt`ND`Haz;xV`H^RS zyXYtw@WlqTvToi;=mq1<-|IQ(gcOpU%)b#_46|IuWL#4$oYLbqwuk6=Q@xZaJSKVF zZcHs~ZBl;&lF3=+nK; zF`4gSCeZXlwmC_t4I`#PUNQ*)Uv&oGxMALip|sxv^lyVV73tKI7)+QY5=tEMas{vTD-BaTJ^*Y6gq~PU;F5X!sxqiq$iFCo+Uv7m%1w((=e}Vf*=dtds|6 zbX}91!G?C*KG03eHoN}RZS9DJxa&8YwNCT8?JxMXyZqZr13NA|GB{+vG`08C{V(yy zf*Lw$+tYSU_+dI`3n{bMrPdDb`A=Mkg!O=k>1|*3MC8j~- zXL79J4E=U^H=iBLTeHE_OKzE&dws8RNynsSJ!d;`zK?P92U{f)xvD7VQVosrXZrL+ z6lMVdD1YgL;%(1cq{#bS6yXmp|DS@nax#AqqlZhtUQdh<^2vr5`EpAO

LGYq)sa(w9^3-f}NHy=GR4v%t2YZly3m1G@5y`xBh_HGrD%f z>;|Ty?9FiJAc&UVD(StT4I` zfVQwxhE9bXE6r2mKO8Ag7{L^jCyqQb0QqKDPE=RAgqn8q1O^>(z7h5kE(6va%QqRZ zkIOmp(})rLSS(2{=C12e&@!W2=Jel-^_R``0xHO^+t!(oXbcv5yhD4g*$t_F)_5Dl zSVCgesW%;DtYPCFs{G;GX_o?1J3;QQPPv)rWw;>} zJ&KwnUqwNXloNXlK_+pNDfI~hON#SokVJb&ilg8d7^NWo2ZQymCqQMnjfi>ePibjr z-Z@q!?RGN$Mj}Nk){X_vaj6?Mj$>ACR*z|6MsXy3VZ^PFn@yHkPo(>m(iWepn8SC@ z>D2;R4m+gDRZ=SIX!b+CP(qE=JDIUkn=D$aUu+Ihn9-+k1LS3PreQg0N5eWIG@x${nC3v^7caS>1!PKNAY9J z#}E}Q9w#SP>(GY7Hbj&z4$Li6o5taBO|4+F`yS9zq*LJ<38wy4I>HA9(&GYrk4dLajKGww))BWli6Ln1A^Lda@N~p+snkb9C z@OthI+<##vp8!HVQT4Wk(=@zQ{OvZ$EKWS73+JHb)eYLGD-cqi6^|vd$<+IHuc?Nq zW7JertT~3))4?J|28n$I@nAD0c1%9C&IVhEZX~mUsf{efyS(XNG%ch;!N~d7S(Ri7 zb&=BuON95aVA&kLn6&MVU|x}xPMp7xwWxNU1wS+F6#y}1@^wQZB*(&ecT?RnQcI}Y z2*z!^!D?gDUhc@;M^OpLs4mq>C&p{}OWVv<)S9KMars@0JQ{c_ScGsFo3BJ)Irg++ zAWwypJdTO-_{Uh8m(Z!3KL7K{ZZzKHj;{M8I$mV>k znTM?sa0);^=X^cglL`uC+^J)M7nEa$w=VwFULg~%DJllw+7dJAj3{qnP5i3@wr7%y zjXp?Wl2%Th=my&3u?Q$RV6N5tzKMSPTsc#J+-cDDp~qFB6bL2C8AS7Y3PKtVhdhl) zIaLqH5+OnWPWSt(lQCgkN8lczc-V%_iZ{>#1%Z$N*>lu#S;0MZ$T2Y8Kg!U;hAZj> z6S#%$DQ_`Ic%Zr@?}GgjRXg@qTj^17n`65oJ@Wj0u1X8&+UVd|Xs?J+i_^GZ94m6= zUc96~Q`OJvlKB_Lr15*Yw_PUPEr?f?H&00b^-W%26mD)(n(rGGNfK9~2h=C>p-7BZ zFd&*&Msdu{w~(eyFOglwCPH^Rb}O(N7LtS+nnEwDx*pGD?|&9Si~M43a+*L(b0$5A zv`T`(G3xO;I_sx;FwTP21ZlfDpz zOo?}Vlgf~fo{YWm@n_JyD*frOg{XsvBA~|Tn4V6hu>Gd>89-rblfVJUaGvj6X%NZ} z$tFF9sx=4_$*c~G`9iPLGh@=sV+O{D2-t*K@J7H=`V+oVt}8?04WwU3h1BgS!f%1P zFak-T#7`TtLcR=Yz>g0R!ZQrH!YiZOQN=_V-UyncN1Rc18?KY?#O`v#JK+pq0K$~H z3D@v9DZF42R)b9#BBX{^$DOMlJ!g)Gc za{o-1e%F6NvgKq9tC8pV+9S$;9*zNv{J*)n&dmf~anP1)4~N%~h#c(=B#3*KgzhCKhFdgDoWi2IDog{RVyzK|Y`rCUs3T~pJMmdZJy4?b z&s5G=zhf**(t7Y^oC_mcTsE-{^}wiaoUu&?kojLKs>SJPxjcP>{a5CbXCx92AcBE) zHtqP}LjZ{W>PH?Tu(E0X=%{PBMW@F_?#7b&#!^q`<-5$ur+-q6 z{dn=(^UZw6*3-XM_(=@<1_*i&XM4=0t5u!gm6 z{UlmNGPKgO_;e;q9|#esq~Sq`<}%d{+sRmhvsA{5i*91=tub>OZZ%)xUA#4q$dDyy z1`w4%?OPLg3JeZb#cqSMO?*Xn%|-FCcuH2i2fn_{IFusub6;NQdN|7TD1N?%E8*g? z$apAt@cEe!I%jB=*q$p_3=t_5R0ph%{qaq+QDg!c99Y!Xa!&oDZOeis_ot)gNXr{l zdY$|So2Qed2Y7KMNBrS^E169kG%h<+z{Z_p_;shB!uY)>yAVcK=&!bg`lVg)4T1|7 z0}7FpfydVH4F87K@c!nEG+WGKm{Ouo)Slpl;#qcEIQ0zdMfLA#;dBxYw;p;KoVv6| z3_D5&7rJdG12CnDSvZUW?$UC6^UVSW^|vw|o-_4bz)(w5(3AiVhpeT(|=f#x_}E?s#qHZF#xA6AF_ujl$G z-jHD%q(d2}v2PhXx&6YWps~m(^+RXl91Q#xRRJBhjKl$FG4bk);|ag;ieUZ&!Ii3$ z(iGz1+0m7#g5>ASldBbNZL=ZHh=tmmJt$!71; zIML2GhEz1pg@1rQN(M^_691wAGkJ@Pga_05WuQ6! zG5RkGY2^`@(H~pp7&Ga+Pwh3L!Njj!-rc;^bTIfo5hP@H##1X8xUZJckrx>id`bAd3QUx9GuomqBYZ!uN1-&o zvTxC?;p8vL67&fW8fw(YOqt>L@bdLrEF*3OgYe$4n4{ zEB40LiU#6-0@5jdN`0w}N0qi@c0~oT2FP z)LNk&a82my?jv(tQpiMi$TK_L@lub#lsM$R{Dk?Ya@%%%huZkct~tSWM714c!45k}-ZLVA-bVM`>|_ZBbW_m-7| z3U%xrAhi}n?T(2F{_n4EZ10inkIFl#y09?7$uwBoJgqY8vylwev)fDOn;>0R!aEnV zBz%j0Mqpx~EZU3q@%+oV7;}|vt7$~ou@faEIq{p?FY$XXg&6*K)b_LP=}gi9`Bij3 zN`zEo|B6*|-;>S`rNa^BKRDbDAk>X#MsR`EvL>6bqU@SaDDs z8>bu@3YdRaWs*Te@G-UHjU%F~kTHw5(0PVJ+pwh#ha2u;DB+UMo@A5UYIl#5rtBV- zGX_hIpw}3C@H*Us(Cc-d#-gNrG#w$(9+S=GxO>3SR`SE2fHZ2KrDc#_C^$jI>Y}#; zMwY=R6@+dWi~0RXw(c@3GZ&%~9K(q&ee0Zw;pwL`E_tZak-#8^_b)Dpyi73^he?xV zXJ08&wh5-M&}qy4f7!D&=E)puDD(Nmg1d_(j`4LvxM5x_huNg-pGG%9rYqO6mImyJ@}*3Y>^3OvcnTG%EV1) zq_Ap?Z!Iw__7#D=pOWnQN$gB!Mr0!9yx|g<4icJh{cFOu3B8}&RiYm+Mb;VEK``LK zL(NcpcTiGieOIssSjr?ob}^``nNf&UcJhXyncO9m{6gD$kqSD`S69(aF8dkWz5>!9 zBLe4Sib7Hs2x_L2Ls6Ish$MGVKrGt5+_2zCyP1byaCg3upo+-I}R4&$m)8 zQ7|jc1Z^VWggpuQj*cP;>Zo9LS!VSzrqmZczaf;u`d0J(f%Z9r%An@s!e>n9%y=n!IZ_tVGu{Jmsbp}Fk%HJIU?a+-~bjfLTuH|JExA8EROowzr zqW9{YyZhR0a4clRK>1I4Ncx&WER~{iE;F^$T7K%X@3PGOA%6#Z%p3TS^&M;Dnjw@i z^o!$9nhcsmcHcY4?4j9+ofL_CWsZ4Hcch(rjsGfGD(nsH>w}^ERqGnz%iGj0j{g}h z7wMkJ-2Z2~eS>2!i}0~B63i;>SyFJU2+>VCS^AxaDOx%g6-t0eM^P<3+*z`ztvOqrG3)&#$K?& z_Y0wbWID47@cU`E1A6A&!`aZk0ZE@z-h#l1NqX2#`$Uev2gepW`rf8*!=rD5&;Jb{ zl08rU>dPo=K%-1Ao1~G-@4ve~y5#9E8x;TE0k5d^TC(=Zc>mwjW^c=+U-<9}b0ku~}gj z3sbW>R2M6DR!g#NUP;nxo>)@7*=RP{U18SDop6b2&PHce^&h97@xx3t+VK+!keE#} z;(Uf&89as9k8{$nkLbuB!-d7TP`_VJpL^Xs8OKB~ri$YUbW8fch64}7|0EWoT(TRj{ z*GT<7Y<7DsrCi79ZsM)z#c(!nNOGySOCkY1fAuQOq12&iUVC!a`#O;dBLf=d?&4*B zI~LgAO7E0qxK(uRTM;IgJ}+z^gD+bi-6I!3x{r9`l~%8TRP%UE0V8E*Sz>Nl1NVG<<7(wDHZ+HcOkQm$O&k+vyx)y)x{Pz!U8hS$*m zByc0h6BUI*BOpuL==P+H|Hx%`>7!W+1H!l9vi&)`V zyn2o9{z=lc+VX*!Vh~SF=)L}Z40XeG>LF6cP^b+R$NxSeUqbK^Q*UTalKzP8X%{9@RSCXm_NhF>{=S2 zi}ezam_^P`S!!-cyEW9y7DBbK93roz@Raccy*v}?mKXScU9E_4g;hBU7}zSofAFda zKYEe?{{I54 diff --git a/RNGoogleMobileAdsExample/android/settings.gradle b/RNGoogleMobileAdsExample/android/settings.gradle index 172ae4a6..8310bac8 100644 --- a/RNGoogleMobileAdsExample/android/settings.gradle +++ b/RNGoogleMobileAdsExample/android/settings.gradle @@ -4,6 +4,5 @@ extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autoli rootProject.name = 'RNGoogleMobileAdsExample' include ':detox' project(':detox').projectDir = new File(rootProject.projectDir, '../node_modules/detox/android/detox') -apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) include ':app' includeBuild('../node_modules/@react-native/gradle-plugin') diff --git a/RNGoogleMobileAdsExample/ios/Podfile b/RNGoogleMobileAdsExample/ios/Podfile index 1c625114..d16db2f7 100644 --- a/RNGoogleMobileAdsExample/ios/Podfile +++ b/RNGoogleMobileAdsExample/ios/Podfile @@ -29,23 +29,6 @@ target 'RNGoogleMobileAdsExample' do end post_install do |installer| - # https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202 - react_native_post_install( - installer, - config[:reactNativePath], - :mac_catalyst_enabled => false, - # :ccache_enabled => true - ) - - installer.pods_project.targets.each do |target| - target.build_configurations.each do |config| - config.build_settings["CC"] = "clang" - config.build_settings["LD"] = "clang" - config.build_settings["CXX"] = "clang++" - config.build_settings["LDPLUSPLUS"] = "clang++" - end - end - # quiet non-module warnings - only interested in google-mobile-ads warnings installer.pods_project.targets.each do |target| if !target.name.include? "react-native-google-mobile-ads" @@ -54,5 +37,13 @@ target 'RNGoogleMobileAdsExample' do end end end + + # https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202 + react_native_post_install( + installer, + config[:reactNativePath], + :mac_catalyst_enabled => false, + :ccache_enabled => true + ) end end diff --git a/RNGoogleMobileAdsExample/ios/Podfile.lock b/RNGoogleMobileAdsExample/ios/Podfile.lock index 3d488af5..8a4f8ad5 100644 --- a/RNGoogleMobileAdsExample/ios/Podfile.lock +++ b/RNGoogleMobileAdsExample/ios/Podfile.lock @@ -1,15 +1,15 @@ PODS: - boost (1.84.0) - DoubleConversion (1.1.6) - - FBLazyVector (0.76.2) + - FBLazyVector (0.76.5) - fmt (9.1.0) - glog (0.3.5) - - Google-Mobile-Ads-SDK (11.10.0): + - Google-Mobile-Ads-SDK (11.13.0): - GoogleUserMessagingPlatform (>= 1.1) - - GoogleUserMessagingPlatform (2.6.0) - - hermes-engine (0.76.2): - - hermes-engine/Pre-built (= 0.76.2) - - hermes-engine/Pre-built (0.76.2) + - GoogleUserMessagingPlatform (2.7.0) + - hermes-engine (0.76.5): + - hermes-engine/Pre-built (= 0.76.5) + - hermes-engine/Pre-built (0.76.5) - Jet (0.8.0): - React-Core - RCT-Folly (2024.01.01.00): @@ -28,32 +28,32 @@ PODS: - DoubleConversion - fmt (= 9.1.0) - glog - - RCTDeprecation (0.76.2) - - RCTRequired (0.76.2) - - RCTTypeSafety (0.76.2): - - FBLazyVector (= 0.76.2) - - RCTRequired (= 0.76.2) - - React-Core (= 0.76.2) - - React (0.76.2): - - React-Core (= 0.76.2) - - React-Core/DevSupport (= 0.76.2) - - React-Core/RCTWebSocket (= 0.76.2) - - React-RCTActionSheet (= 0.76.2) - - React-RCTAnimation (= 0.76.2) - - React-RCTBlob (= 0.76.2) - - React-RCTImage (= 0.76.2) - - React-RCTLinking (= 0.76.2) - - React-RCTNetwork (= 0.76.2) - - React-RCTSettings (= 0.76.2) - - React-RCTText (= 0.76.2) - - React-RCTVibration (= 0.76.2) - - React-callinvoker (0.76.2) - - React-Core (0.76.2): + - RCTDeprecation (0.76.5) + - RCTRequired (0.76.5) + - RCTTypeSafety (0.76.5): + - FBLazyVector (= 0.76.5) + - RCTRequired (= 0.76.5) + - React-Core (= 0.76.5) + - React (0.76.5): + - React-Core (= 0.76.5) + - React-Core/DevSupport (= 0.76.5) + - React-Core/RCTWebSocket (= 0.76.5) + - React-RCTActionSheet (= 0.76.5) + - React-RCTAnimation (= 0.76.5) + - React-RCTBlob (= 0.76.5) + - React-RCTImage (= 0.76.5) + - React-RCTLinking (= 0.76.5) + - React-RCTNetwork (= 0.76.5) + - React-RCTSettings (= 0.76.5) + - React-RCTText (= 0.76.5) + - React-RCTVibration (= 0.76.5) + - React-callinvoker (0.76.5) + - React-Core (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.76.2) + - React-Core/Default (= 0.76.5) - React-cxxreact - React-featureflags - React-hermes @@ -65,7 +65,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/CoreModulesHeaders (0.76.2): + - React-Core/CoreModulesHeaders (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -82,7 +82,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/Default (0.76.2): + - React-Core/Default (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -98,13 +98,13 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/DevSupport (0.76.2): + - React-Core/DevSupport (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.76.2) - - React-Core/RCTWebSocket (= 0.76.2) + - React-Core/Default (= 0.76.5) + - React-Core/RCTWebSocket (= 0.76.5) - React-cxxreact - React-featureflags - React-hermes @@ -116,7 +116,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTActionSheetHeaders (0.76.2): + - React-Core/RCTActionSheetHeaders (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -133,7 +133,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTAnimationHeaders (0.76.2): + - React-Core/RCTAnimationHeaders (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -150,7 +150,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTBlobHeaders (0.76.2): + - React-Core/RCTBlobHeaders (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -167,7 +167,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTImageHeaders (0.76.2): + - React-Core/RCTImageHeaders (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -184,7 +184,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTLinkingHeaders (0.76.2): + - React-Core/RCTLinkingHeaders (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -201,7 +201,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTNetworkHeaders (0.76.2): + - React-Core/RCTNetworkHeaders (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -218,7 +218,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTSettingsHeaders (0.76.2): + - React-Core/RCTSettingsHeaders (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -235,7 +235,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTTextHeaders (0.76.2): + - React-Core/RCTTextHeaders (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -252,7 +252,7 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTVibrationHeaders (0.76.2): + - React-Core/RCTVibrationHeaders (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -269,12 +269,12 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-Core/RCTWebSocket (0.76.2): + - React-Core/RCTWebSocket (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.76.2) + - React-Core/Default (= 0.76.5) - React-cxxreact - React-featureflags - React-hermes @@ -286,37 +286,37 @@ PODS: - React-utils - SocketRocket (= 0.7.1) - Yoga - - React-CoreModules (0.76.2): + - React-CoreModules (0.76.5): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - - RCTTypeSafety (= 0.76.2) - - React-Core/CoreModulesHeaders (= 0.76.2) - - React-jsi (= 0.76.2) + - RCTTypeSafety (= 0.76.5) + - React-Core/CoreModulesHeaders (= 0.76.5) + - React-jsi (= 0.76.5) - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.76.2) + - React-RCTImage (= 0.76.5) - ReactCodegen - ReactCommon - SocketRocket (= 0.7.1) - - React-cxxreact (0.76.2): + - React-cxxreact (0.76.5): - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.2) - - React-debug (= 0.76.2) - - React-jsi (= 0.76.2) + - React-callinvoker (= 0.76.5) + - React-debug (= 0.76.5) + - React-jsi (= 0.76.5) - React-jsinspector - - React-logger (= 0.76.2) - - React-perflogger (= 0.76.2) - - React-runtimeexecutor (= 0.76.2) - - React-timing (= 0.76.2) - - React-debug (0.76.2) - - React-defaultsnativemodule (0.76.2): + - React-logger (= 0.76.5) + - React-perflogger (= 0.76.5) + - React-runtimeexecutor (= 0.76.5) + - React-timing (= 0.76.5) + - React-debug (0.76.5) + - React-defaultsnativemodule (0.76.5): - DoubleConversion - glog - hermes-engine @@ -341,7 +341,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-domnativemodule (0.76.2): + - React-domnativemodule (0.76.5): - DoubleConversion - glog - hermes-engine @@ -363,7 +363,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-Fabric (0.76.2): + - React-Fabric (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -374,21 +374,21 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.76.2) - - React-Fabric/attributedstring (= 0.76.2) - - React-Fabric/componentregistry (= 0.76.2) - - React-Fabric/componentregistrynative (= 0.76.2) - - React-Fabric/components (= 0.76.2) - - React-Fabric/core (= 0.76.2) - - React-Fabric/dom (= 0.76.2) - - React-Fabric/imagemanager (= 0.76.2) - - React-Fabric/leakchecker (= 0.76.2) - - React-Fabric/mounting (= 0.76.2) - - React-Fabric/observers (= 0.76.2) - - React-Fabric/scheduler (= 0.76.2) - - React-Fabric/telemetry (= 0.76.2) - - React-Fabric/templateprocessor (= 0.76.2) - - React-Fabric/uimanager (= 0.76.2) + - React-Fabric/animations (= 0.76.5) + - React-Fabric/attributedstring (= 0.76.5) + - React-Fabric/componentregistry (= 0.76.5) + - React-Fabric/componentregistrynative (= 0.76.5) + - React-Fabric/components (= 0.76.5) + - React-Fabric/core (= 0.76.5) + - React-Fabric/dom (= 0.76.5) + - React-Fabric/imagemanager (= 0.76.5) + - React-Fabric/leakchecker (= 0.76.5) + - React-Fabric/mounting (= 0.76.5) + - React-Fabric/observers (= 0.76.5) + - React-Fabric/scheduler (= 0.76.5) + - React-Fabric/telemetry (= 0.76.5) + - React-Fabric/templateprocessor (= 0.76.5) + - React-Fabric/uimanager (= 0.76.5) - React-featureflags - React-graphics - React-jsi @@ -398,7 +398,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.76.2): + - React-Fabric/animations (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -418,7 +418,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.76.2): + - React-Fabric/attributedstring (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -438,7 +438,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.76.2): + - React-Fabric/componentregistry (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -458,7 +458,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.76.2): + - React-Fabric/componentregistrynative (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -478,7 +478,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.76.2): + - React-Fabric/components (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -489,9 +489,9 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.76.2) - - React-Fabric/components/root (= 0.76.2) - - React-Fabric/components/view (= 0.76.2) + - React-Fabric/components/legacyviewmanagerinterop (= 0.76.5) + - React-Fabric/components/root (= 0.76.5) + - React-Fabric/components/view (= 0.76.5) - React-featureflags - React-graphics - React-jsi @@ -501,7 +501,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.76.2): + - React-Fabric/components/legacyviewmanagerinterop (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -521,7 +521,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.76.2): + - React-Fabric/components/root (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -541,7 +541,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.76.2): + - React-Fabric/components/view (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -562,7 +562,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.76.2): + - React-Fabric/core (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -582,7 +582,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/dom (0.76.2): + - React-Fabric/dom (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -602,7 +602,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.76.2): + - React-Fabric/imagemanager (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -622,7 +622,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.76.2): + - React-Fabric/leakchecker (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -642,7 +642,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.76.2): + - React-Fabric/mounting (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -662,7 +662,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers (0.76.2): + - React-Fabric/observers (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -673,7 +673,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.76.2) + - React-Fabric/observers/events (= 0.76.5) - React-featureflags - React-graphics - React-jsi @@ -683,7 +683,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers/events (0.76.2): + - React-Fabric/observers/events (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -703,7 +703,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.76.2): + - React-Fabric/scheduler (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -725,7 +725,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.76.2): + - React-Fabric/telemetry (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -745,7 +745,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.76.2): + - React-Fabric/templateprocessor (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -765,7 +765,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.76.2): + - React-Fabric/uimanager (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -776,7 +776,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.76.2) + - React-Fabric/uimanager/consistency (= 0.76.5) - React-featureflags - React-graphics - React-jsi @@ -787,7 +787,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager/consistency (0.76.2): + - React-Fabric/uimanager/consistency (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -808,7 +808,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricComponents (0.76.2): + - React-FabricComponents (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -820,8 +820,8 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.76.2) - - React-FabricComponents/textlayoutmanager (= 0.76.2) + - React-FabricComponents/components (= 0.76.5) + - React-FabricComponents/textlayoutmanager (= 0.76.5) - React-featureflags - React-graphics - React-jsi @@ -833,7 +833,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components (0.76.2): + - React-FabricComponents/components (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -845,15 +845,15 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.76.2) - - React-FabricComponents/components/iostextinput (= 0.76.2) - - React-FabricComponents/components/modal (= 0.76.2) - - React-FabricComponents/components/rncore (= 0.76.2) - - React-FabricComponents/components/safeareaview (= 0.76.2) - - React-FabricComponents/components/scrollview (= 0.76.2) - - React-FabricComponents/components/text (= 0.76.2) - - React-FabricComponents/components/textinput (= 0.76.2) - - React-FabricComponents/components/unimplementedview (= 0.76.2) + - React-FabricComponents/components/inputaccessory (= 0.76.5) + - React-FabricComponents/components/iostextinput (= 0.76.5) + - React-FabricComponents/components/modal (= 0.76.5) + - React-FabricComponents/components/rncore (= 0.76.5) + - React-FabricComponents/components/safeareaview (= 0.76.5) + - React-FabricComponents/components/scrollview (= 0.76.5) + - React-FabricComponents/components/text (= 0.76.5) + - React-FabricComponents/components/textinput (= 0.76.5) + - React-FabricComponents/components/unimplementedview (= 0.76.5) - React-featureflags - React-graphics - React-jsi @@ -865,7 +865,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/inputaccessory (0.76.2): + - React-FabricComponents/components/inputaccessory (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -888,7 +888,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/iostextinput (0.76.2): + - React-FabricComponents/components/iostextinput (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -911,7 +911,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/modal (0.76.2): + - React-FabricComponents/components/modal (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -934,7 +934,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/rncore (0.76.2): + - React-FabricComponents/components/rncore (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -957,7 +957,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/safeareaview (0.76.2): + - React-FabricComponents/components/safeareaview (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -980,7 +980,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/scrollview (0.76.2): + - React-FabricComponents/components/scrollview (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1003,7 +1003,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/text (0.76.2): + - React-FabricComponents/components/text (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1026,7 +1026,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/textinput (0.76.2): + - React-FabricComponents/components/textinput (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1049,7 +1049,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/components/unimplementedview (0.76.2): + - React-FabricComponents/components/unimplementedview (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1072,7 +1072,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricComponents/textlayoutmanager (0.76.2): + - React-FabricComponents/textlayoutmanager (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1095,26 +1095,26 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-FabricImage (0.76.2): + - React-FabricImage (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - - RCTRequired (= 0.76.2) - - RCTTypeSafety (= 0.76.2) + - RCTRequired (= 0.76.5) + - RCTTypeSafety (= 0.76.5) - React-Fabric - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.76.2) + - React-jsiexecutor (= 0.76.5) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-featureflags (0.76.2) - - React-featureflagsnativemodule (0.76.2): + - React-featureflags (0.76.5) + - React-featureflagsnativemodule (0.76.5): - DoubleConversion - glog - hermes-engine @@ -1135,7 +1135,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-graphics (0.76.2): + - React-graphics (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1143,19 +1143,19 @@ PODS: - React-jsi - React-jsiexecutor - React-utils - - React-hermes (0.76.2): + - React-hermes (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.76.2) + - React-cxxreact (= 0.76.5) - React-jsi - - React-jsiexecutor (= 0.76.2) + - React-jsiexecutor (= 0.76.5) - React-jsinspector - - React-perflogger (= 0.76.2) + - React-perflogger (= 0.76.5) - React-runtimeexecutor - - React-idlecallbacksnativemodule (0.76.2): + - React-idlecallbacksnativemodule (0.76.5): - DoubleConversion - glog - hermes-engine @@ -1177,7 +1177,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-ImageManager (0.76.2): + - React-ImageManager (0.76.5): - glog - RCT-Folly/Fabric - React-Core/Default @@ -1186,47 +1186,47 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.76.2): + - React-jserrorhandler (0.76.5): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-cxxreact - React-debug - React-jsi - - React-jsi (0.76.2): + - React-jsi (0.76.5): - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-jsiexecutor (0.76.2): + - React-jsiexecutor (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.76.2) - - React-jsi (= 0.76.2) + - React-cxxreact (= 0.76.5) + - React-jsi (= 0.76.5) - React-jsinspector - - React-perflogger (= 0.76.2) - - React-jsinspector (0.76.2): + - React-perflogger (= 0.76.5) + - React-jsinspector (0.76.5): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-featureflags - React-jsi - - React-perflogger (= 0.76.2) - - React-runtimeexecutor (= 0.76.2) - - React-jsitracing (0.76.2): + - React-perflogger (= 0.76.5) + - React-runtimeexecutor (= 0.76.5) + - React-jsitracing (0.76.5): - React-jsi - - React-logger (0.76.2): + - React-logger (0.76.5): - glog - - React-Mapbuffer (0.76.2): + - React-Mapbuffer (0.76.5): - glog - React-debug - - React-microtasksnativemodule (0.76.2): + - React-microtasksnativemodule (0.76.5): - DoubleConversion - glog - hermes-engine @@ -1247,8 +1247,8 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-nativeconfig (0.76.2) - - React-NativeModulesApple (0.76.2): + - React-nativeconfig (0.76.5) + - React-NativeModulesApple (0.76.5): - glog - hermes-engine - React-callinvoker @@ -1259,16 +1259,16 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.76.2): + - React-perflogger (0.76.5): - DoubleConversion - RCT-Folly (= 2024.01.01.00) - - React-performancetimeline (0.76.2): + - React-performancetimeline (0.76.5): - RCT-Folly (= 2024.01.01.00) - React-cxxreact - React-timing - - React-RCTActionSheet (0.76.2): - - React-Core/RCTActionSheetHeaders (= 0.76.2) - - React-RCTAnimation (0.76.2): + - React-RCTActionSheet (0.76.5): + - React-Core/RCTActionSheetHeaders (= 0.76.5) + - React-RCTAnimation (0.76.5): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTAnimationHeaders @@ -1276,7 +1276,7 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTAppDelegate (0.76.2): + - React-RCTAppDelegate (0.76.5): - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety @@ -1301,7 +1301,7 @@ PODS: - React-utils - ReactCodegen - ReactCommon - - React-RCTBlob (0.76.2): + - React-RCTBlob (0.76.5): - DoubleConversion - fmt (= 9.1.0) - hermes-engine @@ -1314,7 +1314,7 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTFabric (0.76.2): + - React-RCTFabric (0.76.5): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) @@ -1337,7 +1337,7 @@ PODS: - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.76.2): + - React-RCTImage (0.76.5): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTImageHeaders @@ -1346,14 +1346,14 @@ PODS: - React-RCTNetwork - ReactCodegen - ReactCommon - - React-RCTLinking (0.76.2): - - React-Core/RCTLinkingHeaders (= 0.76.2) - - React-jsi (= 0.76.2) + - React-RCTLinking (0.76.5): + - React-Core/RCTLinkingHeaders (= 0.76.5) + - React-jsi (= 0.76.5) - React-NativeModulesApple - ReactCodegen - ReactCommon - - ReactCommon/turbomodule/core (= 0.76.2) - - React-RCTNetwork (0.76.2): + - ReactCommon/turbomodule/core (= 0.76.5) + - React-RCTNetwork (0.76.5): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTNetworkHeaders @@ -1361,7 +1361,7 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTSettings (0.76.2): + - React-RCTSettings (0.76.5): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Core/RCTSettingsHeaders @@ -1369,24 +1369,24 @@ PODS: - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-RCTText (0.76.2): - - React-Core/RCTTextHeaders (= 0.76.2) + - React-RCTText (0.76.5): + - React-Core/RCTTextHeaders (= 0.76.5) - Yoga - - React-RCTVibration (0.76.2): + - React-RCTVibration (0.76.5): - RCT-Folly (= 2024.01.01.00) - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - ReactCodegen - ReactCommon - - React-rendererconsistency (0.76.2) - - React-rendererdebug (0.76.2): + - React-rendererconsistency (0.76.5) + - React-rendererdebug (0.76.5): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - React-debug - - React-rncore (0.76.2) - - React-RuntimeApple (0.76.2): + - React-rncore (0.76.5) + - React-RuntimeApple (0.76.5): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-callinvoker @@ -1405,7 +1405,7 @@ PODS: - React-RuntimeHermes - React-runtimescheduler - React-utils - - React-RuntimeCore (0.76.2): + - React-RuntimeCore (0.76.5): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) @@ -1419,9 +1419,9 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (0.76.2): - - React-jsi (= 0.76.2) - - React-RuntimeHermes (0.76.2): + - React-runtimeexecutor (0.76.5): + - React-jsi (= 0.76.5) + - React-RuntimeHermes (0.76.5): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-featureflags @@ -1432,7 +1432,7 @@ PODS: - React-nativeconfig - React-RuntimeCore - React-utils - - React-runtimescheduler (0.76.2): + - React-runtimescheduler (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -1447,14 +1447,14 @@ PODS: - React-runtimeexecutor - React-timing - React-utils - - React-timing (0.76.2) - - React-utils (0.76.2): + - React-timing (0.76.5) + - React-utils (0.76.5): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-debug - - React-jsi (= 0.76.2) - - ReactCodegen (0.76.2): + - React-jsi (= 0.76.5) + - ReactCodegen (0.76.5): - DoubleConversion - glog - hermes-engine @@ -1474,51 +1474,51 @@ PODS: - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - ReactCommon (0.76.2): - - ReactCommon/turbomodule (= 0.76.2) - - ReactCommon/turbomodule (0.76.2): + - ReactCommon (0.76.5): + - ReactCommon/turbomodule (= 0.76.5) + - ReactCommon/turbomodule (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.2) - - React-cxxreact (= 0.76.2) - - React-jsi (= 0.76.2) - - React-logger (= 0.76.2) - - React-perflogger (= 0.76.2) - - ReactCommon/turbomodule/bridging (= 0.76.2) - - ReactCommon/turbomodule/core (= 0.76.2) - - ReactCommon/turbomodule/bridging (0.76.2): + - React-callinvoker (= 0.76.5) + - React-cxxreact (= 0.76.5) + - React-jsi (= 0.76.5) + - React-logger (= 0.76.5) + - React-perflogger (= 0.76.5) + - ReactCommon/turbomodule/bridging (= 0.76.5) + - ReactCommon/turbomodule/core (= 0.76.5) + - ReactCommon/turbomodule/bridging (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.2) - - React-cxxreact (= 0.76.2) - - React-jsi (= 0.76.2) - - React-logger (= 0.76.2) - - React-perflogger (= 0.76.2) - - ReactCommon/turbomodule/core (0.76.2): + - React-callinvoker (= 0.76.5) + - React-cxxreact (= 0.76.5) + - React-jsi (= 0.76.5) + - React-logger (= 0.76.5) + - React-perflogger (= 0.76.5) + - ReactCommon/turbomodule/core (0.76.5): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.76.2) - - React-cxxreact (= 0.76.2) - - React-debug (= 0.76.2) - - React-featureflags (= 0.76.2) - - React-jsi (= 0.76.2) - - React-logger (= 0.76.2) - - React-perflogger (= 0.76.2) - - React-utils (= 0.76.2) - - RNGoogleMobileAds (14.4.0): + - React-callinvoker (= 0.76.5) + - React-cxxreact (= 0.76.5) + - React-debug (= 0.76.5) + - React-featureflags (= 0.76.5) + - React-jsi (= 0.76.5) + - React-logger (= 0.76.5) + - React-perflogger (= 0.76.5) + - React-utils (= 0.76.5) + - RNGoogleMobileAds (14.7.2): - DoubleConversion - glog - - Google-Mobile-Ads-SDK (= 11.10.0) - - GoogleUserMessagingPlatform (= 2.6.0) + - Google-Mobile-Ads-SDK (= 11.13.0) + - GoogleUserMessagingPlatform (= 2.7.0) - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired @@ -1751,73 +1751,73 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost: 1dca942403ed9342f98334bf4c3621f011aa7946 DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385 - FBLazyVector: bc70dcb22ad30ce734a7cce7210791dc737e230f + FBLazyVector: 1bf99bb46c6af9a2712592e707347315f23947aa fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a - Google-Mobile-Ads-SDK: 13e6e98edfd78ad8d8a791edb927658cc260a56f - GoogleUserMessagingPlatform: 0c3a08353e53ce8c2feab7addd0b652cde522450 - hermes-engine: 3852e37f6158a2fcfad23e31215ed495da3a6a40 - Jet: c17c29bfbbaff56f08a17678211f36b859173e99 - RCT-Folly: bf5c0376ffe4dd2cf438dcf86db385df9fdce648 - RCTDeprecation: d575d28132f93e5deef4849d5afffb4ac4e63226 - RCTRequired: e2e5df1df76aac8685aabfebca389e6bec64792b - RCTTypeSafety: 30e36ceafa26979860e13fb3f234fb61692924c2 - React: 10ad41b51f981992714011b6a4e081234c28dc2e - React-callinvoker: 58b51494f8b2cca07a27fc6f69273239c30a1e70 - React-Core: 54860c16fb5873a6f00dd44d8979bbb648b34c7c - React-CoreModules: 443101f113a7b5d51b93e061574dcadf7850f8cc - React-cxxreact: 5407ecb854a755de34c0e6b03965d3a51c28c933 - React-debug: 252c723eb205cc508aa9690a16dff46293c30ed8 - React-defaultsnativemodule: 1fb982daba4ac5bb3052ae262a919a0d117f3b1b - React-domnativemodule: 914401fb13804b7828020d7b3a89afa72ff22564 - React-Fabric: 58696d9eaee305bb5a5af26071966dcfb941f9eb - React-FabricComponents: a037b977430eceae4bac539934497bacc8de3971 - React-FabricImage: 2658c3e383195f69e7c83e4f75519bee17c3169a - React-featureflags: 7dc483869b3a940dcd92c7942c5e3492ad6afe68 - React-featureflagsnativemodule: 7a50dda8a6d3883139c47b4bda797156737240db - React-graphics: 066863eb87b142f0603fed08c71bac452238ac3e - React-hermes: 8f31f252aff98a4cb711ccf6644cccfe35d8edd1 - React-idlecallbacksnativemodule: c3f68fe97e379c4c1b6c4ba25e5d450cbe931e25 - React-ImageManager: 36240f8ab7181551574ca443da507272dbbf7014 - React-jserrorhandler: 1aa045c492222751dc476bcb973f787e82f952b9 - React-jsi: b96853ac12c1dab5fe3ea131f959fda0bbaf1151 - React-jsiexecutor: e38748a0e9d899f63dec562f93ac06c7acbc813d - React-jsinspector: 91b3c73d2afb7627af7872cedb0b74a0f00f57d1 - React-jsitracing: a340047c9fd31a36b222569c402e472e20557805 - React-logger: 81d58ca6f1d93fca9a770bda6cc1c4fbfcc99c9c - React-Mapbuffer: 726951e68f4bb1c2513d322f2548798b2a3d628d - React-microtasksnativemodule: 7a69a9b8fded72ea3cf81923ecf75cad5558ed26 - React-nativeconfig: 470fce6d871c02dc5eff250a362d56391b7f52d6 - React-NativeModulesApple: 6297fc3136c1fd42884795c51d7207de6312b606 - React-perflogger: f2c94413cfad44817c96cab33753831e73f0d0dd - React-performancetimeline: d6e493713e6aab3cc8b7c1c07e97160e22dd79cc - React-RCTActionSheet: 2eb26cbf384f3d3b2cb2e23be850a956d83f77ab - React-RCTAnimation: 59463699a92edc6705ce5306bb789d6a0ca4df0b - React-RCTAppDelegate: 4d9efca7caa477b106e3d55af339d0e071441536 - React-RCTBlob: 0883f5363069ad30f628c970fcb413a619e42804 - React-RCTFabric: 4c761af601a1fe0061b15df97af9fb77403362a2 - React-RCTImage: 78884b7ea6ef4f7bb9655614bf09a40054f282ce - React-RCTLinking: b9beba7465fd9a1ed7a88a4e7fc403d26e17ab95 - React-RCTNetwork: 701d9c050077596b15a11b6b573ed95c309d2315 - React-RCTSettings: e700a82e3e923c10060b8f65297f9d321b93d8eb - React-RCTText: e782ce1c3f9d915daf50d97157f8c226e8f3d206 - React-RCTVibration: 2a19c56be78cb7afce9f4f3471aacfb063f32a00 - React-rendererconsistency: b389e324712bf0869529823216e922836ed9b737 - React-rendererdebug: 9f5629032c0937c62b21dcaf96b374a149bf8a44 - React-rncore: 2cf6b2348ee5d5431c4735180364b207ecf47123 - React-RuntimeApple: 84d648b9a87c34041d6628dde50d1acf54e5bf89 - React-RuntimeCore: 79290b2eb17a25c1b23c4d5dde13d43c20467eef - React-runtimeexecutor: 69e27948ee2127400297c7de50b809a7cd127a15 - React-RuntimeHermes: 5fe2082f98187410c1815c532f72348fbe1d0517 - React-runtimescheduler: 95b7087f459699756c1b7feb3f4637066c337b62 - React-timing: 97673939f96f79031d2a5a0a92285618475149ec - React-utils: ed6cb7ba089ac0856aa104df12691e99abbf14e1 - ReactCodegen: 93b271af49774429f34d7fd561197020d86436e2 - ReactCommon: 208cb02e3c0bb8a727b3e1a1782202bcfa5d9631 - RNGoogleMobileAds: e9c8c98e7748e612c4669951336785d2f5ae1937 + Google-Mobile-Ads-SDK: 14f57f2dc33532a24db288897e26494640810407 + GoogleUserMessagingPlatform: a8b56893477f67212fbc8411c139e61d463349f5 + hermes-engine: 06a9c6900587420b90accc394199527c64259db4 + Jet: 423274a1def279114bb142cb18e7ebd11977bc89 + RCT-Folly: 84578c8756030547307e4572ab1947de1685c599 + RCTDeprecation: fb7d408617e25d7f537940000d766d60149c5fea + RCTRequired: 9aaf0ffcc1f41f0c671af863970ef25c422a9920 + RCTTypeSafety: e9a6e7d48184646eb0610295b74c0dd02768cbb2 + React: fffb3cf1b0d7aee03c4eb4952b2d58783615e9fa + React-callinvoker: 3c6ecc0315d42924e01b3ddc25cf2e49d33da169 + React-Core: 1a5ddefb00dd72644171dd39bb4bbcd7849c70f0 + React-CoreModules: 8de64f712fe272ed08f37aaf64633ddf793e70d3 + React-cxxreact: e204185e1da1c843fec2bbb10bcc5b5800355dfa + React-debug: 297ed67868a76e8384669ea9b5c65c5d9d9d15d9 + React-defaultsnativemodule: e698063aa99c75546abc7f1c18072b4d753831d8 + React-domnativemodule: bd989e5b531401d419fc598e9cc09ee843d8c2bf + React-Fabric: 925fbb4d56a3c3ef9c12366f43357a913291fdc7 + React-FabricComponents: e598e6f635699237db45e017cbe230d9094915fa + React-FabricImage: ace285e38358f01aa89a5974f5f803db72a2bb9d + React-featureflags: cb3dca1c74ba813f2e578c8c635989d01d14739f + React-featureflagsnativemodule: 8fe6e6279a0ead0735749724e6ecd8e03f3893ca + React-graphics: f7d97c8bcc5f1568fb840b6d8940af0ae89b387c + React-hermes: a12bf33d9915dbe2dcde5b6b781faab6684883fb + React-idlecallbacksnativemodule: 4dfe6da504ae4f7792132ba164c00ae192aa4a57 + React-ImageManager: 28861af68262a45e585eca5491d05cd963ab0071 + React-jserrorhandler: 15bea720b272a2e78b7731df122dbfa6e27b65aa + React-jsi: 217274301608d7fa529bd275c73020b55cf39361 + React-jsiexecutor: 1bcbc63a8c1d698b35c9fb521ee87aa48a3702d2 + React-jsinspector: 1a3345f90762b3ba2d0ab3ff5f91022487b2ed38 + React-jsitracing: 46adf5fbb769aa673145b5c57ed7cd4b7cd08e1c + React-logger: ae95f0effa7e1791bd6f7283caddca323d4fbc1e + React-Mapbuffer: 7eb5d69e1154e7743487ef0c8d7261e5b59afb32 + React-microtasksnativemodule: 01dd998649ff5f8814846b7eee84c4d57f5d3671 + React-nativeconfig: f7ab6c152e780b99a8c17448f2d99cf5f69a2311 + React-NativeModulesApple: 9aeb901b9bfcc9235e912445fb3cf4780a99baf4 + React-perflogger: 16e049953d21b37e9871ddf0b02f414e12ff14ba + React-performancetimeline: 00d156ec43d1110a2e7dacb168a7ac95a81eccc7 + React-RCTActionSheet: a4388035260b01ac38d3647da0433b0455da9bae + React-RCTAnimation: 9cc9e88ec5f94d573d3b5d5d9702f47774d8603c + React-RCTAppDelegate: b8ca6a50167b71d67c477985597429485f39f964 + React-RCTBlob: f879b05cf702dd4099054c3c3bf05bd4757de701 + React-RCTFabric: 69ac989ccf18904cd6ad79d364cbd50343f125f3 + React-RCTImage: 8fc2b137d17fb8756cdba38d74f4d40fb9499dee + React-RCTLinking: e691e89d8658aaa772c59084a45a96e8c9ef8df1 + React-RCTNetwork: 749cb659702c3faf3efecfcb982150be0f2c834a + React-RCTSettings: 60c431627d37e6d996e0f61a9e84df8e41d898cb + React-RCTText: 74cc248bf8d2f6d07beb6196aa4c7055b3eb1a51 + React-RCTVibration: 81ff3704c7ed66a99e2670167252fd0e9a10980b + React-rendererconsistency: 42f182fe910ad6c9b449cc62adae8d0eaba76f0a + React-rendererdebug: b11083c452ed6f2a03029a9105d0d9ab7d9af1c8 + React-rncore: 85ed76036ff56e2e9c369155027cbbd84db86006 + React-RuntimeApple: 3154e09ccb48d81dcbb13f986a5313686c1d6983 + React-RuntimeCore: 985985d121db1fde5387d4dfedae78e13a5e317d + React-runtimeexecutor: 10fae9492194097c99f6e34cedbb42a308922d32 + React-RuntimeHermes: 3984572bc295675360849b07ab2608bfbd8db35d + React-runtimescheduler: 215d21fbcb922aa469c6adcf5a729e2769d210e4 + React-timing: 1050c6fa44c327f2d7538e10c548fdf521fabdb8 + React-utils: f584a494ac233c7857bab176416b0c49cb4037ba + ReactCodegen: 3a68408bf68d0957abcd13d610f76420005c1d91 + ReactCommon: 5809a8ee421b7219221a475b78180f8f34b5c5ec + RNGoogleMobileAds: 84807fb00efbc3325a1ae6372586b6a49470a4b6 SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 - Yoga: 96872ee462cfc43866ad013c8160d4ff6b85709b + Yoga: fcc198acd4a55599b3468cfb6ebc526baff5f06e -PODFILE CHECKSUM: f699c82614f0340e3985855a1efdaa77a260037e +PODFILE CHECKSUM: 890d40ab6733a6a82e2de81f26d713ead762d00b -COCOAPODS: 1.16.1 +COCOAPODS: 1.16.2 diff --git a/RNGoogleMobileAdsExample/ios/RNGoogleMobileAdsExample.xcodeproj/project.pbxproj b/RNGoogleMobileAdsExample/ios/RNGoogleMobileAdsExample.xcodeproj/project.pbxproj index 3795799c..1d20cf86 100644 --- a/RNGoogleMobileAdsExample/ios/RNGoogleMobileAdsExample.xcodeproj/project.pbxproj +++ b/RNGoogleMobileAdsExample/ios/RNGoogleMobileAdsExample.xcodeproj/project.pbxproj @@ -12,9 +12,9 @@ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; + 177C68E9E036E832E216AC20 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; }; 7699B88040F8A987B510C191 /* libPods-RNGoogleMobileAdsExample-RNGoogleMobileAdsExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-RNGoogleMobileAdsExample-RNGoogleMobileAdsExampleTests.a */; }; 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; - F4820E8086B44AAB635257AE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 05FA48BDD75B92296E2E654A /* PrivacyInfo.xcprivacy */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -31,7 +31,6 @@ 00E356EE1AD99517003FC87E /* RNGoogleMobileAdsExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RNGoogleMobileAdsExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 00E356F21AD99517003FC87E /* RNGoogleMobileAdsExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RNGoogleMobileAdsExampleTests.m; sourceTree = ""; }; - 05FA48BDD75B92296E2E654A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = RNGoogleMobileAdsExample/PrivacyInfo.xcprivacy; sourceTree = ""; }; 13B07F961A680F5B00A75B9A /* RNGoogleMobileAdsExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RNGoogleMobileAdsExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = RNGoogleMobileAdsExample/AppDelegate.h; sourceTree = ""; }; 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = RNGoogleMobileAdsExample/AppDelegate.mm; sourceTree = ""; }; @@ -96,7 +95,6 @@ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */, 13B07FB71A68108700A75B9A /* main.m */, 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */, - 05FA48BDD75B92296E2E654A /* PrivacyInfo.xcprivacy */, ); name = RNGoogleMobileAdsExample; sourceTree = ""; @@ -188,7 +186,7 @@ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */, E235C05ADACE081382539298 /* [CP] Copy Pods Resources */, - ECEDDADAE70FF75A7EAF7AED /* [CP-User] [RNGoogleMobileAds] Configuration */, + 88EDB101B253D0BE475428B4 /* [CP-User] [RNGoogleMobileAds] Configuration */, ); buildRules = ( ); @@ -249,7 +247,7 @@ files = ( 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */, 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, - F4820E8086B44AAB635257AE /* PrivacyInfo.xcprivacy in Resources */, + 177C68E9E036E832E216AC20 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -289,6 +287,19 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNGoogleMobileAdsExample/Pods-RNGoogleMobileAdsExample-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; + 88EDB101B253D0BE475428B4 /* [CP-User] [RNGoogleMobileAds] Configuration */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)", + ); + name = "[CP-User] [RNGoogleMobileAds] Configuration"; + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "#!/usr/bin/env bash\n#\n# Copyright (c) 2016-present Invertase Limited & Contributors\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this library except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\n##########################################################################\n##########################################################################\n#\n# NOTE THAT IF YOU CHANGE THIS FILE YOU MUST RUN pod install AFTERWARDS\n#\n# This file is installed as an Xcode build script in the project file\n# by cocoapods, and you will not see your changes until you pod install\n#\n##########################################################################\n##########################################################################\n\nset -e\n\n_MAX_LOOKUPS=2;\n_SEARCH_RESULT=''\n_RN_ROOT_EXISTS=''\n_CURRENT_LOOKUPS=1\n_PROJECT_ABBREVIATION=\"RNGoogleMobileAds\"\n_JSON_ROOT=\"'react-native-google-mobile-ads'\"\n_JSON_FILE_NAME='app.json'\n_JSON_OUTPUT_BASE64='e30=' # { }\n_CURRENT_SEARCH_DIR=${PROJECT_DIR}\n_PLIST_BUDDY=/usr/libexec/PlistBuddy\n_TARGET_PLIST=\"${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}\"\n_DSYM_PLIST=\"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Info.plist\"\n_PACKAGE_JSON_NAME='package.json'\n\n# plist arrays\n_PLIST_ENTRY_KEYS=()\n_PLIST_ENTRY_TYPES=()\n_PLIST_ENTRY_VALUES=()\n\nfunction setPlistValue {\n echo \"info: setting plist entry '$1' of type '$2' in file '$4'\"\n ${_PLIST_BUDDY} -c \"Add :$1 $2 '$3'\" $4 || echo \"info: '$1' already exists\"\n}\n\nfunction getJsonKeyValue () {\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n ruby -KU -e \"require 'rubygems';require 'json'; output=JSON.parse('$1'); puts output[$_JSON_ROOT]['$2']\"\n else\n echo \"\"\n fi;\n}\n\nfunction jsonBoolToYesNo () {\n if [[ $1 == \"false\" ]]; then\n echo \"NO\"\n elif [[ $1 == \"true\" ]]; then\n echo \"YES\"\n else echo \"NO\"\n fi\n}\n\necho \"info: -> ${_PROJECT_ABBREVIATION} build script started\"\necho \"info: 1) Locating ${_JSON_FILE_NAME} file:\"\n\nif [[ -z ${_CURRENT_SEARCH_DIR} ]]; then\n _CURRENT_SEARCH_DIR=$(pwd)\nfi;\n\nwhile true; do\n _CURRENT_SEARCH_DIR=$(dirname \"$_CURRENT_SEARCH_DIR\")\n if [[ \"$_CURRENT_SEARCH_DIR\" == \"/\" ]] || [[ ${_CURRENT_LOOKUPS} -gt ${_MAX_LOOKUPS} ]]; then break; fi;\n echo \"info: ($_CURRENT_LOOKUPS of $_MAX_LOOKUPS) Searching in '$_CURRENT_SEARCH_DIR' for a ${_JSON_FILE_NAME} file.\"\n _SEARCH_RESULT=$(find \"$_CURRENT_SEARCH_DIR\" -maxdepth 2 -name ${_JSON_FILE_NAME} -print | /usr/bin/head -n 1)\n if [[ ${_SEARCH_RESULT} ]]; then\n echo \"info: ${_JSON_FILE_NAME} found at $_SEARCH_RESULT\"\n break;\n fi;\n _CURRENT_LOOKUPS=$((_CURRENT_LOOKUPS+1))\ndone\n\nif [[ ${_SEARCH_RESULT} ]]; then\n _JSON_OUTPUT_RAW=$(cat \"${_SEARCH_RESULT}\")\n _RN_ROOT_EXISTS=$(ruby -KU -e \"require 'rubygems';require 'json'; output=JSON.parse('$_JSON_OUTPUT_RAW'); puts output[$_JSON_ROOT]\" || echo '')\n\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n if ! python3 --version >/dev/null 2>&1; then echo \"python3 not found, app.json file processing error.\" && exit 1; fi\n _JSON_OUTPUT_BASE64=$(python3 -c 'import json,sys,base64;print(base64.b64encode(bytes(json.dumps(json.loads(open('\"'${_SEARCH_RESULT}'\"', '\"'rb'\"').read())['${_JSON_ROOT}']), '\"'utf-8'\"')).decode())' || echo \"e30=\")\n fi\n\n _PLIST_ENTRY_KEYS+=(\"google_mobile_ads_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n\n # config.delay_app_measurement_init\n _DELAY_APP_MEASUREMENT=$(getJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"delay_app_measurement_init\")\n if [[ $_DELAY_APP_MEASUREMENT == \"true\" ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADDelayAppMeasurementInit\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"YES\")\n fi\n\n # config.ios_app_id\n _IOS_APP_ID=$(getJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"ios_app_id\")\n if [[ $_IOS_APP_ID ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADApplicationIdentifier\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_IOS_APP_ID\")\n fi\n\n # config.sk_ad_network_items\n _SK_AD_NETWORK_ITEMS=$(getJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"sk_ad_network_items\")\n if [[ $_SK_AD_NETWORK_ITEMS ]]; then\n _PLIST_ENTRY_KEYS+=(\"SKAdNetworkItems\")\n _PLIST_ENTRY_TYPES+=(\"array\")\n _PLIST_ENTRY_VALUES+=(\"\")\n\n oldifs=$IFS\n IFS=\"\n\"\n array=($(echo \"$_SK_AD_NETWORK_ITEMS\"))\n IFS=$oldifs\n for i in \"${!array[@]}\"; do\n _PLIST_ENTRY_KEYS+=(\"SKAdNetworkItems:$i:SKAdNetworkIdentifier\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"${array[i]}\") \n done\n fi\n\n # config.user_tracking_usage_description\n _USER_TRACKING_USAGE_DESCRIPTION=$(getJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"user_tracking_usage_description\")\n if [[ $_USER_TRACKING_USAGE_DESCRIPTION ]]; then\n _PLIST_ENTRY_KEYS+=(\"NSUserTrackingUsageDescription\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_USER_TRACKING_USAGE_DESCRIPTION\")\n fi\nelse\n _PLIST_ENTRY_KEYS+=(\"google_mobile_ads_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n echo \"warning: A ${_JSON_FILE_NAME} file was not found, whilst this file is optional it is recommended to include it to auto-configure services.\"\nfi;\n\necho \"info: 2) Injecting Info.plist entries: \"\n\n# Log out the keys we're adding\nfor i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n echo \" -> $i) ${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\"\ndone\n\nif ! [[ -f \"${_TARGET_PLIST}\" ]]; then\n echo \"error: unable to locate Info.plist to set properties. App will crash without GADApplicationIdentifier set.\"\n exit 1\nfi\n\nif ! [[ $_IOS_APP_ID ]]; then\n echo \"warning: ios_app_id key not found in react-native-google-mobile-ads key in app.json. App will crash without it.\"\n echo \" You can safely ignore this warning if you are using our Expo config plugin.\"\n exit 0\nfi\n\nfor plist in \"${_TARGET_PLIST}\" \"${_DSYM_PLIST}\" ; do\n if [[ -f \"${plist}\" ]]; then\n\n # paths with spaces break the call to setPlistValue. temporarily modify\n # the shell internal field separator variable (IFS), which normally\n # includes spaces, to consist only of line breaks\n oldifs=$IFS\n IFS=\"\n\"\n\n for i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n setPlistValue \"${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\" \"${plist}\"\n done\n\n # restore the original internal field separator value\n IFS=$oldifs\n else\n echo \"warning: A Info.plist build output file was not found (${plist})\"\n fi\ndone\n\necho \"info: <- ${_PROJECT_ABBREVIATION} build script finished\"\n"; + }; A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -367,19 +378,6 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNGoogleMobileAdsExample/Pods-RNGoogleMobileAdsExample-resources.sh\"\n"; showEnvVarsInLog = 0; }; - ECEDDADAE70FF75A7EAF7AED /* [CP-User] [RNGoogleMobileAds] Configuration */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)", - ); - name = "[CP-User] [RNGoogleMobileAds] Configuration"; - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "#!/usr/bin/env bash\n#\n# Copyright (c) 2016-present Invertase Limited & Contributors\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this library except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\n##########################################################################\n##########################################################################\n#\n# NOTE THAT IF YOU CHANGE THIS FILE YOU MUST RUN pod install AFTERWARDS\n#\n# This file is installed as an Xcode build script in the project file\n# by cocoapods, and you will not see your changes until you pod install\n#\n##########################################################################\n##########################################################################\n\nset -e\n\n_MAX_LOOKUPS=2;\n_SEARCH_RESULT=''\n_RN_ROOT_EXISTS=''\n_CURRENT_LOOKUPS=1\n_PROJECT_ABBREVIATION=\"RNGoogleMobileAds\"\n_JSON_ROOT=\"'react-native-google-mobile-ads'\"\n_JSON_FILE_NAME='app.json'\n_JSON_OUTPUT_BASE64='e30=' # { }\n_CURRENT_SEARCH_DIR=${PROJECT_DIR}\n_PLIST_BUDDY=/usr/libexec/PlistBuddy\n_TARGET_PLIST=\"${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}\"\n_DSYM_PLIST=\"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Info.plist\"\n_PACKAGE_JSON_NAME='package.json'\n\n# plist arrays\n_PLIST_ENTRY_KEYS=()\n_PLIST_ENTRY_TYPES=()\n_PLIST_ENTRY_VALUES=()\n\nfunction setPlistValue {\n echo \"info: setting plist entry '$1' of type '$2' in file '$4'\"\n ${_PLIST_BUDDY} -c \"Add :$1 $2 '$3'\" $4 || echo \"info: '$1' already exists\"\n}\n\nfunction getJsonKeyValue () {\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n ruby -KU -e \"require 'rubygems';require 'json'; output=JSON.parse('$1'); puts output[$_JSON_ROOT]['$2']\"\n else\n echo \"\"\n fi;\n}\n\nfunction jsonBoolToYesNo () {\n if [[ $1 == \"false\" ]]; then\n echo \"NO\"\n elif [[ $1 == \"true\" ]]; then\n echo \"YES\"\n else echo \"NO\"\n fi\n}\n\necho \"info: -> ${_PROJECT_ABBREVIATION} build script started\"\necho \"info: 1) Locating ${_JSON_FILE_NAME} file:\"\n\nif [[ -z ${_CURRENT_SEARCH_DIR} ]]; then\n _CURRENT_SEARCH_DIR=$(pwd)\nfi;\n\nwhile true; do\n _CURRENT_SEARCH_DIR=$(dirname \"$_CURRENT_SEARCH_DIR\")\n if [[ \"$_CURRENT_SEARCH_DIR\" == \"/\" ]] || [[ ${_CURRENT_LOOKUPS} -gt ${_MAX_LOOKUPS} ]]; then break; fi;\n echo \"info: ($_CURRENT_LOOKUPS of $_MAX_LOOKUPS) Searching in '$_CURRENT_SEARCH_DIR' for a ${_JSON_FILE_NAME} file.\"\n _SEARCH_RESULT=$(find \"$_CURRENT_SEARCH_DIR\" -maxdepth 2 -name ${_JSON_FILE_NAME} -print | /usr/bin/head -n 1)\n if [[ ${_SEARCH_RESULT} ]]; then\n echo \"info: ${_JSON_FILE_NAME} found at $_SEARCH_RESULT\"\n break;\n fi;\n _CURRENT_LOOKUPS=$((_CURRENT_LOOKUPS+1))\ndone\n\nif [[ ${_SEARCH_RESULT} ]]; then\n _JSON_OUTPUT_RAW=$(cat \"${_SEARCH_RESULT}\")\n _RN_ROOT_EXISTS=$(ruby -KU -e \"require 'rubygems';require 'json'; output=JSON.parse('$_JSON_OUTPUT_RAW'); puts output[$_JSON_ROOT]\" || echo '')\n\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n if ! python3 --version >/dev/null 2>&1; then echo \"python3 not found, app.json file processing error.\" && exit 1; fi\n _JSON_OUTPUT_BASE64=$(python3 -c 'import json,sys,base64;print(base64.b64encode(bytes(json.dumps(json.loads(open('\"'${_SEARCH_RESULT}'\"', '\"'rb'\"').read())['${_JSON_ROOT}']), '\"'utf-8'\"')).decode())' || echo \"e30=\")\n fi\n\n _PLIST_ENTRY_KEYS+=(\"google_mobile_ads_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n\n # config.delay_app_measurement_init\n _DELAY_APP_MEASUREMENT=$(getJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"delay_app_measurement_init\")\n if [[ $_DELAY_APP_MEASUREMENT == \"true\" ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADDelayAppMeasurementInit\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"YES\")\n fi\n\n # config.ios_app_id\n _IOS_APP_ID=$(getJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"ios_app_id\")\n if [[ $_IOS_APP_ID ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADApplicationIdentifier\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_IOS_APP_ID\")\n fi\n\n # config.sk_ad_network_items\n _SK_AD_NETWORK_ITEMS=$(getJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"sk_ad_network_items\")\n if [[ $_SK_AD_NETWORK_ITEMS ]]; then\n _PLIST_ENTRY_KEYS+=(\"SKAdNetworkItems\")\n _PLIST_ENTRY_TYPES+=(\"array\")\n _PLIST_ENTRY_VALUES+=(\"\")\n\n oldifs=$IFS\n IFS=\"\n\"\n array=($(echo \"$_SK_AD_NETWORK_ITEMS\"))\n IFS=$oldifs\n for i in \"${!array[@]}\"; do\n _PLIST_ENTRY_KEYS+=(\"SKAdNetworkItems:$i:SKAdNetworkIdentifier\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"${array[i]}\") \n done\n fi\n\n # config.user_tracking_usage_description\n _USER_TRACKING_USAGE_DESCRIPTION=$(getJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"user_tracking_usage_description\")\n if [[ $_USER_TRACKING_USAGE_DESCRIPTION ]]; then\n _PLIST_ENTRY_KEYS+=(\"NSUserTrackingUsageDescription\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_USER_TRACKING_USAGE_DESCRIPTION\")\n fi\nelse\n _PLIST_ENTRY_KEYS+=(\"google_mobile_ads_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n echo \"warning: A ${_JSON_FILE_NAME} file was not found, whilst this file is optional it is recommended to include it to auto-configure services.\"\nfi;\n\necho \"info: 2) Injecting Info.plist entries: \"\n\n# Log out the keys we're adding\nfor i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n echo \" -> $i) ${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\"\ndone\n\nif ! [[ -f \"${_TARGET_PLIST}\" ]]; then\n echo \"error: unable to locate Info.plist to set properties. App will crash without GADApplicationIdentifier set.\"\n exit 1\nfi\n\nif ! [[ $_IOS_APP_ID ]]; then\n echo \"warning: ios_app_id key not found in react-native-google-mobile-ads key in app.json. App will crash without it.\"\n echo \" You can safely ignore this warning if you are using our Expo config plugin.\"\n exit 0\nfi\n\nfor plist in \"${_TARGET_PLIST}\" \"${_DSYM_PLIST}\" ; do\n if [[ -f \"${plist}\" ]]; then\n\n # paths with spaces break the call to setPlistValue. temporarily modify\n # the shell internal field separator variable (IFS), which normally\n # includes spaces, to consist only of line breaks\n oldifs=$IFS\n IFS=\"\n\"\n\n for i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n setPlistValue \"${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\" \"${plist}\"\n done\n\n # restore the original internal field separator value\n IFS=$oldifs\n else\n echo \"warning: A Info.plist build output file was not found (${plist})\"\n fi\ndone\n\necho \"info: <- ${_PROJECT_ABBREVIATION} build script finished\"\n"; - }; F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -537,7 +535,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; - CC = ""; + CC = "$(REACT_NATIVE_PATH)/scripts/xcode/ccache-clang.sh"; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; @@ -565,7 +563,7 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; - CXX = ""; + CXX = "$(REACT_NATIVE_PATH)/scripts/xcode/ccache-clang++.sh"; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; @@ -584,9 +582,9 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.4; - LD = ""; - LDPLUSPLUS = ""; + IPHONEOS_DEPLOYMENT_TARGET = 15.1; + LD = "$(REACT_NATIVE_PATH)/scripts/xcode/ccache-clang.sh"; + LDPLUSPLUS = "$(REACT_NATIVE_PATH)/scripts/xcode/ccache-clang++.sh"; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", @@ -621,7 +619,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; - CC = ""; + CC = "$(REACT_NATIVE_PATH)/scripts/xcode/ccache-clang.sh"; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; @@ -649,7 +647,7 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = YES; - CXX = ""; + CXX = "$(REACT_NATIVE_PATH)/scripts/xcode/ccache-clang++.sh"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; @@ -661,9 +659,9 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.4; - LD = ""; - LDPLUSPLUS = ""; + IPHONEOS_DEPLOYMENT_TARGET = 15.1; + LD = "$(REACT_NATIVE_PATH)/scripts/xcode/ccache-clang.sh"; + LDPLUSPLUS = "$(REACT_NATIVE_PATH)/scripts/xcode/ccache-clang++.sh"; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", diff --git a/RNGoogleMobileAdsExample/package.json b/RNGoogleMobileAdsExample/package.json index 7c547fa1..fc886ac6 100644 --- a/RNGoogleMobileAdsExample/package.json +++ b/RNGoogleMobileAdsExample/package.json @@ -3,43 +3,43 @@ "version": "0.0.1", "private": true, "scripts": { - "prepare": "patch-package", "android": "react-native run-android", "ios": "react-native run-ios", "lint": "eslint .", "start": "react-native start", - "test": "jest" + "test": "jest", + "postinstall": "yarn patch-package" }, "dependencies": { "react": "18.3.1", - "react-native": "0.76.2", + "react-native": "0.76.5", "react-native-google-mobile-ads": "link:../" }, "devDependencies": { "@babel/core": "^7.25.2", - "@babel/preset-env": "^7.25.3", + "@babel/preset-env": "^7.26.0", "@babel/runtime": "^7.25.0", "@react-native-community/cli": "15.0.1", "@react-native-community/cli-platform-android": "15.0.1", "@react-native-community/cli-platform-ios": "15.0.1", - "@react-native/babel-preset": "0.76.2", - "@react-native/eslint-config": "0.76.2", - "@react-native/metro-config": "0.76.2", - "@react-native/typescript-config": "0.76.2", + "@react-native/babel-preset": "0.76.5", + "@react-native/eslint-config": "0.76.5", + "@react-native/metro-config": "0.76.5", + "@react-native/typescript-config": "0.76.5", "@types/react": "^18.2.6", "@types/react-test-renderer": "^18.0.0", "babel-jest": "^29.6.3", - "detox": "^19", + "detox": "^20.31.0", "eslint": "^8.19.0", "jest": "^29.6.3", "jest-circus": "^29.7.0", "jest-environment-node": "^29.7.0", "jet": "https://github.com/invertase/jet#@mikehardy/jet-next", - "mocha": "^10.4.0", + "mocha": "^11.0.1", "patch-package": "^8.0.0", "prettier": "2.8.8", "react-test-renderer": "18.3.1", - "typescript": "^5.4.5" + "typescript": "^5.7.2" }, "engines": { "node": ">=18" diff --git a/RNGoogleMobileAdsExample/patches/detox+19.13.0.patch b/RNGoogleMobileAdsExample/patches/detox+19.13.0.patch deleted file mode 100644 index 5be5f722..00000000 --- a/RNGoogleMobileAdsExample/patches/detox+19.13.0.patch +++ /dev/null @@ -1,65 +0,0 @@ -diff --git a/node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/common/SliderHelper.kt b/node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/common/SliderHelper.kt -index af77cda..bee610a 100644 ---- a/node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/common/SliderHelper.kt -+++ b/node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/common/SliderHelper.kt -@@ -4,12 +4,12 @@ import android.view.View - import androidx.appcompat.widget.AppCompatSeekBar - import com.facebook.react.bridge.JavaOnlyMap - import com.facebook.react.uimanager.ReactStylesDiffMap --import com.facebook.react.views.slider.ReactSlider -+// import com.facebook.react.views.slider.ReactSlider - import com.wix.detox.common.DetoxErrors.DetoxIllegalStateException - import com.wix.detox.espresso.action.common.ReflectUtils - import org.joor.Reflect - --private const val CLASS_REACT_SLIDER_LEGACY = "com.facebook.react.views.slider.ReactSlider" -+// private const val CLASS_REACT_SLIDER_LEGACY = "com.facebook.react.views.slider.ReactSlider" - private const val CLASS_REACT_SLIDER_COMMUNITY = "com.reactnativecommunity.slider.ReactSlider" - - abstract class SliderHelper(protected val slider: AppCompatSeekBar) { -@@ -48,8 +48,8 @@ abstract class SliderHelper(protected val slider: AppCompatSeekBar) { - - fun maybeCreate(view: View): SliderHelper? = - when { -- ReflectUtils.isAssignableFrom(view, CLASS_REACT_SLIDER_LEGACY) -- -> LegacySliderHelper(view as ReactSlider) -+ // ReflectUtils.isAssignableFrom(view, CLASS_REACT_SLIDER_LEGACY) -+ // -> LegacySliderHelper(view as ReactSlider) - ReflectUtils.isAssignableFrom(view, CLASS_REACT_SLIDER_COMMUNITY) - -> CommunitySliderHelper(view as AppCompatSeekBar) - else -@@ -58,14 +58,14 @@ abstract class SliderHelper(protected val slider: AppCompatSeekBar) { - } - } - --private class LegacySliderHelper(slider: AppCompatSeekBar): SliderHelper(slider) { -- override fun setProgressJS(valueJS: Double) { -- val reactSliderManager = com.facebook.react.views.slider.ReactSliderManager() -- reactSliderManager.updateProperties(slider as ReactSlider, buildStyles("value", valueJS)) -- } -+// private class LegacySliderHelper(slider: AppCompatSeekBar): SliderHelper(slider) { -+// override fun setProgressJS(valueJS: Double) { -+// val reactSliderManager = com.facebook.react.views.slider.ReactSliderManager() -+// reactSliderManager.updateProperties(slider as ReactSlider, buildStyles("value", valueJS)) -+// } - -- private fun buildStyles(vararg keysAndValues: Any) = ReactStylesDiffMap(JavaOnlyMap.of(*keysAndValues)) --} -+// private fun buildStyles(vararg keysAndValues: Any) = ReactStylesDiffMap(JavaOnlyMap.of(*keysAndValues)) -+// } - - private class CommunitySliderHelper(slider: AppCompatSeekBar): SliderHelper(slider) { - override fun setProgressJS(valueJS: Double) { -diff --git a/node_modules/detox/src/devices/common/drivers/ios/tools/AppleSimUtils.js b/node_modules/detox/src/devices/common/drivers/ios/tools/AppleSimUtils.js -index 585c99b..46e4b83 100644 ---- a/node_modules/detox/src/devices/common/drivers/ios/tools/AppleSimUtils.js -+++ b/node_modules/detox/src/devices/common/drivers/ios/tools/AppleSimUtils.js -@@ -272,7 +272,7 @@ class AppleSimUtils { - // want to make sure it isn't now. - if (err.code === 3 && - (err.stderr.includes(`the app is not currently running`) || -- err.stderr.includes(`The operation couldn’t be completed. found nothing to terminate`))) { -+ err.stderr.includes(`found nothing to terminate`))) { - return; - } - diff --git a/RNGoogleMobileAdsExample/patches/detox+20.31.0.patch b/RNGoogleMobileAdsExample/patches/detox+20.31.0.patch new file mode 100644 index 00000000..a2ecb613 --- /dev/null +++ b/RNGoogleMobileAdsExample/patches/detox+20.31.0.patch @@ -0,0 +1,110126 @@ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/results.bin b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/results.bin +new file mode 100644 +index 0000000..12d873a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/results.bin +@@ -0,0 +1 @@ ++o/bundleLibRuntimeToDirFullDebug +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/ActivityLaunchHelper$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/ActivityLaunchHelper$1.dex +new file mode 100644 +index 0000000..17702b4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/ActivityLaunchHelper$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/ActivityLaunchHelper$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/ActivityLaunchHelper$Companion.dex +new file mode 100644 +index 0000000..c44e2ce +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/ActivityLaunchHelper$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/ActivityLaunchHelper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/ActivityLaunchHelper.dex +new file mode 100644 +index 0000000..0aeecb8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/ActivityLaunchHelper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/BuildConfig.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/BuildConfig.dex +new file mode 100644 +index 0000000..cb68eab +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/BuildConfig.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/Delegator.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/Delegator.dex +new file mode 100644 +index 0000000..7994287 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/Delegator.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/Detox.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/Detox.dex +new file mode 100644 +index 0000000..824fa3c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/Detox.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxANRHandler$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxANRHandler$Companion.dex +new file mode 100644 +index 0000000..5388232 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxANRHandler$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxANRHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxANRHandler.dex +new file mode 100644 +index 0000000..48e63a3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxANRHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxCrashHandler$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxCrashHandler$Companion.dex +new file mode 100644 +index 0000000..33a1c2f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxCrashHandler$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxCrashHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxCrashHandler.dex +new file mode 100644 +index 0000000..a36bcab +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxCrashHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxJUnitRunner$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxJUnitRunner$1.dex +new file mode 100644 +index 0000000..864ada6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxJUnitRunner$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxJUnitRunner.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxJUnitRunner.dex +new file mode 100644 +index 0000000..d294157 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxJUnitRunner.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$1$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$1$1.dex +new file mode 100644 +index 0000000..8f74cdd +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$1$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$1$2.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$1$2.dex +new file mode 100644 +index 0000000..8cb4d66 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$1$2.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$1$3.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$1$3.dex +new file mode 100644 +index 0000000..a5f0783 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$1$3.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$SynchronizedActionHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$SynchronizedActionHandler.dex +new file mode 100644 +index 0000000..f0ff06a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain$setupActionHandlers$SynchronizedActionHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain.dex +new file mode 100644 +index 0000000..e28cfaa +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMain.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMainKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMainKt.dex +new file mode 100644 +index 0000000..eb144d8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/DetoxMainKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/LaunchArgs.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/LaunchArgs.dex +new file mode 100644 +index 0000000..ae62bfb +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/LaunchArgs.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/LaunchIntentsFactory.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/LaunchIntentsFactory.dex +new file mode 100644 +index 0000000..8b61a0d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/LaunchIntentsFactory.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/NotificationDataParser.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/NotificationDataParser.dex +new file mode 100644 +index 0000000..50912c0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/NotificationDataParser.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/TestEngineFacade$awaitIdle$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/TestEngineFacade$awaitIdle$1.dex +new file mode 100644 +index 0000000..8da90c8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/TestEngineFacade$awaitIdle$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/TestEngineFacade.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/TestEngineFacade.dex +new file mode 100644 +index 0000000..be6063a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/TestEngineFacade.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/action/common/MotionDefs.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/action/common/MotionDefs.dex +new file mode 100644 +index 0000000..c8b2616 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/action/common/MotionDefs.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/action/common/MotionDir.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/action/common/MotionDir.dex +new file mode 100644 +index 0000000..90deeb9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/action/common/MotionDir.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/ActionsExecutor.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/ActionsExecutor.dex +new file mode 100644 +index 0000000..4ca8cbe +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/ActionsExecutor.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/CleanupActionHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/CleanupActionHandler.dex +new file mode 100644 +index 0000000..269a187 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/CleanupActionHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionHandler.dex +new file mode 100644 +index 0000000..69a6684 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionHandlersKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionHandlersKt.dex +new file mode 100644 +index 0000000..e743ee1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionHandlersKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionsDispatcher$associateActionHandler$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionsDispatcher$associateActionHandler$1.dex +new file mode 100644 +index 0000000..1dbe756 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionsDispatcher$associateActionHandler$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionsDispatcher.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionsDispatcher.dex +new file mode 100644 +index 0000000..7a39eaa +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionsDispatcher.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionsDispatcherKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionsDispatcherKt.dex +new file mode 100644 +index 0000000..5ada569 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxActionsDispatcherKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxServerAdapter.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxServerAdapter.dex +new file mode 100644 +index 0000000..447a820 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxServerAdapter.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxServerInfo.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxServerInfo.dex +new file mode 100644 +index 0000000..50d9de8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxServerInfo.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxServerInfoKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxServerInfoKt.dex +new file mode 100644 +index 0000000..06c5013 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/DetoxServerInfoKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InstrumentsEventsActionsHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InstrumentsEventsActionsHandler.dex +new file mode 100644 +index 0000000..ea4c6c8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InstrumentsEventsActionsHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler$Companion.dex +new file mode 100644 +index 0000000..7fcd794 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler.dex +new file mode 100644 +index 0000000..75505f7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InvokeActionHandler$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InvokeActionHandler$1.dex +new file mode 100644 +index 0000000..82019a9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InvokeActionHandler$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InvokeActionHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InvokeActionHandler.dex +new file mode 100644 +index 0000000..a0d024a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/InvokeActionHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/OutboundServerAdapter.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/OutboundServerAdapter.dex +new file mode 100644 +index 0000000..f2bc641 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/OutboundServerAdapter.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/QueryStatusActionHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/QueryStatusActionHandler.dex +new file mode 100644 +index 0000000..1c409a8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/QueryStatusActionHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/ReactNativeReloadActionHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/ReactNativeReloadActionHandler.dex +new file mode 100644 +index 0000000..6f8a581 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/ReactNativeReloadActionHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/ReadyActionHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/ReadyActionHandler.dex +new file mode 100644 +index 0000000..c9b05bd +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/ReadyActionHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/WebSocketClient$WSEventsHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/WebSocketClient$WSEventsHandler.dex +new file mode 100644 +index 0000000..cd7d223 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/WebSocketClient$WSEventsHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/WebSocketClient$WebSocketEventsListener.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/WebSocketClient$WebSocketEventsListener.dex +new file mode 100644 +index 0000000..228922d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/WebSocketClient$WebSocketEventsListener.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/WebSocketClient.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/WebSocketClient.dex +new file mode 100644 +index 0000000..77c2c87 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/adapters/server/WebSocketClient.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.dex +new file mode 100644 +index 0000000..8dd9795 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.dex +new file mode 100644 +index 0000000..01a1530 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.dex +new file mode 100644 +index 0000000..634bc4f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$StaleActionException.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$StaleActionException.dex +new file mode 100644 +index 0000000..030a17d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors$StaleActionException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors.dex +new file mode 100644 +index 0000000..bfd98ea +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxErrors.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxLog$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxLog$Companion.dex +new file mode 100644 +index 0000000..4b111e2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxLog$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxLog.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxLog.dex +new file mode 100644 +index 0000000..7c86ca1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/DetoxLog.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/ErrorUtilsKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/ErrorUtilsKt.dex +new file mode 100644 +index 0000000..a0d908c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/ErrorUtilsKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/JsonConverter.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/JsonConverter.dex +new file mode 100644 +index 0000000..6f6d8ec +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/JsonConverter.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/RNDropSupportTodo.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/RNDropSupportTodo.dex +new file mode 100644 +index 0000000..04d31b9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/RNDropSupportTodo.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/TextFileReader.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/TextFileReader.dex +new file mode 100644 +index 0000000..5538b7c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/TextFileReader.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/UIExtensionsKt$traverseViewHierarchy$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/UIExtensionsKt$traverseViewHierarchy$1.dex +new file mode 100644 +index 0000000..59b9ed2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/UIExtensionsKt$traverseViewHierarchy$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/UIExtensionsKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/UIExtensionsKt.dex +new file mode 100644 +index 0000000..8069ad8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/UIExtensionsKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/UIThread.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/UIThread.dex +new file mode 100644 +index 0000000..0ea96de +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/UIThread.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/collect/PairsIterator.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/collect/PairsIterator.dex +new file mode 100644 +index 0000000..82b68ae +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/collect/PairsIterator.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/CallInfo.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/CallInfo.dex +new file mode 100644 +index 0000000..494f550 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/CallInfo.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/MethodsSpy$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/MethodsSpy$Companion.dex +new file mode 100644 +index 0000000..b2b3d92 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/MethodsSpy$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/MethodsSpy.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/MethodsSpy.dex +new file mode 100644 +index 0000000..8013d5f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/MethodsSpy.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.dex +new file mode 100644 +index 0000000..3da85ce +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler.dex +new file mode 100644 +index 0000000..fae6dd0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/config/DetoxConfig$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/config/DetoxConfig$Companion.dex +new file mode 100644 +index 0000000..78296a0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/config/DetoxConfig$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/config/DetoxConfig.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/config/DetoxConfig.dex +new file mode 100644 +index 0000000..544ba5c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/config/DetoxConfig.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/config/DetoxIdlePolicyConfig.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/config/DetoxIdlePolicyConfig.dex +new file mode 100644 +index 0000000..2c31c67 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/config/DetoxIdlePolicyConfig.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction$1.dex +new file mode 100644 +index 0000000..ed66d73 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction$2.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction$2.dex +new file mode 100644 +index 0000000..2b15e0d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction$2.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction$3.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction$3.dex +new file mode 100644 +index 0000000..697659b +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction$3.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction.dex +new file mode 100644 +index 0000000..0b55094 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAssertion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAssertion.dex +new file mode 100644 +index 0000000..12a09ec +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxAssertion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxMatcher.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxMatcher.dex +new file mode 100644 +index 0000000..05f807f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxMatcher.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxViewActions.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxViewActions.dex +new file mode 100644 +index 0000000..a6ebde3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DetoxViewActions.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DeviceDisplay.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DeviceDisplay.dex +new file mode 100644 +index 0000000..fd815c5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/DeviceDisplay.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$1.dex +new file mode 100644 +index 0000000..c72d554 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$2.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$2.dex +new file mode 100644 +index 0000000..4831b66 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$2.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$3.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$3.dex +new file mode 100644 +index 0000000..cf6efdb +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$3.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$4.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$4.dex +new file mode 100644 +index 0000000..448d4ea +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox$4.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox.dex +new file mode 100644 +index 0000000..50ed059 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EspressoDetox.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EventsInjectorReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EventsInjectorReflected.dex +new file mode 100644 +index 0000000..fd8561c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/EventsInjectorReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/MultipleViewsAction.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/MultipleViewsAction.dex +new file mode 100644 +index 0000000..e7d56bf +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/MultipleViewsAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$1.dex +new file mode 100644 +index 0000000..0f5bd3b +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$2.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$2.dex +new file mode 100644 +index 0000000..24ad800 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$2.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$3$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$3$1.dex +new file mode 100644 +index 0000000..1fab000 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$3$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$3.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$3.dex +new file mode 100644 +index 0000000..4861837 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper$3.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper.dex +new file mode 100644 +index 0000000..daf2ec4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiAutomatorHelper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiControllerSpy$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiControllerSpy$Companion.dex +new file mode 100644 +index 0000000..1ee15ad +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiControllerSpy$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiControllerSpy.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiControllerSpy.dex +new file mode 100644 +index 0000000..bb16a21 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/UiControllerSpy.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/ViewActionWithResult.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/ViewActionWithResult.dex +new file mode 100644 +index 0000000..707c6ca +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/ViewActionWithResult.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/AdjustSliderToPositionAction.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/AdjustSliderToPositionAction.dex +new file mode 100644 +index 0000000..34b855c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/AdjustSliderToPositionAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/AttributeExtractor.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/AttributeExtractor.dex +new file mode 100644 +index 0000000..f7ab300 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/AttributeExtractor.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/CheckBoxAttributes.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/CheckBoxAttributes.dex +new file mode 100644 +index 0000000..2b15f0e +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/CheckBoxAttributes.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/CommonAttributes$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/CommonAttributes$Companion.dex +new file mode 100644 +index 0000000..d1a86e1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/CommonAttributes$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/CommonAttributes.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/CommonAttributes.dex +new file mode 100644 +index 0000000..8173adb +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/CommonAttributes.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxCustomTapper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxCustomTapper.dex +new file mode 100644 +index 0000000..447a087 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxCustomTapper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxSingleTap.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxSingleTap.dex +new file mode 100644 +index 0000000..8613b28 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxSingleTap.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.dex +new file mode 100644 +index 0000000..5a63d99 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxTypeTextAction.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxTypeTextAction.dex +new file mode 100644 +index 0000000..b917005 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/DetoxTypeTextAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/GetAttributesAction.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/GetAttributesAction.dex +new file mode 100644 +index 0000000..699232c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/GetAttributesAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/LongPressAndDragAction.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/LongPressAndDragAction.dex +new file mode 100644 +index 0000000..a3acd0a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/LongPressAndDragAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/LongPressAndDragActionKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/LongPressAndDragActionKt.dex +new file mode 100644 +index 0000000..8106dc7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/LongPressAndDragActionKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/MaterialSliderAttributes.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/MaterialSliderAttributes.dex +new file mode 100644 +index 0000000..5b13822 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/MaterialSliderAttributes.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ProgressBarAttributes.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ProgressBarAttributes.dex +new file mode 100644 +index 0000000..24374ab +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ProgressBarAttributes.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/RNClickAction.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/RNClickAction.dex +new file mode 100644 +index 0000000..55be351 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/RNClickAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/RNDetoxAccessibilityAction.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/RNDetoxAccessibilityAction.dex +new file mode 100644 +index 0000000..0b16e23 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/RNDetoxAccessibilityAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ScreenshotResult.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ScreenshotResult.dex +new file mode 100644 +index 0000000..fb757de +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ScreenshotResult.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ScrollToIndexAction.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ScrollToIndexAction.dex +new file mode 100644 +index 0000000..a6f48e1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ScrollToIndexAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ScrollToIndexActionKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ScrollToIndexActionKt.dex +new file mode 100644 +index 0000000..72f39a5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ScrollToIndexActionKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/TakeViewScreenshotAction.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/TakeViewScreenshotAction.dex +new file mode 100644 +index 0000000..27e68de +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/TakeViewScreenshotAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/TextViewAttributes.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/TextViewAttributes.dex +new file mode 100644 +index 0000000..d435f42 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/TextViewAttributes.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/TopAccessibilityEvent.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/TopAccessibilityEvent.dex +new file mode 100644 +index 0000000..160936c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/TopAccessibilityEvent.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ViewScreenshot.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ViewScreenshot.dex +new file mode 100644 +index 0000000..96da092 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/ViewScreenshot.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.dex +new file mode 100644 +index 0000000..8108825 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurations.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurations.dex +new file mode 100644 +index 0000000..2cb54de +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurations.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/MotionEvents.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/MotionEvents.dex +new file mode 100644 +index 0000000..08d43a0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/MotionEvents.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/MotionEventsKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/MotionEventsKt.dex +new file mode 100644 +index 0000000..64710c7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/MotionEventsKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/ReflectUtils.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/ReflectUtils.dex +new file mode 100644 +index 0000000..d340c3b +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/ReflectUtils.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/TapEvents.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/TapEvents.dex +new file mode 100644 +index 0000000..9928d84 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/TapEvents.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/TapEventsKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/TapEventsKt.dex +new file mode 100644 +index 0000000..13ab139 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/TapEventsKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/utils/UiControllerUtils.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/utils/UiControllerUtils.dex +new file mode 100644 +index 0000000..88f25f8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/utils/UiControllerUtils.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.dex +new file mode 100644 +index 0000000..c38a090 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.dex +new file mode 100644 +index 0000000..c80ab87 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/assertion/ViewAssertions$MatchesViewAssertion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/assertion/ViewAssertions$MatchesViewAssertion.dex +new file mode 100644 +index 0000000..c2b539c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/assertion/ViewAssertions$MatchesViewAssertion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/assertion/ViewAssertions.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/assertion/ViewAssertions.dex +new file mode 100644 +index 0000000..d0c32d6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/assertion/ViewAssertions.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/CommunitySliderHelper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/CommunitySliderHelper.dex +new file mode 100644 +index 0000000..243fc34 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/CommunitySliderHelper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/LegacySliderHelper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/LegacySliderHelper.dex +new file mode 100644 +index 0000000..122154f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/LegacySliderHelper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/MaterialSliderHelper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/MaterialSliderHelper.dex +new file mode 100644 +index 0000000..5d3968e +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/MaterialSliderHelper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/MaterialSliderHelperKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/MaterialSliderHelperKt.dex +new file mode 100644 +index 0000000..e4c03c7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/MaterialSliderHelperKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/ReactSliderHelper$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/ReactSliderHelper$Companion.dex +new file mode 100644 +index 0000000..d4a07fd +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/ReactSliderHelper$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/ReactSliderHelper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/ReactSliderHelper.dex +new file mode 100644 +index 0000000..edac859 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/ReactSliderHelper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/ReactSliderHelperKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/ReactSliderHelperKt.dex +new file mode 100644 +index 0000000..f54061f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/ReactSliderHelperKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/UiControllerImplReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/UiControllerImplReflected.dex +new file mode 100644 +index 0000000..9deb455 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/UiControllerImplReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/UiControllerImplReflectedKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/UiControllerImplReflectedKt.dex +new file mode 100644 +index 0000000..35a9a1b +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/common/UiControllerImplReflectedKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/RootViewsHelper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/RootViewsHelper.dex +new file mode 100644 +index 0000000..753f487 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/RootViewsHelper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXml$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXml$1.dex +new file mode 100644 +index 0000000..a26b11e +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXml$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXmlFromViews$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXmlFromViews$1.dex +new file mode 100644 +index 0000000..d44dc87 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXmlFromViews$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2$1$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2$1$1.dex +new file mode 100644 +index 0000000..547c1b4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2$1$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2.dex +new file mode 100644 +index 0000000..722f0be +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewGroupChildren$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewGroupChildren$1.dex +new file mode 100644 +index 0000000..fcb5224 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewGroupChildren$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewHierarchy$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewHierarchy$1.dex +new file mode 100644 +index 0000000..b44fb06 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewHierarchy$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeWebView$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeWebView$1.dex +new file mode 100644 +index 0000000..006afb8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeWebView$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator.dex +new file mode 100644 +index 0000000..79ebc9e +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGeneratorKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGeneratorKt.dex +new file mode 100644 +index 0000000..59c727c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/hierarchy/ViewHierarchyGeneratorKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/idlingresources/DescriptiveIdlingResource.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/idlingresources/DescriptiveIdlingResource.dex +new file mode 100644 +index 0000000..0067f87 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/idlingresources/DescriptiveIdlingResource.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/IsAssignableFromMatcher.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/IsAssignableFromMatcher.dex +new file mode 100644 +index 0000000..1f833a7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/IsAssignableFromMatcher.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/IsDisplayingAtLeastDetoxMatcher.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/IsDisplayingAtLeastDetoxMatcher.dex +new file mode 100644 +index 0000000..aa19a66 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/IsDisplayingAtLeastDetoxMatcher.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/RegexMatcher.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/RegexMatcher.dex +new file mode 100644 +index 0000000..2887e2b +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/RegexMatcher.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/RegexMatcherKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/RegexMatcherKt.dex +new file mode 100644 +index 0000000..c097b44 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/RegexMatcherKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewAtIndexMatcher.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewAtIndexMatcher.dex +new file mode 100644 +index 0000000..b2c666c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewAtIndexMatcher.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewMatchers$isOfClassName$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewMatchers$isOfClassName$1.dex +new file mode 100644 +index 0000000..c65c3c0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewMatchers$isOfClassName$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewMatchers$toHaveSliderPosition$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewMatchers$toHaveSliderPosition$1.dex +new file mode 100644 +index 0000000..c76c487 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewMatchers$toHaveSliderPosition$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewMatchers.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewMatchers.dex +new file mode 100644 +index 0000000..b3e2851 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/ViewMatchers.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/WithAccessibilityLabelMatcher.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/WithAccessibilityLabelMatcher.dex +new file mode 100644 +index 0000000..d3bcb31 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/matcher/WithAccessibilityLabelMatcher.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/MultipleViewsActionPerformer.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/MultipleViewsActionPerformer.dex +new file mode 100644 +index 0000000..eb5f5ee +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/MultipleViewsActionPerformer.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/SingleViewActionPerformer.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/SingleViewActionPerformer.dex +new file mode 100644 +index 0000000..3ce86e4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/SingleViewActionPerformer.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/ViewActionPerformer$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/ViewActionPerformer$Companion.dex +new file mode 100644 +index 0000000..af5a17c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/ViewActionPerformer$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/ViewActionPerformer.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/ViewActionPerformer.dex +new file mode 100644 +index 0000000..9b0eaad +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/performer/ViewActionPerformer.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/registry/BusyResourcesInquirer$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/registry/BusyResourcesInquirer$Companion.dex +new file mode 100644 +index 0000000..75c7677 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/registry/BusyResourcesInquirer$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/registry/BusyResourcesInquirer.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/registry/BusyResourcesInquirer.dex +new file mode 100644 +index 0000000..ce9c14c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/registry/BusyResourcesInquirer.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/registry/BusyResourcesInquirerKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/registry/BusyResourcesInquirerKt.dex +new file mode 100644 +index 0000000..00e79b8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/registry/BusyResourcesInquirerKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/AbsListViewBack.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/AbsListViewBack.dex +new file mode 100644 +index 0000000..f96d732 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/AbsListViewBack.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/AbsListViewForward.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/AbsListViewForward.dex +new file mode 100644 +index 0000000..367eb0d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/AbsListViewForward.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/AbsScrollableProbe.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/AbsScrollableProbe.dex +new file mode 100644 +index 0000000..674fe05 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/AbsScrollableProbe.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollAction.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollAction.dex +new file mode 100644 +index 0000000..4f6f841 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionBase.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionBase.dex +new file mode 100644 +index 0000000..13e25b3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionBase.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.dex +new file mode 100644 +index 0000000..0b32d96 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxSwipe.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxSwipe.dex +new file mode 100644 +index 0000000..f5199f7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxSwipe.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxSwiper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxSwiper.dex +new file mode 100644 +index 0000000..78bfc18 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/DetoxSwiper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/LinearSwiper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/LinearSwiper.dex +new file mode 100644 +index 0000000..9105cb0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/LinearSwiper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/LinearSwiperKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/LinearSwiperKt.dex +new file mode 100644 +index 0000000..ece013a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/LinearSwiperKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollEdgeException.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollEdgeException.dex +new file mode 100644 +index 0000000..afd94f3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollEdgeException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollHelper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollHelper.dex +new file mode 100644 +index 0000000..0280070 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollHelper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollProbes.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollProbes.dex +new file mode 100644 +index 0000000..a8dd168 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollProbes.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbe.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbe.dex +new file mode 100644 +index 0000000..75afce8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbe.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHBack.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHBack.dex +new file mode 100644 +index 0000000..c8a8796 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHBack.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHForward.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHForward.dex +new file mode 100644 +index 0000000..41e39c4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHForward.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVBack.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVBack.dex +new file mode 100644 +index 0000000..f976b15 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVBack.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVForward.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVForward.dex +new file mode 100644 +index 0000000..d1588bf +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVForward.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.dex +new file mode 100644 +index 0000000..b03b51b +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion.dex +new file mode 100644 +index 0000000..1723c37 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper.dex +new file mode 100644 +index 0000000..4ec614d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelperKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelperKt.dex +new file mode 100644 +index 0000000..c659873 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/scroll/SwipeHelperKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/utils/Vector2D$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/utils/Vector2D$Companion.dex +new file mode 100644 +index 0000000..9367d49 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/utils/Vector2D$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/utils/Vector2D.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/utils/Vector2D.dex +new file mode 100644 +index 0000000..b4cbd54 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/utils/Vector2D.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/utils/Vector2DKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/utils/Vector2DKt.dex +new file mode 100644 +index 0000000..60600c4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/utils/Vector2DKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/DetoxWebAtomMatcher.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/DetoxWebAtomMatcher.dex +new file mode 100644 +index 0000000..fcfae88 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/DetoxWebAtomMatcher.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/EspressoWebDetox.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/EspressoWebDetox.dex +new file mode 100644 +index 0000000..8c8ccb2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/EspressoWebDetox.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebElement.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebElement.dex +new file mode 100644 +index 0000000..6d8966f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebElement.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebExpect.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebExpect.dex +new file mode 100644 +index 0000000..765318d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebExpect.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebViewElement$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebViewElement$1.dex +new file mode 100644 +index 0000000..2d14516 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebViewElement$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebViewElement.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebViewElement.dex +new file mode 100644 +index 0000000..a6fb31e +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/espresso/web/WebViewElement.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/genymotion/DetoxGenymotionManager.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/genymotion/DetoxGenymotionManager.dex +new file mode 100644 +index 0000000..ed18953 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/genymotion/DetoxGenymotionManager.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResource$BusyAsyncTasks.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResource$BusyAsyncTasks.dex +new file mode 100644 +index 0000000..42fbbf1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResource$BusyAsyncTasks.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResource$BusyIdlingResource.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResource$BusyIdlingResource.dex +new file mode 100644 +index 0000000..1eae87f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResource$BusyIdlingResource.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResource.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResource.dex +new file mode 100644 +index 0000000..4124cef +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResource.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResourceDescription$Builder.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResourceDescription$Builder.dex +new file mode 100644 +index 0000000..e4fcc12 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResourceDescription$Builder.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResourceDescription.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResourceDescription.dex +new file mode 100644 +index 0000000..a2436ea +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/inquiry/DetoxBusyResourceDescription.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/DetoxInstrumentsException.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/DetoxInstrumentsException.dex +new file mode 100644 +index 0000000..62c4b25 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/DetoxInstrumentsException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/DetoxInstrumentsManager.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/DetoxInstrumentsManager.dex +new file mode 100644 +index 0000000..f5655d3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/DetoxInstrumentsManager.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/Instruments.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/Instruments.dex +new file mode 100644 +index 0000000..97a3673 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/Instruments.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/InstrumentsRecording.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/InstrumentsRecording.dex +new file mode 100644 +index 0000000..03b1742 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/InstrumentsRecording.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/reflected/InstrumentsRecordingReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/reflected/InstrumentsRecordingReflected.dex +new file mode 100644 +index 0000000..d0544fa +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/reflected/InstrumentsRecordingReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/reflected/InstrumentsReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/reflected/InstrumentsReflected.dex +new file mode 100644 +index 0000000..4e17353 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/instruments/reflected/InstrumentsReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/DummyListenerIdentifier.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/DummyListenerIdentifier.dex +new file mode 100644 +index 0000000..087c624 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/DummyListenerIdentifier.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/RNVersion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/RNVersion.dex +new file mode 100644 +index 0000000..75f1456 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/RNVersion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactMarkersLogger.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactMarkersLogger.dex +new file mode 100644 +index 0000000..07cdf37 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactMarkersLogger.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeExtension.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeExtension.dex +new file mode 100644 +index 0000000..7660f2b +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeExtension.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeExtensionKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeExtensionKt.dex +new file mode 100644 +index 0000000..9d3f596 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeExtensionKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeInfo.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeInfo.dex +new file mode 100644 +index 0000000..9a1954f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeInfo.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeLoadingMonitor$subscribeToNewRNContextUpdates$1$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeLoadingMonitor$subscribeToNewRNContextUpdates$1$1.dex +new file mode 100644 +index 0000000..48417a0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeLoadingMonitor$subscribeToNewRNContextUpdates$1$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeLoadingMonitor.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeLoadingMonitor.dex +new file mode 100644 +index 0000000..0ba9516 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeLoadingMonitor.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeLoadingMonitorKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeLoadingMonitorKt.dex +new file mode 100644 +index 0000000..74c5e16 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeLoadingMonitorKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeReLoader.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeReLoader.dex +new file mode 100644 +index 0000000..72d7cb4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ReactNativeReLoader.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/helpers/RNHelpers.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/helpers/RNHelpers.dex +new file mode 100644 +index 0000000..a5feaf2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/helpers/RNHelpers.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/helpers/RNHelpersKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/helpers/RNHelpersKt.dex +new file mode 100644 +index 0000000..dc05df4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/helpers/RNHelpersKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/DetoxIdlingResource.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/DetoxIdlingResource.dex +new file mode 100644 +index 0000000..2f72c7a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/DetoxIdlingResource.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$WhenMappings.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$WhenMappings.dex +new file mode 100644 +index 0000000..ef5bc5a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$WhenMappings.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$registerAll$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$registerAll$1.dex +new file mode 100644 +index 0000000..64d7e9d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$registerAll$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$setupIdlingResources$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$setupIdlingResources$1.dex +new file mode 100644 +index 0000000..b9fedf1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$setupIdlingResources$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources.dex +new file mode 100644 +index 0000000..4d7b136 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResourcesKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResourcesKt.dex +new file mode 100644 +index 0000000..87e97dd +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResourcesKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResource.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResource.dex +new file mode 100644 +index 0000000..f066898 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResource.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResourceKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResourceKt.dex +new file mode 100644 +index 0000000..ae51d5f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResourceKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource$Companion.dex +new file mode 100644 +index 0000000..06de92b +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource.dex +new file mode 100644 +index 0000000..cac18c8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory$create$2.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory$create$2.dex +new file mode 100644 +index 0000000..21ca8bf +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory$create$2.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory.dex +new file mode 100644 +index 0000000..15edb5e +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/IdlingResourcesName.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/IdlingResourcesName.dex +new file mode 100644 +index 0000000..1956c82 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/IdlingResourcesName.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/LooperName.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/LooperName.dex +new file mode 100644 +index 0000000..1d33c74 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/factory/LooperName.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/looper/MQThreadReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/looper/MQThreadReflected.dex +new file mode 100644 +index 0000000..4df83de +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/looper/MQThreadReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflector.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflector.dex +new file mode 100644 +index 0000000..06a54e6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflector.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflectorKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflectorKt.dex +new file mode 100644 +index 0000000..a3e1d44 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflectorKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource$Companion.dex +new file mode 100644 +index 0000000..7f20fc7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource.dex +new file mode 100644 +index 0000000..54b60c0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected$Companion.dex +new file mode 100644 +index 0000000..52f5ead +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected.dex +new file mode 100644 +index 0000000..01fa1c4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource$Companion.dex +new file mode 100644 +index 0000000..c90846f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource.dex +new file mode 100644 +index 0000000..266a137 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt$defaultSExecutorReflectedGenFn$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt$defaultSExecutorReflectedGenFn$1.dex +new file mode 100644 +index 0000000..8f2b84f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt$defaultSExecutorReflectedGenFn$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt.dex +new file mode 100644 +index 0000000..42abc51 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/ModuleReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/ModuleReflected.dex +new file mode 100644 +index 0000000..3108219 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/ModuleReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/SerialExecutorReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/SerialExecutorReflected.dex +new file mode 100644 +index 0000000..771cd3f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/storage/SerialExecutorReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$1.dex +new file mode 100644 +index 0000000..ff15364 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$Companion.dex +new file mode 100644 +index 0000000..3d715f1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource.dex +new file mode 100644 +index 0000000..9f76a20 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResourceKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResourceKt.dex +new file mode 100644 +index 0000000..f976b88 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResourceKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflected.dex +new file mode 100644 +index 0000000..718245d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflectedKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflectedKt.dex +new file mode 100644 +index 0000000..fc45774 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflectedKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflected.dex +new file mode 100644 +index 0000000..c24eb09 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflectedKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflectedKt.dex +new file mode 100644 +index 0000000..c400af8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflectedKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflected.dex +new file mode 100644 +index 0000000..6adc18b +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflectedKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflectedKt.dex +new file mode 100644 +index 0000000..6cc1e13 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflectedKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource$Companion.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource$Companion.dex +new file mode 100644 +index 0000000..de0afdf +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource.dex +new file mode 100644 +index 0000000..12cb219 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflected.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflected.dex +new file mode 100644 +index 0000000..92fb7ef +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflectedKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflectedKt.dex +new file mode 100644 +index 0000000..073a533 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflectedKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ui/UIExtensionsKt$collectAccessibilityLabelsFromHierarchy$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ui/UIExtensionsKt$collectAccessibilityLabelsFromHierarchy$1.dex +new file mode 100644 +index 0000000..e86eb3e +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ui/UIExtensionsKt$collectAccessibilityLabelsFromHierarchy$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ui/UIExtensionsKt$getAccessibilityLabel$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ui/UIExtensionsKt$getAccessibilityLabel$1.dex +new file mode 100644 +index 0000000..bdcaae3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ui/UIExtensionsKt$getAccessibilityLabel$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ui/UIExtensionsKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ui/UIExtensionsKt.dex +new file mode 100644 +index 0000000..762a9d9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/ui/UIExtensionsKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/utils/RNUtilsKt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/utils/RNUtilsKt.dex +new file mode 100644 +index 0000000..d90abfa +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/reactnative/utils/RNUtilsKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/uiautomator/UiAutomator.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/uiautomator/UiAutomator.dex +new file mode 100644 +index 0000000..d4143ac +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/detox/uiautomator/UiAutomator.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/MethodInvocation.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/MethodInvocation.dex +new file mode 100644 +index 0000000..38d1792 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/MethodInvocation.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/MethodUtilsExt.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/MethodUtilsExt.dex +new file mode 100644 +index 0000000..fef9d8f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/MethodUtilsExt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/exceptions/EmptyInvocationInstructionException.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/exceptions/EmptyInvocationInstructionException.dex +new file mode 100644 +index 0000000..bdb6ddf +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/exceptions/EmptyInvocationInstructionException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/parser/JsonParser.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/parser/JsonParser.dex +new file mode 100644 +index 0000000..11017a6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/parser/JsonParser.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/ClassTarget.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/ClassTarget.dex +new file mode 100644 +index 0000000..296cfa3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/ClassTarget.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/Invocation.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/Invocation.dex +new file mode 100644 +index 0000000..b473735 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/Invocation.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/InvocationTarget.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/InvocationTarget.dex +new file mode 100644 +index 0000000..45a4573 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/InvocationTarget.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/ObjectInstanceTarget.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/ObjectInstanceTarget.dex +new file mode 100644 +index 0000000..9ace38d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/ObjectInstanceTarget.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/Target.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/Target.dex +new file mode 100644 +index 0000000..491583a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/com/wix/invoke/types/Target.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/Reflect$1.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/Reflect$1.dex +new file mode 100644 +index 0000000..7c66f01 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/Reflect$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/Reflect$NULL.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/Reflect$NULL.dex +new file mode 100644 +index 0000000..d8ffe9a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/Reflect$NULL.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/Reflect.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/Reflect.dex +new file mode 100644 +index 0000000..eefcf76 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/Reflect.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/ReflectException.dex b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/ReflectException.dex +new file mode 100644 +index 0000000..d973c5c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/bundleLibRuntimeToDirFullDebug_dex/org/joor/ReflectException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/desugar_graph.bin b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/desugar_graph.bin +new file mode 100644 +index 0000000..3e3dc52 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/79292c558a8d6531c5811a11ba24771f/transformed/bundleLibRuntimeToDirFullDebug/desugar_graph.bin differ +diff --git a/node_modules/detox/android/detox/build/.transforms/95f12879600626f4e2eeec2055a74f2e/results.bin b/node_modules/detox/android/detox/build/.transforms/95f12879600626f4e2eeec2055a74f2e/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/detox/android/detox/build/.transforms/95f12879600626f4e2eeec2055a74f2e/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/detox/android/detox/build/.transforms/95f12879600626f4e2eeec2055a74f2e/transformed/classes/classes_dex/classes.dex b/node_modules/detox/android/detox/build/.transforms/95f12879600626f4e2eeec2055a74f2e/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..2b48c16 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/95f12879600626f4e2eeec2055a74f2e/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/results.bin b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/results.bin +new file mode 100644 +index 0000000..9206d7e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/results.bin +@@ -0,0 +1 @@ ++o/bundleLibRuntimeToDirCoreNativeDebug +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/BuildConfig.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/BuildConfig.dex +new file mode 100644 +index 0000000..a080b6a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/BuildConfig.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/action/common/MotionDefs.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/action/common/MotionDefs.dex +new file mode 100644 +index 0000000..b9377d2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/action/common/MotionDefs.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/action/common/MotionDir.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/action/common/MotionDir.dex +new file mode 100644 +index 0000000..e379996 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/action/common/MotionDir.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/actions/DetoxViewActions.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/actions/DetoxViewActions.dex +new file mode 100644 +index 0000000..4163237 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/actions/DetoxViewActions.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.dex +new file mode 100644 +index 0000000..8dd9795 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.dex +new file mode 100644 +index 0000000..01a1530 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.dex +new file mode 100644 +index 0000000..634bc4f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$StaleActionException.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$StaleActionException.dex +new file mode 100644 +index 0000000..030a17d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors$StaleActionException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors.dex +new file mode 100644 +index 0000000..bfd98ea +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxErrors.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxLog$Companion.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxLog$Companion.dex +new file mode 100644 +index 0000000..d2bbd66 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxLog$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxLog.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxLog.dex +new file mode 100644 +index 0000000..7e3b4f2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/DetoxLog.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/ErrorUtilsKt.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/ErrorUtilsKt.dex +new file mode 100644 +index 0000000..95e2d17 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/ErrorUtilsKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/JsonConverter.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/JsonConverter.dex +new file mode 100644 +index 0000000..bad7b8b +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/JsonConverter.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/TextFileReader.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/TextFileReader.dex +new file mode 100644 +index 0000000..f9f0af7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/TextFileReader.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/UIThread.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/UIThread.dex +new file mode 100644 +index 0000000..7dd1dbd +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/UIThread.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/collect/PairsIterator.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/collect/PairsIterator.dex +new file mode 100644 +index 0000000..651b03d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/collect/PairsIterator.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/CallInfo.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/CallInfo.dex +new file mode 100644 +index 0000000..b582169 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/CallInfo.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/MethodsSpy$Companion.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/MethodsSpy$Companion.dex +new file mode 100644 +index 0000000..023bc02 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/MethodsSpy$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/MethodsSpy.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/MethodsSpy.dex +new file mode 100644 +index 0000000..70ec98f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/MethodsSpy.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.dex +new file mode 100644 +index 0000000..2ae18cb +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler.dex +new file mode 100644 +index 0000000..421a471 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/common/proxy/SpyingInvocationHandler.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/DeviceDisplay.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/DeviceDisplay.dex +new file mode 100644 +index 0000000..916f402 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/DeviceDisplay.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/EventsInjectorReflected.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/EventsInjectorReflected.dex +new file mode 100644 +index 0000000..ea256ef +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/EventsInjectorReflected.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/MultipleViewsAction.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/MultipleViewsAction.dex +new file mode 100644 +index 0000000..c3e3ca1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/MultipleViewsAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/UiControllerSpy$Companion.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/UiControllerSpy$Companion.dex +new file mode 100644 +index 0000000..577b2fc +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/UiControllerSpy$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/UiControllerSpy.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/UiControllerSpy.dex +new file mode 100644 +index 0000000..acac5f4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/UiControllerSpy.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/ViewActionWithResult.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/ViewActionWithResult.dex +new file mode 100644 +index 0000000..fb6e901 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/ViewActionWithResult.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/DetoxCustomTapper.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/DetoxCustomTapper.dex +new file mode 100644 +index 0000000..5674220 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/DetoxCustomTapper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/DetoxSingleTap.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/DetoxSingleTap.dex +new file mode 100644 +index 0000000..ffbd72f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/DetoxSingleTap.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.dex +new file mode 100644 +index 0000000..8867e01 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/LongPressAndDragAction.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/LongPressAndDragAction.dex +new file mode 100644 +index 0000000..d2c5804 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/LongPressAndDragAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/LongPressAndDragActionKt.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/LongPressAndDragActionKt.dex +new file mode 100644 +index 0000000..08da97e +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/LongPressAndDragActionKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ScreenshotResult.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ScreenshotResult.dex +new file mode 100644 +index 0000000..8aed853 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ScreenshotResult.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ScrollToIndexAction.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ScrollToIndexAction.dex +new file mode 100644 +index 0000000..b8eaca0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ScrollToIndexAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ScrollToIndexActionKt.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ScrollToIndexActionKt.dex +new file mode 100644 +index 0000000..7e6254a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ScrollToIndexActionKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/TakeViewScreenshotAction.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/TakeViewScreenshotAction.dex +new file mode 100644 +index 0000000..709b814 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/TakeViewScreenshotAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ViewScreenshot.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ViewScreenshot.dex +new file mode 100644 +index 0000000..6fe459d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/ViewScreenshot.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.dex +new file mode 100644 +index 0000000..e7fab24 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurations.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurations.dex +new file mode 100644 +index 0000000..c705f63 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/DetoxViewConfigurations.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/MotionEvents.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/MotionEvents.dex +new file mode 100644 +index 0000000..1ee2d8f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/MotionEvents.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/MotionEventsKt.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/MotionEventsKt.dex +new file mode 100644 +index 0000000..68da366 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/MotionEventsKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/ReflectUtils.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/ReflectUtils.dex +new file mode 100644 +index 0000000..dfeeb17 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/ReflectUtils.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/TapEvents.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/TapEvents.dex +new file mode 100644 +index 0000000..31f1328 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/TapEvents.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/TapEventsKt.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/TapEventsKt.dex +new file mode 100644 +index 0000000..9257333 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/TapEventsKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/utils/UiControllerUtils.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/utils/UiControllerUtils.dex +new file mode 100644 +index 0000000..587a4ee +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/utils/UiControllerUtils.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.dex +new file mode 100644 +index 0000000..13e685a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.dex +new file mode 100644 +index 0000000..1481da8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/AbsListViewBack.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/AbsListViewBack.dex +new file mode 100644 +index 0000000..fd46e76 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/AbsListViewBack.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/AbsListViewForward.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/AbsListViewForward.dex +new file mode 100644 +index 0000000..0857bdd +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/AbsListViewForward.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/AbsScrollableProbe.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/AbsScrollableProbe.dex +new file mode 100644 +index 0000000..2bfe38f +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/AbsScrollableProbe.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollAction.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollAction.dex +new file mode 100644 +index 0000000..fe00733 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollAction.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionBase.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionBase.dex +new file mode 100644 +index 0000000..3b4193c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionBase.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.dex +new file mode 100644 +index 0000000..d9148e8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxSwipe.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxSwipe.dex +new file mode 100644 +index 0000000..8d1100d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxSwipe.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxSwiper.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxSwiper.dex +new file mode 100644 +index 0000000..b9575ad +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/DetoxSwiper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/LinearSwiper.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/LinearSwiper.dex +new file mode 100644 +index 0000000..b9adc52 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/LinearSwiper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/LinearSwiperKt.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/LinearSwiperKt.dex +new file mode 100644 +index 0000000..c8f5b98 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/LinearSwiperKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollEdgeException.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollEdgeException.dex +new file mode 100644 +index 0000000..0d9b04d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollEdgeException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollHelper.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollHelper.dex +new file mode 100644 +index 0000000..0280070 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollHelper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollProbes.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollProbes.dex +new file mode 100644 +index 0000000..19b1136 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollProbes.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbe.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbe.dex +new file mode 100644 +index 0000000..fedaf39 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbe.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHBack.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHBack.dex +new file mode 100644 +index 0000000..9fa758d +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHBack.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHForward.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHForward.dex +new file mode 100644 +index 0000000..603490a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeHForward.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVBack.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVBack.dex +new file mode 100644 +index 0000000..d90ee96 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVBack.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVForward.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVForward.dex +new file mode 100644 +index 0000000..080d4db +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/ScrollableProbeVForward.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.dex +new file mode 100644 +index 0000000..b03b51b +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion.dex +new file mode 100644 +index 0000000..ce9020e +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper.dex +new file mode 100644 +index 0000000..5cd8647 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelper.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelperKt.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelperKt.dex +new file mode 100644 +index 0000000..281bed1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/scroll/SwipeHelperKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/utils/Vector2D$Companion.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/utils/Vector2D$Companion.dex +new file mode 100644 +index 0000000..16456c7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/utils/Vector2D$Companion.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/utils/Vector2D.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/utils/Vector2D.dex +new file mode 100644 +index 0000000..b525cc7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/utils/Vector2D.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/utils/Vector2DKt.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/utils/Vector2DKt.dex +new file mode 100644 +index 0000000..f2eea2c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/com/wix/detox/espresso/utils/Vector2DKt.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/Reflect$1.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/Reflect$1.dex +new file mode 100644 +index 0000000..7c66f01 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/Reflect$1.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/Reflect$NULL.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/Reflect$NULL.dex +new file mode 100644 +index 0000000..d8ffe9a +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/Reflect$NULL.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/Reflect.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/Reflect.dex +new file mode 100644 +index 0000000..eefcf76 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/Reflect.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/ReflectException.dex b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/ReflectException.dex +new file mode 100644 +index 0000000..d973c5c +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug_dex/org/joor/ReflectException.dex differ +diff --git a/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/desugar_graph.bin b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/desugar_graph.bin +new file mode 100644 +index 0000000..d33e726 +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/a7bc6072c22d3bf7e6120c97f436ed19/transformed/bundleLibRuntimeToDirCoreNativeDebug/desugar_graph.bin differ +diff --git a/node_modules/detox/android/detox/build/.transforms/ff6b470bf056abb37b31c7625ee119ff/results.bin b/node_modules/detox/android/detox/build/.transforms/ff6b470bf056abb37b31c7625ee119ff/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/detox/android/detox/build/.transforms/ff6b470bf056abb37b31c7625ee119ff/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/detox/android/detox/build/.transforms/ff6b470bf056abb37b31c7625ee119ff/transformed/classes/classes_dex/classes.dex b/node_modules/detox/android/detox/build/.transforms/ff6b470bf056abb37b31c7625ee119ff/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..bf92aaf +Binary files /dev/null and b/node_modules/detox/android/detox/build/.transforms/ff6b470bf056abb37b31c7625ee119ff/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/generated/source/buildConfig/androidTest/coreNative/debug/com/wix/detox/test/BuildConfig.java b/node_modules/detox/android/detox/build/generated/source/buildConfig/androidTest/coreNative/debug/com/wix/detox/test/BuildConfig.java +new file mode 100644 +index 0000000..355d989 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/generated/source/buildConfig/androidTest/coreNative/debug/com/wix/detox/test/BuildConfig.java +@@ -0,0 +1,11 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.wix.detox.test; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String APPLICATION_ID = "com.wix.detox.test"; ++ public static final String BUILD_TYPE = "debug"; ++ public static final String FLAVOR = "coreNative"; ++} +diff --git a/node_modules/detox/android/detox/build/generated/source/buildConfig/androidTest/full/debug/com/wix/detox/test/BuildConfig.java b/node_modules/detox/android/detox/build/generated/source/buildConfig/androidTest/full/debug/com/wix/detox/test/BuildConfig.java +new file mode 100644 +index 0000000..5ffccb0 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/generated/source/buildConfig/androidTest/full/debug/com/wix/detox/test/BuildConfig.java +@@ -0,0 +1,11 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.wix.detox.test; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String APPLICATION_ID = "com.wix.detox.test"; ++ public static final String BUILD_TYPE = "debug"; ++ public static final String FLAVOR = "full"; ++} +diff --git a/node_modules/detox/android/detox/build/generated/source/buildConfig/coreNative/debug/com/wix/detox/BuildConfig.java b/node_modules/detox/android/detox/build/generated/source/buildConfig/coreNative/debug/com/wix/detox/BuildConfig.java +new file mode 100644 +index 0000000..56f3775 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/generated/source/buildConfig/coreNative/debug/com/wix/detox/BuildConfig.java +@@ -0,0 +1,11 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.wix.detox; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "com.wix.detox"; ++ public static final String BUILD_TYPE = "debug"; ++ public static final String FLAVOR = "coreNative"; ++} +diff --git a/node_modules/detox/android/detox/build/generated/source/buildConfig/full/debug/com/wix/detox/BuildConfig.java b/node_modules/detox/android/detox/build/generated/source/buildConfig/full/debug/com/wix/detox/BuildConfig.java +new file mode 100644 +index 0000000..a52c88e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/generated/source/buildConfig/full/debug/com/wix/detox/BuildConfig.java +@@ -0,0 +1,11 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.wix.detox; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "com.wix.detox"; ++ public static final String BUILD_TYPE = "debug"; ++ public static final String FLAVOR = "full"; ++} +diff --git a/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/coreNativeDebug/processCoreNativeDebugManifest/aapt/AndroidManifest.xml b/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/coreNativeDebug/processCoreNativeDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..17d372a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/coreNativeDebug/processCoreNativeDebugManifest/aapt/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/coreNativeDebug/processCoreNativeDebugManifest/aapt/output-metadata.json b/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/coreNativeDebug/processCoreNativeDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..fdc58e0 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/coreNativeDebug/processCoreNativeDebugManifest/aapt/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.wix.detox", ++ "variantName": "coreNativeDebug", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/fullDebug/processFullDebugManifest/aapt/AndroidManifest.xml b/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/fullDebug/processFullDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..17d372a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/fullDebug/processFullDebugManifest/aapt/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/fullDebug/processFullDebugManifest/aapt/output-metadata.json b/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/fullDebug/processFullDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..71eb105 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/aapt_friendly_merged_manifests/fullDebug/processFullDebugManifest/aapt/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.wix.detox", ++ "variantName": "fullDebug", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/aar_libs_directory/coreNativeDebug/syncCoreNativeDebugLibJars/libs/genymotion-api-1.2.0.jar b/node_modules/detox/android/detox/build/intermediates/aar_libs_directory/coreNativeDebug/syncCoreNativeDebugLibJars/libs/genymotion-api-1.2.0.jar +new file mode 100644 +index 0000000..c9a7727 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/aar_libs_directory/coreNativeDebug/syncCoreNativeDebugLibJars/libs/genymotion-api-1.2.0.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/aar_libs_directory/fullDebug/syncFullDebugLibJars/libs/genymotion-api-1.2.0.jar b/node_modules/detox/android/detox/build/intermediates/aar_libs_directory/fullDebug/syncFullDebugLibJars/libs/genymotion-api-1.2.0.jar +new file mode 100644 +index 0000000..c9a7727 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/aar_libs_directory/fullDebug/syncFullDebugLibJars/libs/genymotion-api-1.2.0.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/aar_main_jar/coreNativeDebug/syncCoreNativeDebugLibJars/classes.jar b/node_modules/detox/android/detox/build/intermediates/aar_main_jar/coreNativeDebug/syncCoreNativeDebugLibJars/classes.jar +new file mode 100644 +index 0000000..5ef9a1b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/aar_main_jar/coreNativeDebug/syncCoreNativeDebugLibJars/classes.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/aar_main_jar/fullDebug/syncFullDebugLibJars/classes.jar b/node_modules/detox/android/detox/build/intermediates/aar_main_jar/fullDebug/syncFullDebugLibJars/classes.jar +new file mode 100644 +index 0000000..795a7b0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/aar_main_jar/fullDebug/syncFullDebugLibJars/classes.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/aar_metadata/coreNativeDebug/writeCoreNativeDebugAarMetadata/aar-metadata.properties b/node_modules/detox/android/detox/build/intermediates/aar_metadata/coreNativeDebug/writeCoreNativeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/aar_metadata/coreNativeDebug/writeCoreNativeDebugAarMetadata/aar-metadata.properties +@@ -0,0 +1,6 @@ ++aarFormatVersion=1.0 ++aarMetadataVersion=1.0 ++minCompileSdk=1 ++minCompileSdkExtension=0 ++minAndroidGradlePluginVersion=1.0.0 ++coreLibraryDesugaringEnabled=false +diff --git a/node_modules/detox/android/detox/build/intermediates/aar_metadata/fullDebug/writeFullDebugAarMetadata/aar-metadata.properties b/node_modules/detox/android/detox/build/intermediates/aar_metadata/fullDebug/writeFullDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/aar_metadata/fullDebug/writeFullDebugAarMetadata/aar-metadata.properties +@@ -0,0 +1,6 @@ ++aarFormatVersion=1.0 ++aarMetadataVersion=1.0 ++minCompileSdk=1 ++minCompileSdkExtension=0 ++minAndroidGradlePluginVersion=1.0.0 ++coreLibraryDesugaringEnabled=false +diff --git a/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/coreNativeDebug/javaPreCompileCoreNativeDebug/annotationProcessors.json b/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/coreNativeDebug/javaPreCompileCoreNativeDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/coreNativeDebug/javaPreCompileCoreNativeDebug/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/coreNativeDebugAndroidTest/javaPreCompileCoreNativeDebugAndroidTest/annotationProcessors.json b/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/coreNativeDebugAndroidTest/javaPreCompileCoreNativeDebugAndroidTest/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/coreNativeDebugAndroidTest/javaPreCompileCoreNativeDebugAndroidTest/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/fullDebug/javaPreCompileFullDebug/annotationProcessors.json b/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/fullDebug/javaPreCompileFullDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/fullDebug/javaPreCompileFullDebug/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/fullDebugAndroidTest/javaPreCompileFullDebugAndroidTest/annotationProcessors.json b/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/fullDebugAndroidTest/javaPreCompileFullDebugAndroidTest/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/annotation_processor_list/fullDebugAndroidTest/javaPreCompileFullDebugAndroidTest/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/annotations_typedef_file/coreNativeDebug/extractCoreNativeDebugAnnotations/typedefs.txt b/node_modules/detox/android/detox/build/intermediates/annotations_typedef_file/coreNativeDebug/extractCoreNativeDebugAnnotations/typedefs.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/detox/android/detox/build/intermediates/annotations_typedef_file/fullDebug/extractFullDebugAnnotations/typedefs.txt b/node_modules/detox/android/detox/build/intermediates/annotations_typedef_file/fullDebug/extractFullDebugAnnotations/typedefs.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/detox/android/detox/build/intermediates/apk_ide_redirect_file/coreNativeDebugAndroidTest/createCoreNativeDebugAndroidTestApkListingFileRedirect/redirect.txt b/node_modules/detox/android/detox/build/intermediates/apk_ide_redirect_file/coreNativeDebugAndroidTest/createCoreNativeDebugAndroidTestApkListingFileRedirect/redirect.txt +new file mode 100644 +index 0000000..907a085 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/apk_ide_redirect_file/coreNativeDebugAndroidTest/createCoreNativeDebugAndroidTestApkListingFileRedirect/redirect.txt +@@ -0,0 +1,2 @@ ++#- File Locator - ++listingFile=../../../../outputs/apk/androidTest/coreNative/debug/output-metadata.json +diff --git a/node_modules/detox/android/detox/build/intermediates/apk_ide_redirect_file/fullDebugAndroidTest/createFullDebugAndroidTestApkListingFileRedirect/redirect.txt b/node_modules/detox/android/detox/build/intermediates/apk_ide_redirect_file/fullDebugAndroidTest/createFullDebugAndroidTestApkListingFileRedirect/redirect.txt +new file mode 100644 +index 0000000..81d2ba4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/apk_ide_redirect_file/fullDebugAndroidTest/createFullDebugAndroidTestApkListingFileRedirect/redirect.txt +@@ -0,0 +1,2 @@ ++#- File Locator - ++listingFile=../../../../outputs/apk/androidTest/full/debug/output-metadata.json +diff --git a/node_modules/detox/android/detox/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/R.jar b/node_modules/detox/android/detox/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/R.jar +new file mode 100644 +index 0000000..17a7093 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/R.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/fullDebugAndroidTest/processFullDebugAndroidTestResources/R.jar b/node_modules/detox/android/detox/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/fullDebugAndroidTest/processFullDebugAndroidTestResources/R.jar +new file mode 100644 +index 0000000..17a7093 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/fullDebugAndroidTest/processFullDebugAndroidTestResources/R.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/compile_library_classes_jar/coreNativeDebug/bundleLibCompileToJarCoreNativeDebug/classes.jar b/node_modules/detox/android/detox/build/intermediates/compile_library_classes_jar/coreNativeDebug/bundleLibCompileToJarCoreNativeDebug/classes.jar +new file mode 100644 +index 0000000..ef389fe +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/compile_library_classes_jar/coreNativeDebug/bundleLibCompileToJarCoreNativeDebug/classes.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/compile_library_classes_jar/fullDebug/bundleLibCompileToJarFullDebug/classes.jar b/node_modules/detox/android/detox/build/intermediates/compile_library_classes_jar/fullDebug/bundleLibCompileToJarFullDebug/classes.jar +new file mode 100644 +index 0000000..6e34f58 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/compile_library_classes_jar/fullDebug/bundleLibCompileToJarFullDebug/classes.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/compile_r_class_jar/coreNativeDebug/generateCoreNativeDebugRFile/R.jar b/node_modules/detox/android/detox/build/intermediates/compile_r_class_jar/coreNativeDebug/generateCoreNativeDebugRFile/R.jar +new file mode 100644 +index 0000000..e259bec +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/compile_r_class_jar/coreNativeDebug/generateCoreNativeDebugRFile/R.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/compile_r_class_jar/fullDebug/generateFullDebugRFile/R.jar b/node_modules/detox/android/detox/build/intermediates/compile_r_class_jar/fullDebug/generateFullDebugRFile/R.jar +new file mode 100644 +index 0000000..e259bec +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/compile_r_class_jar/fullDebug/generateFullDebugRFile/R.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/compile_symbol_list/coreNativeDebug/generateCoreNativeDebugRFile/R.txt b/node_modules/detox/android/detox/build/intermediates/compile_symbol_list/coreNativeDebug/generateCoreNativeDebugRFile/R.txt +new file mode 100644 +index 0000000..a9551e5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/compile_symbol_list/coreNativeDebug/generateCoreNativeDebugRFile/R.txt +@@ -0,0 +1 @@ ++int string app_name 0x0 +diff --git a/node_modules/detox/android/detox/build/intermediates/compile_symbol_list/fullDebug/generateFullDebugRFile/R.txt b/node_modules/detox/android/detox/build/intermediates/compile_symbol_list/fullDebug/generateFullDebugRFile/R.txt +new file mode 100644 +index 0000000..a9551e5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/compile_symbol_list/fullDebug/generateFullDebugRFile/R.txt +@@ -0,0 +1 @@ ++int string app_name 0x0 +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_0/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_0/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_0/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_1/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_1/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_1/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_2/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_2/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_2/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_3/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_3/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/currentProject/jar_7121399a55da79447a5a48001154a6783f009ab5451aeb140bebae0cc5706c96_bucket_3/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_0/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_0/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_0/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_1/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_1/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_1/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_2/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_2/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_2/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_3/graph.bin b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_3/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/desugar_graph/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/currentProject/jar_56c1a663d6ccd2d57bd12dac61e0766c1b8204cd25163eca98a223e60de8751f_bucket_3/graph.bin differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeExtDexCoreNativeDebugAndroidTest/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeExtDexCoreNativeDebugAndroidTest/classes.dex +new file mode 100644 +index 0000000..5327614 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeExtDexCoreNativeDebugAndroidTest/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeExtDexCoreNativeDebugAndroidTest/classes2.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeExtDexCoreNativeDebugAndroidTest/classes2.dex +new file mode 100644 +index 0000000..b21c7c6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeExtDexCoreNativeDebugAndroidTest/classes2.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/1/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/1/classes.dex +new file mode 100644 +index 0000000..8a7687b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/1/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/11/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/11/classes.dex +new file mode 100644 +index 0000000..06866a9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/11/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/12/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/12/classes.dex +new file mode 100644 +index 0000000..9cfb3e1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/12/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/13/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/13/classes.dex +new file mode 100644 +index 0000000..19469e9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/13/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/14/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/14/classes.dex +new file mode 100644 +index 0000000..27ed6ff +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/14/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/4/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/4/classes.dex +new file mode 100644 +index 0000000..2ada0fc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/4/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/6/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/6/classes.dex +new file mode 100644 +index 0000000..9deb45f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/6/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/7/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/7/classes.dex +new file mode 100644 +index 0000000..6445804 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/7/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/8/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/8/classes.dex +new file mode 100644 +index 0000000..ce59f4d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/8/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeProjectDexCoreNativeDebugAndroidTest/0/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeProjectDexCoreNativeDebugAndroidTest/0/classes.dex +new file mode 100644 +index 0000000..34ba160 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeProjectDexCoreNativeDebugAndroidTest/0/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeProjectDexCoreNativeDebugAndroidTest/9/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeProjectDexCoreNativeDebugAndroidTest/9/classes.dex +new file mode 100644 +index 0000000..0bba1ff +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeProjectDexCoreNativeDebugAndroidTest/9/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeExtDexFullDebugAndroidTest/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeExtDexFullDebugAndroidTest/classes.dex +new file mode 100644 +index 0000000..5327614 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeExtDexFullDebugAndroidTest/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeExtDexFullDebugAndroidTest/classes2.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeExtDexFullDebugAndroidTest/classes2.dex +new file mode 100644 +index 0000000..b21c7c6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeExtDexFullDebugAndroidTest/classes2.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/1/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/1/classes.dex +new file mode 100644 +index 0000000..bd83ae9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/1/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/10/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/10/classes.dex +new file mode 100644 +index 0000000..3ec2f93 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/10/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/11/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/11/classes.dex +new file mode 100644 +index 0000000..2ebbfcd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/11/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/12/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/12/classes.dex +new file mode 100644 +index 0000000..f4caec9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/12/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/13/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/13/classes.dex +new file mode 100644 +index 0000000..30c6989 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/13/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/14/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/14/classes.dex +new file mode 100644 +index 0000000..ea17657 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/14/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/15/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/15/classes.dex +new file mode 100644 +index 0000000..b87acb8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/15/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/2/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/2/classes.dex +new file mode 100644 +index 0000000..ce7cdfc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/2/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/3/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/3/classes.dex +new file mode 100644 +index 0000000..7681e5d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/3/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/4/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/4/classes.dex +new file mode 100644 +index 0000000..c8a1a03 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/4/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/5/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/5/classes.dex +new file mode 100644 +index 0000000..1ae3fce +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/5/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/6/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/6/classes.dex +new file mode 100644 +index 0000000..8709855 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/6/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/7/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/7/classes.dex +new file mode 100644 +index 0000000..0e66649 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/7/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/8/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/8/classes.dex +new file mode 100644 +index 0000000..dfc7fcd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/8/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/9/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/9/classes.dex +new file mode 100644 +index 0000000..2dc6020 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/9/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeProjectDexFullDebugAndroidTest/0/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeProjectDexFullDebugAndroidTest/0/classes.dex +new file mode 100644 +index 0000000..34ba160 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeProjectDexFullDebugAndroidTest/0/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeProjectDexFullDebugAndroidTest/9/classes.dex b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeProjectDexFullDebugAndroidTest/9/classes.dex +new file mode 100644 +index 0000000..05578b5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeProjectDexFullDebugAndroidTest/9/classes.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex_archive_input_jar_hashes/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out b/node_modules/detox/android/detox/build/intermediates/dex_archive_input_jar_hashes/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out +new file mode 100644 +index 0000000..4f2f725 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex_archive_input_jar_hashes/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex_archive_input_jar_hashes/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out b/node_modules/detox/android/detox/build/intermediates/dex_archive_input_jar_hashes/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out +new file mode 100644 +index 0000000..d237752 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/dex_archive_input_jar_hashes/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out differ +diff --git a/node_modules/detox/android/detox/build/intermediates/dex_number_of_buckets_file/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out b/node_modules/detox/android/detox/build/intermediates/dex_number_of_buckets_file/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out +new file mode 100644 +index 0000000..bf0d87a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/dex_number_of_buckets_file/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out +@@ -0,0 +1 @@ ++4 +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/dex_number_of_buckets_file/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out b/node_modules/detox/android/detox/build/intermediates/dex_number_of_buckets_file/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out +new file mode 100644 +index 0000000..bf0d87a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/dex_number_of_buckets_file/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out +@@ -0,0 +1 @@ ++4 +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/external_file_lib_dex_archives/coreNativeDebugAndroidTest/desugarCoreNativeDebugAndroidTestFileDependencies/0_genymotion-api-1.2.0.jar b/node_modules/detox/android/detox/build/intermediates/external_file_lib_dex_archives/coreNativeDebugAndroidTest/desugarCoreNativeDebugAndroidTestFileDependencies/0_genymotion-api-1.2.0.jar +new file mode 100644 +index 0000000..9891dba +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/external_file_lib_dex_archives/coreNativeDebugAndroidTest/desugarCoreNativeDebugAndroidTestFileDependencies/0_genymotion-api-1.2.0.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/external_file_lib_dex_archives/fullDebugAndroidTest/desugarFullDebugAndroidTestFileDependencies/0_genymotion-api-1.2.0.jar b/node_modules/detox/android/detox/build/intermediates/external_file_lib_dex_archives/fullDebugAndroidTest/desugarFullDebugAndroidTestFileDependencies/0_genymotion-api-1.2.0.jar +new file mode 100644 +index 0000000..9891dba +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/external_file_lib_dex_archives/fullDebugAndroidTest/desugarFullDebugAndroidTestFileDependencies/0_genymotion-api-1.2.0.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/full_jar/fullDebug/createFullJarFullDebug/full.jar b/node_modules/detox/android/detox/build/intermediates/full_jar/fullDebug/createFullJarFullDebug/full.jar +new file mode 100644 +index 0000000..7628940 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/full_jar/fullDebug/createFullJarFullDebug/full.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug-mergeJavaRes/merge-state b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..f3d456b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug-mergeJavaRes/merge-state differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= +new file mode 100644 +index 0000000..8127586 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug/packageCoreNativeDebugResources/compile-file-map.properties b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug/packageCoreNativeDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..45e1e39 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug/packageCoreNativeDebugResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Mon Dec 30 10:58:32 ECT 2024 +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug/packageCoreNativeDebugResources/merged.dir/values/values.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug/packageCoreNativeDebugResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..26205e7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug/packageCoreNativeDebugResources/merged.dir/values/values.xml +@@ -0,0 +1,4 @@ ++ ++ ++ Detox ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug/packageCoreNativeDebugResources/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug/packageCoreNativeDebugResources/merger.xml +new file mode 100644 +index 0000000..a7fefc1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebug/packageCoreNativeDebugResources/merger.xml +@@ -0,0 +1,2 @@ ++ ++Detox +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/merge-state b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..d851bf7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/merge-state differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/1HSt2boQZWP7qRtFpCz4GUQ3w0I= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/1HSt2boQZWP7qRtFpCz4GUQ3w0I= +new file mode 100644 +index 0000000..45832c0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/1HSt2boQZWP7qRtFpCz4GUQ3w0I= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/1f8ScNJ9BSUS6Y7Hb5EDuyN2+w4= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/1f8ScNJ9BSUS6Y7Hb5EDuyN2+w4= +new file mode 100644 +index 0000000..5c88b2b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/1f8ScNJ9BSUS6Y7Hb5EDuyN2+w4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/22pErq2oIPMkNC4XoqzNJ2ykn94= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/22pErq2oIPMkNC4XoqzNJ2ykn94= +new file mode 100644 +index 0000000..ab6eb53 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/22pErq2oIPMkNC4XoqzNJ2ykn94= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/29RmC_LqMtZHFjRoycYOvGv2Uik= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/29RmC_LqMtZHFjRoycYOvGv2Uik= +new file mode 100644 +index 0000000..c0c8d91 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/29RmC_LqMtZHFjRoycYOvGv2Uik= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/4cF+Ol1By1DyJKpF3XGxG8O1hDo= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/4cF+Ol1By1DyJKpF3XGxG8O1hDo= +new file mode 100644 +index 0000000..9c40c2b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/4cF+Ol1By1DyJKpF3XGxG8O1hDo= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/5Krh+pDJNfrZXByI9Q6S9Ic0zhQ= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/5Krh+pDJNfrZXByI9Q6S9Ic0zhQ= +new file mode 100644 +index 0000000..88f5191 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/5Krh+pDJNfrZXByI9Q6S9Ic0zhQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/5ybulip5sUV8DXjgKGLaowAwNdQ= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/5ybulip5sUV8DXjgKGLaowAwNdQ= +new file mode 100644 +index 0000000..1fddee3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/5ybulip5sUV8DXjgKGLaowAwNdQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/64wIDKAn7tvafGXFgiMgivS6qCw= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/64wIDKAn7tvafGXFgiMgivS6qCw= +new file mode 100644 +index 0000000..d0a17a9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/64wIDKAn7tvafGXFgiMgivS6qCw= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/6NuJJ1SFsTm6SAjtNAm06M1tOPI= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/6NuJJ1SFsTm6SAjtNAm06M1tOPI= +new file mode 100644 +index 0000000..ca89f7e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/6NuJJ1SFsTm6SAjtNAm06M1tOPI= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/6qmfJIurq+BPmVpH8bHMkb7AMXw= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/6qmfJIurq+BPmVpH8bHMkb7AMXw= +new file mode 100644 +index 0000000..e072fe0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/6qmfJIurq+BPmVpH8bHMkb7AMXw= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/7XL3oswP_iKDN+Ocgha6JFLnl6Q= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/7XL3oswP_iKDN+Ocgha6JFLnl6Q= +new file mode 100644 +index 0000000..40f58a5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/7XL3oswP_iKDN+Ocgha6JFLnl6Q= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/86kJ4rPP5p6O_nbybtvp+6Gpbr4= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/86kJ4rPP5p6O_nbybtvp+6Gpbr4= +new file mode 100644 +index 0000000..846dea1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/86kJ4rPP5p6O_nbybtvp+6Gpbr4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/8mWK65+aDS7bhTPwW8oc252gQdM= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/8mWK65+aDS7bhTPwW8oc252gQdM= +new file mode 100644 +index 0000000..1d3d1fa +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/8mWK65+aDS7bhTPwW8oc252gQdM= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/9Y1L+cKYiA3NUb6OXeVPsVzIdN4= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/9Y1L+cKYiA3NUb6OXeVPsVzIdN4= +new file mode 100644 +index 0000000..761fe3b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/9Y1L+cKYiA3NUb6OXeVPsVzIdN4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/9obJAk1KrXCQ61TIEBDWThfQJrg= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/9obJAk1KrXCQ61TIEBDWThfQJrg= +new file mode 100644 +index 0000000..4e019f2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/9obJAk1KrXCQ61TIEBDWThfQJrg= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ArOVrFvhXRMWTAu4PzfzwMynBlM= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ArOVrFvhXRMWTAu4PzfzwMynBlM= +new file mode 100644 +index 0000000..f37ded6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ArOVrFvhXRMWTAu4PzfzwMynBlM= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/CXXVe8H+JrNL_rOF1tgZgs5QGaM= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/CXXVe8H+JrNL_rOF1tgZgs5QGaM= +new file mode 100644 +index 0000000..db85be6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/CXXVe8H+JrNL_rOF1tgZgs5QGaM= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/CkGxYF2NcO+zw1uucNDzz8i863o= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/CkGxYF2NcO+zw1uucNDzz8i863o= +new file mode 100644 +index 0000000..5a560d1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/CkGxYF2NcO+zw1uucNDzz8i863o= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/DA61+rG3FZ6QxIl52Ult27xnwXQ= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/DA61+rG3FZ6QxIl52Ult27xnwXQ= +new file mode 100644 +index 0000000..4c9f52f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/DA61+rG3FZ6QxIl52Ult27xnwXQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/DpNsTAMqDlG9CQcksOuW5ODNz9M= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/DpNsTAMqDlG9CQcksOuW5ODNz9M= +new file mode 100644 +index 0000000..ba19014 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/DpNsTAMqDlG9CQcksOuW5ODNz9M= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/FDGUA2mlzc4FxvyYkgKDVYAgqLk= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/FDGUA2mlzc4FxvyYkgKDVYAgqLk= +new file mode 100644 +index 0000000..5dd6acd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/FDGUA2mlzc4FxvyYkgKDVYAgqLk= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/GZAR98GODBag68d77IsnlJjArT4= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/GZAR98GODBag68d77IsnlJjArT4= +new file mode 100644 +index 0000000..0e13323 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/GZAR98GODBag68d77IsnlJjArT4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/HTpZ4AmQ7Ca_esXrex3AqtCtxrY= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/HTpZ4AmQ7Ca_esXrex3AqtCtxrY= +new file mode 100644 +index 0000000..3068f1d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/HTpZ4AmQ7Ca_esXrex3AqtCtxrY= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/IUdNxIgYoNRp874MjQGV_jfjees= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/IUdNxIgYoNRp874MjQGV_jfjees= +new file mode 100644 +index 0000000..5119f5e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/IUdNxIgYoNRp874MjQGV_jfjees= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/IZ_Hrwi4JUc0JTARfn4b+yzJ6cA= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/IZ_Hrwi4JUc0JTARfn4b+yzJ6cA= +new file mode 100644 +index 0000000..a671f24 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/IZ_Hrwi4JUc0JTARfn4b+yzJ6cA= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/J7H0fYw7pWoz2UD9Dc3hDZYztbQ= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/J7H0fYw7pWoz2UD9Dc3hDZYztbQ= +new file mode 100644 +index 0000000..3a75d0d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/J7H0fYw7pWoz2UD9Dc3hDZYztbQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/JOkTkFJwzbOTNqf2IILX2+e6Dco= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/JOkTkFJwzbOTNqf2IILX2+e6Dco= +new file mode 100644 +index 0000000..3102808 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/JOkTkFJwzbOTNqf2IILX2+e6Dco= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Kru3OB4xw8cAukaw9RuBmC60XLA= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Kru3OB4xw8cAukaw9RuBmC60XLA= +new file mode 100644 +index 0000000..833b095 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Kru3OB4xw8cAukaw9RuBmC60XLA= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/LeiJ06k6HNgMRWA3RV8k8Gvu87w= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/LeiJ06k6HNgMRWA3RV8k8Gvu87w= +new file mode 100644 +index 0000000..b2a9d0b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/LeiJ06k6HNgMRWA3RV8k8Gvu87w= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/MXv_xwyEOuU7u8KDYiEertKQUuc= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/MXv_xwyEOuU7u8KDYiEertKQUuc= +new file mode 100644 +index 0000000..a307055 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/MXv_xwyEOuU7u8KDYiEertKQUuc= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/N68ABLfvHFnymTnveiRtKSN0WHY= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/N68ABLfvHFnymTnveiRtKSN0WHY= +new file mode 100644 +index 0000000..59222d9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/N68ABLfvHFnymTnveiRtKSN0WHY= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/NVOP4sfqhMBHFzI31cal4fYxXeQ= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/NVOP4sfqhMBHFzI31cal4fYxXeQ= +new file mode 100644 +index 0000000..9b56dc7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/NVOP4sfqhMBHFzI31cal4fYxXeQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/OMnl3_LydOfgKckWf24AaS6y2W0= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/OMnl3_LydOfgKckWf24AaS6y2W0= +new file mode 100644 +index 0000000..8568b5b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/OMnl3_LydOfgKckWf24AaS6y2W0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/O_xVdxtnQA8TU450NOLW1g5czNU= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/O_xVdxtnQA8TU450NOLW1g5czNU= +new file mode 100644 +index 0000000..c3eef53 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/O_xVdxtnQA8TU450NOLW1g5czNU= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/OhtStPYj9KLzaC1_WcwGzVo9PGk= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/OhtStPYj9KLzaC1_WcwGzVo9PGk= +new file mode 100644 +index 0000000..7106578 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/OhtStPYj9KLzaC1_WcwGzVo9PGk= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Q6n31_x6hDnOcb5G6jo_o3lKHl0= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Q6n31_x6hDnOcb5G6jo_o3lKHl0= +new file mode 100644 +index 0000000..d8ca88a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Q6n31_x6hDnOcb5G6jo_o3lKHl0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/RdCJXGcqiuGL4T23Tp3F5qOCUb0= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/RdCJXGcqiuGL4T23Tp3F5qOCUb0= +new file mode 100644 +index 0000000..4faab6e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/RdCJXGcqiuGL4T23Tp3F5qOCUb0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/STX80guMsMJZZXcMA5_kHNtH4_Y= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/STX80guMsMJZZXcMA5_kHNtH4_Y= +new file mode 100644 +index 0000000..44a52c1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/STX80guMsMJZZXcMA5_kHNtH4_Y= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/T3HAN5HLcPIMb78v7u2M7kOK2sY= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/T3HAN5HLcPIMb78v7u2M7kOK2sY= +new file mode 100644 +index 0000000..5f06440 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/T3HAN5HLcPIMb78v7u2M7kOK2sY= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Taha30SU3Zik25r2a3kMOXlvfLU= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Taha30SU3Zik25r2a3kMOXlvfLU= +new file mode 100644 +index 0000000..427f69c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Taha30SU3Zik25r2a3kMOXlvfLU= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/U1SpRrQ4lQNlJkyV7t+FBZOoLNQ= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/U1SpRrQ4lQNlJkyV7t+FBZOoLNQ= +new file mode 100644 +index 0000000..c6661be +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/U1SpRrQ4lQNlJkyV7t+FBZOoLNQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/UTmKreuK4yqsGxCcBSyRqt3gO1M= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/UTmKreuK4yqsGxCcBSyRqt3gO1M= +new file mode 100644 +index 0000000..10a70d6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/UTmKreuK4yqsGxCcBSyRqt3gO1M= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/XNksAy9G6EGWHwS+Fe5yIVdNoDo= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/XNksAy9G6EGWHwS+Fe5yIVdNoDo= +new file mode 100644 +index 0000000..2510a5a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/XNksAy9G6EGWHwS+Fe5yIVdNoDo= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/XQUyglgccQ4abZQwDKGdy7gIwZs= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/XQUyglgccQ4abZQwDKGdy7gIwZs= +new file mode 100644 +index 0000000..cb1e8e1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/XQUyglgccQ4abZQwDKGdy7gIwZs= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Xv9lNRfUBcAh3KCC+3Lgz7buXjo= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Xv9lNRfUBcAh3KCC+3Lgz7buXjo= +new file mode 100644 +index 0000000..18c0219 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Xv9lNRfUBcAh3KCC+3Lgz7buXjo= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= +new file mode 100644 +index 0000000..8127586 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ZOXdnOSkbPRg5cQZgeL_GkEpFgk= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ZOXdnOSkbPRg5cQZgeL_GkEpFgk= +new file mode 100644 +index 0000000..8fd6cd4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ZOXdnOSkbPRg5cQZgeL_GkEpFgk= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ZoXLyhVV5e4haUX33EoBnTfgHP4= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ZoXLyhVV5e4haUX33EoBnTfgHP4= +new file mode 100644 +index 0000000..2e07982 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ZoXLyhVV5e4haUX33EoBnTfgHP4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/aVYO+bANX9gpliKqd8DC8MyryHs= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/aVYO+bANX9gpliKqd8DC8MyryHs= +new file mode 100644 +index 0000000..9ea8885 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/aVYO+bANX9gpliKqd8DC8MyryHs= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/a_rfYgFjDzTFMOQoZ08OEmf+jYk= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/a_rfYgFjDzTFMOQoZ08OEmf+jYk= +new file mode 100644 +index 0000000..05b7d8a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/a_rfYgFjDzTFMOQoZ08OEmf+jYk= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/bVk5jqaTm8lfb9HZThJjvMNU8Mw= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/bVk5jqaTm8lfb9HZThJjvMNU8Mw= +new file mode 100644 +index 0000000..6da55d8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/bVk5jqaTm8lfb9HZThJjvMNU8Mw= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/b_8uIek4gvLvDZaOYzjbVPH7B1E= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/b_8uIek4gvLvDZaOYzjbVPH7B1E= +new file mode 100644 +index 0000000..160357a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/b_8uIek4gvLvDZaOYzjbVPH7B1E= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ddl4Hr+s3kb4MFukZ9mmlkkR40o= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ddl4Hr+s3kb4MFukZ9mmlkkR40o= +new file mode 100644 +index 0000000..a429c72 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ddl4Hr+s3kb4MFukZ9mmlkkR40o= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/dl2oCRYA+iV+5SeQTS09IjkjnhA= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/dl2oCRYA+iV+5SeQTS09IjkjnhA= +new file mode 100644 +index 0000000..1ffce77 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/dl2oCRYA+iV+5SeQTS09IjkjnhA= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/f0J6sgOPUlFAkVg7A77HNtFZpjU= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/f0J6sgOPUlFAkVg7A77HNtFZpjU= +new file mode 100644 +index 0000000..96ce2e5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/f0J6sgOPUlFAkVg7A77HNtFZpjU= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/gN_tIrpZsiMs67_qh7EME+owLRE= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/gN_tIrpZsiMs67_qh7EME+owLRE= +new file mode 100644 +index 0000000..7353cf3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/gN_tIrpZsiMs67_qh7EME+owLRE= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/hUGsySqLUUmUrP2a6iom5FJZtzs= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/hUGsySqLUUmUrP2a6iom5FJZtzs= +new file mode 100644 +index 0000000..c5f4844 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/hUGsySqLUUmUrP2a6iom5FJZtzs= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/izfySEZY840+R4v0s+9HCSOsEH4= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/izfySEZY840+R4v0s+9HCSOsEH4= +new file mode 100644 +index 0000000..c0b07b4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/izfySEZY840+R4v0s+9HCSOsEH4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/kltBMuXBzoFku4Xr6iU6lItULXE= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/kltBMuXBzoFku4Xr6iU6lItULXE= +new file mode 100644 +index 0000000..e36377d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/kltBMuXBzoFku4Xr6iU6lItULXE= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/l205KGjvw5klIVrpHhytegeQ5Ao= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/l205KGjvw5klIVrpHhytegeQ5Ao= +new file mode 100644 +index 0000000..c68ea7a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/l205KGjvw5klIVrpHhytegeQ5Ao= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/lZtm+fgOHm1AzY3+EGT3jC6CULc= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/lZtm+fgOHm1AzY3+EGT3jC6CULc= +new file mode 100644 +index 0000000..08bcfa0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/lZtm+fgOHm1AzY3+EGT3jC6CULc= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/mNYTN1tqFOm9fRhp9hoUrm0DrUE= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/mNYTN1tqFOm9fRhp9hoUrm0DrUE= +new file mode 100644 +index 0000000..dc7b90e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/mNYTN1tqFOm9fRhp9hoUrm0DrUE= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/meByqPHkxu0GFcr6BNr+TGAHb_E= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/meByqPHkxu0GFcr6BNr+TGAHb_E= +new file mode 100644 +index 0000000..e0de390 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/meByqPHkxu0GFcr6BNr+TGAHb_E= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/mhBcA4DvazelXLmqw299eMD4uj4= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/mhBcA4DvazelXLmqw299eMD4uj4= +new file mode 100644 +index 0000000..de755d1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/mhBcA4DvazelXLmqw299eMD4uj4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/noUPqtl6VOi+N4T_+UkhbX6xU2A= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/noUPqtl6VOi+N4T_+UkhbX6xU2A= +new file mode 100644 +index 0000000..6888d08 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/noUPqtl6VOi+N4T_+UkhbX6xU2A= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/o2qlTprU+TDbnT+F64wu_DOke8I= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/o2qlTprU+TDbnT+F64wu_DOke8I= +new file mode 100644 +index 0000000..8812bd5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/o2qlTprU+TDbnT+F64wu_DOke8I= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/qC7vl9riqC8aWuIUDAYsvU2hPuY= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/qC7vl9riqC8aWuIUDAYsvU2hPuY= +new file mode 100644 +index 0000000..e7d9117 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/qC7vl9riqC8aWuIUDAYsvU2hPuY= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/qHon7YrsugonT_536lhv8TfDnYg= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/qHon7YrsugonT_536lhv8TfDnYg= +new file mode 100644 +index 0000000..22bdb4e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/qHon7YrsugonT_536lhv8TfDnYg= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/rdTpWYmyXu6YvUMwxdo3l6Ph_xA= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/rdTpWYmyXu6YvUMwxdo3l6Ph_xA= +new file mode 100644 +index 0000000..6ccda32 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/rdTpWYmyXu6YvUMwxdo3l6Ph_xA= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/s_WwRVNnSCedG0g9211Igwesa6Y= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/s_WwRVNnSCedG0g9211Igwesa6Y= +new file mode 100644 +index 0000000..073879c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/s_WwRVNnSCedG0g9211Igwesa6Y= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ta6O8GcfggpIfCWRY0mZfVlCsUA= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ta6O8GcfggpIfCWRY0mZfVlCsUA= +new file mode 100644 +index 0000000..ed4cf5a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/ta6O8GcfggpIfCWRY0mZfVlCsUA= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/uH4QncnOLl+rGmAFffdbB4rEqn4= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/uH4QncnOLl+rGmAFffdbB4rEqn4= +new file mode 100644 +index 0000000..bbdea02 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/uH4QncnOLl+rGmAFffdbB4rEqn4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/vQDRBjnHAZk_hPtl8vWuTI6fNR0= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/vQDRBjnHAZk_hPtl8vWuTI6fNR0= +new file mode 100644 +index 0000000..15cd1e7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/vQDRBjnHAZk_hPtl8vWuTI6fNR0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/voWmeubQNUmaYJtgcB1bryBuF8U= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/voWmeubQNUmaYJtgcB1bryBuF8U= +new file mode 100644 +index 0000000..948a15f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/voWmeubQNUmaYJtgcB1bryBuF8U= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/vvDykwQcxe0h9HlbER_notzv80A= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/vvDykwQcxe0h9HlbER_notzv80A= +new file mode 100644 +index 0000000..dd51769 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/vvDykwQcxe0h9HlbER_notzv80A= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/wo53YIcl9bOFZyBurTbdHMPhTOw= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/wo53YIcl9bOFZyBurTbdHMPhTOw= +new file mode 100644 +index 0000000..2cec677 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/wo53YIcl9bOFZyBurTbdHMPhTOw= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/wqEFUmHmtFKg1ivKY0qy9sGVL9M= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/wqEFUmHmtFKg1ivKY0qy9sGVL9M= +new file mode 100644 +index 0000000..3f38e22 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/wqEFUmHmtFKg1ivKY0qy9sGVL9M= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/zTr2aNe+bXC_QAOe+_Lfw_mnxd4= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/zTr2aNe+bXC_QAOe+_Lfw_mnxd4= +new file mode 100644 +index 0000000..9cade31 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/zTr2aNe+bXC_QAOe+_Lfw_mnxd4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/zwm2a+swh0ABwf4jmqctBFujE9k= b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/zwm2a+swh0ABwf4jmqctBFujE9k= +new file mode 100644 +index 0000000..2751601 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest-mergeJavaRes/zip-cache/zwm2a+swh0ABwf4jmqctBFujE9k= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/compile-file-map.properties b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/compile-file-map.properties +new file mode 100644 +index 0000000..5f4829b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Mon Dec 30 11:00:13 ECT 2024 +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-af/values-af.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-af/values-af.xml +new file mode 100644 +index 0000000..9f5ba7a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-af/values-af.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d nuwe kennisgewing ++ %d nuwe kennisgewings ++ ++ "Gaan na tuisskerm" ++ "Gaan op" ++ "Nog opsies" ++ "Klaar" ++ "Sien alles" ++ "Kies \'n program" ++ "AF" ++ "AAN" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Funksie+" ++ "Meta+" ++ "Shift+" ++ "spasiebalk" ++ "Simbool+" ++ "Kieslys+" ++ "Soek …" ++ "Vee navraag uit" ++ "Soektognavraag" ++ "Soek" ++ "Dien navraag in" ++ "Stemsoektog" ++ "Deel met" ++ "Deel met %s" ++ "Vou in" ++ Vou halfpad uit ++ Karakters ingevoer: %1$d van %2$d ++ Karakterlimiet oorskry %1$d van %2$d ++ Vee teks uit ++ Fout ++ Wys aftrekkieslys ++ Dialoogikoon ++ Oortjie ++ Kies vm. of nm. ++ Kies uur ++ %1$s-uur ++ Kies minute ++ %1$s minute ++ VM. ++ Skakel oor na horlosiemodus vir die tydinvoer. ++ Uur ++ Minuut ++ NM. ++ Kies tyd ++ Skakel oor na teksmodus vir die tydinvoer. ++ Nuwe kennisgewing ++ Verwyder %1$s ++ Meer as %1$d nuwe kennisgewings ++ Verander na volgende maand ++ Verander na vorige maand ++ Huidige keuse: %1$s ++ @android:string/ok ++ %1$s ++ Kies datum ++ Gekose datum ++ Kolom van dae: %1$s ++ Ongeldige formaat. ++ Voorbeeld: %1$s ++ Gebruik: %1$s ++ Ongeldige reeks. ++ Gaan na jaar %1$s ++ Buite reeks: %1$s ++ Begindatum – %1$s ++ %1$s – Einddatum ++ %1$s-%2$s ++ Kies datumreeks ++ Begindatum – Einddatum ++ Stoor ++ Datum ++ Einddatum ++ Begindatum ++ d ++ m ++ j ++ Skakel oor na kalenderinvoermodus ++ Tik om oor te skakel na die kies van \'n dag ++ Skakel oor na teksinvoermodus ++ Tik om oor te skakel na die kies van \'n jaar ++ Wys wagwoord ++ "Soek" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-am/values-am.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-am/values-am.xml +new file mode 100644 +index 0000000..2ad537c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-am/values-am.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d አዲስ ማሳወቂያዎች ++ %d አዲስ ማሳወቂያዎች ++ ++ "መነሻ ዳስስ" ++ "ወደ ላይ ያስሱ" ++ "ተጨማሪ አማራጮች" ++ "ተከናውኗል" ++ "ሁሉንም ይመልከቱ" ++ "አንድ መተግበሪያ ይምረጡ" ++ "አጥፋ" ++ "አብራ" ++ "Alt+" ++ "Ctrl+" ++ "ሰርዝ" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "ክፍተት" ++ "Sym+" ++ "Menu+" ++ "ይፈልጉ…" ++ "መጠይቅ አጽዳ" ++ "የፍለጋ መጠይቅ" ++ "ፍለጋ" ++ "መጠይቅ አስገባ" ++ "የድምጽ ፍለጋ" ++ "አጋራ በ" ++ "ለ%s አጋራ" ++ "ሰብስብ" ++ ግማሽ መንገድ ዘርጋ ++ ቁምፊዎች %1$d ከ%2$d ገብተዋል ++ የቁምፊ ገደብ %1$d ከ%2$d አልፏል ++ ጽሑፍን አጽዳ ++ ስህተት ++ ተቆልቋይ ምናሌን አሳይ ++ የንግግር አዶ ++ ትር ++ AM ወይም PM ይምረጡ ++ ሰዓትን ይምረጡ ++ %1$s ሰዓት ++ ደቂቃዎችን ይምረጡ ++ %1$s ደቂቃዎች ++ ጥዋት ++ ለጊዜ ግቤቱ ወደ የሰዓት ሁነታ ቀይር። ++ ሰዓት ++ ደቂቃ ++ ከሰዓት ++ ጊዜ ምረጥ ++ ለጊዜ ግቤቱ ወደ የጽሑፍ ግቤት ሁነታ ቀይር። ++ አዲስ ማሳወቂያ ++ %1$sን አስወግድ ++ ከ%1$d በላይ አዲስ ማሳወቂያዎች ++ ወደ የሚቀጥለው ወር ቀይር ++ ወደ ቀዳሚው ወር ቀይር ++ የአሁኑ ምርጫ፦ %1$s ++ @android:string/ok ++ %1$s ++ ቀን ይምረጡ ++ የተመረጠው ቀን ++ የቀኖች ዓምድ፦ %1$s ++ ልክ ያልሆነ ቅርጸት ++ ምሳሌ፦ %1$s ++ %1$s ን ይጠቀሙ ++ ልክ ያልኾነ ክልል። ++ ወደ ዓመት %1$s አሰስ ++ ከክልል ውጪ፦ %1$s ++ መጀመሪያ ቀን – %1$s ++ %1$s – መጨረሻ ቀን ++ %1$s – %2$s ++ ክልል ይምረጡ ++ የመጀመሪያ ቀን – የመጨረሻ ቀን ++ አስቀምጥ ++ ቀን ++ የማብቂያ ቀን ++ መጀመሪያ ቀን ++ ++ ++ ++ ወደ የቀን መቁጠሪያ ግቤት ሁነታ ቀይር ++ ወደ ቀን መምረጥ ለመቀየር መታ ያድርጉ ++ ወደ ጽሑፍ ግቤት ሁነታ ቀይር ++ ወደ ዓመት መምረጥ ለመቀየር መታ ያድርጉ ++ የይለፍ ቃል አሳይ ++ "ፍለጋ" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml +new file mode 100644 +index 0000000..1c40f8c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml +@@ -0,0 +1,94 @@ ++ ++ ++ ++ %d إشعار جديد ++ إشعار جديد واحد (%d) ++ إشعاران جديدان (%d) ++ %d إشعارات جديدة ++ %d إشعارًا جديدًا ++ %d إشعار جديد ++ ++ "التوجه إلى المنزل" ++ "التنقل إلى أعلى" ++ "خيارات أكثر" ++ "تم" ++ "عرض الكل" ++ "اختيار تطبيق" ++ "إيقاف" ++ "تفعيل" ++ "Alt+" ++ "Ctrl+" ++ "حذف" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "فضاء" ++ "Sym+" ++ "القائمة+" ++ "بحث…" ++ "محو طلب البحث" ++ "طلب بحث" ++ "البحث" ++ "إرسال طلب البحث" ++ "بحث صوتي" ++ "مشاركة مع" ++ "مشاركة مع %s" ++ "تصغير" ++ توسيع البطاقة السفلية ++ تمّ إدخال %1$d حرف من إجمالي %2$d. ++ تجاوز عدد الأحرف المسموح به %1$d من %2$d. ++ محو النص ++ خطأ ++ عرض القائمة المنسدلة ++ رمز مربع الحوار ++ علامة تبويب ++ يُرجى اختيار صباحًا أو مساءً. ++ تحديد الساعة ++ الساعة %1$s ++ تحديد الدقائق ++ %1$s دقيقة ++ صباحًا ++ يُرجى التبديل إلى وضع الساعة لإدخال الوقت. ++ الساعة ++ دقيقة ++ مساءً ++ اختيار الوقت ++ يُرجى التبديل إلى وضع إدخال النص لإدخال الوقت. ++ إشعار جديد ++ إزالة %1$s ++ يبلغ عدد الإشعارات الجديدة أكثر من %1$d. ++ التغيير إلى الشهر التالي ++ التغيير إلى الشهر السابق ++ الاختيار الحالي: %1$s ++ @android:string/ok ++ %1$s ++ يُرجى اختيار تاريخ. ++ التاريخ المحدَّد ++ عمود الأيام: %1$s ++ التنسيق غير صالح ++ مثال: %1$s ++ استخدام: %1$s ++ النطاق غير صالح ++ التنقل إلى العام %1$s ++ خارج النطاق: %1$s ++ تاريخ البدء – %1$s ++ %1$s – تاريخ الانتهاء ++ %1$s – %2$s ++ يُرجى اختيار نطاق زمني. ++ تاريخ البدء - تاريخ الانتهاء ++ حفظ ++ التاريخ ++ تاريخ الانتهاء ++ تاريخ البدء ++ ي ++ ش ++ س ++ التبديل إلى وضع \"الإدخال في التقويم\" ++ انقر للتبديل إلى اختيار يوم ++ التبديل إلى وضع \"إدخال النص\" ++ انقر للتبديل إلى اختيار عام ++ عرض كلمة المرور ++ "البحث" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-as/values-as.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-as/values-as.xml +new file mode 100644 +index 0000000..2f5706e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-as/values-as.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d new notification ++ %d new notifications ++ ++ "গৃহ পৃষ্ঠালৈ যাওক" ++ "ওপৰলৈ যাওক" ++ "অধিক বিকল্প" ++ "সম্পন্ন হ’ল" ++ "সকলো চাওক" ++ "কোনো এপ্ বাছনি কৰক" ++ "অফ" ++ "অন" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "সন্ধান কৰক…" ++ "সন্ধান কৰা প্ৰশ্ন মচক" ++ "সন্ধান কৰা প্ৰশ্ন" ++ "Search" ++ "প্ৰশ্ন দাখিল কৰক" ++ "কণ্ঠধ্বনিৰ দ্বাৰা সন্ধান" ++ "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক" ++ "%sৰ জৰিয়তে শ্বেয়াৰ কৰক" ++ "সংকোচন কৰক" ++ Expand halfway ++ %2$dটাৰ ভিতৰত %1$dটা বৰ্ণ লিখা হৈছে ++ %2$dটাৰ ভিতৰত %1$dটা বৰ্ণৰ সীমা অতিক্ৰম কৰিছে ++ Clear text ++ Error ++ Show dropdown menu ++ Dialog Icon ++ Tab ++ Select AM or PM ++ Select hour ++ %1$s o\'clock ++ মিনিট বাছনি কৰক ++ %1$s minutes ++ AM ++ সময়ৰ ইনপুটৰ বাবে ঘড়ী ম\'ডলৈ যাওক। ++ Hour ++ Minute ++ PM ++ Select time ++ সময়ৰ ইনপুটৰ বাবে পাঠৰ ইনপুট ম\'ডলৈ যাওক। ++ New notification ++ %1$sক আঁতৰাওক ++ More than %1$d new notifications ++ Change to next month ++ Change to previous month ++ Current selection: %1$s ++ @android:string/ok ++ %1$s ++ Select Date ++ Selected date ++ Column of days: %1$s ++ Invalid format. ++ Example: %1$s ++ Use: %1$s ++ Invalid range. ++ Navigate to year %1$s ++ Out of range: %1$s ++ Start date – %1$s ++ %1$s – End date ++ %1$s – %2$s ++ Select Range ++ Start date – End date ++ Save ++ Date ++ End date ++ Start date ++ d ++ m ++ y ++ Switch to calendar input mode ++ Tap to switch to selecting a day ++ Switch to text input mode ++ Tap to switch to selecting a year ++ পাছৱৰ্ড দেখুৱাওক ++ "Search" ++ "৯৯৯+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-az/values-az.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-az/values-az.xml +new file mode 100644 +index 0000000..4c91a08 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-az/values-az.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d yeni bildiriş ++ %d yeni bildiriş ++ ++ "Əsas səhifəyə keçin" ++ "Yuxarı keçin" ++ "Digər seçimlər" ++ "Hazırdır" ++ "Hamısına baxın" ++ "Tətbiq seçin" ++ "DEAKTİV" ++ "AKTİV" ++ "Alt+" ++ "Ctrl+" ++ "silin" ++ "daxil olun" ++ "Funksiya+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menyu+" ++ "Axtarış..." ++ "Sorğunu silin" ++ "Axtarış sorğusu" ++ "Axtarın" ++ "Sorğunu göndərin" ++ "Səsli axtarış" ++ "Paylaşın" ++ "%s ilə paylaşın" ++ "Yığcamlaşdırın" ++ Tam genişləndirin ++ %1$d/%2$d simvol daxil edilib ++ Simvol limiti %1$d/%2$d dəyərini keçdi ++ Mətni silin ++ Xəta ++ Açılan menyunu göstərin ++ Dialoq ikonası ++ Tab ++ Gündüz və ya axşam seçin ++ Saatı seçin ++ Saat %1$s ++ Dəqiqə seçin ++ %1$s dəqiqə ++ AM ++ Zamanı daxil etmək üçün saat rejiminə keçin ++ Saat ++ Dəqiqə ++ ++ Vaxt seçin ++ Zamanı daxil etmək üçün mətnlə daxiletmə rejiminə keçin ++ Yeni bildiriş ++ %1$s silin ++ Minimum %1$d yeni bildiriş ++ Növbəti aya dəyişin ++ Əvvəlki aya dəyişin ++ Cari seçim: %1$s ++ @android:string/ok ++ %1$s ++ Tarix seçin ++ Seçilmiş tarix ++ Gün sütunu: %1$s ++ Yanlış format. ++ Nümunə: %1$s ++ %1$s istifadə edin ++ Yanlış diapazon. ++ %1$s ilinə keçin ++ Əhatə dairəsindən kənar: %1$s ++ Başlama tarixi – %1$s ++ %1$s – Bitmə tarixi ++ %1$s: %2$s ++ Aralıq seçin ++ Başlama tarixi - Bitmə tarixi ++ Saxlayın ++ Tarix ++ Bitmə tarixi ++ Başlama tarixi ++ gün ++ ay ++ il ++ Təqvim daxiletmə rejiminə keçin ++ Gün seçiminə keçmək üçün toxunun ++ Mətn daxiletmə rejiminə keçin ++ İl seçiminə keçmək üçün toxunun ++ Parolu göstərin ++ "Axtarın" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-b+es+419/values-b+es+419.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-b+es+419/values-b+es+419.xml +new file mode 100644 +index 0000000..f007875 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-b+es+419/values-b+es+419.xml +@@ -0,0 +1,61 @@ ++ ++ ++ ++ %d notificación nueva ++ %d notificaciones nuevas ++ ++ Expandir hasta la mitad ++ Caracteres ingresados: %1$d de %2$d ++ Se excedió en %1$d el límite de caracteres de %2$d ++ Borrar texto ++ Error ++ Mostrar menú desplegable ++ Ícono de diálogo ++ Pestaña ++ Selecciona a.m. o p.m. ++ Seleccione la hora. ++ %1$s en punto ++ Seleccionar minutos ++ %1$s minutos ++ A. M. ++ Cambia al modo de reloj para ingresar la hora. ++ Hora ++ Minuto ++ P. M. ++ Seleccionar la hora ++ Cambia al modo de entrada de texto para ingresar la hora. ++ Notificación nueva ++ Quitar %1$s ++ Más de %1$d notificaciones nuevas ++ Cambiar al mes siguiente ++ Cambiar al mes anterior ++ Selección actual: %1$s ++ @android:string/ok ++ %1$s ++ Seleccionar fecha ++ Fecha seleccionada ++ Columna de días: %1$s ++ Formato no válido ++ Ejemplo: %1$s ++ Usar: %1$s ++ El rango no es válido. ++ Navegar al año %1$s ++ Fuera de rango: %1$s ++ Fecha de inicio - %1$s ++ %1$s - fecha de finalización ++ %1$s-%2$s ++ Selecciona un período ++ Fecha de inicio - fecha de finalización ++ Guardar ++ Fecha ++ Fecha de finalización ++ Fecha de inicio ++ d ++ m ++ a ++ Cambiar al modo de entrada de calendario ++ Presiona para seleccionar un día ++ Cambiar al modo de entrada de texto ++ Presiona para seleccionar un año ++ Mostrar contraseña ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +new file mode 100644 +index 0000000..88272c4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +@@ -0,0 +1,91 @@ ++ ++ ++ ++ %d novo obaveštenje ++ %d nova obaveštenja ++ %d novih obaveštenja ++ ++ "Idite na početnu" ++ "Idite nagore" ++ "Još opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Izaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "taster za razmak" ++ "Sym+" ++ "Menu+" ++ "Pretražite…" ++ "Obrišite upit" ++ "Pretražite upit" ++ "Pretražite" ++ "Pošaljite upit" ++ "Glasovna pretraga" ++ "Delite pomoću" ++ "Delite pomoću aplikacije %s" ++ "Skupi" ++ Proširite do pola ++ Uneti znakovi: %1$d od %2$d ++ Prekoračeno je ograničenje broja znakova: %1$d od %2$d ++ Obriši tekst ++ Greška ++ Prikaži padajući meni ++ Ikona dijaloga ++ Kartica ++ Izaberite pre podne ili po podne ++ Izaberite sat ++ %1$s s ++ Izaberite minute ++ %1$s min ++ AM ++ Pređite u režim sata radi unosa vremena. ++ Sat ++ Minut ++ PM ++ Izaberite vreme ++ Pređite u režim unosa teksta radi unosa vremena. ++ Novo obaveštenje ++ Uklonite %1$s ++ Novih obaveštenja: više od %1$d ++ Pređite na sledeći mesec ++ Pređite na prethodni mesec ++ Aktuelni izbor: %1$s ++ @android:string/ok ++ %1$s ++ Izaberite datum ++ Izabrani datum ++ Kolona sa danima: %1$s ++ Format je nevažeći. ++ Primer: %1$s ++ Koristite: %1$s ++ Nevažeći period. ++ Idite na godinu %1$s ++ Izvan perioda: %1$s ++ Datum početka – %1$s ++ %1$s – Datum završetka ++ %1$s–%2$s ++ Izaberite period ++ Datum početka – Datum završetka ++ Sačuvaj ++ Datum ++ Datum završetka ++ Datum početka ++ d ++ m ++ g ++ Pređite na režim unosa u Kalendaru ++ Dodirnite da biste prešli na izbor dana ++ Pređite na režim unosa teksta ++ Dodirnite da biste prešli na izbor godine ++ Prikaži lozinku ++ "Pretražite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-be/values-be.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-be/values-be.xml +new file mode 100644 +index 0000000..4c4dc18 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-be/values-be.xml +@@ -0,0 +1,92 @@ ++ ++ ++ ++ %d новае апавяшчэнне ++ %d новыя апавяшчэнні ++ %d новых апавяшчэнняў ++ %d новага апавяшчэння ++ ++ "Перайсці на галоўную старонку" ++ "Перайсці ўверх" ++ "Дадатковыя параметры" ++ "Гатова" ++ "Паказаць усе" ++ "Выберыце праграму" ++ "ВЫКЛ." ++ "УКЛ." ++ "Alt +" ++ "Ctrl +" ++ "Delete" ++ "Enter" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "Прабел" ++ "Sym +" ++ "Меню +" ++ "Пошук…" ++ "Выдаліць запыт" ++ "Пошукавы запыт" ++ "Пошук" ++ "Адправіць запыт" ++ "Галасавы пошук" ++ "Абагуліць праз" ++ "Абагуліць праз праграму \"%s\"" ++ "Згарнуць" ++ Разгарнуць напалову ++ Уведзена сімвалаў: %1$d з %2$d ++ Ліміт сімвалаў перавышаны: %1$d з %2$d ++ Ачысціць тэкст ++ Памылка ++ Паказаць выпадное меню ++ Значок дыялогавага акна ++ Укладка ++ Выберыце AM (да паўдня) або PM (пасля паўдня) ++ Выберыце гадзіну ++ %1$s гадз ++ Выберыце хвіліны ++ %1$s хв ++ AM ++ Пераключыцца на рэжым гадзінніка пры ўводзе часу. ++ Гадзіна ++ Хвіліна ++ PM ++ Выберыце час ++ Пераключыцца на рэжым тэксту пры ўводзе часу. ++ Новае апавяшчэнне ++ Выдаліць %1$s ++ Колькасць новых апавяшчэнняў перавысіла %1$d ++ Перайсці да наступнага месяца ++ Перайсці да папярэдняга месяца ++ Бягучае вылучэнне: %1$s ++ @android:string/ok ++ %1$s ++ Выберыце дату ++ Выбраная дата ++ Слупок дзён: %1$s ++ Няправільны фармат. ++ Прыклад: %1$s ++ Неабходны фармат: %1$s ++ Няправільны дыяпазон. ++ Перайсці ў %1$s год ++ Па-за межамі дыяпазону: %1$s ++ Дата пачатку – %1$s ++ %1$s – дата заканчэння ++ %1$s – %2$s ++ Выберыце дыяпазон дат ++ Дата пачатку – дата заканчэння ++ Захаваць ++ Дата ++ Дата заканчэння ++ Дата пачатку ++ д ++ м ++ г ++ Пераключыцца ў рэжым уводу \"Каляндар\" ++ Дакраніцеся, каб пераключыцца на выбар дня ++ Пераключыцца ў рэжым уводу \"Тэкст\" ++ Дакраніцеся, каб пераключыцца на выбар года ++ Паказаць пароль ++ "Пошук" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml +new file mode 100644 +index 0000000..2487b1d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ново известие ++ %d нови известия ++ ++ "Навигиране към началния екран" ++ "Навигиране нагоре" ++ "Още опции" ++ "Готово" ++ "Преглед на всички" ++ "Изберете приложение" ++ "ИЗКЛ." ++ "ВКЛ." ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "клавиша за интервал" ++ "Sym+" ++ "Menu+" ++ "Търсете…" ++ "Изчистване на заявката" ++ "Заявка за търсене" ++ "Търсене" ++ "Изпращане на заявката" ++ "Гласово търсене" ++ "Споделяне със:" ++ "Споделяне със: %s" ++ "Свиване" ++ Разгъване наполовина ++ Въведени знаци: %1$d от %2$d ++ Максималният брой знаци е надхвърлен с(ъс) %1$d от %2$d ++ Изчистване на текста ++ Грешка ++ Показване на падащото меню ++ Икона за диалогов прозорец ++ Раздел ++ Изберете AM или PM ++ Изберете час ++ %1$s часа ++ Избиране на минути ++ %1$s минути ++ AM ++ Превключете към режима за часовник, за да въведете часа. ++ Час ++ Минута ++ PM ++ Избор на час ++ Превключете към режима за въвеждане на текст, за да въведете часа. ++ Ново известие ++ Премахване на %1$s ++ Повече от %1$d нови известия ++ Преминаване към следващия месец ++ Преминаване към предишния месец ++ Текущ избор: %1$s ++ @android:string/ok ++ %1$s ++ Избиране на дата ++ Избрана дата ++ Колона за дни: %1$s ++ Форматът е невалиден. ++ Пример: %1$s ++ Използвайте: %1$s ++ Невалиден диапазон. ++ Навигиране до %1$s г. ++ Извън диапазона: %1$s ++ Начална дата – %1$s ++ %1$s – крайна дата ++ %1$s – %2$s ++ Избиране на период от време ++ Начална дата – крайна дата ++ Запазване ++ Дата ++ Крайна дата ++ Начална дата ++ д ++ м ++ г ++ Превключване към режим на въвеждане в календар ++ Докоснете, за да превключите към избиране на ден ++ Превключване към режим за въвеждане на текст ++ Докоснете, за да превключите към избиране на година ++ Показване на паролата ++ "Търсене" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml +new file mode 100644 +index 0000000..c959c22 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %dটি নতুন বিজ্ঞপ্তি ++ %dটি নতুন বিজ্ঞপ্তি ++ ++ "হোমে নেভিগেট করুন" ++ "উপরে নেভিগেট করুন" ++ "আরও বিকল্প" ++ "হয়ে গেছে" ++ "সবগুলি দেখুন" ++ "একটি অ্যাপ বেছে নিন" ++ "বন্ধ আছে" ++ "চালু করুন" ++ "Alt+" ++ "Ctrl+" ++ "মুছুন" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "সার্চ করুন…" ++ "কোয়েরি মুছে ফেলুন" ++ "সার্চ কোয়েরি" ++ "সার্চ করুন" ++ "কোয়েরি জমা দিন" ++ "ভয়েস সার্চ করুন" ++ "শেয়ার করুন" ++ "%s-এর সাথে শেয়ার করুন" ++ "সঙ্কুচিত করুন" ++ অর্ধেক প্রসারিত করুন ++ %2$dটির মধ্যে %1$dটি অক্ষর লেখা হয়েছে ++ অক্ষরের সীমা %1$d এর %2$d অতিক্রম করেছে ++ টেক্সট মুছুন ++ সমস্যা ++ ড্রপ-ডাউন মেনু দেখুন ++ ডায়ালগ আইকন ++ ট্যাব ++ AM অথবা PM বেছে নিন ++ ঘণ্টা বেছে নিন ++ %1$sটা বাজে ++ মিনিট বেছে নিন ++ %1$s মিনিট ++ AM ++ সময় ইনপুট দেওয়ার জন্য ঘড়ি মোডে যান। ++ ঘণ্টা ++ মিনিট ++ PM ++ সময় বেছে নিন ++ সময় ইনপুট দেওয়ার জন্য পাঠ্য ইনপুট মোডে যান। ++ নতুন বিজ্ঞপ্তি ++ %1$s সরিয়ে দিন ++ %1$dটির বেশি নতুন বিজ্ঞপ্তি ++ আগামী মাসে যান ++ আগের মাসে যান ++ বর্তমান বাছাই: %1$s ++ @android:string/ok ++ %1$s ++ তারিখ বেছে নিন ++ বেছে নেওয়া তারিখ ++ সপ্তাহের দিনগুলির কলাম: %1$s ++ ভুল ফর্ম্যাট। ++ উদাহরণ: %1$s ++ %1$s ফর্ম্যাটে লিখুন ++ তারিখ সঠিক নয়। ++ নেভিগেট করে %1$s সালে যান ++ নির্দিষ্ট তারিখের বাইরে: %1$s ++ শুরুর তারিখ – %1$s ++ %1$s – সমাপ্তির তারিখ ++ %1$s – %2$s ++ রেঞ্জ বেছে নিন ++ শুরুর তারিখ - সমাপ্তির তারিখ ++ সেভ করুন ++ তারিখ ++ সমাপ্তির তারিখ ++ শুরুর তারিখ ++ d ++ m ++ y ++ ক্যালেন্ডার ইনপুট মোডে বদল করুন ++ দিন বেছে নেওয়ার মোডে বদল করতে ট্যাপ করুন ++ টেক্সট ইনপুট মোডে বদল করুন ++ বছর বেছে নেওয়ার মোডে বদল করতে ট্যাপ করুন ++ পাসওয়ার্ড দেখান ++ "সার্চ করুন" ++ "৯৯৯+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml +new file mode 100644 +index 0000000..dcfd140 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml +@@ -0,0 +1,91 @@ ++ ++ ++ ++ %d novo obavještenje ++ %d nova obavještenja ++ %d novih obavještenja ++ ++ "Vratite se na početnu stranicu" ++ "Idi gore" ++ "Više opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Odaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "razmak" ++ "Sym+" ++ "Menu+" ++ "Pretražite..." ++ "Obriši upit" ++ "Pretraži upit" ++ "Pretraži" ++ "Pošalji upit" ++ "Glasovno pretraživanje" ++ "Dijeli sa" ++ "Dijeli putem aplikacije %s" ++ "Suzi" ++ Proširivanje dopola ++ Uneseno znakova: %1$d od %2$d ++ Ograničenje broja znakova premašuje %1$d od %2$d ++ Obriši tekst ++ Greška ++ Prikaži padajući meni ++ ikona dijaloškog okvira ++ Kartica ++ Odaberite prijepodne ili poslijepodne ++ Odaberite sat ++ %1$s h ++ Odaberite minute ++ %1$s min ++ AM ++ Prebacite u način rada kao sat za unos vremena. ++ Sat ++ Minuta ++ PM ++ Odabir vremena ++ Prebacite u način unosa teksta za unos vremena. ++ Novo obavještenje ++ Uklonite %1$s ++ Broj novih obavještenja: više od %1$d ++ Promijeni na sljedeći mjesec ++ Promijeni na prethodni mjesec ++ Trenutni izbor: %1$s ++ @android:string/ok ++ %1$s ++ Odaberite datum ++ Odabrani datum ++ Kolona za dane: %1$s ++ Nevažeći format. ++ Primjer: %1$s ++ Koristi: %1$s ++ Nevažeći opseg. ++ Odlazak na %1$s. godinu ++ Izvan opsega: %1$s ++ Datum početka – %1$s ++ %1$s – Datum završetka ++ %1$s – %2$s ++ Odaberite raspon ++ Datum početka – Datum završetka ++ Sačuvaj ++ Datum ++ Datum završetka ++ Datum početka ++ d ++ m ++ g ++ Prebacivanje na način unosa kalendara ++ Dodirnite da prebacite na odabir dana ++ Prebacivanje na način unosa teksta ++ Dodirnite da prebacite na odabir godine ++ Prikaži lozinku ++ "Pretražite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml +new file mode 100644 +index 0000000..abb3286 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d notificació nova ++ %d notificacions noves ++ ++ "Navega fins a la pàgina d\'inici" ++ "Navega cap amunt" ++ "Més opcions" ++ "Fet" ++ "Mostra-ho tot" ++ "Selecciona una aplicació" ++ "DESACTIVA" ++ "ACTIVA" ++ "Alt+" ++ "Ctrl+" ++ "Supr" ++ "Retorn" ++ "Funció+" ++ "Meta+" ++ "Maj+" ++ "Espai" ++ "Sym+" ++ "Menú+" ++ "Cerca…" ++ "Esborra la consulta" ++ "Consulta de cerca" ++ "Cerca" ++ "Envia la consulta" ++ "Cerca per veu" ++ "Comparteix amb" ++ "Comparteix amb %s" ++ "Replega" ++ Desplega fins a la meitat ++ Caràcters introduïts: %1$d de %2$d ++ S\'ha superat el límit de caràcters (%1$d de %2$d) ++ Esborra el text ++ Error ++ Mostra el menú desplegable ++ Icona del quadre de diàleg ++ Tabulador ++ Selecciona a. m. o p. m. ++ Seleccioneu l\'hora ++ %1$s en punt ++ Selecciona els minuts ++ %1$s minuts ++ a. m. ++ Canvia al mode de rellotge per introduir l\'hora. ++ Hora ++ Minut ++ p. m. ++ Selecció de l\'hora ++ Canvia al mode d\'introducció de text per introduir l\'hora. ++ Notificació nova ++ Suprimeix %1$s ++ Més de %1$d notificacions noves ++ Canvia al mes següent ++ Canvia al mes anterior ++ Selecció actual: %1$s ++ @android:string/ok ++ %1$s ++ Selecciona una data ++ Data seleccionada ++ Columna de dies: %1$s ++ El format no és vàlid. ++ Exemple: %1$s ++ Utilitza: %1$s ++ L\'interval no és vàlid. ++ Canvia a l\'any %1$s ++ La data està fora de l\'interval: %1$s ++ Data d\'inici - %1$s ++ %1$s - data de finalització ++ %1$s - %2$s ++ Selecciona un interval ++ Data d\'inici - data de finalització ++ Desa ++ Data ++ Data de finalització ++ Data d\'inici ++ d ++ m ++ a ++ Canvia al mode d\'introducció de dades del calendari ++ Toca per canviar a la selecció del dia ++ Canvia al mode d\'introducció de text ++ Toca per canviar a la selecció de l\'any ++ Mostra la contrasenya ++ "Cerca" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml +new file mode 100644 +index 0000000..d5f45bb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml +@@ -0,0 +1,92 @@ ++ ++ ++ ++ %d nové oznámení ++ %d nová oznámení ++ %d nového oznámení ++ %d nových oznámení ++ ++ "Přejít na plochu" ++ "Přejít nahoru" ++ "Další možnosti" ++ "Hotovo" ++ "Zobrazit vše" ++ "Vybrat aplikaci" ++ "VYP" ++ "ZAP" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mezerník" ++ "Sym+" ++ "Menu+" ++ "Vyhledat…" ++ "Smazat dotaz" ++ "Dotaz pro vyhledávání" ++ "Hledat" ++ "Odeslat dotaz" ++ "Hlasové vyhledávání" ++ "Sdílet s" ++ "Sdílet s aplikací %s" ++ "Sbalit" ++ Rozbalit napůl ++ Zadané znaky: %1$d z %2$d ++ Byl překročen povolený počet znaků (%1$d z %2$d) ++ Vymazat text ++ Chyba ++ Zobrazit rozbalovací nabídku ++ Ikona dialogového okna ++ Karta ++ Vyberte AM nebo PM ++ Vyberte hodinu ++ %1$s ++ Zvolte minuty ++ %1$s min ++ AM ++ Chcete-li zadat čas, přepněte na režim hodin. ++ Hodina ++ Minuta ++ PM ++ Vyberte čas ++ Chcete-li zadat čas, přepněte na režim textu. ++ Nové oznámení ++ Odstranit položku %1$s ++ Více než %1$d nových oznámení ++ Přejít na další měsíc ++ Přejít na předchozí měsíc ++ Aktuální výběr: %1$s ++ @android:string/ok ++ %1$s ++ Vyberte datum ++ Vybrané datum ++ Sloupec dnů: %1$s ++ Neplatný formát. ++ Příklad: %1$s ++ Použijte: %1$s ++ Neplatný rozsah. ++ Přejít na rok %1$s ++ Mimo rozsah: %1$s ++ Datum zahájení – %1$s ++ %1$s – datum ukončení ++ %1$s – %2$s ++ Vyberte rozsah ++ Datum zahájení – datum ukončení ++ Uložit ++ Datum ++ Datum ukončení ++ Datum zahájení ++ d ++ m ++ r ++ Přepnout na režim zadávání do kalendáře ++ Klepnutím přepnete na výběr dne ++ Přepnout na režim zadávání textu ++ Klepnutím přepnete na výběr roku ++ Zobrazit heslo ++ "Hledat" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-da/values-da.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-da/values-da.xml +new file mode 100644 +index 0000000..c152e4a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-da/values-da.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ny notifikation ++ %d nye notifikationer ++ ++ "Find hjem" ++ "Gå op" ++ "Flere valgmuligheder" ++ "Udfør" ++ "Se alle" ++ "Vælg en app" ++ "FRA" ++ "TIL" ++ "Alt+" ++ "Ctrl+" ++ "slet" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mellemrum" ++ "Sym+" ++ "Menu+" ++ "Søg…" ++ "Ryd forespørgsel" ++ "Søgeforespørgsel" ++ "Søg" ++ "Indsend forespørgsel" ++ "Talesøgning" ++ "Del med" ++ "Del med %s" ++ "Skjul" ++ Udvid halvdelen ++ Du har brugt %1$d ud af %2$d tegn ++ Du har brugt %1$d tegn og dermed overskredet tegnbegrænsningen på %2$d. ++ Ryd tekst ++ Fejl ++ Vis rullemenuen ++ Ikon for dialogboks ++ Fane ++ Vælg AM eller PM ++ Vælg time ++ klokken %1$s ++ Vælg minutter ++ %1$s minutter ++ f.m. ++ Skift til urtilstand for at angive klokkeslæt. ++ Time ++ Minut ++ e.m. ++ Vælg tidspunkt ++ Skift til teksttilstand for at angive klokkeslæt. ++ Ny notifikation ++ Fjern %1$s ++ Flere end %1$d nye notifikationer ++ Skift til næste måned ++ Skift til forrige måned ++ Aktuelt valg: %1$s ++ @android:string/ok ++ %1$s ++ Vælg dato ++ Valgt dato ++ Kolonne med dage: %1$s ++ Ugyldigt format. ++ Eksempel: %1$s ++ Brug: %1$s ++ Ugyldigt interval. ++ Gå til år %1$s ++ Uden for interval: %1$s ++ Startdato – %1$s ++ %1$s – slutdato ++ %1$s – %2$s ++ Vælg interval ++ Startdato – slutdato ++ Gem ++ Dato ++ Slutdato ++ Startdato ++ d ++ m ++ å ++ Skift til input-tilstand for kalender ++ Tryk for at gå til valg af dag ++ Skift til input-tilstand for tekst ++ Tryk for at gå til valg af år ++ Vis adgangskode ++ "Søg" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-de/values-de.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-de/values-de.xml +new file mode 100644 +index 0000000..e2a52ee +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-de/values-de.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d neue Benachrichtigung ++ %d neue Benachrichtigungen ++ ++ "Zur Startseite" ++ "Nach oben" ++ "Weitere Optionen" ++ "Fertig" ++ "Alle anzeigen" ++ "App auswählen" ++ "AUS" ++ "AN" ++ "Alt +" ++ "Strg +" ++ "Löschen" ++ "Eingabetaste" ++ "Funktionstaste +" ++ "Meta-Taste +" ++ "Umschalttaste +" ++ "Leertaste" ++ "Sym-Taste +" ++ "Menütaste +" ++ "Suchen…" ++ "Suchanfrage löschen" ++ "Suchanfrage" ++ "Suche" ++ "Anfrage senden" ++ "Sprachsuche" ++ "Teilen mit" ++ "Mit %s teilen" ++ "Minimieren" ++ Zur Hälfte maximieren ++ Eingegebene Zeichen: %1$d von %2$d ++ Zeichenbeschränkung überschritten: %1$d/%2$d ++ Text löschen ++ Fehler ++ Drop-down-Menü anzeigen ++ Dialogfeldsymbol ++ Tab ++ Vormittags oder Nachmittags auswählen ++ Stunde auswählen ++ %1$s Uhr ++ Minuten auswählen ++ %1$s Minuten ++ AM ++ In den Uhrzeitmodus wechseln, um die Uhrzeit einzugeben. ++ Stunde ++ Minute ++ PM ++ Uhrzeit auswählen ++ In den Texteingabemodus wechseln, um die Uhrzeit einzugeben. ++ Neue Benachrichtigung ++ %1$s entfernen ++ Mehr als %1$d neue Benachrichtigungen ++ Zum nächsten Monat wechseln ++ Zum vorherigen Monat wechseln ++ Aktuelle Auswahl: %1$s ++ @android:string/ok ++ %1$s ++ Datum auswählen ++ Ausgewähltes Datum ++ Spalte \"Wochentag\": %1$s ++ Ungültiges Format. ++ Beispiel: %1$s ++ Format: %1$s ++ Ungültiger Bereich. ++ Zum Jahr %1$s wechseln ++ Außerhalb des Bereichs: %1$s ++ Startdatum – %1$s ++ %1$s – Enddatum ++ %1$s – %2$s ++ Zeitraum auswählen ++ Startdatum – Enddatum ++ Speichern ++ Datum ++ Enddatum ++ Startdatum ++ T ++ M ++ J ++ In den Kalendereingabemodus wechseln ++ Tippen, um zur Tagesauswahl zu wechseln ++ In den Texteingabemodus wechseln ++ Tippen, um zur Jahresauswahl zu wechseln ++ Passwort anzeigen ++ "Suche" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-el/values-el.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-el/values-el.xml +new file mode 100644 +index 0000000..f2eeec9 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-el/values-el.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d νέα ειδοποίηση ++ %d νέες ειδοποιήσεις ++ ++ "Πλοήγηση στην αρχική σελίδα" ++ "Πλοήγηση προς τα επάνω" ++ "Περισσότερες επιλογές" ++ "Τέλος" ++ "Εμφάνιση όλων" ++ "Επιλέξτε μια εφαρμογή" ++ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ" ++ "ΕΝΕΡΓΟΠΟΙΗΣΗ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "διάστημα" ++ "Sym+" ++ "Menu+" ++ "Αναζήτηση…" ++ "Διαγραφή ερωτήματος" ++ "Ερώτημα αναζήτησης" ++ "Αναζήτηση" ++ "Υποβολή ερωτήματος" ++ "Φωνητική αναζήτηση" ++ "Κοινοποίηση σε" ++ "Κοινοποίηση στην εφαρμογή %s" ++ "Σύμπτυξη" ++ Ανάπτυξη μέχρι τη μέση ++ Εισήχθησαν %1$d από %2$d χαρακτήρες ++ Υπέρβαση ορίου χαρακτήρων %1$d από %2$d ++ Διαγραφή κειμένου ++ Σφάλμα ++ Εμφάνιση αναπτυσσόμενου μενού ++ Εικονίδιο παραθύρου διαλόγου ++ Καρτέλα ++ Επιλέξτε π.μ. ή μ.μ. ++ Επιλογή ώρας ++ %1$s ακριβώς ++ Επιλογή λεπτών ++ %1$s λεπτά ++ ΠΜ ++ Κάντε εναλλαγή στη λειτουργία ρολογιού, για την εισαγωγή της ώρας. ++ Ώρα ++ Λεπτό ++ ΜΜ ++ Επιλέξτε ώρα ++ Κάντε εναλλαγή στη λειτουργία εισαγωγής κειμένου, για την εισαγωγή της ώρας. ++ Νέα ειδοποίηση ++ Κατάργηση %1$s ++ Πάνω από %1$d νέες ειδοποιήσεις ++ Αλλαγή στον επόμενο μήνα ++ Αλλαγή στον προηγούμενο μήνα ++ Τρέχουσα επιλογή: %1$s ++ @android:string/ok ++ %1$s ++ Επιλογή ημερομηνίας ++ Επιλεγμένη ημερομηνία ++ Στήλη ημερών: %1$s ++ Μη έγκυρη μορφή. ++ Παράδειγμα: %1$s ++ Χρησιμοποιήστε: %1$s ++ Μη έγκυρο εύρος. ++ Πλοήγηση στο έτος %1$s ++ Εκτός εύρους: %1$s ++ Ημερομηνία έναρξης – %1$s ++ %1$s – Ημερομηνία λήξης ++ %1$s – %2$s ++ Επιλογή εύρους ++ Ημερομηνία έναρξης – Ημερομηνία λήξης ++ Αποθήκευση ++ Ημερομηνία ++ Ημερομηνία λήξης ++ Ημερομηνία έναρξης ++ η ++ μ ++ ε ++ Εναλλαγή στη λειτουργία εισαγωγής ημερολογίου ++ Πατήστε για εναλλαγή για την επιλογή ημέρας ++ Εναλλαγή στη λειτουργία εισαγωγής κειμένου ++ Πατήστε για εναλλαγή για την επιλογή έτους ++ Εμφάνιση κωδικού πρόσβασης ++ "Αναζήτηση" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml +new file mode 100644 +index 0000000..2bb4640 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d new notification ++ %d new notifications ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ Expand halfway ++ Characters entered %1$d of %2$d ++ Character limit exceeded %1$d of %2$d ++ Clear text ++ Error ++ Show drop-down menu ++ Dialogue Icon ++ Tab ++ Select a.m. or p.m. ++ Select hour ++ %1$s o\'clock ++ Select minutes ++ %1$s minutes ++ AM ++ Switch to clock mode for the time input. ++ Hour ++ Minute ++ PM ++ Select time ++ Switch to text input mode for the time input. ++ New notification ++ Remove %1$s ++ More than %1$d new notifications ++ Change to next month ++ Change to previous month ++ Current selection: %1$s ++ @android:string/ok ++ %1$s ++ Select date ++ Selected date ++ Column of days: %1$s ++ Invalid format. ++ Example: %1$s ++ Use: %1$s ++ Invalid range. ++ Navigate to year %1$s ++ Out of range: %1$s ++ Start date – %1$s ++ %1$s – End date ++ %1$s – %2$s ++ Select range ++ Start date – End date ++ Save ++ Date ++ End date ++ Start date ++ d ++ m ++ y ++ Switch to calendar input mode ++ Tap to switch to selecting a day ++ Switch to text input mode ++ Tap to switch to selecting a year ++ Show password ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml +new file mode 100644 +index 0000000..14b21fa +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‎‏‎‏‏‏‏‎‎‎‏‎‎‏‎‎‏‎‏‎‎‎‎‏‏‎‏‎‏‏‎‎‏‎‎‎‏‎‏‎‏‏‏‎‏‎‎‎‎‏‏‎‏‏‏‏‏‏‎‎Navigate home‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‏‏‎‏‎‎‎‏‏‎‎‎‏‏‏‏‎‏‎‎‎‎‏‏‎‏‏‎‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‎‎‏‏‏‎‎‎‎‎Navigate up‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‎‎‏‎‎‎‎‏‎‎‎‏‎‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‎‎‎‎‏‎‎‏‎‏‏‏‏‏‎‏‎‎‏‎More options‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‎‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‏‏‎‎‏‏‎‏‎‎‏‏‏‎‎‎‎‏‎‎‎‏‏‏‎‎‏‎‎‎‏‎‎‎‎‎Done‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‎‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‎‎‎‏‏‎‏‏‏‎‎‎‎‏‏‏‎‎‏‎‎‎‎‏‏‏‎‏‏‎‏‎‏‎‏‎‎‎‎‏‎See all‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‎‏‎‏‎‎‏‏‎‏‏‎‏‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‎‏‎‎‏‎‏‎‎‎‎‎‎‎‎‎‎Choose an app‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‎‏‎‎‎‏‏‏‎‏‏‎‎‏‏‎‏‏‎‏‎‎‎‎‎‏‏‎‏‎‏‏‎‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‎‏‏‎OFF‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‎‎‏‏‏‏‏‎‎‏‏‎‏‏‎‎‎‎ON‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‎‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‎‎‏‏‎‎‏‏‏‏‎‏‎‎Alt+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‎‏‏‏‏‎‎‏‎‎‎‏‎‎‏‎‏‎‎‎‎‎‏‎‏‎‎‏‎‏‎‏‎‏‎‎Ctrl+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‏‎‏‏‎‏‎‏‏‏‏‏‎‏‏‎‎‏‎‏‎‎‏‏‏‎‏‏‏‏‏‏‎‎‎‎‏‏‏‎‏‎‎‎delete‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‎‏‎‏‏‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‏‏‎enter‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‏‏‎‏‎‎‏‏‎‏‎‏‎‎‎‎‎‏‏‏‏‎‎‎‎‎‏‏‎‎‎‏‏‎‎‏‎‎‏‏‎‎‏‎‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎Function+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‏‎‏‏‎‏‏‏‎‎‎‏‎‎‎‏‎‎‎‎‏‏‏‏‎‎‏‏‎‎‏‎‎‎‎‎‏‎‏‎‎‏‎‎‏‏‏‏‏‏‎‎Meta+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‎‎‏‎‎‎‏‏‎‎‎‎‏‏‎Shift+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‎‏‏‏‏‏‏‎‏‏‏‎‎‎‏‎‎‏‏‏‎‏‏‎‎‎‎‎‎‎‏‏‎‏‏‎‎‎‏‏‎‎‏‎‎‎‏‏‎‏‎‎‎‎‏‎‏‏‎‎space‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‏‏‏‎‎‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‏‏‏‏‏‎‏‎‎‎‎‎‎‎‎‎‎‎‏‎‎‎‏‎‎‏‏‎‏‏‏‎‎Sym+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‏‎‎‏‎‎‏‏‏‎‎‎‎‎‎‏‏‏‎‏‏‏‏‎‎‎‎‎‏‎‎‎‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎‎‏‏‏‏‎‏‏‏‏‏‎‎Menu+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‎‎‎‎‎‎‏‎‎‎‎‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‎‏‎‎‎‏‏‏‏‏‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‎‏‏‎‏‎‎‎Search…‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‏‏‏‏‏‎‏‎‏‏‎‏‎‏‎‎‎‏‎‎‏‏‏‏‎‎‎‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‏‏‏‎‎‏‏‎Clear query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‏‏‏‎‏‏‎‏‎‎‎‏‏‎‎‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‎Search query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‎‏‎‎‏‎‏‎‎‏‏‎‎‎‎‎‎‎‎‎‏‏‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‏‏‎‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‎‎‏‎‏‎‎‎‎‏‎‎‏‏‏‏‎‎‎‎‏‎‏‏‎‏‎‏‎‏‎‏‏‎‏‏‏‎‎‎‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‏‏‏‎Submit query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‎‏‏‎‏‏‎‏‏‎‎‎‏‎‏‏‏‏‏‎‏‏‎‎‎‏‏‎‏‏‎‏‎‎‎‎‏‎‎‎‏‎‎‏‎‏‏‏‎Voice search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‎‏‎‏‎‏‎‏‏‎‏‎‎‏‏‎‎‏‎‎‏‎‎‏‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‏‎‏‏‏‏‎‏‏‎‏‏‏‎Share with‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‏‎‏‎‏‎‏‏‎‎‎‏‏‎‏‏‏‎‎‏‎‏‎‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‏‏‏‎‎‎‎‏‏‏‎‎‎Share with ‎‏‎‎‏‏‎%s‎‏‎‎‏‏‏‎‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‏‎‎‏‎‏‎‎‏‎‏‎‎‏‏‎‏‏‏‎‏‏‏‏‏‏‏‏‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‏‎‎‏‎‎Collapse‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‏‏‏‎‎‎‎‏‎‏‏‎‎‎‏‎‏‏‎‎‏‎‏‎‎‏‎‎‏‎‎‎‏‎‏‏‎‎‏‎‏‎‏‏‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml +new file mode 100644 +index 0000000..fa0851d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d notificación nueva ++ %d notificaciones nuevas ++ ++ "Navegar a la página principal" ++ "Navegar hacia arriba" ++ "Más opciones" ++ "Listo" ++ "Ver todas" ++ "Elegir una app" ++ "DESACTIVAR" ++ "ACTIVAR" ++ "Alt+" ++ "Ctrl+" ++ "borrar" ++ "intro" ++ "Función+" ++ "Meta+" ++ "Mayúscula+" ++ "espacio" ++ "Sym+" ++ "Menú+" ++ "Buscar…" ++ "Borrar consulta" ++ "Búsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "Búsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Contraer" ++ Expandir hasta la mitad ++ Caracteres ingresados: %1$d de %2$d ++ Se excedió en %1$d el límite de caracteres de %2$d ++ Borrar texto ++ Error ++ Mostrar menú desplegable ++ Ícono de diálogo ++ Pestaña ++ Selecciona a.m. o p.m. ++ Seleccione la hora. ++ %1$s en punto ++ Seleccionar minutos ++ %1$s minutos ++ A. M. ++ Cambia al modo de reloj para ingresar la hora. ++ Hora ++ Minuto ++ P. M. ++ Seleccionar la hora ++ Cambia al modo de entrada de texto para ingresar la hora. ++ Notificación nueva ++ Quitar %1$s ++ Más de %1$d notificaciones nuevas ++ Cambiar al mes siguiente ++ Cambiar al mes anterior ++ Selección actual: %1$s ++ @android:string/ok ++ %1$s ++ Seleccionar fecha ++ Fecha seleccionada ++ Columna de días: %1$s ++ Formato no válido ++ Ejemplo: %1$s ++ Usar: %1$s ++ El rango no es válido. ++ Navegar al año %1$s ++ Fuera de rango: %1$s ++ Fecha de inicio - %1$s ++ %1$s - fecha de finalización ++ %1$s-%2$s ++ Selecciona un período ++ Fecha de inicio - fecha de finalización ++ Guardar ++ Fecha ++ Fecha de finalización ++ Fecha de inicio ++ d ++ m ++ a ++ Cambiar al modo de entrada de calendario ++ Presiona para seleccionar un día ++ Cambiar al modo de entrada de texto ++ Presiona para seleccionar un año ++ Mostrar contraseña ++ "Buscar" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-es/values-es.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-es/values-es.xml +new file mode 100644 +index 0000000..54f21af +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-es/values-es.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d notificación nueva ++ %d notificaciones nuevas ++ ++ "Ir a inicio" ++ "Desplazarse hacia arriba" ++ "Más opciones" ++ "Listo" ++ "Ver todo" ++ "Seleccionar una aplicación" ++ "DESACTIVADO" ++ "ACTIVADO" ++ "Alt +" ++ "Ctrl +" ++ "Suprimir" ++ "Intro" ++ "Función +" ++ "Meta +" ++ "Mayús +" ++ "Espacio" ++ "Sym +" ++ "Menú +" ++ "Buscar…" ++ "Borrar consulta" ++ "Consulta de búsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "Búsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Ocultar" ++ Desplegar hasta la mitad ++ Caracteres introducidos: %1$d de %2$d ++ Límite de caracteres superado (%1$d de %2$d) ++ Borrar texto ++ Error ++ Mostrar menú desplegable ++ Icono del cuadro de diálogo ++ Pestaña ++ Selecciona AM o PM ++ Seleccionar hora ++ %1$s en punto ++ Seleccionar minutos ++ %1$s minutos ++ A.M. ++ Cambia al modo de reloj para escribir la hora. ++ Hora ++ Minuto ++ P.M. ++ Seleccionar la hora ++ Cambia al modo de introducción de texto para escribir la hora. ++ Notificación nueva ++ Retirar %1$s ++ Más de %1$d notificaciones nuevas ++ Cambiar al mes siguiente ++ Cambiar al mes anterior ++ Selección actual: %1$s ++ @android:string/ok ++ %1$s ++ Selecciona una fecha ++ Fecha seleccionada ++ Columna de días: %1$s ++ Formato no válido. ++ Ejemplo: %1$s ++ Usar: %1$s ++ El periodo no es válido. ++ Ir al año %1$s ++ Fuera del periodo válido: %1$s ++ Fecha de inicio–%1$s ++ %1$s–Fecha de finalización ++ %1$s – %2$s ++ Selecciona un periodo ++ Fecha de inicio–Fecha de finalización ++ Guardar ++ Fecha ++ Fecha de finalización ++ Fecha de inicio ++ d ++ m ++ a ++ Cambiar al modo de introducción Calendario ++ Toca para seleccionar un día ++ Cambiar al modo de introducción Texto ++ Toca para seleccionar un año ++ Mostrar contraseña ++ "Buscar" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-et/values-et.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-et/values-et.xml +new file mode 100644 +index 0000000..090540d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-et/values-et.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d uus märguanne ++ %d uut märguannet ++ ++ "Liigu avalehele" ++ "Liigu üles" ++ "Rohkem valikuid" ++ "Valmis" ++ "Kuva kõik" ++ "Valige rakendus" ++ "VÄLJAS" ++ "SEES" ++ "Alt +" ++ "Ctrl +" ++ "kustuta" ++ "sisestusklahv" ++ "Funktsiooniklahv +" ++ "Meta +" ++ "Tõstuklahv +" ++ "tühik" ++ "Sym +" ++ "Menüü +" ++ "Otsige …" ++ "Päringu tühistamine" ++ "Otsingupäring" ++ "Otsing" ++ "Päringu esitamine" ++ "Häälotsing" ++ "Jaga:" ++ "Jagamine rakendusega %s" ++ "Ahendamine" ++ Laiendamine poolenisti ++ Sisestatud tähemärgid: %1$d/%2$d ++ Tähemärgipiirang on ületatud: %1$d/%2$d ++ Kustuta tekst ++ Viga ++ Kuva rippmenüü ++ Dialoogi ikoon ++ Vaheleht ++ Valige AM või PM ++ Valige tund ++ Kell %1$s ++ Minutite valimine ++ %1$s minutit ++ AM ++ Aktiveerige kellaaja sisestamiseks kellarežiim. ++ Tunnid ++ Minut ++ PM ++ Aja valimine ++ Aktiveerige kellaaja sisestamiseks tekstisisestusrežiim. ++ Uus märguanne ++ Üksuse %1$s eemaldamine ++ Rohkem kui %1$d uut märguannet ++ Vaheta järgmisele kuule ++ Vaheta eelmisele kuule ++ Praegune valik: %1$s ++ @android:string/ok ++ %1$s ++ Valige kuupäev ++ Valitud kuupäev ++ Päevade veerg: %1$s ++ Sobimatu vorming. ++ Näide: %1$s ++ Kasutage: %1$s ++ Sobimatu vahemik. ++ Mine aastasse %1$s ++ Vahemikust väljas: %1$s ++ Alguskuupäev – %1$s ++ %1$s – lõppkuupäev ++ %1$s–%2$s ++ Valige vahemik ++ Alguskuupäev – lõppkuupäev ++ Salvesta ++ Kuupäev ++ Lõppkuupäev ++ Alguskuupäev ++ p ++ k ++ a ++ Lülitu kalendrisisestusrežiimile ++ Puudutage, et lülituda päeva valimisele ++ Lülitu tekstisisestusrežiimile ++ Puudutage, et lülituda aasta valimisele ++ Parooli kuvamine ++ "Otsing" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml +new file mode 100644 +index 0000000..004d6a1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d jakinarazpen berri ++ %d jakinarazpen berri ++ ++ "Joan orri nagusira" ++ "Joan gora" ++ "Aukera gehiago" ++ "Eginda" ++ "Ikusi guztiak" ++ "Aukeratu aplikazio bat" ++ "DESAKTIBATU" ++ "AKTIBATU" ++ "Alt +" ++ "Ktrl +" ++ "ezabatu" ++ "sartu" ++ "Funtzioa +" ++ "Meta +" ++ "Maius +" ++ "zuriunea" ++ "Sym +" ++ "Menua +" ++ "Bilatu…" ++ "Garbitu kontsulta" ++ "Bilaketa-kontsulta" ++ "Bilatu" ++ "Bidali kontsulta" ++ "Ahozko bilaketa" ++ "Partekatu honekin" ++ "Partekatu %s aplikazioarekin" ++ "Tolestu" ++ Zabaldu erdiraino ++ %1$d/%2$d karaktere idatzi dira ++ Karaktere-muga gainditu da: %1$d/%2$d ++ Garbitu testua ++ Errorea ++ Erakutsi goitibeherako menua ++ Leihoko ikonoa ++ Fitxa ++ Hautatu AM edo PM ++ Hautatu ordua ++ %1$s(r)ak dira ++ Hautatu minutuak ++ %1$s minutu ++ AM ++ Aldatu erloju modura ordua zehazteko. ++ Ordua ++ Minutua ++ PM ++ Hautatu ordua ++ Ordua idazteko, aldatu testua idazteko metodora. ++ Jakinarazpen berria ++ Kendu %1$s ++ %1$d jakinarazpen berri baino gehiago ++ Aldatu hurrengo hilabetera ++ Aldatu aurreko hilabetera ++ Uneko hautapena: %1$s ++ @android:string/ok ++ %1$s ++ Hautatu data ++ Hautatutako data ++ Egunen zutabea:%1$s ++ Formatuak ez du balio. ++ Adibidea: %1$s ++ Erabili: %1$s ++ Tarteak ez du balio. ++ Joan %1$s. urtera ++ Onartutako barrutitik kanpo: %1$s ++ Hasiera-data – %1$s ++ %1$s – Amaiera-data ++ %1$s-%2$s ++ Hautatu barrutia ++ Hasiera-data - Amaiera-data ++ Gorde ++ Data ++ Amaiera-data ++ Hasiera-data ++ e ++ h ++ u ++ Aldatu egutegiaren idazketa-metodora ++ Sakatu eguna hautatzeko modura aldatzeko ++ Aldatu testua idazteko modura ++ Sakatu urtea hautatzeko modura aldatzeko ++ Erakutsi pasahitza ++ "Bilatu" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml +new file mode 100644 +index 0000000..b9c60a4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d اعلان جدید ++ %d اعلان جدید ++ ++ "پیمایش به صفحه اصلی" ++ "رفتن به بالا" ++ "گزینه‌های بیشتر" ++ "تمام" ++ "دیدن همه" ++ "انتخاب برنامه" ++ "خاموش" ++ "روشن" ++ "‎Alt+‎" ++ "‎Ctrl+‎" ++ "حذف" ++ "enter" ++ "‎Function+‎" ++ "‎Meta+‎" ++ "‎Shift+‎" ++ "فاصله" ++ "‎Sym+‎" ++ "منو+" ++ "جستجو…‏" ++ "پاک کردن پُرسمان" ++ "درخواست جستجو" ++ "جستجو" ++ "ارسال پُرسمان" ++ "جستجوی گفتاری" ++ "هم‌رسانی با" ++ "هم‌رسانی با %s" ++ "کوچک کردن" ++ گسترده کردن تا نیمه ++ نویسه‌های واردشده %1$d از %2$d ++ محدودیت نویسه از حد مجاز %1$d از %2$d بیشتر شده است ++ پاک کردن نوشتار ++ خطا ++ نمایش منوی کرکره‌ای ++ نماد کادر گفتگو ++ برگه ++ انتخاب .ق.ظ. یا ب.ظ. ++ انتخاب ساعت ++ ساعت %1$s ++ انتخاب دقیقه ++ %1$s دقیقه ++ ق.ظ ++ برای وارد کردن زمان، به حالت ساعت تغییر وضعیت دهید. ++ ساعت ++ دقیقه ++ ب.ظ ++ انتخاب زمان ++ برای وارد کردن زمان، به حالت ورودی نوشتاری تغییر وضعیت دهید. ++ اعلان جدید ++ برداشتن %1$s ++ بیش از %1$d اعلان جدید ++ تغییر به ماه بعدی ++ تغییر به ماه قبلی ++ انتخاب کنونی: %1$s ++ @android:string/ok ++ %1$s ++ انتخاب تاریخ ++ تاریخ انتخابی ++ ستون روز: %1$s ++ قالب نامعتبر است. ++ مثال: %1$s ++ قالب: %1$s ++ محدوده نامعتبر است. ++ رفتن به سال %1$s ++ خارج از محدوده: %1$s ++ تاریخ شروع – %1$s ++ %1$s – تاریخ پایان ++ %1$s – %2$s ++ انتخاب محدوده ++ تاریخ شروع – تاریخ پایان ++ ذخیره ++ تاریخ ++ تاریخ پایان ++ تاریخ شروع ++ d ++ m ++ y ++ رفتن به روش ورودی تقویم ++ رفتن به رفتن به حالت انتخاب روز ضربه بزنید ++ رفتن به حالت ورودی نوشتاری ++ برای رفتن به حالت انتخاب سال ضربه بزنید ++ نمایش گذرواژه ++ "جستجو" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml +new file mode 100644 +index 0000000..4c9ff26 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d uusi ilmoitus ++ %d uutta ilmoitusta ++ ++ "Siirry etusivulle" ++ "Siirry ylös" ++ "Lisäasetukset" ++ "Valmis" ++ "Näytä kaikki" ++ "Valitse sovellus" ++ "POIS PÄÄLTÄ" ++ "PÄÄLLÄ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Vaihto+" ++ "välilyönti" ++ "Sym+" ++ "Valikko+" ++ "Haku…" ++ "Tyhjennä kysely" ++ "Hakukysely" ++ "Haku" ++ "Lähetä kysely" ++ "Puhehaku" ++ "Jaa…" ++ "Jaa: %s" ++ "Tiivistä" ++ Laajenna puoliväliin ++ %1$d/%2$d merkkiä kirjoitettu ++ Merkkiraja ylitetty: %1$d/%2$d ++ Tyhjennä teksti ++ Virhe ++ Näytä avattava valikko ++ Valintaikkunan kuvake ++ Välilehti ++ Valitse AP tai IP ++ Valitse tunti ++ klo %1$s ++ Valitse minuutit ++ %1$s minuuttia ++ ap ++ Vaihda ajan syöttämiseen kellotilassa. ++ Tunnit ++ Minuutti ++ ip ++ Valitse aika ++ Vaihda ajan syöttämiseen tekstitilassa. ++ Uusi ilmoitus ++ Poista %1$s ++ Yli %1$d uutta ilmoitusta ++ Vaihda seuraavaan kuukauteen ++ Vaihda edelliseen kuukauteen ++ Nykyinen valinta: %1$s ++ @android:string/ok ++ %1$s ++ Valitse päivämäärä ++ Valittu päivämäärä ++ Päiväsarake: %1$s ++ Virheellinen muoto ++ Esimerkki: %1$s ++ Käytä muotoa %1$s ++ Virheellinen alue ++ Siirry vuoteen %1$s ++ Katvealueella: %1$s ++ Alkamispäivä – %1$s ++ %1$s – päättymispäivä ++ %1$s – %2$s ++ Valitse jakso ++ Alkamispäivä – päättymispäivä ++ Tallenna ++ Päivämäärä ++ Päättymispäivä ++ Alkamispäivä ++ p ++ k ++ v ++ Vaihda syöttötavaksi kalenteri ++ Siirry päivän valintaan napauttamalla ++ Valitse syöttötavaksi teksti ++ Siirry vuoden valintaan napauttamalla ++ Näytä salasana ++ "Haku" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +new file mode 100644 +index 0000000..0cb0cde +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d nouvelle notification ++ %d nouvelles notifications ++ ++ "Revenir à l\'accueil" ++ "Revenir en arrière" ++ "Autres options" ++ "Terminé" ++ "Tout afficher" ++ "Sélectionner une application" ++ "DÉSACTIVER" ++ "ACTIVER" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrée" ++ "Fonction+" ++ "Méta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercher…" ++ "Effacer la requête" ++ "Requête de recherche" ++ "Rechercher" ++ "Envoyer la requête" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "Réduire" ++ Développer à moitié ++ Caractères entrés : %1$d sur %2$d ++ Limite de caractère dépassée : %1$d sur %2$d ++ Effacer le texte ++ Erreur ++ Afficher le menu déroulant ++ Icône de boîte de dialogue ++ Onglet ++ Sélectionner AM ou PM ++ Sélectionner l\'heure ++ %1$s heures ++ Sélectionnez les minutes ++ %1$s minutes ++ AM ++ Passer au mode Horloge pour entrer l\'heure. ++ Heure ++ Minute ++ PM ++ Sélectionner l\'heure ++ Passer au mode Entrée de texte pour entrer l\'heure. ++ Nouvelle notification ++ Supprimer %1$s ++ Plus de %1$d nouvelles notifications ++ Passer au mois suivant ++ Passer au mois précédent ++ Sélection actuelle : %1$s ++ @android:string/ok ++ %1$s ++ Sélectionnez la date ++ Date sélectionnée ++ Colonne des jours : %1$s ++ Format incorrect ++ Exemple : %1$s ++ Utiliser : %1$s ++ Plage incorrecte. ++ Naviguer vers l\'année %1$s ++ Hors de la plage : %1$s ++ Du (date de début) au %1$s ++ Du %1$s au (date de fin) ++ Du %1$s au %2$s ++ Sélectionnez la plage ++ Du (date de début) au (date de fin) ++ Enregistrer ++ Date ++ Date de fin ++ Date de début ++ j ++ m ++ a ++ Passer au mode d\'entrée Agenda ++ Touchez pour passer à la sélection de jour ++ Passer au mode d\'entrée Texte ++ Touchez pour passer à la sélection d\'année ++ Afficher le mot de passe ++ "Rechercher" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml +new file mode 100644 +index 0000000..8356128 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d nouvelle notification ++ %d nouvelles notifications ++ ++ "Revenir à l\'accueil" ++ "Revenir en haut de la page" ++ "Autres options" ++ "OK" ++ "Tout afficher" ++ "Sélectionner une application" ++ "NON" ++ "OUI" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrée" ++ "Fonction+" ++ "Méta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercher…" ++ "Effacer la requête" ++ "Requête de recherche" ++ "Rechercher" ++ "Envoyer la requête" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "Réduire" ++ Développer en entier ++ Caractères saisis %1$d sur %2$d ++ Nombre maximal de caractères dépassé : %1$d sur %2$d ++ Effacer le texte ++ Erreur ++ Afficher le menu déroulant ++ Icône de la boîte de dialogue ++ Tabulation ++ Sélectionner le format AM ou PM ++ Sélectionnez une heure ++ %1$s h ++ Sélectionner des minutes ++ %1$s min ++ AM ++ Passer en mode horloge pour la saisie de l\'heure. ++ Heure ++ Minute ++ PM ++ Sélectionner l\'heure ++ Passer en mode saisie de texte pour la saisie de l\'heure. ++ Nouvelle notification ++ Supprimer %1$s ++ Plus de %1$d nouvelles notifications ++ Passer au mois suivant ++ Passer au mois précédent ++ Sélection actuelle : %1$s ++ @android:string/ok ++ %1$s ++ Sélectionnez une date ++ Date sélectionnée ++ Colonne du jour de la semaine : %1$s ++ Format incorrect. ++ Exemple : %1$s ++ Utiliser %1$s ++ Plage non valide. ++ Accéder à l\'année %1$s ++ Hors de portée : %1$s ++ Date de début – %1$s ++ %1$s – Date de fin ++ %1$s - %2$s ++ Sélectionnez une période ++ Date de début – Date de fin ++ Enregistrer ++ Date ++ Date de fin ++ Date de début ++ j ++ m ++ a ++ Passer au mode de saisie Agenda ++ Appuyer pour sélectionner un jour ++ Passer au mode de saisie Texte ++ Appuyer pour sélectionner une année ++ Afficher le mot de passe ++ "Rechercher" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml +new file mode 100644 +index 0000000..654663c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d notificación nova ++ %d notificacións novas ++ ++ "Vai ao inicio" ++ "Vai cara arriba" ++ "Máis opcións" ++ "Feito" ++ "Ver todo" ++ "Selecciona unha aplicación" ++ "DESACTIVAR" ++ "ACTIVAR" ++ "Alt +" ++ "Ctrl +" ++ "eliminar" ++ "intro" ++ "Función +" ++ "Meta +" ++ "Maiús +" ++ "espazo" ++ "Sym +" ++ "Menú +" ++ "Busca…" ++ "Borra a consulta" ++ "Busca a consulta" ++ "Realiza buscas" ++ "Envía a consulta" ++ "Busca por voz" ++ "Comparte contido con" ++ "Comparte contido coa aplicación %s" ++ "Contrae" ++ Despregar ata a metade ++ Introducíronse %1$d caracteres de %2$d ++ Introducíronse %1$d caracteres, pero o límite é de %2$d ++ Borra texto ++ Produciuse un erro ++ Mostra o menú despregable ++ Icona de cadro de diálogo ++ Pestana ++ Seleccionar a.m. ou p.m. ++ Seleccionar hora ++ %1$s en punto ++ Seleccionar minutos ++ %1$s minutos ++ a.m. ++ Cambiar ao modo de reloxo para introducir a hora. ++ Hora ++ Minuto ++ p.m. ++ Seleccionar hora ++ Cambia ao modo de introdución de texto para introducir a hora. ++ Notificación nova ++ Quita %1$s ++ Máis de %1$d notificacións novas ++ Cambiar ao mes seguinte ++ Cambiar ao mes anterior ++ Selección actual: %1$s ++ @android:string/ok ++ %1$s ++ Selecciona unha data ++ Data seleccionada ++ Columna de días: %1$s ++ O formato non é válido. ++ Exemplo: %1$s ++ Usa este formato: %1$s ++ O intervalo de datas non é válido. ++ Ir ao ano %1$s ++ Só se admiten datas do intervalo: %1$s ++ Data de inicio - %1$s ++ %1$s - data de finalización ++ %1$s - %2$s ++ Selecciona un intervalo de datas ++ Data de inicio - data de finalización ++ Gardar ++ Data ++ Data de finalización ++ Data de inicio ++ d ++ m ++ a ++ Cambiar ao modo de entrada de calendario ++ Tocar para cambiar a selección de día ++ Cambiar ao modo de introdución de texto ++ Tocar para cambiar a selección de ano ++ Mostra o contrasinal ++ "Buscar" ++ ">999" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml +new file mode 100644 +index 0000000..7db7b93 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d નવું નોટિફિકેશન ++ %d નવા નોટિફિકેશન ++ ++ "ઘરનો રસ્તો બતાવો" ++ "ઉપર નૅવિગેટ કરો" ++ "વધુ વિકલ્પો" ++ "થઈ ગયું" ++ "બધી જુઓ" ++ "ઍપ્લિકેશન પસંદ કરો" ++ "બંધ" ++ "ચાલુ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "શોધો…" ++ "ક્વેરી સાફ કરો" ++ "શોધ ક્વેરી" ++ "શોધો" ++ "ક્વેરી સબમિટ કરો" ++ "વૉઇસ શોધ" ++ "આની સાથે શેર કરો" ++ "%sની સાથે શેર કરો" ++ "સંકુચિત કરો" ++ અડધે સુધી મોટું કરો ++ %2$dમાંથી %1$d અક્ષરો દાખલ કર્યા ++ %2$dમાંથી %1$dની વર્ણ મર્યાદા ઓળંગાઈ ગઈ છે ++ ટેક્સ્ટ સાફ કરો ++ ભૂલ ++ ડ્રૉપડાઉન મેનૂ બતાવો ++ સંવાદનું આઇકન ++ ટૅબ ++ AM અથવા PM પસંદ કરો ++ સમય પસંદ કરો ++ %1$s વાગ્યા છે ++ મિનિટ પસંદ કરો ++ %1$s મિનિટ ++ AM ++ સમય દાખલ કરવા માટે ઘડિયાળ મોડમાં સ્વિચ કરો. ++ કલાક ++ મિનિટ ++ PM ++ સમય પસંદ કરો ++ સમય દાખલ કરવા માટે ટેક્સ્ટ ઇનપુટ મોડમાં સ્વિચ કરો. ++ નવું નોટિફિકેશન ++ %1$s કાઢી નાખો ++ %1$dથી વધુ નવા નોટિફિકેશન ++ આગલા મહિના પર બદલો ++ પાછલા મહિના પર બદલો ++ હાલની પસંદગી: %1$s ++ @android:string/ok ++ %1$s ++ તારીખ પસંદ કરો ++ પસંદ કરેલી તારીખ ++ દિવસોની કૉલમ: %1$s ++ અમાન્ય ફોર્મેટ. ++ ઉદાહરણ: %1$s ++ આનો ઉપયોગ કરો: %1$s ++ અમાન્ય શ્રેણી. ++ %1$sના વર્ષ પર નૅવિગેટ કરો ++ આ શ્રેણીની બહાર છે: %1$s ++ શરૂ કરવાની તારીખ – %1$s ++ %1$s – સમાપ્તિની તારીખ ++ %1$s – %2$s ++ શ્રેણી પસંદ કરો ++ શરૂ કરવાની તારીખ – સમાપ્તિની તારીખ ++ સાચવો ++ તારીખ ++ સમાપ્તિની તારીખ ++ શરૂ કરવાની તારીખ ++ d ++ m ++ y ++ કૅલેન્ડર ઇનપુટ મોડ પર સ્વિચ કરો ++ દિવસની પસંદગી પર સ્વિચ કરવા માટે ટૅપ કરો ++ ટેક્સ્ટ ઇનપુટ મોડ પર સ્વિચ કરો ++ વર્ષની પસંદગી પર સ્વિચ કરવા માટે ટૅપ કરો ++ પાસવર્ડ બતાવો ++ "શોધો" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml +new file mode 100644 +index 0000000..62716d4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 8dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml +new file mode 100644 +index 0000000..4badce1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml +@@ -0,0 +1,12 @@ ++ ++ ++ 4dp ++ 18dp ++ 40dp ++ 2dp ++ 2dp ++ 40dp ++ 20dp ++ 128dp ++ 4dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml +new file mode 100644 +index 0000000..86eb422 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml +@@ -0,0 +1,12 @@ ++ ++ ++ 0dp ++ 22dp ++ 48dp ++ 2dp ++ 2dp ++ 48dp ++ 20dp ++ 168dp ++ 0dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml +new file mode 100644 +index 0000000..9b3fbb8 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 24dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +new file mode 100644 +index 0000000..e38bb90 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 54dip ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +new file mode 100644 +index 0000000..d5a138e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +@@ -0,0 +1,8 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml +new file mode 100644 +index 0000000..db27a74 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d नई सूचनाएं ++ %d नई सूचनाएं ++ ++ "होम पेज पर जाएं" ++ "वापस जाएं" ++ "ज़्यादा विकल्प" ++ "हो गया" ++ "सभी देखें" ++ "कोई ऐप्लिकेशन चुनें" ++ "बंद" ++ "चालू" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "खोजें…" ++ "क्‍वेरी हटाएं" ++ "सर्च क्वेरी" ++ "खोजें" ++ "क्वेरी सबमिट करें" ++ "बोलकर खोजें" ++ "इससे शेयर करें:" ++ "%s से शेयर करें" ++ "छोटा करें" ++ पूरी तरह बड़ा करें ++ %2$d वर्णों में से %1$d वर्ण दर्ज किए गए ++ अभी %1$d वर्ण हैं जबकि %2$d से ज़्यादा नहीं होने चाहिए ++ टेक्स्ट मिटाएं ++ गड़बड़ी ++ ड्रॉपडाउन मेन्यू दिखाएं ++ डायलॉग का आइकॉन ++ टैब ++ AM या PM चुनें ++ घंटा चुनें ++ %1$s बजे ++ मिनट चुनें ++ %1$s मिनट ++ पूर्वाह्न ++ समय इनपुट के लिए घड़ी मोड पर जाएं. ++ घंटा ++ मिनट ++ अपराह्न ++ समय चुनें ++ समय इनपुट के लिए लेख इनपुट मोड पर जाएं. ++ नई सूचना ++ %1$s हटाएं ++ %1$d से ज़्यादा नई सूचनाएं ++ अगले महीने पर जाएं ++ पिछले महीने पर जाएं ++ फ़िलहाल, यह चुना गया है: %1$s ++ @android:string/ok ++ %1$s ++ तारीख चुनें ++ चुनी गई तारीख ++ दिनों का कॉलम: %1$s ++ गलत फ़ॉर्मैट. ++ उदाहरण: %1$s ++ %1$s का इस्तेमाल करें ++ तारीखों की अमान्य सीमा. ++ साल %1$s पर जाएं ++ तारीख की मान्य सीमा से बाहर: %1$s ++ शुरू होने की तारीख – %1$s ++ %1$s – खत्म होने की तारीख ++ %1$s – %2$s ++ रेंज चुनें ++ शुरू होने की तारीख – खत्म होने की तारीख ++ सेव करें ++ तारीख ++ खत्म होने की तारीख ++ शुरू होने की तारीख ++ d ++ m ++ y ++ कैलेंडर के इनपुट मोड पर स्विच करें ++ \'दिन चुनना\' पर स्विच करने के लिए टैप करें ++ टेक्स्ट के इनपुट मोड पर स्विच करें ++ \'साल चुनना\' पर स्विच करने के लिए टैप करें ++ पासवर्ड दिखाएं ++ "खोजें" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml +new file mode 100644 +index 0000000..5e1778d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml +@@ -0,0 +1,91 @@ ++ ++ ++ ++ %d nova obavijest ++ %d nove obavijesti ++ %d novih obavijesti ++ ++ "Idi na početnu" ++ "Natrag" ++ "Više opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Odabir aplikacije" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "svemir" ++ "Sym+" ++ "Menu+" ++ "Pretražite…" ++ "Izbriši upit" ++ "Upit za pretraživanje" ++ "Pretraži" ++ "Pošalji upit" ++ "Glasovno pretraživanje" ++ "Dijeli s" ++ "Dijeli putem aplikacije %s" ++ "Sažmi" ++ Proširi donju polovicu ++ Uneseno znakova: %1$d od %2$d ++ Premašeno je ograničenje broja znakova: %1$d od %2$d ++ Brisanje teksta ++ Pogreška ++ Prikaži padajući izbornik ++ Ikona dijaloga ++ Kartica ++ Odaberite prijepodne ili poslijepodne ++ Odaberite sat ++ %1$s h ++ Odaberite minute ++ %1$s min ++ AM ++ Prijeđite na način rada sata da biste unijeli vrijeme. ++ Sat ++ Minuta ++ PM ++ Odabir vremena ++ Prijeđite na način unosa teksta da biste unijeli vrijeme. ++ Nova obavijest ++ Ukloni %1$s ++ Više od %1$d novih obavijesti ++ Prijelaz na sljedeći mjesec ++ Pomicanje na prethodni mjesec ++ Trenutačan odabir: %1$s ++ @android:string/ok ++ %1$s ++ Odaberite datum ++ Odabrani datum ++ Stupac s danima: %1$s ++ Nevažeći format. ++ Primjer: %1$s ++ Koristi format: %1$s ++ Raspon nije važeći. ++ Prijelaz na godinu %1$s ++ Izvan raspona: %1$s ++ Datum početka – %1$s ++ %1$s – datum završetka ++ %1$s – %2$s ++ Odaberite raspon ++ Datum početka – datum završetka ++ Spremi ++ Datum ++ Datum završetka ++ Datum početka ++ d ++ m ++ g ++ Prijelaz na način unosa u Kalendaru ++ Dodirnite za prijelaz na odabir dana ++ Prijelaz na način unosa teksta ++ Dodirnite za prijelaz na odabir godine ++ Prikaži zaporku ++ "Pretraži" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml +new file mode 100644 +index 0000000..5c019ea +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d új értesítés ++ %d új értesítés ++ ++ "Ugrás a főoldalra" ++ "Fel" ++ "További lehetőségek" ++ "Kész" ++ "Az összes megtekintése" ++ "Válasszon alkalmazást" ++ "KI" ++ "BE" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Szóköz" ++ "Sym+" ++ "Menu+" ++ "Keresés…" ++ "Lekérdezés törlése" ++ "Keresési lekérdezés" ++ "Keresés" ++ "Lekérdezés küldése" ++ "Hangalapú keresés" ++ "Megosztás a következővel:" ++ "Megosztás a következő alkalmazással: %s" ++ "Összecsukás" ++ Kibontás félig ++ Begépelt karakterszám: %2$d/%1$d ++ Maximális karakterszám túllépve: %2$d/%1$d ++ Szöveg törlése ++ Hiba ++ Legördülő menü megjelenítése ++ Párbeszédpanel ikonja ++ Lap ++ Válassza ki, hogy délelőtt vagy délután ++ Óra kiválasztása ++ %1$s óra ++ Perc kiválasztása ++ %1$s perc ++ de. ++ Időbevitelhez váltson óramódba. ++ Óra ++ Perc ++ du. ++ Időpont kiválasztása ++ Időbevitelhez váltson szövegbeviteli módba. ++ Új értesítés ++ Eltávolítás (%1$s) ++ Több mint %1$d új értesítés ++ Váltás a következő hónapra ++ Váltás az előző hónapra ++ Jelenleg kiválasztva: %1$s ++ @android:string/ok ++ %1$s ++ Válasszon dátumot ++ Kiválasztott dátum ++ Napok oszlopa: %1$s ++ Érvénytelen formátum. ++ Példa: %1$s ++ Használja ezt: %1$s ++ Érvénytelen tartomány. ++ Ugrás ehhez az évhez: %1$s ++ Tartományon kívül: %1$s ++ Kezdés dátuma – %1$s ++ %1$s – Befejezés dátuma ++ %1$s – %2$s ++ Válasszon dátumtartományt ++ Kezdés dátuma – Befejezés dátuma ++ Mentés ++ Dátum ++ Befejezés dátuma ++ Kezdés dátuma ++ N ++ H ++ É ++ Váltás naptárbeviteli módra ++ Koppintson a nap kiválasztásához ++ Váltás szövegbeviteli módra ++ Koppintson az év kiválasztásához ++ Jelszó megjelenítése ++ "Keresés" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml +new file mode 100644 +index 0000000..f68a610 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d նոր ծանուցում ++ %d նոր ծանուցում ++ ++ "Անցնել գլխավոր էջ" ++ "Անցնել վերև" ++ "Այլ ընտրանքներ" ++ "Պատրաստ է" ++ "Տեսնել բոլորը" ++ "Ընտրել հավելված" ++ "ԱՆՋԱՏԵԼ" ++ "ՄԻԱՑՆԵԼ" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "բացատ" ++ "Sym+" ++ "Menu+" ++ "Որոնում…" ++ "Ջնջել հարցումը" ++ "Որոնման հարցում" ++ "Որոնել" ++ "Ուղարկել հարցումը" ++ "Ձայնային որոնում" ++ "Կիսվել…" ++ "Կիսվել %s հավելվածի միջոցով" ++ "Ծալել" ++ Ծավալել կիսով չափ ++ Մուտքագրված նիշեր՝ %1$d/%2$d ++ Նիշերի առավելագույն քանակը գերազանցվել է (%1$d/%2$d) ++ Ջնջել տեքստը ++ Սխալ ++ Ցույց տալ իջնող ընտրացանկը ++ Երկխոսության պատուհանի պատկերակ ++ Ներդիր ++ Ընտրել AM կամ PM ++ Ընտրել ժամը ++ Ժամը %1$s է ++ Ընտրեք րոպեն ++ %1$s րոպե ++ AM ++ Ժամը մուտքագրելու համար միացրեք ժամացույցի ռեժիմը: ++ Ժամ ++ Րոպե ++ PM ++ Ժամանակի ընտրություն ++ Ժամը մուտքագրելու համար միացրեք տեքստի մուտքագրման ռեժիմը: ++ Նոր ծանուցում ++ Հեռացնել (%1$s) ++ Ավելի քան %1$d նոր ծանուցում ++ Անցնել հաջորդ ամիս ++ Անցնել նախորդ ամիս ++ Ներկայիս ընտրությունը՝ %1$s ++ @android:string/ok ++ %1$s ++ Ընտրեք ամսաթիվը ++ Ընտրված ամսաթիվը ++ Օրերի սյունակ՝ %1$s ++ Ձևաչափը սխալ է։ ++ Օրինակ՝ %1$s ++ Օգտագործեք՝ %1$s ++ Ընդգրկույթն անվավեր է: ++ Անցնել %1$s թվական ++ Ընդգրկույթից դուրս է՝ %1$s ++ Մեկնարկի ամսաթիվը – %1$s ++ %1$s – Ավարտի ամսաթիվը ++ %1$s – %2$s ++ Ընտրեք ընդգրկույթը ++ Մեկնարկի ամսաթիվը – Ավարտի ամսաթիվը ++ Պահել ++ Ամսաթիվ ++ Ավարտի ամսաթիվը ++ Մեկնարկի ամսաթիվը ++ օ ++ ա ++ տ ++ Անցնել օրացույցի մուտքագրման ռեժիմ ++ Հպեք՝ օրվա ընտությանն անցնելու համար ++ Անցնել տեքստի մուտքագրման ռեժիմին ++ Հպեք՝ տարեթվի ընտությանն անցնելու համար ++ Ցուցադրել գաղտնաբառը ++ "Որոնել" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-in/values-in.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-in/values-in.xml +new file mode 100644 +index 0000000..be9c2bb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-in/values-in.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d notifikasi baru ++ %d notifikasi baru ++ ++ "Tunjukkan jalan ke rumah" ++ "Kembali ke atas" ++ "Opsi lain" ++ "Selesai" ++ "Lihat semua" ++ "Pilih aplikasi" ++ "NONAKTIF" ++ "AKTIF" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "spasi" ++ "Sym+" ++ "Menu+" ++ "Telusuri..." ++ "Hapus kueri" ++ "Telusuri kueri" ++ "Telusuri" ++ "Kirim kueri" ++ "Penelusuran suara" ++ "Bagikan dengan" ++ "Bagikan dengan %s" ++ "Ciutkan" ++ Luaskan setengah ++ Karakter yang dimasukkan %1$d dari %2$d ++ Melebihi batas karakter %1$d dari %2$d ++ Menghapus teks ++ Error ++ Tampilkan menu dropdown ++ Ikon Dialog ++ Tab ++ Pilih AM atau PM ++ Pilih jam ++ Pukul %1$s ++ Pilih menit ++ %1$s menit ++ AM ++ Beralih ke mode jam untuk masukan waktu. ++ Jam ++ Menit ++ PM ++ Pilih waktu ++ Beralih ke mode masukan teks untuk masukan waktu. ++ Notifikasi baru ++ Menghapus %1$s ++ Lebih dari %1$d notifikasi baru ++ Ubah ke bulan berikutnya ++ Ubah ke bulan sebelumnya ++ Pilihan saat ini: %1$s ++ @android:string/ok ++ %1$s ++ Pilih Tanggal ++ Tanggal yang dipilih ++ Kolom hari: %1$s ++ Format tidak valid. ++ Contoh: %1$s ++ Gunakan: %1$s ++ Rentang tidak valid. ++ Buka tahun %1$s ++ Di luar rentang: %1$s ++ Tanggal mulai – %1$s ++ %1$s – Tanggal akhir ++ %1$s – %2$s ++ Pilih Rentang ++ Tanggal mulai – Tanggal akhir ++ Simpan ++ Tanggal ++ Tanggal akhir ++ Tanggal mulai ++ h ++ b ++ t ++ Beralih ke mode masukan kalender ++ Ketuk untuk beralih ke memilih hari ++ Beralih ke mode masukan teks ++ Ketuk untuk beralih ke memilih tahun ++ Tampilkan sandi ++ "Telusuri" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-is/values-is.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-is/values-is.xml +new file mode 100644 +index 0000000..59c7534 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-is/values-is.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ný tilkynning ++ %d nýjar tilkynningar ++ ++ "Fara heim" ++ "Fara upp" ++ "Fleiri valkostir" ++ "Lokið" ++ "Sjá allt" ++ "Veldu forrit" ++ "SLÖKKT" ++ "KVEIKT" ++ "Alt+" ++ "Ctrl+" ++ "eyða" ++ "enter" ++ "Aðgerðarlykill+" ++ "Meta+" ++ "Shift+" ++ "bilslá" ++ "Sym+" ++ "Valmynd+" ++ "Leita…" ++ "Hreinsa fyrirspurn" ++ "Leitarfyrirspurn" ++ "Leit" ++ "Senda fyrirspurn" ++ "Raddleit" ++ "Deila með" ++ "Deila með %s" ++ "Minnka" ++ Stækka til hálfs ++ Innslegnir stafir %1$d af %2$d ++ Yfir hámarksstafafjölda, %1$d af %2$d ++ Hreinsa texta ++ Villa ++ Sýna fellivalmynd ++ Gluggatákn ++ Flipi ++ Velja f.h. eða e.h. ++ Velja tíma ++ klukkan %1$s ++ Veldu mínútur ++ %1$s mínútur ++ f.h. ++ Skipta yfir í klukkustillingu til að færa inn tíma. ++ Klukkustund ++ Mínúta ++ e.h. ++ Veldu tíma ++ Skipta yfir í textastillingu til að færa inn tíma. ++ Ný tilkynning ++ Fjarlægja %1$s ++ Yfir %1$d nýjar tilkynningar ++ Breyta í næsta mánuð ++ Breyta í fyrri mánuð ++ Núverandi val: %1$s ++ @android:string/ok ++ %1$s ++ Veldu dagsetningu ++ Valin dagsetning ++ Dálkur með dögum: %1$s ++ Ógilt snið. ++ Dæmi: %1$s ++ Nota: %1$s ++ Ógilt svið. ++ Fara í árið %1$s ++ Utan sviðs: %1$s ++ Upphafsdagur – %1$s ++ %1$s – lokadagur ++ %1$s – %2$s ++ Veldu tímabil ++ Upphafsdagur – lokadagur ++ Vista ++ Dagsetning ++ Lokadagur ++ Upphafsdagur ++ d ++ m ++ á ++ Skipta yfir í innfærsluaðferð fyrir dagatal ++ Ýttu til að skipta yfir í að velja dag ++ Skipta yfir í innfærsluaðferð fyrir texta ++ Ýttu til að skipta yfir í að velja ár ++ Sýna aðgangsorð ++ "Leit" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-it/values-it.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-it/values-it.xml +new file mode 100644 +index 0000000..7e73a38 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-it/values-it.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d nuova notifica ++ %d nuove notifiche ++ ++ "Portami a casa" ++ "Torna indietro" ++ "Altre opzioni" ++ "Fine" ++ "Mostra tutto" ++ "Scelta di un\'app" ++ "OFF" ++ "ON" ++ "ALT +" ++ "CTRL +" ++ "CANC" ++ "INVIO" ++ "FUNZIONE +" ++ "META +" ++ "MAIUSC +" ++ "SPAZIO" ++ "SYM +" ++ "MENU +" ++ "Cerca…" ++ "Cancella query" ++ "Query di ricerca" ++ "Cerca" ++ "Invia query" ++ "Ricerca vocale" ++ "Condividi con" ++ "Condividi tramite %s" ++ "Comprimi" ++ Espandi a metà ++ %1$d caratteri inserirti su %2$d ++ Sono presenti %2$d caratteri in più rispetto al limite di %1$d ++ Cancella testo ++ Errore ++ Mostra il menu a discesa ++ Icona della finestra di dialogo ++ Scheda ++ Seleziona AM o PM ++ Seleziona l\'ora ++ %1$s in punto ++ Seleziona i minuti ++ %1$s minuti ++ am ++ Passa alla modalità orologio per inserire l\'ora. ++ Ora ++ Minuto ++ pm ++ Seleziona l\'ora ++ Passa alla modalità di immissione testo per inserire l\'ora. ++ Nuova notifica ++ Rimuovi %1$s ++ Più di %1$d nuove notifiche ++ Passa al mese successivo ++ Passa al mese precedente ++ Selezione attuale: %1$s ++ @android:string/ok ++ %1$s ++ Seleziona data ++ Data selezionata ++ Colonna dei giorni: %1$s ++ Formato non valido. ++ Esempio: %1$s ++ Usa: %1$s ++ Intervallo non valido. ++ Vai all\'anno %1$s ++ Non compresa nell\'intervallo: %1$s ++ Data di inizio - %1$s ++ %1$s - Data di fine ++ %1$s - %2$s ++ Seleziona intervallo ++ Data di inizio - Data di fine ++ Salva ++ Data ++ Data di fine ++ Data di inizio ++ g ++ m ++ a ++ Passa alla modalità di immissione Calendario ++ Tocca per passare alla selezione di un giorno ++ Passa alla modalità di immissione Testo ++ Tocca per passare alla selezione di un anno ++ Mostra password ++ "Cerca" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml +new file mode 100644 +index 0000000..e305ea0 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml +@@ -0,0 +1,92 @@ ++ ++ ++ ++ התראה חדשה אחת (%d) ++ %d התראות חדשות ++ %d התראות חדשות ++ %d התראות חדשות ++ ++ "ניווט לדף הבית" ++ "ניווט למעלה" ++ "עוד אפשרויות" ++ "סיום" ++ "הצגת הכול" ++ "בחירת אפליקציה" ++ "כבוי" ++ "מופעל" ++ "Alt+" ++ "Ctrl+‎" ++ "מחיקה" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "רווח" ++ "Sym+" ++ "תפריט+" ++ "חיפוש…" ++ "מחיקת השאילתה" ++ "שאילתת חיפוש" ++ "חיפוש" ++ "שליחת שאילתה" ++ "חיפוש קולי" ++ "שיתוף עם" ++ "שיתוף עם %s" ++ "כיווץ" ++ הרחבה עד האמצע ++ הוזנו %1$d תווים מתוך %2$d ++ מגבלת התווים חורגת ב-%1$d מתוך %2$d ++ מחיקת הטקסט ++ שגיאה ++ הצגת התפריט הנפתח ++ סמל לתיבת דו-שיח ++ מקש Tab ++ יש לבחור ב-AM או ב-PM ++ בחר שעה ++ השעה %1$s ++ בחר דקות ++ %1$s דקות ++ לפנה\"צ ++ העבר למצב שעון לצורך הזנת השעה ++ שעה ++ דקה ++ אחה\"צ ++ בחר שעה ++ העבר למצב קלט טקסט לצורך הזנת השעה ++ התראה חדשה ++ הסרה של %1$s ++ יותר מ-%1$d התראות חדשות ++ מעבר לחודש הבא ++ מעבר לחודש הקודם ++ הבחירה הנוכחית: %1$s ++ @android:string/ok ++ %1$s ++ יש לבחור תאריך ++ התאריך הנבחר ++ עמודה של ימים: %1$s ++ פורמט לא חוקי. ++ דוגמה: %1$s ++ יש להשתמש בפורמט: %1$s ++ טווח לא חוקי. ++ ניווט לשנת %1$s ++ מחוץ לטווח: %1$s ++ תאריך התחלה – %1$s ++ %1$s – תאריך סיום ++ %1$s – %2$s ++ יש לבחור טווח ++ תאריך התחלה - תאריך סיום ++ שמירה ++ תאריך ++ תאריך סיום ++ תאריך התחלה ++ י ++ ח ++ ש ++ החלפה לשיטת קלט של יומן ++ יש להקיש כדי להחליף לבחירת יום ++ החלפה לשיטת קלט של טקסט ++ יש להקיש כדי להחליף לבחירת שנה ++ הצגת סיסמה ++ "חיפוש" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml +new file mode 100644 +index 0000000..b49be74 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d 件の新しい通知 ++ %d 件の新しい通知 ++ ++ "ホームに戻る" ++ "前に戻る" ++ "その他のオプション" ++ "完了" ++ "すべて表示" ++ "アプリの選択" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Space" ++ "Sym+" ++ "Menu+" ++ "検索…" ++ "検索キーワードを削除" ++ "検索キーワード" ++ "検索" ++ "検索キーワードを送信" ++ "音声検索" ++ "共有" ++ "%sと共有" ++ "折りたたむ" ++ 下半分を展開 ++ 入力済み文字数: %1$d/%2$d ++ 文字数制限を超えています(%1$d/%2$d 文字) ++ テキストを消去 ++ エラー ++ プルダウン メニューを表示 ++ ダイアログ アイコン ++ タブ ++ 午前または午後を選択 ++ 時刻を選択してください ++ %1$s時 ++ 分を選択 ++ %1$s分 ++ AM ++ 時刻を時計で入力するモードに切り替えます。 ++ 時間 ++ ++ PM ++ 時間を選択 ++ 時刻をテキストで入力するモードに切り替えます。 ++ 新しい通知 ++ %1$s を削除します ++ %1$d 件以上の新しい通知 ++ 翌月に変更 ++ 前月に変更 ++ 現在の選択: %1$s ++ @android:string/ok ++ %1$s ++ 日付を選択してください ++ 選択した日付 ++ 曜日の列: %1$s ++ 形式が無効です。 ++ 例: %1$s ++ 使用: %1$s ++ 範囲が無効です。 ++ %1$s 年に移動 ++ 範囲外: %1$s ++ 開始日~%1$s ++ %1$s~終了日 ++ %1$s~%2$s ++ 期間を選択してください ++ 開始日~終了日 ++ 保存 ++ 日付 ++ 終了日 ++ 開始日 ++ d ++ m ++ y ++ カレンダー入力モードに切り替え ++ タップすると、日の選択に切り替わります ++ テキスト入力モードに切り替え ++ タップすると、年の選択に切り替わります ++ パスワードを表示 ++ "検索" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml +new file mode 100644 +index 0000000..cedb6c0 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ახალი შეტყობინება ++ %d ახალი შეტყობინება ++ ++ "მთავარზე გადასვლა" ++ "ზემოთ გადასვლა" ++ "სხვა ვარიანტები" ++ "მზადაა" ++ "ყველას ნახვა" ++ "აირჩიეთ აპი" ++ "გამორთვა" ++ "ჩართვა" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "შორისი" ++ "Sym+" ++ "Menu+" ++ "ძიება…" ++ "მოთხოვნის გასუფთავება" ++ "მოთხოვნის ძიება" ++ "ძიება" ++ "მოთხოვნის გადაგზავნა" ++ "ხმოვანი ძიება" ++ "გაზიარება:" ++ "%s-ით გაზიარება" ++ "ჩაკეცვა" ++ ნახევრამდე გაფართოება ++ შეყვანილია %2$d-დან %1$d სიმბოლო ++ გადაჭარბებულია სიმბოლოთა ლიმიტი (%2$d-დან %1$d) ++ ტექსტის გასუფთავება ++ შეცდომა ++ ჩამოსაშლელი მენიუს ჩვენება ++ დიალოგის ხატულა ++ ჩანართი ++ აირჩიეთ AM ან PM ++ აირჩიეთ საათი ++ %1$s საათი ++ აირჩიეთ წუთები ++ %1$s წუთი ++ AM ++ დროის შეყვანისთვის საათის რეჟიმზე გადართვა. ++ საათი ++ წუთი ++ PM ++ აირჩიეთ დრო ++ დროის შეყვანისთვის ტექსტის შეყვანის რეჟიმზე გადართვა. ++ ახალი შეტყობინება ++ %1$s-ის ამოშლა ++ %1$d-ზე მეტი ახალი შეტყობინება ++ შემდეგ თვეზე გადასვლა ++ წინა თვეზე გადასვლა ++ ამჟამინდელი არჩევანი: %1$s ++ @android:string/ok ++ %1$s ++ აირჩიეთ თარიღი ++ არჩეული თარიღი ++ დღეების სვეტი: %1$s ++ არასწორი ფორმატი. ++ მაგალითი: %1$s ++ %1$s-ის გამოყენება ++ დიაპაზონი არასწორია. ++ %1$s წელზე ნავიგაცია ++ დიაპაზონს მიღმა: %1$s ++ დაწყების თარიღი - %1$s ++ %1$s - დასრულების თარიღი ++ %1$s - %2$s ++ აირჩიეთ დიაპაზონი ++ დაწყების თარიღი - დასრულების თარიღი ++ შენახვა ++ თარიღი ++ დასრულების თარიღი ++ დაწყების თარიღი ++ ++ წთ ++ ++ კალენდარში შეყვანის რეჟიმზე გადართვა ++ შეეხეთ დღის არჩევაზე გადასართავად ++ ტექსტის შეყვანის რეჟიმზე გადართვა ++ შეეხეთ წლის არჩევაზე გადასართავად ++ პაროლის ჩვენება ++ "ძიება" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml +new file mode 100644 +index 0000000..4dd0652 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d жаңа хабарландыру ++ %d жаңа хабарландыру ++ ++ "Негізгі бетке өту" ++ "Жоғары қарай өту" ++ "Басқа опциялар" ++ "Дайын" ++ "Барлығын көру" ++ "Қолданбаны таңдау" ++ "ӨШІРУ" ++ "ҚОСУ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "бос орын" ++ "Sym+" ++ "Menu+" ++ "Іздеу…" ++ "Сұрауды өшіру" ++ "Іздеу сұрауы" ++ "Іздеу" ++ "Сұрауды жіберу" ++ "Дауыспен іздеу" ++ "Бөлісу" ++ "%s қолданбасымен бөлісу" ++ "Жию" ++ Жартылай кеңейту ++ %1$d/%2$d таңба енгізілді ++ Таңба саны шегінен асты: %1$d/%2$d ++ Мәтінді өшіру ++ Қате ++ Ашылмалы мәзірді көрсету ++ Диалог белгішесі ++ Қойынды ++ \"AM\" немесе \"PM\" форматын таңдау ++ Сағатты таңдау ++ Сағат: %1$s ++ Минут таңдау ++ %1$s минут ++ AM ++ Уақытты енгізу үшін сағат режиміне өтіңіз. ++ Сағат ++ Mинут ++ PM ++ Уақытты таңдау ++ Уақытты енгізу үшін мәтін енгізу режиміне өтіңіз. ++ Жаңа хабарландыру ++ %1$s мазмұнын өшіру ++ %1$d санынан көп жаңа хабарландыру ++ Келесі айға өту ++ Алдыңғы айға өту ++ Ағымдағы таңдау: %1$s ++ @android:string/ok ++ %1$s ++ Күнді таңдау ++ Таңдалған күн ++ Күндер бағаны: %1$s ++ Формат жарамсыз. ++ Мысал: %1$s. ++ Жарамды формат: %1$s. ++ Ауқым жарамсыз. ++ %1$s жылына жылжу ++ Ауқымнан тыc: %1$s ++ Басталу күні – %1$s ++ %1$s – аяқталу күні ++ %1$s – %2$s ++ Аралықты таңдау ++ Басталу күні – аяқталу күні ++ Сақтау ++ Күні ++ Аяқталу күні ++ Басталу күні ++ к ++ а ++ ж ++ Күнтізбенің енгізу режиміне ауысу ++ Күнді таңдауға ауысу үшін түртіңіз. ++ Мәтін енгізу режиміне ауысу ++ Жылды таңдауға ауысу үшін түртіңіз. ++ Құпия сөзді көрсету ++ "Іздеу" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-km/values-km.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-km/values-km.xml +new file mode 100644 +index 0000000..44195f5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-km/values-km.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ ការជូនដំណឹងថ្មី %d ++ ការជូនដំណឹងថ្មី %d ++ ++ "​ទៅទំព័រដើម" ++ "រំកិលឡើងលើ" ++ "ជម្រើសច្រើនទៀត" ++ "រួចរាល់" ++ "មើលទាំងអស់" ++ "ជ្រើសរើស​កម្មវិធី​​" ++ "បិទ" ++ "បើក" ++ "Alt+" ++ "Ctrl+" ++ "លុប" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ស្វែងរក…" ++ "សម្អាត​សំណួរ" ++ "ស្វែងរកសំណួរ​" ++ "ស្វែងរក" ++ "ដាក់បញ្ជូន​សំណួរ" ++ "ស្វែងរក​តាម​សំឡេង" ++ "ចែករំលែក​ជា​មួយ" ++ "ចែក​រំលែក​ជា​មួយ %s" ++ "បង្រួម" ++ ពង្រីក​ពាក់កណ្ដាល ++ តួ​អក្សរ​បាន​បញ្ចូល​ %1$d នៃ %2$d ++ ដែនកំណត់តួអក្សរបានលើស %1$d នៃ %2$d ++ សម្អាតអក្សរ ++ បញ្ហា ++ បង្ហាញ​ម៉ឺនុយ​ធ្លាក់ចុះ ++ រូប​ប្រអប់បញ្ចូល ++ ផ្ទាំង ++ ជ្រើសរើស AM ឬ PM ++ ជ្រើសរើសម៉ោង ++ ម៉ោង %1$s ++ ជ្រើស​នាទី ++ %1$s នាទី ++ ព្រឹក ++ ប្តូរ​ទៅ​មុខងារ​នាឡិកា​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។ ++ ម៉ោង ++ នាទី​ ++ ល្ងាច ++ ជ្រើស​ម៉ោង ++ ប្តូរ​ទៅ​មុខងារ​បញ្ចូល​អក្សរ​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។ ++ ការជូនដំណឹងថ្មី ++ លុប %1$s ++ ការជូនដំណឹង​ថ្មីៗ​លើស %1$d ហើយ ++ ប្ដូរ​ទៅ​ខែបន្ទាប់ ++ ប្ដូរ​ទៅ​ខែមុន ++ ការជ្រើសរើស​បច្ចុប្បន្ន៖ %1$s ++ @android:string/ok ++ %1$s ++ ជ្រើសរើស​កាល​បរិច្ឆេទ ++ កាលបរិច្ឆេទដែលបាន​ជ្រើសរើស ++ ជួរឈរ​នៃ​ថ្ងៃ៖ %1$s ++ ទម្រង់មិន​ត្រឹមត្រូវទេ។ ++ ឧទាហរណ៍៖ %1$s ++ ប្រើ៖ %1$s ++ ជួរ​មិនត្រឹមត្រូវទេ។ ++ ប្ដូរទៅ​ឆ្នាំ %1$s ++ នៅក្រៅ​ជួរ៖ %1$s ++ កាលបរិច្ឆេទ​ចាប់ផ្ដើម – %1$s ++ %1$s – កាលបរិច្ឆេទ​បញ្ចប់ ++ %1$s – %2$s ++ ជ្រើស​រើស​ចន្លោះ ++ កាលបរិច្ឆេទ​ចាប់ផ្ដើម – កាលបរិច្ឆេទ​បញ្ចប់ ++ រក្សាទុក ++ កាលបរិច្ឆេទ ++ កាល​បរិច្ឆេទ​បញ្ចប់ ++ កាល​បរិច្ឆេទ​ចាប់ផ្ដើម ++ ++ ++ ++ ប្ដូរទៅ​របៀប​បញ្ចូល​ប្រតិទិន ++ ចុច​ដើម្បីប្ដូរទៅ​ការជ្រើសរើសថ្ងៃ ++ ប្ដូរទៅ​របៀប​បញ្ចូល​អក្សរ ++ ចុច​ដើម្បីប្ដូរទៅ​ការជ្រើសរើសឆ្នាំ ++ បង្ហាញពាក្យសម្ងាត់ ++ "ស្វែងរក" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml +new file mode 100644 +index 0000000..6c925a7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ಹೊಸ ಅಧಿಸೂಚನೆಗಳು ++ %d ಹೊಸ ಅಧಿಸೂಚನೆಗಳು ++ ++ "ಹೋಮ್‌ಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" ++ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" ++ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" ++ "ಮುಗಿದಿದೆ" ++ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" ++ "ಆ್ಯಪ್‌ವೊಂದನ್ನು ಆಯ್ಕೆಮಾಡಿ" ++ "ಆಫ್" ++ "ಆನ್" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ಹುಡುಕಿ…" ++ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ" ++ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" ++ "Search" ++ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸಿ" ++ "ಧ್ವನಿ ಹುಡುಕಾಟ" ++ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" ++ "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" ++ "ಕುಗ್ಗಿಸಿ" ++ ಅರ್ಧದಷ್ಟು ವಿಸ್ತರಿಸಿ ++ %2$d ರಲ್ಲಿ %1$d ಅಕ್ಷರಗಳನ್ನು ನಮೂದಿಸಲಾಗಿದೆ ++ ಅಕ್ಷರ ಮಿತಿಯು %2$d ರಲ್ಲಿ %1$d ಮೀರಿದೆ ++ ಪಠ್ಯ ತೆರವುಗೊಳಿಸಿ ++ ದೋಷ ++ ಡ್ರಾಪ್‌ಡೌನ್ ಮೆನು ತೋರಿಸಿ ++ ಡೈಲಾಗ್ ಐಕಾನ್ ++ ಟ್ಯಾಬ್ ++ ಬೆಳಿಗ್ಗೆ ಅಥವಾ ಮಧ್ಯಾಹ್ನ ಆಯ್ಕೆಮಾಡಿ ++ ಸಮಯವನ್ನು ಆಯ್ಕೆಮಾಡಿ ++ %1$s ಗಂಟೆ ++ ನಿಮಿಷಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ ++ %1$s ನಿಮಿಷಗಳು ++ AM ++ ಸಮಯವನ್ನು ನಮೂದಿಸಲು ಗಡಿಯಾರದ ನಮೂನೆಗೆ ಬದಲಿಸಿ. ++ ಗಂಟೆ ++ ನಿಮಿಷ ++ PM ++ ಸಮಯವನ್ನು ಆಯ್ಕೆಮಾಡಿ ++ ಸಮಯವನ್ನು ನಮೂದಿಸಲು ಪಠ್ಯದ ನಮೂನೆಗೆ ಬದಲಿಸಿ. ++ ಹೊಸ ಅಧಿಸೂಚನೆ ++ %1$s ಅನ್ನು ತೆಗೆದುಹಾಕಿ ++ %1$d ಕ್ಕಿಂತ ಹೆಚ್ಚು ಹೊಸ ಅಧಿಸೂಚನೆಗಳು ++ ಮುಂದಿನ ತಿಂಗಳಿಗೆ ಬದಲಿಸಿ ++ ಹಿಂದಿನ ತಿಂಗಳಿಗೆ ಬದಲಿಸಿ ++ ಪ್ರಸ್ತುತ ಆಯ್ಕೆ: %1$s ++ @android:string/ok ++ %1$s ++ ದಿನಾಂಕವನ್ನು ಆಯ್ಕೆಮಾಡಿ ++ ದಿನಾಂಕವನ್ನು ಆಯ್ಕೆಮಾಡಲಾಗಿದೆ ++ ದಿನಗಳ ಕಾಲಮ್: %1$s ++ ಅಮಾನ್ಯವಾದ ಫಾರ್ಮ್ಯಾಟ್. ++ ಉದಾಹರಣೆ: %1$s ++ ಇದನ್ನು ಬಳಸಿ: %1$s ++ ಅಮಾನ್ಯ ಶ್ರೇಣಿ. ++ %1$s ವರ್ಷಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ ++ ವ್ಯಾಪ್ತಿಯ ಹೊರಗಿದೆ: %1$s ++ ಪ್ರಾರಂಭ ದಿನಾಂಕ – %1$s ++ %1$s – ಮುಕ್ತಾಯ ದಿನಾಂಕ ++ %1$s – %2$s ++ ಶ್ರೇಣಿಯನ್ನು ಆಯ್ಕೆಮಾಡಿ ++ ಪ್ರಾರಂಭ ದಿನಾಂಕ – ಮುಕ್ತಾಯ ದಿನಾಂಕ ++ ಉಳಿಸಿ ++ ದಿನಾಂಕ ++ ಮುಕ್ತಾಯ ದಿನಾಂಕ ++ ಪ್ರಾರಂಭ ದಿನಾಂಕ ++ ದಿ ++ ತಿ ++ ++ ಕ್ಯಾಲೆಂಡರ್ ಇನ್‌ಪುಟ್ ಮೋಡ್‌ಗೆ ಬದಲಿಸಿ ++ ದಿನವನ್ನು ಆಯ್ಕೆಗಾಗಿ ಬದಲಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ ++ ಪಠ್ಯ ಇನ್‌ಪುಟ್ ಮೋಡ್‌ಗೆ ಬದಲಿಸಿ ++ ವರ್ಷವನ್ನು ಆಯ್ಕೆಗಾಗಿ ಬದಲಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ ++ ಪಾಸ್‌ವರ್ಡ್ ತೋರಿಸಿ ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml +new file mode 100644 +index 0000000..8342973 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ 새 알림 %d개 ++ 새 알림 %d개 ++ ++ "홈으로 이동" ++ "위로 이동" ++ "추가 옵션" ++ "완료" ++ "전체 보기" ++ "앱 선택" ++ "사용 중지" ++ "사용" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "스페이스바" ++ "Sym+" ++ "Menu+" ++ "검색..." ++ "검색어 삭제" ++ "검색어" ++ "검색" ++ "검색어 보내기" ++ "음성 검색" ++ "공유 대상:" ++ "%s과(와) 공유" ++ "접기" ++ 반만 펼치기 ++ 입력된 글자 %1$d/%2$d ++ 글자 수 제한이 초과되었습니다(%1$d/%2$d). ++ 텍스트 삭제 ++ 오류 ++ 드롭다운 메뉴 표시 ++ 대화상자 아이콘 ++ ++ 오전 또는 오후를 선택하세요. ++ 시간 선택 ++ %1$s시 정각 ++ 분 선택 ++ %1$s분 ++ 오전 ++ 시간 입력을 위해 시계 모드로 전환합니다. ++ 시간 ++ ++ 오후 ++ 시간 선택 ++ 시간 입력을 위해 텍스트 입력 모드로 전환합니다. ++ 새 알림 ++ %1$s 삭제 ++ 새 알림 %1$d개 초과 ++ 다음 달로 변경 ++ 이전 달로 변경 ++ 현재 %1$s 선택됨 ++ @android:string/ok ++ %1$s ++ 날짜 선택 ++ 선택한 날짜 ++ 요일 열: %1$s ++ 형식이 잘못되었습니다. ++ 예: %1$s ++ %1$s 사용 ++ 날짜 범위가 잘못되었습니다. ++ %1$s년으로 이동 ++ %1$s은(는) 범위를 벗어난 날짜입니다. ++ 시작일~%1$s ++ %1$s~종료일 ++ %1$s~%2$s ++ 기간 선택 ++ 시작일~종료일 ++ 저장 ++ 날짜 ++ 종료일 ++ 시작일 ++ ++ ++ ++ 캘린더 입력 모드로 전환 ++ 탭하여 요일 선택으로 전환 ++ 텍스트 입력 모드로 전환 ++ 탭하여 연도 선택으로 전환 ++ 비밀번호 표시 ++ "검색" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml +new file mode 100644 +index 0000000..7d5c25f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d жаңы билдирме ++ %d жаңы билдирме ++ ++ "Башкы бетке чабыттоо" ++ "Мурунку экранга өтүү" ++ "Дагы параметрлер" ++ "Бүттү" ++ "Баарын көрүү" ++ "Колдонмо тандоо" ++ "ӨЧҮК" ++ "КҮЙҮК" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "боштук" ++ "Sym+" ++ "Menu+" ++ "Издөө…" ++ "Сурамды өчүрүү" ++ "Изделген сурам" ++ "Издөө" ++ "Сурам тапшыруу" ++ "Айтып издөө" ++ "Төмөнкү менен бөлүшүү" ++ "%s аркылуу бөлүшүү" ++ "Жыйыштыруу" ++ Жарымын жайып көрсөтүү ++ %2$d ичинен %1$d символ киргизилди ++ Символдордун саны коюлган %2$d чегинен %1$d символго ашып кетти ++ Текстти тазалоо ++ Ката ++ Түрүлмө менюну көрсөтүү ++ Диалог сүрөтчөсү ++ Өтмөк ++ Тандоо: AM же PM ++ Саат тандоо ++ Саат %1$s ++ Мүнөттөрдү тандаңыз ++ %1$s мүнөт ++ AM ++ Убакытты дубал саатынын режиминде киргизиңиз. ++ Саат ++ Мүнөт ++ PM ++ Убакыт тандоо ++ Убакытты текст киргизүү режиминде киргизиңиз. ++ Жаңы билдирме ++ Мазмунду алып салуу (%1$s) ++ %1$d ашуун жаңы билдирме ++ Кийинки айга өзгөртүү ++ Мурунку айга өзгөртүү ++ Учурдагы тандоо: %1$s ++ @android:string/ok ++ %1$s ++ Күн тандоо ++ Тандалган күн ++ Күндөр тилкеси: %1$s ++ Жараксыз формат. ++ Мисалы: %1$s ++ %1$s формтын колднуңуз ++ Жараксыз диапазон. ++ %1$s-жылга өтүү ++ Диапазондон тышкары: %1$s ++ Баштоо күнү – %1$s ++ %1$s – Аяктоо күнү ++ %1$s – %2$s ++ Даталар диапазонун тандоо ++ Баштоо күнү – Аяктоо күнү ++ Сактоо ++ Күн ++ Аяктоо күнү ++ Баштоо күнү ++ к ++ а ++ ж ++ Жылнаамага иш-чара киргизүү режимине которулуу ++ Күн тандоо үчүн таптап коюңуз ++ Текст киргизүү режимине которулуу ++ Жыл тандоо үчүн таптап коюңуз ++ Сырсөздү көрсөтүү ++ "Издөө" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-land/values-land.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-land/values-land.xml +new file mode 100644 +index 0000000..d45f4ba +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-land/values-land.xml +@@ -0,0 +1,41 @@ ++ ++ ++ 48dp ++ 12dp ++ 14dp ++ 450dp ++ 600dp ++ 24dp ++ 24dp ++ 24dp ++ 24dp ++ 20dp ++ 4dp ++ 96dp ++ 0dp ++ 0dp ++ 104dp ++ 68dp ++ 28dp ++ 64dp ++ 32dp ++ 24dp ++ 32dp ++ 0 ++ 6 ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml +new file mode 100644 +index 0000000..c0ec67a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml +@@ -0,0 +1,14 @@ ++ ++ ++ 440dp ++ 60% ++ 90% ++ 60% ++ 90% ++ 55% ++ 80% ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ta/values-ta.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ta/values-ta.xml +new file mode 100644 +index 0000000..34263c1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ta/values-ta.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d புதிய அறிவிப்பு ++ %d புதிய அறிவிப்புகள் ++ ++ "முகப்பிற்குச் செல்லும்" ++ "மேலே செல்லும்" ++ "மேலும் விருப்பங்கள்" ++ "முடிந்தது" ++ "அனைத்தையும் காட்டு" ++ "ஆப்ஸைத் தேர்வுசெய்க" ++ "ஆஃப்" ++ "ஆன்" ++ "Alt மற்றும்" ++ "Ctrl மற்றும்" ++ "delete" ++ "enter" ++ "Function மற்றும்" ++ "Meta மற்றும்" ++ "Shift மற்றும்" ++ "space" ++ "Sym மற்றும்" ++ "Menu மற்றும்" ++ "தேடுக…" ++ "வினவலை அழிக்கும்" ++ "தேடல் வினவல்" ++ "தேடும்" ++ "வினவலைச் சமர்ப்பிக்கும்" ++ "குரல் தேடல்" ++ "இதில் பகிர்" ++ "%s மூலம் பகிர்" ++ "சுருக்கும்" ++ பாதியளவு விரிவாக்கும் ++ %2$d இல் %1$d எழுத்துகள் உள்ளிடப்பட்டுள்ளன ++ %2$d இல் %1$d எழுத்து வரம்பு மீறப்பட்டது ++ உரையை அழிக்கும் ++ பிழை ++ கீழ் தோன்றல் மெனுவைக் காட்டும் பட்டன் ++ உரையாடல் ஐகான் ++ தாவல் ++ AM அல்லது PMமைத் தேர்ந்தெடுக்க உதவும் ++ மணிநேரத்தைத் தேர்ந்தெடுக்க உதவும் ++ %1$s மணி ++ நிமிடத்தைத் தேர்ந்தெடுக்கவும் ++ %1$s நிமிடங்கள் ++ AM ++ நேர உள்ளீட்டிற்காக, கடிகாரப் பயன்முறைக்கு மாற்றும். ++ மணிநேரம் ++ நிமிடம் ++ PM ++ நேரத்தைத் தேர்ந்தெடுக்கவும் ++ உரை உள்ளீட்டிற்காக, கடிகாரப் பயன்முறைக்கு மாற்றும். ++ புதிய அறிவிப்பு ++ %1$sஐ அகற்று ++ %1$d+ புதிய அறிவிப்புகள் ++ அடுத்த மாதத்தைக் காட்டு ++ முந்தைய மாதத்தைக் காட்டு ++ தற்போதைய தேர்வு: %1$s ++ @android:string/ok ++ %1$s ++ தேதியைத் தேர்ந்தெடுக்கவும் ++ தேர்ந்தெடுக்கப்பட்ட தேதி ++ நாட்களின் நெடுவரிசை: %1$s ++ தவறான வடிவம். ++ உதாரணம்: %1$s ++ %1$sஐப் பயன்படுத்துக ++ தவறான வரம்பு. ++ %1$s ஆம் ஆண்டிற்குச் செல்லும் ++ எல்லைக்கு வெளியே உள்ளது: %1$s ++ தொடக்கத் தேதி – %1$s ++ %1$s – முடிவுத் தேதி ++ %1$s – %2$s ++ வரம்பைத் தேர்ந்தெடுக்கவும் ++ தொடக்கத் தேதி - முடிவுத் தேதி ++ சேமி ++ தேதி ++ முடிவுத் தேதி ++ தொடக்கத் தேதி ++ நா ++ மா ++ ++ கேலெண்டர் உள்ளீட்டு முறைக்கு மாற்றும் ++ நாளைத் தேர்வுசெய்வதற்கு மாற்ற தட்டவும் ++ உரை உள்ளீட்டு முறைக்கு மாற்றும் ++ ஆண்டைத் தேர்வுசெய்வதற்கு மாற்ற தட்டவும் ++ கடவுச்சொல்லைக் காட்டு ++ "தேடல்" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-te/values-te.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-te/values-te.xml +new file mode 100644 +index 0000000..62c412e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-te/values-te.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d కొత్త నోటిఫికేషన్ ++ %d కొత్త నోటిఫికేషన్‌లు ++ ++ "హోమ్‌కు నావిగేట్ చేస్తుంది" ++ "పైకి నావిగేట్ చేస్తుంది" ++ "మరిన్ని ఎంపికలు" ++ "పూర్తయింది" ++ "అన్నీ చూడండి" ++ "యాప్‌ను ఎంచుకోండి" ++ "ఆఫ్" ++ "ఆన్" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "స్పేస్" ++ "Sym+" ++ "Menu+" ++ "వెతకండి…" ++ "ప్రశ్నను తీసివేస్తుంది" ++ "శోధన ప్రశ్న" ++ "సెర్చ్" ++ "ప్రశ్నని సమర్పిస్తుంది" ++ "వాయిస్ శోధన" ++ "వీరితో షేర్ చేస్తుంది" ++ "%sతో షేర్ చేస్తుంది" ++ "కుదిస్తుంది" ++ సగాన్ని విస్తరింపజేయండి ++ %2$dలో %1$d అక్షరాలు నమోదు చేయబడ్డాయి ++ అక్షర పరిధి %2$dలో %1$dను అధిగమించింది ++ రాసినదాన్ని తీసివేయి ++ ఎర్రర్ ++ డ్రాప్‌డౌన్ మెనూను చూపు ++ డైలాగ్ చిహ్నం ++ ట్యాబ్ ++ AM లేదా PMను ఎంచుకోండి ++ గంటను ఎంచుకోండి ++ %1$s అవుతుంది ++ నిమిషాలను ఎంచుకోండి ++ %1$s నిమిషాలు ++ AM ++ సమయాన్ని నమోదు చేయడం కోసం గడియారం మోడ్‌కు మారండి. ++ గంట ++ నిమిషం ++ PM ++ సమయాన్ని ఎంచుకోండి ++ సమయాన్ని నమోదు చేయడం కోసం వచన నమోదు మోడ్‌కి మారండి. ++ కొత్త నోటిఫికేషన్ ++ (%1$s)ని తీసివేస్తుంది ++ %1$d కంటే ఎక్కువ కొత్త నోటిఫికేషన్‌లు ++ వచ్చే నెలకు మార్చుతుంది ++ మునుపటి నెలకు మార్చుతుంది ++ ప్రస్తుత ఎంపిక: %1$s ++ @android:string/ok ++ %1$s ++ తేదీని ఎంచుకోండి ++ ఎంచుకున్న తేది ++ రోజుల నిలువు వరుస: %1$s ++ ఫార్మాట్ చెల్లదు. ++ ఉదాహరణ: %1$s ++ ఇలా ఉపయోగించండి: %1$s ++ చెల్లని పరిధి. ++ %1$sసంవత్సరానికి నావిగేట్ చేస్తుంది ++ పరిధి వెలుపల ఉంది: %1$s ++ ప్రారంభ తేదీ – %1$s ++ %1$s – ముగింపు తేది ++ %1$s – %2$s ++ పరిధిని ఎంచుకోండి ++ ప్రారంభ తేది - ముగింపు తేది ++ సేవ్ చేయి ++ తేదీ ++ ముగింపు తేదీ ++ ప్రారంభ తేదీ ++ రో ++ నె ++ సం ++ క్యాలెండర్ ఇన్‌పుట్ మోడ్‌కు మారుస్తుంది ++ \'రోజును ఎంపిక చేసుకోవడం\'కు మారడానికి నొక్కండి ++ వచన ఇన్‌పుట్ మోడ్‌కు మారుస్తుంది ++ \'సంవత్సరాన్ని ఎంపిక చేసుకోవడం\'కు మారడానికి నొక్కండి ++ పాస్‌వర్డ్‌ను చూపు ++ "సెర్చ్" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-th/values-th.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-th/values-th.xml +new file mode 100644 +index 0000000..ae49a79 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-th/values-th.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ การแจ้งเตือนใหม่ %d รายการ ++ การแจ้งเตือนใหม่ %d รายการ ++ ++ "นำทางไปหน้าแรก" ++ "กลับ" ++ "ตัวเลือกอื่น" ++ "เสร็จ" ++ "ดูทั้งหมด" ++ "เลือกแอป" ++ "ปิด" ++ "เปิด" ++ "Alt+" ++ "Ctrl+" ++ "ลบ" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Space" ++ "Sym+" ++ "เมนู+" ++ "ค้นหา…" ++ "ล้างคำค้นหา" ++ "คำค้นหา" ++ "ค้นหา" ++ "ส่งคำค้นหา" ++ "ค้นหาด้วยเสียง" ++ "แชร์กับ" ++ "แชร์ทาง %s" ++ "ยุบ" ++ ขยายรายการครึ่งหนึ่ง ++ ป้อนอักขระแล้ว %1$d จาก %2$d ตัว ++ เกินจำนวนอักขระสูงสุด %1$d จาก %2$d ++ ล้างข้อความ ++ ข้อผิดพลาด ++ แสดงเมนูแบบเลื่อนลง ++ ไอคอนกล่องโต้ตอบ ++ แท็บ ++ เลือก AM หรือ PM ++ เลือกชั่วโมง ++ %1$s นาฬิกา ++ เลือกนาที ++ %1$s นาที ++ AM ++ สลับไปโหมดนาฬิกาเพื่อป้อนเวลา ++ ชั่วโมง ++ นาที ++ PM ++ เลือกเวลา ++ สลับไปโหมดป้อนข้อความเพื่อป้อนเวลา ++ การแจ้งเตือนใหม่ ++ นำ %1$s ออก ++ การแจ้งเตือนใหม่มากกว่า %1$d รายการ ++ เปลี่ยนไปที่เดือนถัดไป ++ เปลี่ยนไปที่เดือนก่อนหน้า ++ การเลือกในปัจจุบัน: %1$s ++ @android:string/ok ++ %1$s ++ เลือกวันที่ ++ วันที่ที่เลือก ++ คอลัมน์ของวัน: %1$s ++ รูปแบบไม่ถูกต้อง ++ ตัวอย่าง: %1$s ++ ใช้: %1$s ++ ช่วงไม่ถูกต้อง ++ ไปที่ปี %1$s ++ วันที่ไม่อยู่ในช่วงที่อนุญาต: %1$s ++ วันที่เริ่มต้น – %1$s ++ %1$s – วันที่สิ้นสุด ++ %1$s – %2$s ++ เลือกช่วง ++ วันที่เริ่มต้น – วันที่สิ้นสุด ++ บันทึก ++ วันที่ ++ วันที่สิ้นสุด ++ วันที่เริ่มต้น ++ ++ ++ ++ สลับไปใช้โหมดป้อนข้อมูลปฏิทิน ++ แตะเพื่อสลับไปใช้การเลือกวัน ++ สลับไปใช้โหมดป้อนข้อมูลข้อความ ++ แตะเพื่อสลับไปใช้การเลือกปี ++ แสดงรหัสผ่าน ++ "ค้นหา" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml +new file mode 100644 +index 0000000..c660b55 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d bagong notification ++ %d na bagong notification ++ ++ "Mag-navigate sa home" ++ "Mag-navigate pataas" ++ "Higit pang opsyon" ++ "Tapos na" ++ "Tingnan lahat" ++ "Pumili ng app" ++ "I-OFF" ++ "I-ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Maghanap…" ++ "I-clear ang query" ++ "Query sa paghahanap" ++ "Maghanap" ++ "Isumite ang query" ++ "Paghahanap gamit ang boses" ++ "Ibahagi sa/kay" ++ "Ibahagi gamit ang %s" ++ "I-collapse" ++ I-expand hanggang gitna ++ Mga character na nailagay %1$d sa %2$d ++ Lumampas sa limitasyon sa bilang ng character %1$d sa %2$d ++ I-clear ang text ++ Error ++ Ipakita ang dropdown na menu ++ Icon ng Dialog ++ Tab ++ Piliin ang AM o PM ++ Pumili ng oras ++ %1$s o\'clock ++ Pumili ng mga minuto ++ %1$s (na) minuto ++ AM ++ Lumipat sa mode ng orasan para sa input na oras. ++ Oras ++ Minuto ++ PM ++ Pumili ng oras ++ Lumipat sa pamamaraan ng pag-input ng text para sa input na oras. ++ Bagong notification ++ Alisin ang %1$s ++ Mahigit %1$d (na) bagong notification ++ Lumipat sa susunod na buwan ++ Lumipat sa nakaraang buwan ++ Kasalukuyang seleksyon: %1$s ++ @android:string/ok ++ %1$s ++ Pumili ng Petsa ++ Piniling petsa ++ Column ng mga araw: %1$s ++ Invalid na format. ++ Halimbawa: %1$s ++ Gamitin: %1$s ++ Invalid na hanay. ++ Mag-navigate patungo sa taong %1$s ++ Wala sa sakop: %1$s ++ Petsa ng pagsisimula – %1$s ++ %1$s – Petsa ng pagtatapos ++ %1$s – %2$s ++ Pumili ng Range ++ Petsa ng pagsisimula – Petsa ng pagtatapos ++ I-save ++ Petsa ++ Petsa ng pagtatapos ++ Petsa ng pagsisimula ++ d ++ m ++ y ++ Lumipat sa pamamaraan ng pag-input ng kalendaryo ++ I-tap para lumipat sa pagpili ng araw ++ Lumipat sa pamamaraan ng pag-input ng text ++ I-tap para lumipat sa pagpili ng taon ++ Ipakita ang password ++ "Maghanap" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml +new file mode 100644 +index 0000000..527bbce +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d yeni bildirim ++ %d yeni bildirim ++ ++ "Eve gidiş yolunu göster" ++ "Yukarı git" ++ "Diğer seçenekler" ++ "Bitti" ++ "Tümünü göster" ++ "Bir uygulama seçin" ++ "KAPAT" ++ "AÇ" ++ "Alt+" ++ "Ctrl+" ++ "sil" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Üst Karakter+" ++ "boşluk" ++ "Sym+" ++ "Menü+" ++ "Ara…" ++ "Sorguyu temizle" ++ "Arama sorgusu" ++ "Ara" ++ "Sorguyu gönder" ++ "Sesli arama" ++ "Şununla paylaş:" ++ "%s ile paylaş" ++ "Daralt" ++ Yarım genişlet ++ Girilen karakter: %1$d / %2$d ++ Karakter sınırı aşıldı %1$d / %2$d ++ Metni temizle ++ Hata ++ Açılır menüyü göster ++ İletişim kutusu simgesi ++ Sekme ++ ÖÖ veya ÖS\'yi seçin ++ Saat seçin ++ Saat %1$s ++ Dakikayı seçin ++ %1$s dakika ++ AM ++ Zaman girişi için saat moduna geçin. ++ Saat ++ Dakika ++ PM ++ Zamanı seçin ++ Zaman girişi için metin girişi moduna geçin. ++ Yeni bildirim ++ %1$s içeriğini kaldır ++ %1$d adetten fazla yeni bildirim ++ Sonraki aya değiştir ++ Önceki aya değiştir ++ Geçerli seçim: %1$s ++ @android:string/ok ++ %1$s ++ Tarih Seçin ++ Seçilen tarih ++ Gün sütunu: %1$s ++ Geçersiz biçim. ++ Örnek: %1$s ++ Tarih biçimi: %1$s ++ Geçersiz aralık. ++ %1$s yılına git ++ İzin verilen aralığın dışında: %1$s ++ Başlangıç tarihi – %1$s ++ %1$s – Bitiş tarihi ++ %1$s-%2$s ++ Aralık Seçin ++ Başlangıç tarihi - Bitiş tarihi ++ Kaydet ++ Tarih ++ Bitiş tarihi ++ Başlangıç tarihi ++ g ++ a ++ y ++ Takvim giriş moduna geç ++ Gün seçmeye geçmek için dokunun ++ Metin giriş moduna geç ++ Yıl seçmeye geçmek için dokunun ++ Şifreyi göster ++ "Ara" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml +new file mode 100644 +index 0000000..0c0ffb5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml +@@ -0,0 +1,92 @@ ++ ++ ++ ++ %d нове сповіщення ++ %d нові сповіщення ++ %d нових сповіщень ++ %d нового сповіщення ++ ++ "Перейти на головну" ++ "Перейти вгору" ++ "Більше опцій" ++ "Готово" ++ "Показати всі" ++ "Вибрати програму" ++ "ЗНИЖКА" ++ "УВІМК." ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "пробіл" ++ "Sym+" ++ "Menu+" ++ "Введіть пошуковий запит…" ++ "Очистити запит" ++ "Пошуковий запит" ++ "Пошук" ++ "Наіслати запит" ++ "Голосовий пошук" ++ "Поділитися:" ++ "Поділитися через додаток %s" ++ "Згорнути" ++ Розгорнути нижню половину ++ Введено символів: %1$d з %2$d ++ Перевищено ліміт символів: %1$d з %2$d ++ Видалити текст ++ Помилка ++ Показати спадне меню ++ Значок вікна ++ Вкладка ++ Виберіть ДП чи ПП ++ Вибрати годину ++ %1$s год ++ Виберіть хвилини ++ %1$s хв ++ дп ++ Перейти в режим годинника, щоб ввести час. ++ Година ++ Хвилина ++ пп ++ Виберіть час ++ Перейти в текстовий режим, щоб ввести час. ++ Нове сповіщення ++ Видалити %1$s ++ Нових сповіщень більше ніж %1$d ++ Перейти до наступного місяця ++ Перейти до попереднього місяця ++ Поточний вибір: %1$s ++ @android:string/ok ++ %1$s ++ Виберіть дату ++ Вибрана дата ++ Стовпець із днями: %1$s ++ Недійсний формат. ++ Приклад: %1$s ++ Використовувати: %1$s ++ Недійсний діапазон. ++ Перейти до %1$s року ++ За межами діапазону: %1$s ++ Дата початку – %1$s ++ %1$s – дата завершення ++ %1$s – %2$s ++ Виберіть діапазон дат ++ Дата початку – дата завершення ++ Зберегти ++ Дата ++ Дата завершення ++ Дата початку ++ д ++ м ++ р ++ Перейти в режим введення в календарі ++ Натисніть, щоб вибрати день ++ Перейти в режим введення тексту ++ Натисніть, щоб вибрати рік ++ Показувати пароль ++ "Пошук" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ur/values-ur.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ur/values-ur.xml +new file mode 100644 +index 0000000..8bedb22 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-ur/values-ur.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d نئی اطلاع ++ %d نئی اطلاعات ++ ++ "گھر کی طرف نیویگیٹ کریں" ++ "اوپر نیویگیٹ کریں" ++ "مزید اختیارات" ++ "ہو گیا" ++ "سبھی دیکھیں" ++ "ایک ایپ منتخب کریں" ++ "آف" ++ "آن" ++ "Alt+‎" ++ "Ctrl+‎" ++ "delete" ++ "enter" ++ "Function+‎" ++ "Meta+‎" ++ "Shift+‎" ++ "space" ++ "Sym+‎" ++ "Menu+‎" ++ "تلاش کریں…" ++ "استفسار صاف کریں" ++ "تلاش کا استفسار" ++ "تلاش کریں" ++ "استفسار جمع کرائیں" ++ "صوتی تلاش" ++ "اس کے ساتھ اشتراک کریں" ++ "%s کے ساتھ اشتراک کریں" ++ "سکیڑیں" ++ نصف تک پھیلائیں ++ %2$d میں سے %1$d حروف درج کیے گئے ++ حروف کی تعداد کی حد %2$d سے %1$d پہنچ گئی ++ ٹیکسٹ صاف کریں ++ خرابی ++ ڈراپ ڈاؤن مینو دکھائیں ++ ڈائیلاگ کا آئیکن ++ ٹیب ++ AM یا PM منتخب کریں ++ گھنٹہ منتخب کریں ++ %1$s بجے ++ منٹ منتخب کریں ++ %1$s منٹ ++ قبل از دوپہر ++ وقت ان پٹ کے لیے گھڑی و‏ضع پر سوئچ کریں۔ ++ گھنٹہ ++ منٹ ++ رات ++ وقت منتخب کریں ++ وقت ان پٹ کے لیے ٹیکسٹ ان پٹ وضع پر سوئچ کریں۔ ++ نئی اطلاع ++ %1$s کو ہٹائیں ++ %1$d سے زیادہ نئی اطلاعات ++ اگلے مہینہ میں منتقل کریں ++ گزشتہ ماہ میں منتقل کریں ++ موجودہ انتخاب: %1$s ++ @android:string/ok ++ %1$s ++ تاریخ منتخب کریں ++ منتخب کردہ تاریخ ++ دنوں کا کالم: %1$s ++ غلط فارمیٹ۔ ++ مثال: %1$s۔ ++ %1$s استعمال کریں ++ غلط رینج۔ ++ %1$s سال پر نیویگیٹ کریں ++ حد سے باہر: %1$s ++ تاریخ آغاز – %1$s ++ %1$s – تاریخ اختتام ++ %1$s – %2$s ++ رینج منتخب کریں ++ تاریخ آغاز - تاریخ اختتام ++ محفوظ کریں ++ تاریخ ++ تاریخ اختتام ++ تاریخ آغاز ++ d ++ m ++ y ++ کیلنڈر ان پٹ وضع پر سوئچ کریں ++ دن کو منتخب کرنے کے ليے سوئچ پر تھپتھپائیں ++ متنی ان پٹ وضع پر سوئچ کریں ++ سال کو منتخب کرنے کے ليے سوئچ پر تھپتھپائیں ++ پاس ورڈ دکھائیں ++ "تلاش کریں" ++ "+999" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-uz/values-uz.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-uz/values-uz.xml +new file mode 100644 +index 0000000..3cf7edc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-uz/values-uz.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ta yangi bildirishnoma ++ %d ta yangi bildirishnoma ++ ++ "Boshiga o‘tish" ++ "Yopish" ++ "Yana" ++ "OK" ++ "Hammasi" ++ "Ilovani tanlang" ++ "YOQILMAGAN" ++ "YONIQ" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "Probel" ++ "Sym+" ++ "Menyu+" ++ "Qidirish…" ++ "So‘rovni o‘chirish" ++ "Qidiruv so‘rovi" ++ "Qidiruv" ++ "So‘rov yaratish" ++ "Ovozli qidiruv" ++ "Ulashish" ++ "%s orqali ulashish" ++ "Yig‘ish" ++ Yarmiga kengaytirish ++ %1$d/%2$d ta belgi kiritildi ++ Harflar soni (%1$d) cheklovdan (%2$d) oshib ketdi ++ Matnni tozalash ++ Xato ++ Pastga ochiluvchi menyuni ochish ++ Muloqot ikonkasi ++ Tab : Varaq ++ Tushdan oldin yoki keyinligini tanlang ++ Soatni tanlang ++ %1$s soat ++ Daqiqalarni tanlash ++ %1$s daqiqa ++ AM ++ Vaqtni kiritish uchun soat rejimiga o‘ting. ++ Soat ++ Daqiqa ++ PM ++ Vaqtni tanlang ++ Vaqtni kiritish uchun matn kiritish rejimiga o‘ting. ++ Yangi bildirishnoma ++ Olib tashlash: %1$s ++ Yana %1$d dan ortiq bildirishnoma ++ Keyingi oyga oʻzgartirish ++ Avvalgi oyga oʻzgartirish ++ Joriy tanlov: %1$s ++ @android:string/ok ++ %1$s ++ Sanani tanlang ++ Tanlangan sana ++ Kunlar ustuni: %1$s ++ Yaroqsiz format. ++ Masalan: %1$s ++ Ishlatish: %1$s ++ Yaroqsiz oraliq. ++ Yilga nazar solish: %1$s ++ Chegaradan tashqari: %1$s ++ Boshlanish sanasi – %1$s ++ %1$s – Tugash sanasi ++ %1$s – %2$s ++ Oraliqni tanlang ++ Boshlanishi – Tugashi ++ Saqlash ++ Sana ++ Tugash sanasi ++ Boshlanish sanasi ++ k ++ o ++ y ++ Taqvim kiritish rejimiga oʻtish ++ Kunni tanlash uchun bosing ++ Matn kiritish rejimiga oʻtish ++ Yilni tanlash uchun bosing ++ Parol ochiq tursin ++ "Qidiruv" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml +new file mode 100644 +index 0000000..5ee2feb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml +@@ -0,0 +1,8 @@ ++ ++ ++ 4dp ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml +new file mode 100644 +index 0000000..f85a197 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml +@@ -0,0 +1,62 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml +new file mode 100644 +index 0000000..2ae8fdc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml +@@ -0,0 +1,20 @@ ++ ++ ++ 0px ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml +new file mode 100644 +index 0000000..20c89dc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml +@@ -0,0 +1,413 @@ ++ ++ ++ @color/androidx_core_secondary_text_default_material_light ++ 0dp ++ 1dp ++ 0.48 ++ 0.48 ++ 0.16 ++ 0.48 ++ 0.24 ++ 0.24 ++ 0.08 ++ 0.24 ++ 0dp ++ 0dp ++ 12dp ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml +new file mode 100644 +index 0000000..1ad118e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml +new file mode 100644 +index 0000000..2e5cef6 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml +@@ -0,0 +1,62 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml +new file mode 100644 +index 0000000..f9b3c08 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml +@@ -0,0 +1,5 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml +new file mode 100644 +index 0000000..4c30667 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml +new file mode 100644 +index 0000000..82e7ffe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d thông báo mới ++ %d thông báo mới ++ ++ "Chỉ đường về nhà" ++ "Di chuyển lên" ++ "Tùy chọn khác" ++ "Xong" ++ "Xem tất cả" ++ "Chọn một ứng dụng" ++ "TẮT" ++ "BẬT" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Tìm kiếm…" ++ "Xóa truy vấn" ++ "Truy vấn tìm kiếm" ++ "Tìm kiếm" ++ "Gửi truy vấn" ++ "Tìm kiếm bằng giọng nói" ++ "Chia sẻ với" ++ "Chia sẻ với %s" ++ "Thu gọn" ++ Mở rộng một nửa ++ Đã nhập %1$d trong số %2$d ký tự ++ Đã vượt quá giới hạn ký tự %1$d/%2$d ++ Xóa văn bản ++ Lỗi ++ Hiển thị menu thả xuống ++ Biểu tượng hộp thoại ++ Thẻ ++ Chọn SA hoặc CH ++ Chọn giờ ++ %1$s giờ ++ Chọn phút ++ %1$s phút ++ SA ++ Chuyển sang chế độ đồng hồ để nhập thời gian. ++ Giờ ++ Phút ++ CH ++ Chọn thời gian ++ Chuyển sang chế độ nhập văn bản để nhập thời gian. ++ Thông báo mới ++ Xóa %1$s ++ Hơn %1$d thông báo mới ++ Chuyển sang tháng tiếp theo ++ Chuyển về tháng trước ++ Lựa chọn hiện tại: %1$s ++ @android:string/ok ++ %1$s ++ Chọn ngày ++ Ngày đã chọn ++ Cột ngày: %1$s ++ Định dạng không hợp lệ. ++ Ví dụ: %1$s ++ Sử dụng: %1$s ++ Phạm vi không hợp lệ. ++ Chuyển tới năm %1$s ++ Nằm ngoài phạm vi: %1$s ++ Ngày bắt đầu – %1$s ++ %1$s – Ngày kết thúc ++ %1$s – %2$s ++ Chọn dải ô ++ Ngày bắt đầu – Ngày kết thúc ++ Lưu ++ Ngày ++ Ngày kết thúc ++ Ngày bắt đầu ++ d ++ m ++ y ++ Chuyển sang chế độ nhập lịch ++ Nhấn để chuyển sang chế độ chọn một ngày ++ Chuyển sang chế độ nhập văn bản ++ Nhấn để chuyển sang chế độ chọn một năm ++ Hiển thị mật khẩu ++ "Tìm kiếm" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w320dp-land-v13/values-w320dp-land-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w320dp-land-v13/values-w320dp-land-v13.xml +new file mode 100644 +index 0000000..b4fed6b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w320dp-land-v13/values-w320dp-land-v13.xml +@@ -0,0 +1,5 @@ ++ ++ ++ 24dp ++ 36dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml +new file mode 100644 +index 0000000..fa14e49 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml +@@ -0,0 +1,11 @@ ++ ++ ++ 4dp ++ 18dp ++ 40dp ++ 2dp ++ 2dp ++ 40dp ++ 40dp ++ 4dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w480dp-port-v13/values-w480dp-port-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w480dp-port-v13/values-w480dp-port-v13.xml +new file mode 100644 +index 0000000..e8cf2fe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w480dp-port-v13/values-w480dp-port-v13.xml +@@ -0,0 +1,11 @@ ++ ++ ++ 0dp ++ 22dp ++ 48dp ++ 2dp ++ 2dp ++ 48dp ++ 48dp ++ 0dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml +new file mode 100644 +index 0000000..aaaf955 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 64dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml +new file mode 100644 +index 0000000..2d85812 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml +@@ -0,0 +1,12 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml +new file mode 100644 +index 0000000..deecc9e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +new file mode 100644 +index 0000000..b499d2c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +@@ -0,0 +1,9 @@ ++ ++ ++ 60% ++ 90% ++ 50% ++ 70% ++ 45% ++ 72% ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +new file mode 100644 +index 0000000..b8332a4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d 条新通知 ++ %d 条新通知 ++ ++ "转到首页" ++ "转到上一层级" ++ "更多选项" ++ "完成" ++ "查看全部" ++ "选择应用" ++ "关闭" ++ "开启" ++ "Alt+" ++ "Ctrl+" ++ "Delete 键" ++ "Enter 键" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "空格键" ++ "Sym+" ++ "Menu+" ++ "搜索…" ++ "清除查询" ++ "搜索查询" ++ "搜索" ++ "提交查询" ++ "语音搜索" ++ "分享对象" ++ "与%s分享" ++ "收起" ++ 展开到一半高度 ++ 输入了 %1$d 个字符(上限为 %2$d 个) ++ 超出字符数限制(共 %1$d 个,上限为 %2$d 个) ++ 清除文字 ++ 错误 ++ 显示下拉菜单 ++ 对话框图标 ++ 标签页 ++ 选择上午或下午 ++ 选择小时 ++ %1$s 点 ++ 选择分钟 ++ %1$s 分 ++ 上午 ++ 切换到时钟模式来输入时间。 ++ 小时 ++ 分钟 ++ 下午 ++ 选择时间 ++ 切换到文字输入模式来输入时间。 ++ 新通知 ++ 移除%1$s ++ 有 %1$d 条以上的新通知 ++ 转到下个月 ++ 转到上个月 ++ 当前的选择是:%1$s ++ @android:string/ok ++ %1$s ++ 请选择日期 ++ 选定的日期 ++ 表示周几的列:%1$s ++ 格式无效。 ++ 示例:%1$s ++ 使用:%1$s ++ 范围无效。 ++ 转到 %1$s 年 ++ 不在允许的范围内:%1$s ++ 开始日期 – %1$s ++ %1$s – 结束日期 ++ %1$s - %2$s ++ 请选择范围 ++ 开始日期 - 结束日期 ++ 保存 ++ 日期 ++ 结束日期 ++ 开始日期 ++ d ++ m ++ y ++ 切换到日历输入模式 ++ 点按即可切换到选择某天 ++ 切换到文本字段输入模式 ++ 点按即可切换到选择某年 ++ 显示密码 ++ "搜索" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +new file mode 100644 +index 0000000..07f670f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d 個新通知 ++ %d 個新通知 ++ ++ "瀏覽主頁" ++ "向上瀏覽" ++ "更多選項" ++ "完成" ++ "查看全部" ++ "選擇應用程式" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "刪除" ++ "Enter 鍵" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "空白鍵" ++ "Sym +" ++ "Menu +" ++ "搜尋…" ++ "清除查詢" ++ "搜尋查詢" ++ "搜尋" ++ "提交查詢" ++ "語音搜尋" ++ "分享對象" ++ "使用「%s」分享" ++ "收合" ++ 展開一半 ++ 已輸入 %1$d 個字元 (共 %2$d 個) ++ 超出字元限制 %1$d 個字元 (上限 %2$d 個字元) ++ 清除文字 ++ 錯誤 ++ 顯示下拉式選單 ++ 對話框圖示 ++ 分頁 ++ 選擇上午或下午 ++ 選取時段 ++ %1$s 點 ++ 選取分鐘 ++ %1$s 分 ++ AM ++ 切換至時鐘模式即可輸入時間。 ++ 小時 ++ 分鐘 ++ PM ++ 選取時間 ++ 切換至文字輸入模式即可輸入時間。 ++ 新通知 ++ 移除「%1$s」 ++ 超過 %1$d 則新通知 ++ 變更為下個月 ++ 變更為上個月 ++ 目前選取:%1$s ++ @android:string/ok ++ %1$s ++ 請選擇日期 ++ 已選取日期 ++ 日期欄:%1$s ++ 格式無效。 ++ 例如:%1$s ++ 使用:%1$s ++ 範圍無效。 ++ 瀏覽至 %1$s 年 ++ 超出範圍:%1$s ++ 開始日期 – %1$s ++ %1$s – 結束日期 ++ %1$s – %2$s ++ 請選擇範圍 ++ 開始日期 – 結束日期 ++ 儲存 ++ 日期 ++ 結束日期 ++ 開始日期 ++ ++ ++ ++ 切換至日曆輸入模式 ++ 輕按以切換至選擇日期 ++ 切換至文字輸入模式 ++ 輕按以切換至選擇年份 ++ 顯示密碼 ++ "搜尋" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +new file mode 100644 +index 0000000..f0d7c80 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d 則新通知 ++ %d 則新通知 ++ ++ "瀏覽首頁" ++ "向上瀏覽" ++ "更多選項" ++ "完成" ++ "查看全部" ++ "選擇應用程式" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "Delete 鍵" ++ "Enter 鍵" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "空格鍵" ++ "Sym +" ++ "Menu +" ++ "搜尋…" ++ "清除查詢" ++ "搜尋查詢" ++ "搜尋" ++ "提交查詢" ++ "語音搜尋" ++ "分享對象" ++ "與「%s」分享" ++ "收合" ++ 展開一半 ++ 已輸入 %1$d 個字元 (上限為 %2$d 個字元) ++ 超過字元限制 (共 %1$d 字元,上限 %2$d 字元) ++ 清除文字 ++ 錯誤 ++ 顯示下拉式選單 ++ 對話方塊圖示 ++ 分頁標籤 ++ 選取上午或下午 ++ 請選取時段 ++ %1$s 點 ++ 選取分鐘數 ++ %1$s 分 ++ AM ++ 切換至時鐘模式來輸入時間。 ++ 小時 ++ 分鐘 ++ PM ++ 選取時間 ++ 切換至文字輸入模式來輸入時間。 ++ 新通知 ++ 移除 %1$s ++ 超過 %1$d 則新通知 ++ 變更至下個月 ++ 變更至上個月 ++ 目前選取:%1$s ++ @android:string/ok ++ %1$s ++ 選取日期 ++ 所選日期 ++ 星期幾資料欄:%1$s ++ 格式無效。 ++ 範例:%1$s ++ 使用:%1$s ++ 日期範圍無效。 ++ 前往 %1$s 年 ++ 超出日期範圍:%1$s ++ 開始日期 – %1$s ++ %1$s – 結束日期 ++ %1$s – %2$s ++ 選取範圍 ++ 開始日期 - 結束日期 ++ 儲存 ++ 日期 ++ 結束日期 ++ 開始日期 ++ d ++ m ++ y ++ 切換至日曆輸入模式 ++ 輕觸即可切換為選取星期幾 ++ 切換至文字輸入模式 ++ 輕觸即可切換為選取年份 ++ 顯示密碼 ++ "搜尋" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml +new file mode 100644 +index 0000000..91dfa69 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d izaziso ezintsha ++ %d izaziso ezintsha ++ ++ "Zulazulela ekhaya" ++ "Zulazulela phezulu" ++ "Ezinye izinketho" ++ "Kwenziwe" ++ "Buka konke" ++ "Khetha insiza" ++ "VALA" ++ "VULA" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Imenyu+" ++ "Sesha…" ++ "Sula inkinga" ++ "Sesha umbuzo" ++ "Sesha" ++ "Thumela umbuzo" ++ "Ukusesha ngezwi" ++ "Yabelana no" ++ "Yabelana ne-%s" ++ "Goqa" ++ Nweba phakathi ++ Izinhlamvu ezifakiwe ezingu-%1$d zokungu-%2$d ++ Umkhawulo wezinhlamvu udlule u-%1$d kokungu-%2$d ++ Sula umbhalo ++ Iphutha ++ Bonisa imenyu yokudonsela phansi ++ Isithonjana sebhokisi ++ Ithebhu ++ Khetha u-AM noma u-PM ++ Khetha ihora ++ %1$s ezimpondweni ++ Khetha amaminithi ++ amaminithi angu-%1$s ++ AM ++ Shintshela kumodi yewashi ngokufakwa kwesikhathi. ++ Ihora ++ Iminithi ++ PM ++ Khetha isikhathi ++ Shintshela kumodi yokufaka umbhalo ngokufaka isikhathi. ++ Isaziso esisha ++ Susa i-%1$s ++ Izaziso ezintsha ezingaphezu kokungu-%1$d ++ Shintshela kunyanga elandelayo ++ Shintshela kunyanga edlule ++ Ukukhetha kwamanje: %1$s ++ @android:string/ok ++ %1$s ++ Khetha Idethi ++ Khetha idethi ++ Ikholomu yezinsuku: %1$s ++ Ifomethi engavumelekile. ++ Isibonelo: %1$s ++ Sebenzisa: %1$s ++ Ibanga elingavumelekile. ++ Zulela onyakeni %1$s ++ Ikude kubanga: %1$s ++ Idethi yokuqala – %1$s ++ %1$s – Idethi yokuphela ++ %1$s – %2$s ++ Khetha Ibanga ++ Idethi yokuqala – Idethi yokuphela ++ Londoloza ++ Idethi ++ Idethi yokuphela ++ Idethi yokuqala ++ d ++ m ++ y ++ Shintshela kwimodi yokufaka yekhalenda ++ Thepha ukuze ushintshe ekukhetheni usuku ++ Shintshela kwimodi yokufaka yombhalo ++ Thepha ukuze ushintshele ekukhetheni unyaka ++ Bonisa iphasiwedi ++ "Sesha" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values/values.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..2b4dd45 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir/values/values.xml +@@ -0,0 +1,7900 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ true ++ true ++ #ff000000 ++ #ffffffff ++ #7fa87f ++ @android:color/black ++ @android:color/black ++ @color/material_deep_teal_200 ++ @color/material_deep_teal_500 ++ #1f000000 ++ #8a000000 ++ @color/material_grey_800 ++ @android:color/white ++ @color/material_grey_850 ++ @color/material_grey_50 ++ #80ffffff ++ #80000000 ++ @color/bright_foreground_material_light ++ @color/bright_foreground_material_dark ++ @android:color/white ++ @android:color/black ++ #ff5a595b ++ #ffd6d7d7 ++ #FF424242 ++ #FFFFFFFF ++ #03000000 ++ #37000000 ++ #14000000 ++ #121212 ++ #CF6679 ++ #FFFFFF ++ #000000 ++ #000000 ++ #000000 ++ #FFFFFF ++ #BA86FC ++ #000000 ++ #3700B3 ++ #03DAC6 ++ #03DAC6 ++ #121212 ++ #FFFFFF ++ #B00020 ++ #000000 ++ #FFFFFF ++ #FFFFFF ++ #000000 ++ #000000 ++ #6200EE ++ #3700B3 ++ #3700B3 ++ #03DAC6 ++ #018786 ++ #FFFFFF ++ @android:color/transparent ++ #14000000 ++ #44000000 ++ #0A000000 ++ #0F000000 ++ #1AFFFFFF ++ #2EFFFFFF ++ #323232 ++ #80bebebe ++ #80323232 ++ #ffbebebe ++ #ff323232 ++ #ff7043 ++ #ff5722 ++ @android:color/white ++ @android:color/black ++ #6680cbc4 ++ #66009688 ++ #ff37474f ++ #ff263238 ++ #ff21272b ++ #ff80cbc4 ++ #ff008577 ++ #fff5f5f5 ++ #ffe0e0e0 ++ #fffafafa ++ #ff757575 ++ #ff424242 ++ #ff303030 ++ #ff212121 ++ #61000000 ++ #00ffffff ++ #52000000 ++ #6B000000 ++ #1F000000 ++ #0A000000 ++ #00000000 ++ #DE000000 ++ #ffffffff ++ #ff9e9e9e ++ @android:color/black ++ @color/material_grey_600 ++ @color/material_grey_900 ++ @color/material_grey_100 ++ #ffffffff ++ #de000000 ++ #4Dffffff ++ #39000000 ++ #33ffffff ++ #1f000000 ++ #b3ffffff ++ #8a000000 ++ #36ffffff ++ #24000000 ++ #ff616161 ++ #ffbdbdbd ++ #ffbdbdbd ++ #fff1f1f1 ++ #e6616161 ++ #e6FFFFFF ++ 16dp ++ 72dp ++ 56dp ++ 0dp ++ 0dp ++ 4dp ++ 16dp ++ 10dp ++ 6dp ++ 48dp ++ 180dp ++ 5dp ++ -3dp ++ 48dp ++ 48dp ++ 36dp ++ 48dp ++ 48dp ++ @dimen/abc_control_inset_material ++ 6dp ++ 8dp ++ @dimen/abc_control_padding_material ++ 720dp ++ 320dp ++ 2dp ++ 4dp ++ 4dp ++ 2dp ++ 80% ++ 100% ++ 320dp ++ 320dp ++ 8dp ++ 8dp ++ 65% ++ 95% ++ 24dp ++ 18dp ++ 8dp ++ 0.30 ++ 0.26 ++ 32dip ++ 8dip ++ 8dip ++ 7dp ++ 4dp ++ 10dp ++ 16dp ++ 80dp ++ 64dp ++ 48dp ++ @dimen/abc_action_bar_content_inset_material ++ 296dp ++ 4dp ++ 48dip ++ 320dip ++ 2dp ++ 2dp ++ 20dp ++ 48dp ++ 36dp ++ 16dp ++ 3dp ++ 14sp ++ 14sp ++ 14sp ++ 12sp ++ 34sp ++ 45sp ++ 56sp ++ 112sp ++ 24sp ++ 22sp ++ 18sp ++ 14sp ++ 16sp ++ 14sp ++ 16sp ++ 16dp ++ 20sp ++ 20dp ++ 16dp ++ 16dp ++ 1dp ++ 2dp ++ 2dp ++ 64dp ++ 4dp ++ 6dp ++ 8dp ++ 4dp ++ 2dp ++ 320dp ++ 320dp ++ 10dp ++ 100dp ++ 4dp ++ 168dp ++ 96dp ++ 14sp ++ 8dp ++ 56dp ++ 24dp ++ 96dp ++ 56dp ++ 10dp ++ 8dp ++ 1dp ++ 12sp ++ 8dp ++ 16dp ++ 64dp ++ 0.5dp ++ 6dp ++ 24dp ++ 40dp ++ 56dp ++ 6dp ++ 6dp ++ 16dp ++ 32dp ++ 24dp ++ 16dp ++ 32dp ++ 280dp ++ 8dp ++ 8dp ++ 128dp ++ 1.0 ++ 0dp ++ 6dp ++ 0dp ++ -1px ++ -1px ++ 12dp ++ 14dp ++ 16dp ++ 14sp ++ 264dp ++ 72dp ++ 14sp ++ 12sp ++ 5dp ++ 0.30 ++ 0.26 ++ 8dp ++ 0dp ++ 50dp ++ 0.26 ++ 0.20 ++ 0.12 ++ 0.50 ++ 0.38 ++ 0.70 ++ 0.54 ++ 20dp ++ 800dp ++ 120dp ++ 640dp ++ 24dp ++ 44dp ++ 4dp ++ 4dp ++ 2dp ++ 15dp ++ 96dp ++ 12dp ++ 52dp ++ 256dp ++ -6dp ++ -12dp ++ 2dp ++ 0.38 ++ 0.87 ++ 0.6 ++ 12dp ++ 23dp ++ 8dp ++ 32dp ++ 4dp ++ 8dp ++ 4dp ++ 12dp ++ 8dp ++ 2dp ++ 200px ++ 100px ++ 245dp ++ 488dp ++ 56dp ++ 560dp ++ 340dp ++ 24dp ++ 80dp ++ 24dp ++ 24dp ++ 80dp ++ 24dp ++ 4dp ++ 4dp ++ 4dp ++ 6dp ++ 10sp ++ 12dp ++ 12dp ++ 8dp ++ 60dp ++ 16dp ++ 5dp ++ 8dp ++ 0dp ++ 56dp ++ 4dp ++ 64dp ++ 0dp ++ 0dp ++ 2dp ++ 2dp ++ 2dp ++ 12dp ++ 8dp ++ 6dp ++ 0.07 ++ 320dp ++ 4dp ++ 16dp ++ 16dp ++ 4dp ++ 6dp ++ 8dp ++ 1dp ++ 4dp ++ 8dp ++ 8dp ++ 14sp ++ 0dp ++ 64dp ++ 52dp ++ 8dp ++ 0dp ++ 12dp ++ 15dp ++ 32dp ++ 3dp ++ 1dp ++ 1dp ++ 36dp ++ 24dp ++ 16dp ++ 12dp ++ 4dp ++ 1dp ++ 120dp ++ 128dp ++ 32dp ++ 12dp ++ 8dp ++ 24dp ++ 0dp ++ 480dp ++ 2dp ++ 0dp ++ 4dp ++ 48dp ++ 4dp ++ 8dp ++ 104dp ++ 20dp ++ 24dp ++ 100dp ++ 16dp ++ 28dp ++ 68dp ++ 18dp ++ 52dp ++ 8dp ++ 8dp ++ 88dp ++ 8dp ++ 24dp ++ 4dp ++ 5dp ++ 1dp ++ 8dp ++ 3dp ++ 14sp ++ 12dp ++ 8dp ++ -8dp ++ 8dp ++ 12dp ++ 24dp ++ 0dp ++ 0dp ++ 6dp ++ 20dp ++ 20dp ++ 24dp ++ 12dp ++ 48dp ++ 120dp ++ 20dp ++ 12dp ++ 12dp ++ 0dp ++ 2dp ++ 6dp ++ 6dp ++ 48dp ++ 2dp ++ 6dp ++ 0.00 ++ 0.24 ++ 0.08 ++ 0.24 ++ 100dp ++ 0.00 ++ 0.12 ++ 0.04 ++ 0.12 ++ 48dp ++ 24dp ++ 8dp ++ 0dp ++ 22dp ++ 14dp ++ 24dp ++ 8dp ++ 4dp ++ 14dp ++ 56dp ++ 72dp ++ 8dp ++ 14dp ++ 24dp ++ 8dp ++ 16dp ++ 12dp ++ 4dp ++ 2dp ++ 4dp ++ 4dp ++ 18dp ++ 40dp ++ 20dp ++ 40dp ++ 28dp ++ 2.5dp ++ 4dp ++ 3dp ++ 2dp ++ 4dp ++ 0dp ++ 4dp ++ 4dp ++ 24dp ++ 4dp ++ 13dp ++ 26dp ++ 1dp ++ 10dp ++ 4dp ++ 16dp ++ 24dp ++ 48dp ++ 0.5 ++ 4dp ++ 0.8 ++ 8dp ++ 8dp ++ 8dp ++ 4dp ++ 4dp ++ 0dp ++ 4dp ++ 1dp ++ 2dp ++ 16dp ++ 4dp ++ 16dp ++ 4dp ++ 56dp ++ 14dp ++ 4dp ++ 32dp ++ 32dp ++ 12dp ++ 30dp ++ 32dp ++ 13sp ++ 12dp ++ 8dp ++ 64dp ++ 64dp ++ 10dp ++ @dimen/notification_content_margin_start ++ 16dp ++ 2dp ++ 3dp ++ 24dp ++ 13sp ++ 10dp ++ 5dp ++ 52dp ++ 168dp ++ 96dp ++ 14sp ++ 8dp ++ 56dp ++ 24dp ++ 96dp ++ 56dp ++ 10dp ++ 1dp ++ 12sp ++ 2dp ++ 16dp ++ 8dp ++ 8dp ++ 96dp ++ 6.5dp ++ 0dp ++ 16dp ++ @drawable/material_ic_keyboard_arrow_right_black_24dp ++ @drawable/material_ic_keyboard_arrow_left_black_24dp ++ #3333B5E5 ++ #0cffffff ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 220 ++ 150 ++ 150 ++ 150 ++ 127 ++ 150 ++ 2 ++ 300 ++ 320 ++ 300 ++ 350 ++ 200 ++ 250 ++ 75 ++ 150 ++ 0 ++ 4 ++ 100 ++ 100 ++ 1 ++ 1 ++ 3 ++ 75 ++ 120 ++ 100 ++ 250 ++ 200 ++ 999 ++ ++ %d new notification ++ %d new notifications ++ ++ Navigate home ++ Navigate up ++ More options ++ Done ++ See all ++ Choose an app ++ OFF ++ ON ++ Alt+ ++ Ctrl+ ++ delete ++ enter ++ Function+ ++ Meta+ ++ Shift+ ++ space ++ Sym+ ++ Menu+ ++ Search… ++ Clear query ++ Search query ++ Search ++ Submit query ++ Voice search ++ Share with ++ Share with %s ++ Collapse ++ Detox ++ com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior ++ com.google.android.material.bottomsheet.BottomSheetBehavior ++ Expand halfway ++ Characters entered %1$d of %2$d ++ Character limit exceeded %1$d of %2$d ++ %1$d/%2$d ++ Chip text ++ Clear text ++ Error ++ Show dropdown menu ++ com.google.android.material.transformation.FabTransformationScrimBehavior ++ com.google.android.material.transformation.FabTransformationSheetBehavior ++ com.google.android.material.behavior.HideBottomViewOnScrollBehavior ++ Dialog Icon ++ Tab ++ : ++ Select AM or PM ++ Select hour ++ %1$s o\'clock ++ Select minutes ++ %1$s minutes ++ cubic-bezier(0.4, 0.0, 1.0, 1.0) ++ cubic-bezier(0.0, 0.0, 0.2, 1.0) ++ path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1) ++ cubic-bezier(0.0, 0.0, 1.0, 1.0) ++ cubic-bezier(0.4, 0.0, 0.2, 1.0) ++ Range end, ++ Range start, ++ AM ++ Switch to clock mode for the time input. ++ Hour ++ Minute ++ PM ++ Select time ++ Switch to text input mode for the time input. ++ New notification ++ Remove %1$s ++ More than %1$d new notifications ++ %1$d%2$s ++ Change to next month ++ Change to previous month ++ Current selection: %1$s ++ @android:string/cancel ++ @android:string/ok ++ %1$s ++ Select Date ++ Selected date ++ Column of days: %1$s ++ Invalid format. ++ Example: %1$s ++ Use: %1$s ++ Invalid range. ++ Navigate to year %1$s ++ Out of range: %1$s ++ Start date – %1$s ++ %1$s – End date ++ %1$s – %2$s ++ Select Range ++ Start date – End date ++ Save ++ Date ++ End date ++ Start date ++ d ++ m ++ y ++ Switch to calendar input mode ++ Tap to switch to selecting a day ++ Switch to text input mode ++ Tap to switch to selecting a year ++ Show password ++ M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z ++ M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z ++ M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z ++ M3.27,4.27 L19.74,20.74 ++ Search ++ 999+ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ /> ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merger.xml +new file mode 100644 +index 0000000..d7c6024 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merger.xml +@@ -0,0 +1,9224 @@ ++ ++#FF424242#FFFFFFFF#03000000#37000000 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1dp2dp2dp@color/androidx_core_secondary_text_default_material_light0dp0dp12dp"999+""999+"">999""999+"4dp"999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""९९९+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+"#1f000000#8a000000#ffffffff#ff9e9e9e4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 8dp0dp50dp20dp800dp120dp ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 10dp ++ ++ ++ 24dp80dp64dp8dp8dp580dp16dp20dp"Navigați la ecranul de pornire""Navigați în sus""Mai multe opțiuni""Gata""Afișați tot""Alegeți o aplicație""DEZACTIVAT""ACTIVAT""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Meniu+""Căutați…""Ștergeți interogarea""Termen de căutare""Căutați""Trimiteți interogarea""Căutare vocală""Trimiteți la""Trimiteți folosind %s""Restrângeți""Căutați""హోమ్‌కు నావిగేట్ చేస్తుంది""పైకి నావిగేట్ చేస్తుంది""మరిన్ని ఎంపికలు""పూర్తయింది""అన్నీ చూడండి""యాప్‌ను ఎంచుకోండి""ఆఫ్""ఆన్""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""స్పేస్""Sym+""Menu+""వెతకండి…""ప్రశ్నను తీసివేస్తుంది""శోధన ప్రశ్న""సెర్చ్""ప్రశ్నని సమర్పిస్తుంది""వాయిస్ శోధన""వీరితో షేర్ చేస్తుంది""%sతో షేర్ చేస్తుంది""కుదిస్తుంది""సెర్చ్"0px"Перейти на главный экран""Перейти вверх""Ещё""Готово""Показать все""Выберите приложение""ВЫКЛ""ВКЛ""Alt +""Ctrl +""Delete""Ввод""Fn +""Meta +""Shift +""Пробел""Sym +""Меню +""Введите запрос""Удалить запрос""Поисковый запрос""Поиск""Отправить запрос""Голосовой поиск""Поделиться с помощью""Поделиться с помощью %s""Свернуть""Поиск""Mag-navigate sa home""Mag-navigate pataas""Higit pang opsyon""Tapos na""Tingnan lahat""Pumili ng app""I-OFF""I-ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Maghanap…""I-clear ang query""Query sa paghahanap""Maghanap""Isumite ang query""Paghahanap gamit ang boses""Ibahagi sa/kay""Ibahagi gamit ang %s""I-collapse""Maghanap""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""Delete 鍵""Enter 鍵""Fn +""Meta +""Shift +""空格鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""與「%s」分享""收合""搜尋""Portami a casa""Torna indietro""Altre opzioni""Fine""Mostra tutto""Scelta di un\'app""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""SPAZIO""SYM +""MENU +""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Cerca""Navega fins a la pàgina d\'inici""Navega cap amunt""Més opcions""Fet""Mostra-ho tot""Selecciona una aplicació""DESACTIVA""ACTIVA""Alt+""Ctrl+""Supr""Retorn""Funció+""Meta+""Maj+""Espai""Sym+""Menú+""Cerca…""Esborra la consulta""Consulta de cerca""Cerca""Envia la consulta""Cerca per veu""Comparteix amb""Comparteix amb %s""Replega""Cerca""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""eyða""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leit""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leit""Přejít na plochu""Přejít nahoru""Další možnosti""Hotovo""Zobrazit vše""Vybrat aplikaci""VYP""ZAP""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Shift+""mezerník""Sym+""Menu+""Vyhledat…""Smazat dotaz""Dotaz pro vyhledávání""Hledat""Odeslat dotaz""Hlasové vyhledávání""Sdílet s""Sdílet s aplikací %s""Sbalit""Hledat""转到首页""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享对象""与%s分享""收起""搜索""Tunjukkan jalan ke rumah""Kembali ke atas""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Telusuri kueri""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Ciutkan""Telusuri""ホームに戻る""前に戻る""その他のオプション""完了""すべて表示""アプリの選択""OFF""ON""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""Menu+""検索…""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""折りたたむ""検索""Πλοήγηση στην αρχική σελίδα""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Εμφάνιση όλων""Επιλέξτε μια εφαρμογή""ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ""ΕΝΕΡΓΟΠΟΙΗΣΗ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""διάστημα""Sym+""Menu+""Αναζήτηση…""Διαγραφή ερωτήματος""Ερώτημα αναζήτησης""Αναζήτηση""Υποβολή ερωτήματος""Φωνητική αναζήτηση""Κοινοποίηση σε""Κοινοποίηση στην εφαρμογή %s""Σύμπτυξη""Αναζήτηση""นำทางไปหน้าแรก""กลับ""ตัวเลือกอื่น""เสร็จ""ดูทั้งหมด""เลือกแอป""ปิด""เปิด""Alt+""Ctrl+""ลบ""Enter""Function+""Meta+""Shift+""Space""Sym+""เมนู+""ค้นหา…""ล้างคำค้นหา""คำค้นหา""ค้นหา""ส่งคำค้นหา""ค้นหาด้วยเสียง""แชร์กับ""แชร์ทาง %s""ยุบ""ค้นหา""پیمایش به صفحه اصلی""رفتن به بالا""گزینه‌های بیشتر""تمام""دیدن همه""انتخاب برنامه""خاموش""روشن""‎Alt+‎""‎Ctrl+‎""حذف""enter""‎Function+‎""‎Meta+‎""‎Shift+‎""فاصله""‎Sym+‎""منو+""جستجو…‏""پاک کردن پُرسمان""درخواست جستجو""جستجو""ارسال پُرسمان""جستجوی گفتاری""هم‌رسانی با""هم‌رسانی با %s""کوچک کردن""جستجو""Eiti į pagrindinį puslapį""Naršyti aukštyn""Daugiau parinkčių""Atlikta""Žr. viską""Pasirinkite programą""IŠJUNGTI""ĮJUNGTI""„Alt“ +""„Ctrl“ +""„delete“""„enter“""„Function“ +""„Meta“ +""„Shift“ +""„space“""„Sym“ +""„Menu“ +""Ieškoti…""Išvalyti užklausą""Paieškos užklausa""Ieškoti""Pateikti užklausą""Paieška balsu""Bendrinti su""Bendrinti naudojant programą „%s“""Sutraukti""Ieškoti""ହୋମ୍ ପେଜ୍‌କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଅଧିକ ବିକଳ୍ପ""ହୋଇଗଲା""ସବୁ ଦେଖନ୍ତୁ""ଗୋଟିଏ ଆପ୍‍ ବାଛନ୍ତୁ""ବନ୍ଦ""ଅନ୍""Alt+""Ctrl+""ଡିଲିଟ୍‍""ଏଣ୍ଟର୍""Function+""Meta+""Shift+""ସ୍ପେସ୍‍""Sym+""ମେନୁ""ସର୍ଚ୍ଚ କରନ୍ତୁ…""କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ""ସର୍ଚ୍ଚ କ୍ୱେରୀ""Search""କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ""ଭଏସ୍‌ ସର୍ଚ୍ଚ""ଏହାଙ୍କ ସହ ସେୟାର୍‌ କରନ୍ତୁ""%s ସହ ସେୟାର୍‍ କରନ୍ତୁ""ସଂକୁଚିତ କରନ୍ତୁ""Search""Joan orri nagusira""Joan gora""Aukera gehiago""Eginda""Ikusi guztiak""Aukeratu aplikazio bat""DESAKTIBATU""AKTIBATU""Alt +""Ktrl +""ezabatu""sartu""Funtzioa +""Meta +""Maius +""zuriunea""Sym +""Menua +""Bilatu…""Garbitu kontsulta""Bilaketa-kontsulta""Bilatu""Bidali kontsulta""Ahozko bilaketa""Partekatu honekin""Partekatu %s aplikazioarekin""Tolestu""Bilatu""ກັບໄປໜ້າຫຼັກ""ເລື່ອນຂຶ້ນເທິງ""ຕົວເລືອກເພີ່ມເຕີມ""ແລ້ວໆ""ເບິ່ງທັງໝົດ""ເລືອກແອັບ""ປິດ""ເປີດ""Alt+""Ctrl+""ລຶບ""enter""Function+""Meta+""Shift+""ຍະຫວ່າງ""Sym+""Menu+""ຊອກຫາ…""ລຶບຂໍ້ຄວາມຊອກຫາ""ຄຳສຳລັບຄົ້ນຫາ""ຊອກຫາ""ສົ່ງຂໍ້ມູນ""ຊອກຫາດ້ວຍສຽງ""ແບ່ງປັນກັບ""ແບ່ງປັນດ້ວຍ %s""ຫຍໍ້ລົງ""ຊອກຫາ""ניווט לדף הבית""ניווט למעלה""עוד אפשרויות""סיום""הצגת הכול""בחירת אפליקציה""כבוי""מופעל""Alt+""Ctrl+‎""מחיקה""Enter""Function+""Meta+""Shift+""רווח""Sym+""תפריט+""חיפוש…""מחיקת השאילתה""שאילתת חיפוש""חיפוש""שליחת שאילתה""חיפוש קולי""שיתוף עם""שיתוף עם %s""כיווץ""חיפוש""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Siirry etusivulle""Siirry ylös""Lisäasetukset""Valmis""Näytä kaikki""Valitse sovellus""POIS PÄÄLTÄ""PÄÄLLÄ""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Vaihto+""välilyönti""Sym+""Valikko+""Haku…""Tyhjennä kysely""Hakukysely""Haku""Lähetä kysely""Puhehaku""Jaa…""Jaa: %s""Tiivistä""Haku"320dp0dp2dp24dp576dp320dp@dimen/design_snackbar_padding_vertical ++ 160dp64dp64dp1 ++ %d notificare nouă ++ %d notificări noi ++ %d de notificări noi ++ Extinde pe ecran completCaractere introduse: %1$d din %2$dLimita de caractere a depășit %1$d din %2$dȘtergeți textulEroareAfișați meniul drop-downPictogramă de dialogFilăSelectați oraSelectați oraOra %1$sSelectați minutele%1$s minutea.m.Pentru a introduce ora, comutați la modul ceas.OraMinutp.m.Selectați oraPentru a introduce ora, comutați la modul de introducere a textului.Notificare nouăEliminați %1$sPeste %1$d notificări noiTreceți la luna următoareTreceți la luna anterioarăSelecția actuală: %1$s@android:string/ok%1$sSelectați dataData selectatăColoana cu zile: %1$sFormat nevalid.Exemplu: %1$sFolosiți: %1$sInterval nevalid.Navigați la anul %1$sFără acoperire: %1$sData de începere – %1$s%1$s – data de încheiere%1$s – %2$sSelectați intervalulData de începere – data de încheiereSalvațiDatăData de încheiereData de începerezlaComutați la modul introducere în calendarAtingeți pentru a comuta la selectarea unei zileComutați la modul de introducere a textuluiAtingeți pentru a comuta la selectarea unui anAfișați parola ++ %d కొత్త నోటిఫికేషన్ ++ %d కొత్త నోటిఫికేషన్‌లు ++ సగాన్ని విస్తరింపజేయండి%2$dలో %1$d అక్షరాలు నమోదు చేయబడ్డాయిఅక్షర పరిధి %2$dలో %1$dను అధిగమించిందిరాసినదాన్ని తీసివేయిఎర్రర్డ్రాప్‌డౌన్ మెనూను చూపుడైలాగ్ చిహ్నంట్యాబ్AM లేదా PMను ఎంచుకోండిగంటను ఎంచుకోండి%1$s అవుతుందినిమిషాలను ఎంచుకోండి%1$s నిమిషాలుAMసమయాన్ని నమోదు చేయడం కోసం గడియారం మోడ్‌కు మారండి.గంటనిమిషంPMసమయాన్ని ఎంచుకోండిసమయాన్ని నమోదు చేయడం కోసం వచన నమోదు మోడ్‌కి మారండి.కొత్త నోటిఫికేషన్(%1$s)ని తీసివేస్తుంది%1$d కంటే ఎక్కువ కొత్త నోటిఫికేషన్‌లువచ్చే నెలకు మార్చుతుందిమునుపటి నెలకు మార్చుతుందిప్రస్తుత ఎంపిక: %1$s@android:string/ok%1$sతేదీని ఎంచుకోండిఎంచుకున్న తేదిరోజుల నిలువు వరుస: %1$sఫార్మాట్ చెల్లదు.ఉదాహరణ: %1$sఇలా ఉపయోగించండి: %1$sచెల్లని పరిధి.%1$sసంవత్సరానికి నావిగేట్ చేస్తుందిపరిధి వెలుపల ఉంది: %1$sప్రారంభ తేదీ – %1$s%1$s – ముగింపు తేది%1$s – %2$sపరిధిని ఎంచుకోండిప్రారంభ తేది - ముగింపు తేదిసేవ్ చేయితేదీముగింపు తేదీప్రారంభ తేదీరోనెసంక్యాలెండర్ ఇన్‌పుట్ మోడ్‌కు మారుస్తుంది\'రోజును ఎంపిక చేసుకోవడం\'కు మారడానికి నొక్కండివచన ఇన్‌పుట్ మోడ్‌కు మారుస్తుంది\'సంవత్సరాన్ని ఎంపిక చేసుకోవడం\'కు మారడానికి నొక్కండిపాస్‌వర్డ్‌ను చూపు ++ %d новое уведомление ++ %d новых уведомления ++ %d новых уведомлений ++ %d нового уведомления ++ Развернуть наполовинуВведено символов: %1$d из %2$dПревышено ограничение на количество символов (%1$d из %2$d)Очистить текстовое полеОшибкаПоказать раскрывающееся менюЗначок диалогового окнаВкладкаВыберите AM (до полудня) или PM (после полудня)Выберите час%1$s ч.Выберите минуты%1$s мин.AMЧтобы ввести время, перейдите в режим часов.ЧасМинутыPMВыбор времениЧтобы ввести время, перейдите в режим ввода текста.Новое уведомлениеУдалить \"%1$s\"Новых уведомлений больше %1$dПерейти к следующему месяцуПерейти к предыдущему месяцуВыбранный элемент: %1$s@android:string/ok%1$sВыберите датуВыбранная датаСтолбец со днями недели: %1$sНедействительный формат.Пример: %1$sИспользуйте: %1$sНедопустимый диапазон.Перейти к %1$s годуВне диапазона: %1$sДата начала – %1$s%1$s – дата окончания%1$s – %2$sВыберите диапазон датДата начала – дата окончанияСохранитьДатаДата окончанияДата началадмгПерейти в режим выбора днейНажмите, чтобы перейти к выбору дняПерейти в режим ввода текстаНажмите, чтобы перейти к выбору годаПоказать пароль ++ %d bagong notification ++ %d na bagong notification ++ I-expand hanggang gitnaMga character na nailagay %1$d sa %2$dLumampas sa limitasyon sa bilang ng character %1$d sa %2$dI-clear ang textErrorIpakita ang dropdown na menuIcon ng DialogTabPiliin ang AM o PMPumili ng oras%1$s o\'clockPumili ng mga minuto%1$s (na) minutoAMLumipat sa mode ng orasan para sa input na oras.OrasMinutoPMPumili ng orasLumipat sa pamamaraan ng pag-input ng text para sa input na oras.Bagong notificationAlisin ang %1$sMahigit %1$d (na) bagong notificationLumipat sa susunod na buwanLumipat sa nakaraang buwanKasalukuyang seleksyon: %1$s@android:string/ok%1$sPumili ng PetsaPiniling petsaColumn ng mga araw: %1$sInvalid na format.Halimbawa: %1$sGamitin: %1$sInvalid na hanay.Mag-navigate patungo sa taong %1$sWala sa sakop: %1$sPetsa ng pagsisimula – %1$s%1$s – Petsa ng pagtatapos%1$s – %2$sPumili ng RangePetsa ng pagsisimula – Petsa ng pagtataposI-savePetsaPetsa ng pagtataposPetsa ng pagsisimuladmyLumipat sa pamamaraan ng pag-input ng kalendaryoI-tap para lumipat sa pagpili ng arawLumipat sa pamamaraan ng pag-input ng textI-tap para lumipat sa pagpili ng taonIpakita ang password ++ %d 則新通知 ++ %d 則新通知 ++ 展開一半已輸入 %1$d 個字元 (上限為 %2$d 個字元)超過字元限制 (共 %1$d 字元,上限 %2$d 字元)清除文字錯誤顯示下拉式選單對話方塊圖示分頁標籤選取上午或下午請選取時段%1$s 點選取分鐘數%1$s 分AM切換至時鐘模式來輸入時間。小時分鐘PM選取時間切換至文字輸入模式來輸入時間。新通知移除 %1$s超過 %1$d 則新通知變更至下個月變更至上個月目前選取:%1$s@android:string/ok%1$s選取日期所選日期星期幾資料欄:%1$s格式無效。範例:%1$s使用:%1$s日期範圍無效。前往 %1$s 年超出日期範圍:%1$s開始日期 – %1$s%1$s – 結束日期%1$s – %2$s選取範圍開始日期 - 結束日期儲存日期結束日期開始日期dmy切換至日曆輸入模式輕觸即可切換為選取星期幾切換至文字輸入模式輕觸即可切換為選取年份顯示密碼64dp ++ %d nuova notifica ++ %d nuove notifiche ++ Espandi a metà%1$d caratteri inserirti su %2$dSono presenti %2$d caratteri in più rispetto al limite di %1$dCancella testoErroreMostra il menu a discesaIcona della finestra di dialogoSchedaSeleziona AM o PMSeleziona l\'ora%1$s in puntoSeleziona i minuti%1$s minutiamPassa alla modalità orologio per inserire l\'ora.OraMinutopmSeleziona l\'oraPassa alla modalità di immissione testo per inserire l\'ora.Nuova notificaRimuovi %1$sPiù di %1$d nuove notifichePassa al mese successivoPassa al mese precedenteSelezione attuale: %1$s@android:string/ok%1$sSeleziona dataData selezionataColonna dei giorni: %1$sFormato non valido.Esempio: %1$sUsa: %1$sIntervallo non valido.Vai all\'anno %1$sNon compresa nell\'intervallo: %1$sData di inizio - %1$s%1$s - Data di fine%1$s - %2$sSeleziona intervalloData di inizio - Data di fineSalvaDataData di fineData di iniziogmaPassa alla modalità di immissione CalendarioTocca per passare alla selezione di un giornoPassa alla modalità di immissione TestoTocca per passare alla selezione di un annoMostra password ++ %d notificació nova ++ %d notificacions noves ++ Desplega fins a la meitatCaràcters introduïts: %1$d de %2$dS\'ha superat el límit de caràcters (%1$d de %2$d)Esborra el textErrorMostra el menú desplegableIcona del quadre de diàlegTabuladorSelecciona a. m. o p. m.Seleccioneu l\'hora%1$s en puntSelecciona els minuts%1$s minutsa. m.Canvia al mode de rellotge per introduir l\'hora.HoraMinutp. m.Selecció de l\'horaCanvia al mode d\'introducció de text per introduir l\'hora.Notificació novaSuprimeix %1$sMés de %1$d notificacions novesCanvia al mes següentCanvia al mes anteriorSelecció actual: %1$s@android:string/ok%1$sSelecciona una dataData seleccionadaColumna de dies: %1$sEl format no és vàlid.Exemple: %1$sUtilitza: %1$sL\'interval no és vàlid.Canvia a l\'any %1$sLa data està fora de l\'interval: %1$sData d\'inici - %1$s%1$s - data de finalització%1$s - %2$sSelecciona un intervalData d\'inici - data de finalitzacióDesaDataData de finalitzacióData d\'inicidmaCanvia al mode d\'introducció de dades del calendariToca per canviar a la selecció del diaCanvia al mode d\'introducció de textToca per canviar a la selecció de l\'anyMostra la contrasenya ++ %d ný tilkynning ++ %d nýjar tilkynningar ++ Stækka til hálfsInnslegnir stafir %1$d af %2$dYfir hámarksstafafjölda, %1$d af %2$dHreinsa textaVillaSýna fellivalmyndGluggatáknFlipiVelja f.h. eða e.h.Velja tímaklukkan %1$sVeldu mínútur%1$s mínúturf.h.Skipta yfir í klukkustillingu til að færa inn tíma.KlukkustundMínútae.h.Veldu tímaSkipta yfir í textastillingu til að færa inn tíma.Ný tilkynningFjarlægja %1$sYfir %1$d nýjar tilkynningarBreyta í næsta mánuðBreyta í fyrri mánuðNúverandi val: %1$s@android:string/ok%1$sVeldu dagsetninguValin dagsetningDálkur með dögum: %1$sÓgilt snið.Dæmi: %1$sNota: %1$sÓgilt svið.Fara í árið %1$sUtan sviðs: %1$sUpphafsdagur – %1$s%1$s – lokadagur%1$s – %2$sVeldu tímabilUpphafsdagur – lokadagurVistaDagsetningLokadagurUpphafsdagurdmáSkipta yfir í innfærsluaðferð fyrir dagatalÝttu til að skipta yfir í að velja dagSkipta yfir í innfærsluaðferð fyrir textaÝttu til að skipta yfir í að velja árSýna aðgangsorð ++ %d nové oznámení ++ %d nová oznámení ++ %d nového oznámení ++ %d nových oznámení ++ Rozbalit napůlZadané znaky: %1$d z %2$dByl překročen povolený počet znaků (%1$d z %2$d)Vymazat textChybaZobrazit rozbalovací nabídkuIkona dialogového oknaKartaVyberte AM nebo PMVyberte hodinu%1$sZvolte minuty%1$s minAMChcete-li zadat čas, přepněte na režim hodin.HodinaMinutaPMVyberte časChcete-li zadat čas, přepněte na režim textu.Nové oznámeníOdstranit položku %1$sVíce než %1$d nových oznámeníPřejít na další měsícPřejít na předchozí měsícAktuální výběr: %1$s@android:string/ok%1$sVyberte datumVybrané datumSloupec dnů: %1$sNeplatný formát.Příklad: %1$sPoužijte: %1$sNeplatný rozsah.Přejít na rok %1$sMimo rozsah: %1$sDatum zahájení – %1$s%1$s – datum ukončení%1$s – %2$sVyberte rozsahDatum zahájení – datum ukončeníUložitDatumDatum ukončeníDatum zahájenídmrPřepnout na režim zadávání do kalendářeKlepnutím přepnete na výběr dnePřepnout na režim zadávání textuKlepnutím přepnete na výběr rokuZobrazit heslo0dp22dp48dp2dp2dp48dp20dp168dp0dp ++ %d 条新通知 ++ %d 条新通知 ++ 展开到一半高度输入了 %1$d 个字符(上限为 %2$d 个)超出字符数限制(共 %1$d 个,上限为 %2$d 个)清除文字错误显示下拉菜单对话框图标标签页选择上午或下午选择小时%1$s 点选择分钟%1$s 分上午切换到时钟模式来输入时间。小时分钟下午选择时间切换到文字输入模式来输入时间。新通知移除%1$s有 %1$d 条以上的新通知转到下个月转到上个月当前的选择是:%1$s@android:string/ok%1$s请选择日期选定的日期表示周几的列:%1$s格式无效。示例:%1$s使用:%1$s范围无效。转到 %1$s 年不在允许的范围内:%1$s开始日期 – %1$s%1$s – 结束日期%1$s - %2$s请选择范围开始日期 - 结束日期保存日期结束日期开始日期dmy切换到日历输入模式点按即可切换到选择某天切换到文本字段输入模式点按即可切换到选择某年显示密码 ++ %d notifikasi baru ++ %d notifikasi baru ++ Luaskan setengahKarakter yang dimasukkan %1$d dari %2$dMelebihi batas karakter %1$d dari %2$dMenghapus teksErrorTampilkan menu dropdownIkon DialogTabPilih AM atau PMPilih jamPukul %1$sPilih menit%1$s menitAMBeralih ke mode jam untuk masukan waktu.JamMenitPMPilih waktuBeralih ke mode masukan teks untuk masukan waktu.Notifikasi baruMenghapus %1$sLebih dari %1$d notifikasi baruUbah ke bulan berikutnyaUbah ke bulan sebelumnyaPilihan saat ini: %1$s@android:string/ok%1$sPilih TanggalTanggal yang dipilihKolom hari: %1$sFormat tidak valid.Contoh: %1$sGunakan: %1$sRentang tidak valid.Buka tahun %1$sDi luar rentang: %1$sTanggal mulai – %1$s%1$s – Tanggal akhir%1$s – %2$sPilih RentangTanggal mulai – Tanggal akhirSimpanTanggalTanggal akhirTanggal mulaihbtBeralih ke mode masukan kalenderKetuk untuk beralih ke memilih hariBeralih ke mode masukan teksKetuk untuk beralih ke memilih tahunTampilkan sandi ++ %d 件の新しい通知 ++ %d 件の新しい通知 ++ 下半分を展開入力済み文字数: %1$d/%2$d文字数制限を超えています(%1$d/%2$d 文字)テキストを消去エラープルダウン メニューを表示ダイアログ アイコンタブ午前または午後を選択時刻を選択してください%1$s時分を選択%1$s分AM時刻を時計で入力するモードに切り替えます。時間PM時間を選択時刻をテキストで入力するモードに切り替えます。新しい通知%1$s を削除します%1$d 件以上の新しい通知翌月に変更前月に変更現在の選択: %1$s@android:string/ok%1$s日付を選択してください選択した日付曜日の列: %1$s形式が無効です。例: %1$s使用: %1$s範囲が無効です。%1$s 年に移動範囲外: %1$s開始日~%1$s%1$s~終了日%1$s~%2$s期間を選択してください開始日~終了日保存日付終了日開始日dmyカレンダー入力モードに切り替えタップすると、日の選択に切り替わりますテキスト入力モードに切り替えタップすると、年の選択に切り替わりますパスワードを表示 ++ %d νέα ειδοποίηση ++ %d νέες ειδοποιήσεις ++ Ανάπτυξη μέχρι τη μέσηΕισήχθησαν %1$d από %2$d χαρακτήρεςΥπέρβαση ορίου χαρακτήρων %1$d από %2$dΔιαγραφή κειμένουΣφάλμαΕμφάνιση αναπτυσσόμενου μενούΕικονίδιο παραθύρου διαλόγουΚαρτέλαΕπιλέξτε π.μ. ή μ.μ.Επιλογή ώρας%1$s ακριβώςΕπιλογή λεπτών%1$s λεπτάΠΜΚάντε εναλλαγή στη λειτουργία ρολογιού, για την εισαγωγή της ώρας.ΏραΛεπτόΜΜΕπιλέξτε ώραΚάντε εναλλαγή στη λειτουργία εισαγωγής κειμένου, για την εισαγωγή της ώρας.Νέα ειδοποίησηΚατάργηση %1$sΠάνω από %1$d νέες ειδοποιήσειςΑλλαγή στον επόμενο μήναΑλλαγή στον προηγούμενο μήναΤρέχουσα επιλογή: %1$s@android:string/ok%1$sΕπιλογή ημερομηνίαςΕπιλεγμένη ημερομηνίαΣτήλη ημερών: %1$sΜη έγκυρη μορφή.Παράδειγμα: %1$sΧρησιμοποιήστε: %1$sΜη έγκυρο εύρος.Πλοήγηση στο έτος %1$sΕκτός εύρους: %1$sΗμερομηνία έναρξης – %1$s%1$s – Ημερομηνία λήξης%1$s – %2$sΕπιλογή εύρουςΗμερομηνία έναρξης – Ημερομηνία λήξηςΑποθήκευσηΗμερομηνίαΗμερομηνία λήξηςΗμερομηνία έναρξηςημεΕναλλαγή στη λειτουργία εισαγωγής ημερολογίουΠατήστε για εναλλαγή για την επιλογή ημέραςΕναλλαγή στη λειτουργία εισαγωγής κειμένουΠατήστε για εναλλαγή για την επιλογή έτουςΕμφάνιση κωδικού πρόσβασης ++ %d jaunu paziņojumu ++ %d jauns paziņojums ++ %d jauni paziņojumi ++ Izvērst līdz puseiIevadītās rakstzīmes: %1$d no %2$dPārsniegts rakstzīmju skaita ierobežojums (%1$d no %2$d)Notīrīt tekstuKļūdaRādīt nolaižamo izvēlniDialoglodziņa ikonaCilneAtlasiet “AM” (priekšpusdienā) vai “PM” (pēcpusdienā).Atlasiet stunduplkst. %1$sAtlasiet minūtes.%1$s minAMLai ievadītu laiku, ieslēdziet pulksteņa režīmu.StundaMinūtePMLaika atlasīšanaLai ievadītu laiku, ieslēdziet teksta ievades režīmu.Jauns paziņojumsNoņemt: %1$sVairāk nekā %1$d jauni paziņojumiPāriet uz nākamo mēnesiPāriet uz iepriekšējo mēnesiPašreizējā atlase: %1$s@android:string/ok%1$sAtlasiet datumuAtlasītais datumsDienu sleja: %1$sNederīgs formāts.Piemērs: %1$sIzmantojiet: %1$sNederīgs diapazons.Pāriet uz šo gadu: %1$sĀrpus diapazona: %1$sSākuma datums–%1$s%1$s–beigu datums%1$s–%2$sAtlasiet diapazonuSākuma datums–beigu datumsSaglabātDatumsBeigu datumsSākuma datumsdmgPārslēgties uz kalendāra ievades režīmuPieskarties, lai pārslēgtos uz dienas atlasīšanuPārslēgties uz teksta ievades režīmuPieskarties, lai pārslēgtos uz gada atlasīšanuRādīt paroli24dp36dp0dp22dp48dp2dp2dp48dp48dp0dp ++ %d ny notifikation ++ %d nye notifikationer ++ Udvid halvdelenDu har brugt %1$d ud af %2$d tegnDu har brugt %1$d tegn og dermed overskredet tegnbegrænsningen på %2$d.Ryd tekstFejlVis rullemenuenIkon for dialogboksFaneVælg AM eller PMVælg timeklokken %1$sVælg minutter%1$s minutterf.m.Skift til urtilstand for at angive klokkeslæt.TimeMinute.m.Vælg tidspunktSkift til teksttilstand for at angive klokkeslæt.Ny notifikationFjern %1$sFlere end %1$d nye notifikationerSkift til næste månedSkift til forrige månedAktuelt valg: %1$s@android:string/ok%1$sVælg datoValgt datoKolonne med dage: %1$sUgyldigt format.Eksempel: %1$sBrug: %1$sUgyldigt interval.Gå til år %1$sUden for interval: %1$sStartdato – %1$s%1$s – slutdato%1$s – %2$sVælg intervalStartdato – slutdatoGemDatoSlutdatoStartdatodmåSkift til input-tilstand for kalenderTryk for at gå til valg af dagSkift til input-tilstand for tekstTryk for at gå til valg af årVis adgangskode ++ %d नवीन सूचना ++ %d नवीन सूचना ++ पूर्णपणे विस्तृत करा%2$d पैकी %1$d वर्ण एंटर केले आहे%2$d पैकी %1$d वर्णमर्यादा ओलांडली आहेमजकूर साफ कराएररड्रॉपडाउन मेनू दाखवाडायलॉग आयकनटॅबAM किंवा PM निवडावेळ निवडा%1$s वाजतामिनिटे निवडा%1$s मिनिटेAMवेळेच्या इनपुटसाठी घड्याळ मोडवर स्विच करा.तासमिनिटPMवेळ निवडावेळ इनपुटसाठी मजकूर इनपुट मोडवर स्विच करा.नवीन सूचनाकाढून टाका %1$s%1$d पेक्षा अधिक नवीन सूचनापुढील महिन्यावर बदलामागील महिन्यावर बदलासध्याची निवड: %1$s@android:string/ok%1$sतारीख निवडानिवडलेली तारीखदिवसांचा स्तंभ: %1$sचुकीचा फॉरमॅट.उदाहरण: %1$s%1$s: वापराचुकीची श्रेणी.%1$s वर्षावर नेव्हिगेट करारेंजच्या बाहेर: %1$sसुरू होण्याची तारीख – %1$s%1$s – संपण्याची तारीख%1$s – %2$sरेंज निवडासुरू होण्याची तारीख – संपण्याची तारीखसेव्ह करातारीखसंपण्याची तारीखसुरू होण्याची तारीखदिकॅलेंडर इनपुट मोडवर स्विच करादिवस निवडण्यासाठी स्विच करा वर टॅप करामजकूर इनपुट मोडवर स्विच करावर्ष निवडण्यासाठी स्विच करा वर टॅप करापासवर्ड दाखवा ++ %d жаңа хабарландыру ++ %d жаңа хабарландыру ++ Жартылай кеңейту%1$d/%2$d таңба енгізілдіТаңба саны шегінен асты: %1$d/%2$dМәтінді өшіруҚатеАшылмалы мәзірді көрсетуДиалог белгішесіҚойынды\"AM\" немесе \"PM\" форматын таңдауСағатты таңдауСағат: %1$sМинут таңдау%1$s минутAMУақытты енгізу үшін сағат режиміне өтіңіз.СағатMинутPMУақытты таңдауУақытты енгізу үшін мәтін енгізу режиміне өтіңіз.Жаңа хабарландыру%1$s мазмұнын өшіру%1$d санынан көп жаңа хабарландыруКелесі айға өтуАлдыңғы айға өтуАғымдағы таңдау: %1$s@android:string/ok%1$sКүнді таңдауТаңдалған күнКүндер бағаны: %1$sФормат жарамсыз.Мысал: %1$s.Жарамды формат: %1$s.Ауқым жарамсыз.%1$s жылына жылжуАуқымнан тыc: %1$sБасталу күні – %1$s%1$s – аяқталу күні%1$s – %2$sАралықты таңдауБасталу күні – аяқталу күніСақтауКүніАяқталу күніБасталу күнікажКүнтізбенің енгізу режиміне ауысуКүнді таңдауға ауысу үшін түртіңіз.Мәтін енгізу режиміне ауысуЖылды таңдауға ауысу үшін түртіңіз.Құпия сөзді көрсету ++ %d жаңы билдирме ++ %d жаңы билдирме ++ Жарымын жайып көрсөтүү%2$d ичинен %1$d символ киргизилдиСимволдордун саны коюлган %2$d чегинен %1$d символго ашып кеттиТекстти тазалооКатаТүрүлмө менюну көрсөтүүДиалог сүрөтчөсүӨтмөкТандоо: AM же PMСаат тандооСаат %1$sМүнөттөрдү тандаңыз%1$s мүнөтAMУбакытты дубал саатынын режиминде киргизиңиз.СаатМүнөтPMУбакыт тандооУбакытты текст киргизүү режиминде киргизиңиз.Жаңы билдирмеМазмунду алып салуу (%1$s)%1$d ашуун жаңы билдирмеКийинки айга өзгөртүүМурунку айга өзгөртүүУчурдагы тандоо: %1$s@android:string/ok%1$sКүн тандооТандалган күнКүндөр тилкеси: %1$sЖараксыз формат.Мисалы: %1$s%1$s формтын колднуңузЖараксыз диапазон.%1$s-жылга өтүүДиапазондон тышкары: %1$sБаштоо күнү – %1$s%1$s – Аяктоо күнү%1$s – %2$sДаталар диапазонун тандооБаштоо күнү – Аяктоо күнүСактооКүнАяктоо күнүБаштоо күнүкажЖылнаамага иш-чара киргизүү режимине которулууКүн тандоо үчүн таптап коюңузТекст киргизүү режимине которулууЖыл тандоо үчүн таптап коюңузСырсөздү көрсөтүү ++ %d નવું નોટિફિકેશન ++ %d નવા નોટિફિકેશન ++ અડધે સુધી મોટું કરો%2$dમાંથી %1$d અક્ષરો દાખલ કર્યા%2$dમાંથી %1$dની વર્ણ મર્યાદા ઓળંગાઈ ગઈ છેટેક્સ્ટ સાફ કરોભૂલડ્રૉપડાઉન મેનૂ બતાવોસંવાદનું આઇકનટૅબAM અથવા PM પસંદ કરોસમય પસંદ કરો%1$s વાગ્યા છેમિનિટ પસંદ કરો%1$s મિનિટAMસમય દાખલ કરવા માટે ઘડિયાળ મોડમાં સ્વિચ કરો.કલાકમિનિટPMસમય પસંદ કરોસમય દાખલ કરવા માટે ટેક્સ્ટ ઇનપુટ મોડમાં સ્વિચ કરો.નવું નોટિફિકેશન%1$s કાઢી નાખો%1$dથી વધુ નવા નોટિફિકેશનઆગલા મહિના પર બદલોપાછલા મહિના પર બદલોહાલની પસંદગી: %1$s@android:string/ok%1$sતારીખ પસંદ કરોપસંદ કરેલી તારીખદિવસોની કૉલમ: %1$sઅમાન્ય ફોર્મેટ.ઉદાહરણ: %1$sઆનો ઉપયોગ કરો: %1$sઅમાન્ય શ્રેણી.%1$sના વર્ષ પર નૅવિગેટ કરોઆ શ્રેણીની બહાર છે: %1$sશરૂ કરવાની તારીખ – %1$s%1$s – સમાપ્તિની તારીખ%1$s – %2$sશ્રેણી પસંદ કરોશરૂ કરવાની તારીખ – સમાપ્તિની તારીખસાચવોતારીખસમાપ્તિની તારીખશરૂ કરવાની તારીખdmyકૅલેન્ડર ઇનપુટ મોડ પર સ્વિચ કરોદિવસની પસંદગી પર સ્વિચ કરવા માટે ટૅપ કરોટેક્સ્ટ ઇનપુટ મોડ પર સ્વિચ કરોવર્ષની પસંદગી પર સ્વિચ કરવા માટે ટૅપ કરોપાસવર્ડ બતાવો ++ %d шинэ мэдэгдэл ++ %d шинэ мэдэгдэл ++ Хагас дэлгэнэ үү%2$d-н %1$d тэмдэгтийг оруулсанТэмдэгтийн хязгаар %2$d-н %1$d-с хэтэрсэнТекстийг арилгахАлдааДоош унадаг цэсийг харуулахХарилцах цонхны дүрс тэмдэгТабҮӨ эсвэл ҮХ сонгоно ууЦаг сонгох%1$s цагМинут сонгоно уу%1$s минутAMЦагийг оруулахын тулд цагийн горимд шилжүүлнэ үү.ЦагМинутPMЦаг сонгохЦагийг оруулахын тулд текст оруулах горимд шилжүүлнэ үү.Шинэ мэдэгдэл%1$s-г устгах%1$d-с олон шинэ мэдэгдэлДараагийн сар луу өөрчлөхӨмнөх сар луу өөрчлөхОдоогийн сонголт: %1$s@android:string/ok%1$sОгноо сонгохСонгосон огнооӨдрийн багана: %1$sБуруу формат байна.Жишээ нь: %1$sАшиглах формат: %1$sОгнооны хязгаар буруу байна.%1$s он руу шилжихХязгаараас хэтэрсэн: %1$sЭхлэх огноо – %1$s%1$s – Дуусах огноо%1$s – %2$sМуж сонгохЭхлэх огноо – Дуусах огнооХадгалахОгнооДуусах огнооЭхлэх огнооөсжКалендарийн орох горим руу сэлгэхӨдөр сонгох руу сэлгэхийн тулд товшино ууТекстийн орох горим руу сэлгэхОн сонгох руу сэлгэхийн тулд товшино ууНууц үгийг харуулах8dp ++ %d pemberitahuan baharu ++ %d pemberitahuan baharu ++ Kembangkan helaian bawahAksara dimasukkan %1$d daripada %2$dMelebihi had aksara %1$d daripada %2$dKosongkan teksRalatTunjukkan menu lungsurIkon DialogTabPilih AM atau PMPilih jamPukul %1$sPilih minit%1$s minitPGBeralih ke mod jam untuk input masa.JamMinitP/MPilih masaBeralih ke mod input teks untuk input masa.Pemberitahuan baharuAlih keluar %1$sLebih daripada %1$d pemberitahuan baharuTukar kepada bulan seterusnyaTukar kepada bulan sebelumnyaPilihan semasa: %1$s@android:string/ok%1$sPilih TarikhTarikh dipilihLajur hari: %1$sFormat tidak sah.Contoh: %1$sGunakan: %1$sJulat tidak sah.Navigasi ke tahun %1$sDi luar julat: %1$sTarikh mula – %1$s%1$s – Tarikh tamat%1$s – %2$sPilih JulatTarikh mula – Tarikh tamatSimpanTarikhTarikh tamatTarikh mulahbtBeralih kepada mod input kalendarKetik untuk beralih kepada pemilihan hariBeralih kepada mod input teksKetik untuk beralih kepada pemilihan tahunTunjukkan kata laluan ++ %d 個新通知 ++ %d 個新通知 ++ 展開一半已輸入 %1$d 個字元 (共 %2$d 個)超出字元限制 %1$d 個字元 (上限 %2$d 個字元)清除文字錯誤顯示下拉式選單對話框圖示分頁選擇上午或下午選取時段%1$s 點選取分鐘%1$s 分AM切換至時鐘模式即可輸入時間。小時分鐘PM選取時間切換至文字輸入模式即可輸入時間。新通知移除「%1$s」超過 %1$d 則新通知變更為下個月變更為上個月目前選取:%1$s@android:string/ok%1$s請選擇日期已選取日期日期欄:%1$s格式無效。例如:%1$s使用:%1$s範圍無效。瀏覽至 %1$s 年超出範圍:%1$s開始日期 – %1$s%1$s – 結束日期%1$s – %2$s請選擇範圍開始日期 – 結束日期儲存日期結束日期開始日期切換至日曆輸入模式輕按以切換至選擇日期切換至文字輸入模式輕按以切換至選擇年份顯示密碼 ++ ការជូនដំណឹងថ្មី %d ++ ការជូនដំណឹងថ្មី %d ++ ពង្រីក​ពាក់កណ្ដាលតួ​អក្សរ​បាន​បញ្ចូល​ %1$d នៃ %2$dដែនកំណត់តួអក្សរបានលើស %1$d នៃ %2$dសម្អាតអក្សរបញ្ហាបង្ហាញ​ម៉ឺនុយ​ធ្លាក់ចុះរូប​ប្រអប់បញ្ចូលផ្ទាំងជ្រើសរើស AM ឬ PMជ្រើសរើសម៉ោងម៉ោង %1$sជ្រើស​នាទី%1$s នាទីព្រឹកប្តូរ​ទៅ​មុខងារ​នាឡិកា​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។ម៉ោងនាទី​ល្ងាចជ្រើស​ម៉ោងប្តូរ​ទៅ​មុខងារ​បញ្ចូល​អក្សរ​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។ការជូនដំណឹងថ្មីលុប %1$sការជូនដំណឹង​ថ្មីៗ​លើស %1$d ហើយប្ដូរ​ទៅ​ខែបន្ទាប់ប្ដូរ​ទៅ​ខែមុនការជ្រើសរើស​បច្ចុប្បន្ន៖ %1$s@android:string/ok%1$sជ្រើសរើស​កាល​បរិច្ឆេទកាលបរិច្ឆេទដែលបាន​ជ្រើសរើសជួរឈរ​នៃ​ថ្ងៃ៖ %1$sទម្រង់មិន​ត្រឹមត្រូវទេ។ឧទាហរណ៍៖ %1$sប្រើ៖ %1$sជួរ​មិនត្រឹមត្រូវទេ។ប្ដូរទៅ​ឆ្នាំ %1$sនៅក្រៅ​ជួរ៖ %1$sកាលបរិច្ឆេទ​ចាប់ផ្ដើម – %1$s%1$s – កាលបរិច្ឆេទ​បញ្ចប់%1$s – %2$sជ្រើស​រើស​ចន្លោះកាលបរិច្ឆេទ​ចាប់ផ្ដើម – កាលបរិច្ឆេទ​បញ្ចប់រក្សាទុកកាលបរិច្ឆេទកាល​បរិច្ឆេទ​បញ្ចប់កាល​បរិច្ឆេទ​ចាប់ផ្ដើមប្ដូរទៅ​របៀប​បញ្ចូល​ប្រតិទិនចុច​ដើម្បីប្ដូរទៅ​ការជ្រើសរើសថ្ងៃប្ដូរទៅ​របៀប​បញ្ចូល​អក្សរចុច​ដើម្បីប្ដូរទៅ​ការជ្រើសរើសឆ្នាំបង្ហាញពាក្យសម្ងាត់ ++ %d nova notificação ++ %d novas notificações ++ Expandir até a metadeCaracteres inseridos: %1$d de %2$dLimite de %2$d caracteres excedido em %1$dLimpar textoErroMostrar menu suspensoÍcone de caixa de diálogoGuiaSelecionar AM ou PMSelecionar horário%1$s em pontoSelecione os minutos%1$s minutosAMAlterne para o modo de relógio para informar o horário.HoraMinutoPMSelecionar horárioAlterne para o modo de entrada de texto para informar o horário.Nova notificaçãoRemover %1$sMais de %1$d novas notificaçõesAlterar para o próximo mêsAlterar para o mês anteriorSeleção atual: %1$s@android:string/ok%1$sSelecionar dataData selecionadaColuna de dias: %1$sFormato inválido.Exemplo: %1$sUsar %1$sIntervalo inválido.Ir para o ano %1$sFora do intervalo: %1$sData de início – %1$s%1$s – Data de término%1$s – %2$sSelecionar intervaloData de início – Data de términoSalvarDataData de términoData de iníciodmaAlternar para o modo de entrada da agendaToque para alternar para a seleção de um diaAlternar para o modo de entrada de textoToque para alternar para a seleção de um anoExibir senha ++ %d նոր ծանուցում ++ %d նոր ծանուցում ++ Ծավալել կիսով չափՄուտքագրված նիշեր՝ %1$d/%2$dՆիշերի առավելագույն քանակը գերազանցվել է (%1$d/%2$d)Ջնջել տեքստըՍխալՑույց տալ իջնող ընտրացանկըԵրկխոսության պատուհանի պատկերակՆերդիրԸնտրել AM կամ PMԸնտրել ժամըԺամը %1$s էԸնտրեք րոպեն%1$s րոպեAMԺամը մուտքագրելու համար միացրեք ժամացույցի ռեժիմը:ԺամՐոպեPMԺամանակի ընտրությունԺամը մուտքագրելու համար միացրեք տեքստի մուտքագրման ռեժիմը:Նոր ծանուցումՀեռացնել (%1$s)Ավելի քան %1$d նոր ծանուցումԱնցնել հաջորդ ամիսԱնցնել նախորդ ամիսՆերկայիս ընտրությունը՝ %1$s@android:string/ok%1$sԸնտրեք ամսաթիվըԸնտրված ամսաթիվըՕրերի սյունակ՝ %1$sՁևաչափը սխալ է։Օրինակ՝ %1$sՕգտագործեք՝ %1$sԸնդգրկույթն անվավեր է:Անցնել %1$s թվականԸնդգրկույթից դուրս է՝ %1$sՄեկնարկի ամսաթիվը – %1$s%1$s – Ավարտի ամսաթիվը%1$s – %2$sԸնտրեք ընդգրկույթըՄեկնարկի ամսաթիվը – Ավարտի ամսաթիվըՊահելԱմսաթիվԱվարտի ամսաթիվըՄեկնարկի ամսաթիվըօատԱնցնել օրացույցի մուտքագրման ռեժիմՀպեք՝ օրվա ընտությանն անցնելու համարԱնցնել տեքստի մուտքագրման ռեժիմինՀպեք՝ տարեթվի ընտությանն անցնելու համարՑուցադրել գաղտնաբառը ++ %d አዲስ ማሳወቂያዎች ++ %d አዲስ ማሳወቂያዎች ++ ግማሽ መንገድ ዘርጋቁምፊዎች %1$d ከ%2$d ገብተዋልየቁምፊ ገደብ %1$d ከ%2$d አልፏልጽሑፍን አጽዳስህተትተቆልቋይ ምናሌን አሳይየንግግር አዶትርAM ወይም PM ይምረጡሰዓትን ይምረጡ%1$s ሰዓትደቂቃዎችን ይምረጡ%1$s ደቂቃዎችጥዋትለጊዜ ግቤቱ ወደ የሰዓት ሁነታ ቀይር።ሰዓትደቂቃከሰዓትጊዜ ምረጥለጊዜ ግቤቱ ወደ የጽሑፍ ግቤት ሁነታ ቀይር።አዲስ ማሳወቂያ%1$sን አስወግድከ%1$d በላይ አዲስ ማሳወቂያዎችወደ የሚቀጥለው ወር ቀይርወደ ቀዳሚው ወር ቀይርየአሁኑ ምርጫ፦ %1$s@android:string/ok%1$sቀን ይምረጡየተመረጠው ቀንየቀኖች ዓምድ፦ %1$sልክ ያልሆነ ቅርጸትምሳሌ፦ %1$s%1$s ን ይጠቀሙልክ ያልኾነ ክልል።ወደ ዓመት %1$s አሰስከክልል ውጪ፦ %1$sመጀመሪያ ቀን – %1$s%1$s – መጨረሻ ቀን%1$s – %2$sክልል ይምረጡየመጀመሪያ ቀን – የመጨረሻ ቀንአስቀምጥቀንየማብቂያ ቀንመጀመሪያ ቀንወደ የቀን መቁጠሪያ ግቤት ሁነታ ቀይርወደ ቀን መምረጥ ለመቀየር መታ ያድርጉወደ ጽሑፍ ግቤት ሁነታ ቀይርወደ ዓመት መምረጥ ለመቀየር መታ ያድርጉየይለፍ ቃል አሳይ ++ %d новае апавяшчэнне ++ %d новыя апавяшчэнні ++ %d новых апавяшчэнняў ++ %d новага апавяшчэння ++ Разгарнуць напаловуУведзена сімвалаў: %1$d з %2$dЛіміт сімвалаў перавышаны: %1$d з %2$dАчысціць тэкстПамылкаПаказаць выпадное менюЗначок дыялогавага акнаУкладкаВыберыце AM (да паўдня) або PM (пасля паўдня)Выберыце гадзіну%1$s гадзВыберыце хвіліны%1$s хвAMПераключыцца на рэжым гадзінніка пры ўводзе часу.ГадзінаХвілінаPMВыберыце часПераключыцца на рэжым тэксту пры ўводзе часу.Новае апавяшчэннеВыдаліць %1$sКолькасць новых апавяшчэнняў перавысіла %1$dПерайсці да наступнага месяцаПерайсці да папярэдняга месяцаБягучае вылучэнне: %1$s@android:string/ok%1$sВыберыце датуВыбраная датаСлупок дзён: %1$sНяправільны фармат.Прыклад: %1$sНеабходны фармат: %1$sНяправільны дыяпазон.Перайсці ў %1$s годПа-за межамі дыяпазону: %1$sДата пачатку – %1$s%1$s – дата заканчэння%1$s – %2$sВыберыце дыяпазон датДата пачатку – дата заканчэнняЗахавацьДатаДата заканчэнняДата пачаткудмгПераключыцца ў рэжым уводу \"Каляндар\"Дакраніцеся, каб пераключыцца на выбар дняПераключыцца ў рэжым уводу \"Тэкст\"Дакраніцеся, каб пераключыцца на выбар годаПаказаць пароль450dp600dp24dp24dp24dp24dp20dp4dp96dp0dp0dp104dp68dp28dp64dp32dp24dp32dp06 ++ ++ ++ true#14000000#121212#CF6679#FFFFFF#000000#000000#000000#FFFFFF#BA86FC#000000#3700B3#03DAC6#03DAC6#121212#FFFFFF#B00020#000000#FFFFFF#FFFFFF#000000#000000#6200EE#3700B3#3700B3#03DAC6#018786#FFFFFF@android:color/transparent#14000000#44000000#0A000000#0F000000#1AFFFFFF#2EFFFFFF#323232#61000000#00ffffff#52000000#6B000000#1F000000#0A000000#00000000#DE00000016dp16dp64dp100dp4dp168dp96dp14sp8dp56dp24dp96dp56dp10dp8dp1dp12sp8dp16dp64dp0.5dp6dp24dp40dp56dp6dp6dp16dp32dp24dp16dp32dp280dp8dp8dp128dp1.00dp6dp0dp-1px-1px12dp14dp16dp14sp264dp72dp14sp12sp5dp640dp24dp44dp4dp4dp2dp15dp96dp12dp52dp256dp-6dp-12dp2dp0.380.870.612dp23dp8dp32dp4dp8dp4dp12dp8dp2dp200px100px245dp488dp56dp560dp340dp24dp80dp24dp24dp80dp24dp4dp4dp4dp6dp10sp12dp12dp8dp60dp16dp5dp8dp0dp56dp4dp64dp0dp0dp2dp2dp2dp12dp8dp6dp0.07320dp4dp16dp16dp4dp6dp8dp1dp4dp8dp8dp14sp0dp64dp52dp8dp0dp12dp15dp32dp3dp1dp1dp36dp24dp16dp12dp4dp1dp120dp128dp32dp12dp8dp24dp0dp480dp2dp0dp4dp48dp4dp8dp104dp20dp24dp100dp16dp28dp68dp18dp52dp8dp8dp88dp8dp24dp4dp5dp1dp8dp3dp14sp12dp8dp-8dp8dp12dp24dp0dp0dp6dp20dp20dp24dp12dp48dp120dp20dp12dp12dp0dp2dp6dp6dp48dp2dp6dp0.000.240.080.24100dp0.000.120.040.1248dp24dp8dp0dp22dp14dp24dp8dp4dp14dp56dp72dp8dp14dp24dp8dp16dp12dp4dp2dp4dp4dp18dp40dp20dp40dp28dp2.5dp4dp3dp2dp4dp0dp4dp4dp24dp4dp13dp26dp1dp10dp4dp16dp24dp48dp0.54dp0.88dp8dp8dp4dp4dp0dp4dp1dp2dp16dp4dp16dp4dp56dp14dp4dp32dp32dp12dp30dp52dp168dp96dp14sp8dp56dp24dp96dp56dp10dp1dp12sp@drawable/material_ic_keyboard_arrow_right_black_24dp@drawable/material_ic_keyboard_arrow_left_black_24dp1501502300320300350200250751500410010011375120100250200 ++ %d new notification ++ %d new notifications ++ com.google.android.material.appbar.AppBarLayout$ScrollingViewBehaviorcom.google.android.material.bottomsheet.BottomSheetBehaviorExpand halfwayCharacters entered %1$d of %2$dCharacter limit exceeded %1$d of %2$d%1$d/%2$dChip textClear textErrorShow dropdown menucom.google.android.material.transformation.FabTransformationScrimBehaviorcom.google.android.material.transformation.FabTransformationSheetBehaviorcom.google.android.material.behavior.HideBottomViewOnScrollBehaviorDialog IconTab:Select AM or PMSelect hour%1$s o\'clockSelect minutes%1$s minutescubic-bezier(0.4, 0.0, 1.0, 1.0)cubic-bezier(0.0, 0.0, 0.2, 1.0)path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1)cubic-bezier(0.0, 0.0, 1.0, 1.0)cubic-bezier(0.4, 0.0, 0.2, 1.0)Range end, Range start, AMSwitch to clock mode for the time input.HourMinutePMSelect timeSwitch to text input mode for the time input.New notificationRemove %1$sMore than %1$d new notifications%1$d%2$sChange to next monthChange to previous monthCurrent selection: %1$s@android:string/cancel@android:string/ok%1$sSelect DateSelected dateColumn of days: %1$sInvalid format.Example: %1$sUse: %1$sInvalid range.Navigate to year %1$sOut of range: %1$sStart date – %1$s%1$s – End date%1$s – %2$sSelect RangeStart date – End dateSaveDateEnd dateStart datedmySwitch to calendar input modeTap to switch to selecting a daySwitch to text input modeTap to switch to selecting a yearShow passwordM12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM3.27,4.27 L19.74,20.74 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ %d ta yangi bildirishnoma ++ %d ta yangi bildirishnoma ++ Yarmiga kengaytirish%1$d/%2$d ta belgi kiritildiHarflar soni (%1$d) cheklovdan (%2$d) oshib ketdiMatnni tozalashXatoPastga ochiluvchi menyuni ochishMuloqot ikonkasiTab : VaraqTushdan oldin yoki keyinligini tanlangSoatni tanlang%1$s soatDaqiqalarni tanlash%1$s daqiqaAMVaqtni kiritish uchun soat rejimiga o‘ting.SoatDaqiqaPMVaqtni tanlangVaqtni kiritish uchun matn kiritish rejimiga o‘ting.Yangi bildirishnomaOlib tashlash: %1$sYana %1$d dan ortiq bildirishnomaKeyingi oyga oʻzgartirishAvvalgi oyga oʻzgartirishJoriy tanlov: %1$s@android:string/ok%1$sSanani tanlangTanlangan sanaKunlar ustuni: %1$sYaroqsiz format.Masalan: %1$sIshlatish: %1$sYaroqsiz oraliq.Yilga nazar solish: %1$sChegaradan tashqari: %1$sBoshlanish sanasi – %1$s%1$s – Tugash sanasi%1$s – %2$sOraliqni tanlangBoshlanishi – TugashiSaqlashSanaTugash sanasiBoshlanish sanasikoyTaqvim kiritish rejimiga oʻtishKunni tanlash uchun bosingMatn kiritish rejimiga oʻtishYilni tanlash uchun bosingParol ochiq tursin ++ %d nouvelle notification ++ %d nouvelles notifications ++ Développer à moitiéCaractères entrés : %1$d sur %2$dLimite de caractère dépassée : %1$d sur %2$dEffacer le texteErreurAfficher le menu déroulantIcône de boîte de dialogueOngletSélectionner AM ou PMSélectionner l\'heure%1$s heuresSélectionnez les minutes%1$s minutesAMPasser au mode Horloge pour entrer l\'heure.HeureMinutePMSélectionner l\'heurePasser au mode Entrée de texte pour entrer l\'heure.Nouvelle notificationSupprimer %1$sPlus de %1$d nouvelles notificationsPasser au mois suivantPasser au mois précédentSélection actuelle : %1$s@android:string/ok%1$sSélectionnez la dateDate sélectionnéeColonne des jours : %1$sFormat incorrectExemple : %1$sUtiliser : %1$sPlage incorrecte.Naviguer vers l\'année %1$sHors de la plage : %1$sDu (date de début) au %1$sDu %1$s au (date de fin)Du %1$s au %2$sSélectionnez la plageDu (date de début) au (date de fin)EnregistrerDateDate de finDate de débutjmaPasser au mode d\'entrée AgendaTouchez pour passer à la sélection de jourPasser au mode d\'entrée TexteTouchez pour passer à la sélection d\'annéeAfficher le mot de passe ++ %d nowe powiadomienie ++ %d nowe powiadomienia ++ %d nowych powiadomień ++ %d nowego powiadomienia ++ Rozwiń do połowy%1$d z %2$d znakówPrzekroczono limit znaków (%1$d z %2$d)Wyczyść tekstBłądPokaż menuIkona oknaKartaWybierz: przed południem czy po południuWybierz godzinę%1$sWybierz minuty%1$s minutAMAby wprowadzić czas, włącz tryb zegara.GodzinaMinutaPMOkreśl czasAby wprowadzić czas, włącz tryb wprowadzania tekstu.Nowe powiadomienieUsuń: (%1$s)Liczba nowych powiadomień przekracza %1$dZmień na następny miesiącZmień na poprzedni miesiącBieżący wybór: %1$s@android:string/ok%1$sWybierz datęWybrana dataKolumna z dniami: %1$sNieprawidłowy format.Przykład: %1$sUżyj formatu: %1$sNieprawidłowy zakres.Przejdź do roku %1$sPoza zakresem: %1$sData rozpoczęcia – %1$s%1$s – data zakończenia%1$s–%2$sWybierz zakresData rozpoczęcia – data zakończeniaZapiszDataData zakończeniaData rozpoczęciadmrWłącz kalendarzowy tryb wprowadzaniaKliknij, by wybrać dzieńWłącz tekstowy tryb wprowadzaniaKliknij, by wybrać rokPokaż hasło ++ %d thông báo mới ++ %d thông báo mới ++ Mở rộng một nửaĐã nhập %1$d trong số %2$d ký tựĐã vượt quá giới hạn ký tự %1$d/%2$dXóa văn bảnLỗiHiển thị menu thả xuốngBiểu tượng hộp thoạiThẻChọn SA hoặc CHChọn giờ%1$s giờChọn phút%1$s phútSAChuyển sang chế độ đồng hồ để nhập thời gian.GiờPhútCHChọn thời gianChuyển sang chế độ nhập văn bản để nhập thời gian.Thông báo mớiXóa %1$sHơn %1$d thông báo mớiChuyển sang tháng tiếp theoChuyển về tháng trướcLựa chọn hiện tại: %1$s@android:string/ok%1$sChọn ngàyNgày đã chọnCột ngày: %1$sĐịnh dạng không hợp lệ.Ví dụ: %1$sSử dụng: %1$sPhạm vi không hợp lệ.Chuyển tới năm %1$sNằm ngoài phạm vi: %1$sNgày bắt đầu – %1$s%1$s – Ngày kết thúc%1$s – %2$sChọn dải ôNgày bắt đầu – Ngày kết thúcLưuNgàyNgày kết thúcNgày bắt đầudmyChuyển sang chế độ nhập lịchNhấn để chuyển sang chế độ chọn một ngàyChuyển sang chế độ nhập văn bảnNhấn để chuyển sang chế độ chọn một nămHiển thị mật khẩu ++ %d njoftim i ri ++ %d njoftime të reja ++ Zgjeroje deri në gjysmëKarakteret e futura: %1$d nga %2$dKufiri i karaktereve është kaluar: %1$d nga %2$dPastro tekstinGabimShfaq menynë me lëshim poshtëIkona e dialogutTabZgjidh paradite ose pasditeZgjidh orën%1$s fiksPërzgjidh minutat%1$s minutaPDKalo te modaliteti i orës për hyrjen e kohës.OraMinutaPDZgjidh orënKalo te modaliteti i hyrjes së tekstit për hyrjen e kohës.Njoftim i riHiq %1$sMë shumë se %1$d njoftime të rejaNdrysho te muaji i ardhshëmNdrysho te muaji i kaluarZgjedhja aktuale: %1$s@android:string/ok%1$sZgjidh datënData e zgjedhurKolona e ditëve: %1$sFormat i pavlefshëm.Shembull: %1$sPërdor: %1$sGamë e pavlefshme.Navigo te viti %1$sJashtë gamës: %1$sData e fillimit – %1$s%1$s – data e përfundimit%1$s - %2$sZgjidh gamënData e fillimit - data e përfundimitRuajDataData e përfundimitData e fillimitdmvKalo te modaliteti i \"Hyrjes së kalendarit\"Trokit për të kaluar te zgjedhja e një diteKalo te modaliteti i \"Hyrjes së tekstit\"Trokit për të kaluar te zgjedhja e një vitiShfaq fjalëkalimin ++ %d ny avisering ++ %d nya aviseringar ++ Utöka till hälften%1$d av %2$d tecken har angettsTeckengränsen har överskridits: %1$d av %2$dRensa textFelVisa rullgardinsmenynDialogikonFlikVälj mellan FM och EMAnge timmeKlockan %1$sVälj minuter%1$s minuterFMByt till klockläget och ange tid.TimmeMinutEMVälj tidByt till textinmatningsläget och ange tid.Ny aviseringTa bort (%1$s)Fler än %1$d nya aviseringarÄndra till nästa månadÄndra till föregående månadAktuellt val: %1$s@android:string/ok%1$sVälj datumValt datumKolumn med dagar: %1$sOgiltigt format.Exempel: %1$sAnvänd %1$sOgiltigt intervall.Navigera till år %1$sUtanför intervallet: %1$sStartdatum–%1$s%1$s–slutdatum%1$s–%2$sVälj intervallStartdatum–slutdatumSparaDatumSlutdatumStartdatumdmåByt till kalender som inmatningslägeByt till att välja en dag genom att tryckaByt till text som inmatningslägeByt till att välja ett år genom att tryckaVisa lösenord ++ %d novo obvestilo ++ %d novi obvestili ++ %d nova obvestila ++ %d novih obvestil ++ Razširjanje na pol višineŠtevilo vnesenih znakov je %1$d od %2$dOmejitev števila znakov je presegla %1$d od %2$dIzbris besedilaNapakaPrikaz spustnega menijaIkona pogovornega oknaZavihekIzberite dopoldanski ali popoldanski čas.Izberite uro%1$sIzberite minute%1$s mindop.Preklopite na način ure, da vnesete čas.UraMinutapop.Izberite uroPreklopite na način za vnašanje besedila, da vnesete čas.Novo obvestiloOdstranite %1$sVeč kot toliko novih obvestil: %1$dSpremeni na naslednji mesecSpremeni na prejšnji mesecTrenutna izbira: %1$s@android:string/ok%1$sIzberite datumIzbrani datumStolpec dni: %1$sNeveljavna oblika.Primer: %1$sUporabite: %1$sNeveljaven razpon.Pomik na leto %1$sZunaj razpona: %1$sZačetni datum–%1$s%1$s–končni datum%1$s–%2$sIzberite obsegZačetni datum–končni datumShraniDatumKončni datumZačetni datumdmlPreklop na način vnosa v koledarDotik za preklop na izbiro dnevaPreklop na način vnosa besedilaDotik za preklop na izbiro letaPrikaz gesla ++ %d nové upozornenie ++ %d nové upozornenia ++ %d new notifications ++ %d nových upozornení ++ Rozbaliť napolyZadané znaky: %1$d z %2$dBol prekročený povolený počet znakov (%1$d z %2$d)Vymazať textChybaZobraziť rozbaľovaciu ponukuIkona dialógového oknaTabulátorVyberte AM alebo PMVybrať hodinu%1$sVyberte minúty%1$s minAMAk chcete zadať čas, prepnite na režim hodín.HodinaMinútaPMVyberte časAk chcete zadať čas, prepnite na textový režim vstupuNové upozornenieOdstrániť položku %1$sViac než %1$d nových upozorneníĎalší mesiacPredchádzajúci mesiacAktuálny výber: %1$s@android:string/ok%1$sVyberte dátumVybraný dátumStĺpec dní: %1$sNeplatný formát.Príklad: %1$sPoužite: %1$sNeplatný rozsah.Prejsť na rok %1$sMimo rozsahu: %1$sDátum začatia – %1$s%1$s – dátum ukončenia%1$s – %2$sVyberte rozsahDátum začatia – dátum ukončeniaUložiťDátumDátum ukončeniaDátum začatiadmrPrepnúť na kalendárový režim vstupuKlepnutím prepnete na výber dňaPrepnúť na textový režim vstupuKlepnutím prepnete na výber rokaZobraziť heslo ++ %d نئی اطلاع ++ %d نئی اطلاعات ++ نصف تک پھیلائیں%2$d میں سے %1$d حروف درج کیے گئےحروف کی تعداد کی حد %2$d سے %1$d پہنچ گئیٹیکسٹ صاف کریںخرابیڈراپ ڈاؤن مینو دکھائیںڈائیلاگ کا آئیکنٹیبAM یا PM منتخب کریںگھنٹہ منتخب کریں%1$s بجےمنٹ منتخب کریں%1$s منٹقبل از دوپہروقت ان پٹ کے لیے گھڑی و‏ضع پر سوئچ کریں۔گھنٹہمنٹراتوقت منتخب کریںوقت ان پٹ کے لیے ٹیکسٹ ان پٹ وضع پر سوئچ کریں۔نئی اطلاع%1$s کو ہٹائیں%1$d سے زیادہ نئی اطلاعاتاگلے مہینہ میں منتقل کریںگزشتہ ماہ میں منتقل کریںموجودہ انتخاب: %1$s@android:string/ok%1$sتاریخ منتخب کریںمنتخب کردہ تاریخدنوں کا کالم: %1$sغلط فارمیٹ۔مثال: %1$s۔%1$s استعمال کریںغلط رینج۔%1$s سال پر نیویگیٹ کریںحد سے باہر: %1$sتاریخ آغاز – %1$s%1$s – تاریخ اختتام%1$s – %2$sرینج منتخب کریںتاریخ آغاز - تاریخ اختتاممحفوظ کریںتاریختاریخ اختتامتاریخ آغازdmyکیلنڈر ان پٹ وضع پر سوئچ کریںدن کو منتخب کرنے کے ليے سوئچ پر تھپتھپائیںمتنی ان پٹ وضع پر سوئچ کریںسال کو منتخب کرنے کے ليے سوئچ پر تھپتھپائیںپاس ورڈ دکھائیں ++ Arifa %d mpya ++ Arifa %d mpya ++ Panua nusuUmeweka herufi %1$d kati ya %2$dUmepitisha idadi ya juu ya herufi %1$d kati ya %2$dFuta maandishiHitilafuOnyesha menyu kunjuziAikoni ya KidirishaKichupoChagua AM au PMChagua saaSaa %1$s kamiliChagua dakikaDakika %1$sAMBadilisha umbo liwe la saa ya mishale wakati wa kuweka muda.SaaDakikaPMChagua wakatiBadilisha iwe katika hali ya maandishi wakati wa kuweka muda.Arifa mpyaOndoa %1$sZaidi ya arifa %1$d mpyaNenda kwenye mwezi unaofuataRudi kwenye mwezi uliotanguliaUteuzi wa sasa: %1$s@android:string/ok%1$sChagua TareheTarehe uliyochaguaSafu wima ya siku: %1$sMuundo si sahihiMfano: %1$sTumia: %1$sKipindi si sahihi.Sogeza kwenye mwaka wa %1$sNje ya kipindi: %1$sTarehe ya kuanza – %1$s%1$s – Tarehe ya mwisho%1$s – %2$sChagua Kipindi cha TareheTarehe ya kuanza – Tarehe ya mwishoHifadhiTareheTarehe ya mwishoTarehe ya kuanzadmyTumia programu ya kuingiza data kwenye kalendaGusa ili uende kwenye sehemu ya kuchagua sikuTumia programu ya kuingiza data ya maandishiGusa ili uende kwenye sehemu ya kuchagua mwakaOnyesha nenosiri ++ %d nova notificação ++ %d novas notificações ++ Expandir até metadeCarateres introduzidos: %1$d de %2$dLimite de carateres excedido: %1$d de %2$dLimpar textoErroMostrar menu pendenteÍcone de caixa de diálogoSeparadorSelecionar AM ou PMSelecionar hora%1$s hora(s)Selecionar minutos%1$s minutosAMMude para o modo de relógio para a introdução da hora.HoraMinutoPMSelecionar horaMude para o modo de introdução de texto para a introdução da hora.Nova notificaçãoRemover %1$sMais de %1$d notificações novasMudar para o mês seguinteMudar para o mês anteriorSeleção atual: %1$s@android:string/ok%1$sSelecione a dataData selecionadaColuna de dias: %1$sFormato inválido.Exemplo: %1$sUtilize: %1$sIntervalo inválido.Navegue para o ano %1$sFora do intervalo: %1$sData de início – %1$s%1$s – Data de conclusão%1$s – %2$sSelecione o intervaloData de início – Data de conclusãoGuardarDataData de conclusãoData de iníciodmaMudar para o modo de introdução de calendárioToque para mudar para a seleção do diaMudar para o modo de introdução de textoToque para mudar para a seleção do anoMostrar palavra-passe ++ %d yeni bildirim ++ %d yeni bildirim ++ Yarım genişletGirilen karakter: %1$d / %2$dKarakter sınırı aşıldı %1$d / %2$dMetni temizleHataAçılır menüyü gösterİletişim kutusu simgesiSekmeÖÖ veya ÖS\'yi seçinSaat seçinSaat %1$sDakikayı seçin%1$s dakikaAMZaman girişi için saat moduna geçin.SaatDakikaPMZamanı seçinZaman girişi için metin girişi moduna geçin.Yeni bildirim%1$s içeriğini kaldır%1$d adetten fazla yeni bildirimSonraki aya değiştirÖnceki aya değiştirGeçerli seçim: %1$s@android:string/ok%1$sTarih SeçinSeçilen tarihGün sütunu: %1$sGeçersiz biçim.Örnek: %1$sTarih biçimi: %1$sGeçersiz aralık.%1$s yılına gitİzin verilen aralığın dışında: %1$sBaşlangıç tarihi – %1$s%1$s – Bitiş tarihi%1$s-%2$sAralık SeçinBaşlangıç tarihi - Bitiş tarihiKaydetTarihBitiş tarihiBaşlangıç tarihigayTakvim giriş moduna geçGün seçmeye geçmek için dokununMetin giriş moduna geçYıl seçmeye geçmek için dokununŞifreyi göster24dp24dp24dp24dp@drawable/material_ic_keyboard_arrow_left_black_24dp@drawable/material_ic_keyboard_arrow_right_black_24dp24dp ++ การแจ้งเตือนใหม่ %d รายการ ++ การแจ้งเตือนใหม่ %d รายการ ++ ขยายรายการครึ่งหนึ่งป้อนอักขระแล้ว %1$d จาก %2$d ตัวเกินจำนวนอักขระสูงสุด %1$d จาก %2$dล้างข้อความข้อผิดพลาดแสดงเมนูแบบเลื่อนลงไอคอนกล่องโต้ตอบแท็บเลือก AM หรือ PMเลือกชั่วโมง%1$s นาฬิกาเลือกนาที%1$s นาทีAMสลับไปโหมดนาฬิกาเพื่อป้อนเวลาชั่วโมงนาทีPMเลือกเวลาสลับไปโหมดป้อนข้อความเพื่อป้อนเวลาการแจ้งเตือนใหม่นำ %1$s ออกการแจ้งเตือนใหม่มากกว่า %1$d รายการเปลี่ยนไปที่เดือนถัดไปเปลี่ยนไปที่เดือนก่อนหน้าการเลือกในปัจจุบัน: %1$s@android:string/ok%1$sเลือกวันที่วันที่ที่เลือกคอลัมน์ของวัน: %1$sรูปแบบไม่ถูกต้องตัวอย่าง: %1$sใช้: %1$sช่วงไม่ถูกต้องไปที่ปี %1$sวันที่ไม่อยู่ในช่วงที่อนุญาต: %1$sวันที่เริ่มต้น – %1$s%1$s – วันที่สิ้นสุด%1$s – %2$sเลือกช่วงวันที่เริ่มต้น – วันที่สิ้นสุดบันทึกวันที่วันที่สิ้นสุดวันที่เริ่มต้นสลับไปใช้โหมดป้อนข้อมูลปฏิทินแตะเพื่อสลับไปใช้การเลือกวันสลับไปใช้โหมดป้อนข้อมูลข้อความแตะเพื่อสลับไปใช้การเลือกปีแสดงรหัสผ่าน4dp18dp40dp2dp2dp40dp40dp4dp ++ %d اعلان جدید ++ %d اعلان جدید ++ گسترده کردن تا نیمهنویسه‌های واردشده %1$d از %2$dمحدودیت نویسه از حد مجاز %1$d از %2$d بیشتر شده استپاک کردن نوشتارخطانمایش منوی کرکره‌اینماد کادر گفتگوبرگهانتخاب .ق.ظ. یا ب.ظ.انتخاب ساعتساعت %1$sانتخاب دقیقه%1$s دقیقهق.ظبرای وارد کردن زمان، به حالت ساعت تغییر وضعیت دهید.ساعتدقیقهب.ظانتخاب زمانبرای وارد کردن زمان، به حالت ورودی نوشتاری تغییر وضعیت دهید.اعلان جدیدبرداشتن %1$sبیش از %1$d اعلان جدیدتغییر به ماه بعدیتغییر به ماه قبلیانتخاب کنونی: %1$s@android:string/ok%1$sانتخاب تاریختاریخ انتخابیستون روز: %1$sقالب نامعتبر است.مثال: %1$sقالب: %1$sمحدوده نامعتبر است.رفتن به سال %1$sخارج از محدوده: %1$sتاریخ شروع – %1$s%1$s – تاریخ پایان%1$s – %2$sانتخاب محدودهتاریخ شروع – تاریخ پایانذخیرهتاریختاریخ پایانتاریخ شروعdmyرفتن به روش ورودی تقویمرفتن به رفتن به حالت انتخاب روز ضربه بزنیدرفتن به حالت ورودی نوشتاریبرای رفتن به حالت انتخاب سال ضربه بزنیدنمایش گذرواژه ++ %d naujas pranešimas ++ %d nauji pranešimai ++ %d naujo pranešimo ++ %d naujų pranešimų ++ Išskleisti iki pusėsĮvesta simbolių: %1$d iš %2$dViršytas simbolių skaičius: %1$d iš %2$dIšvalyti tekstąKlaidaRodyti išskleidžiamąjį meniuDialogo lango piktogramaSkirtukasPasirinkite „iki pietų“ arba „po pietų“Pasirinkite valandą%1$s val.Pasirinkite minutes%1$s min.AMLaiko įvestį pateikti perjungus į laikrodžio režimą.ValandaMinutėPMPasirinkite laikąLaiko įvestį pateikti perjungus į teksto įvesties režimą.Naujas pranešimasPašalinti %1$sNaujų pranešimų: daugiau nei %1$dPakeisti į kitą mėnesįPakeisti į ankstesnį mėnesįDabartinis pasirinkimas: %1$s@android:string/ok%1$sPasirinkite datąPasirinkta dataDienų stulpelis: %1$sNetinkamas formatas.Pavyzdys: %1$sNaudoti: %1$sNetinkamas diapazonas.Eiti į %1$s metusNepatenka į diapazoną: %1$sPradžios data–%1$s%1$s–pabaigos data%1$s–%2$sPasirinkite diapazonąPradžios data–pabaigos dataIšsaugotiDataPabaigos dataPradžios datadmyPerjungti į kalendoriaus įvesties režimąPalieskite, kad perjungtumėte į dienos pasirinkimąPerjungti į teksto įvesties režimąPalieskite, kad perjungtumėte į metų pasirinkimąRodyti slaptažodį ++ %d new notification ++ %d new notifications ++ Expand halfway%2$d ର %1$d ଅକ୍ଷର ଲେଖିଛନ୍ତି%2$d ର %1$d ଅକ୍ଷର ଲେଖିଛନ୍ତିClear textErrorShow dropdown menuDialog IconTabSelect AM or PMSelect hour%1$s o\'clockମିନିଟ୍‍ ଚୟନ କରନ୍ତୁ%1$s minutesAMସମୟ ଇନପୁଟ୍‍ ପାଇଁ ଘଣ୍ଟା ମୋଡ୍‌କୁ ବଦଳାନ୍ତୁ।HourMinutePMSelect timeସମୟ ଇନପୁଟ୍‍ ପାଇଁ ଟେକ୍ସଟ୍‍ ଇନପୁଟ୍‌କୁ ବଦଳାନ୍ତୁ।New notification%1$s କାଢ଼ିଦିଅନ୍ତୁMore than %1$d new notificationsChange to next monthChange to previous monthCurrent selection: %1$s@android:string/ok%1$sSelect DateSelected dateColumn of days: %1$sInvalid format.Example: %1$sUse: %1$sInvalid range.Navigate to year %1$sOut of range: %1$sStart date – %1$s%1$s – End date%1$s – %2$sSelect RangeStart date – End dateSaveDateEnd dateStart datedmySwitch to calendar input modeTap to switch to selecting a daySwitch to text input modeTap to switch to selecting a yearପାସ୍‍ୱାର୍ଡ ଦେଖାନ୍ତୁ ++ %d notificación nueva ++ %d notificaciones nuevas ++ Expandir hasta la mitadCaracteres ingresados: %1$d de %2$dSe excedió en %1$d el límite de caracteres de %2$dBorrar textoErrorMostrar menú desplegableÍcono de diálogoPestañaSelecciona a.m. o p.m.Seleccione la hora.%1$s en puntoSeleccionar minutos%1$s minutosA. M.Cambia al modo de reloj para ingresar la hora.HoraMinutoP. M.Seleccionar la horaCambia al modo de entrada de texto para ingresar la hora.Notificación nuevaQuitar %1$sMás de %1$d notificaciones nuevasCambiar al mes siguienteCambiar al mes anteriorSelección actual: %1$s@android:string/ok%1$sSeleccionar fechaFecha seleccionadaColumna de días: %1$sFormato no válidoEjemplo: %1$sUsar: %1$sEl rango no es válido.Navegar al año %1$sFuera de rango: %1$sFecha de inicio - %1$s%1$s - fecha de finalización%1$s-%2$sSelecciona un períodoFecha de inicio - fecha de finalizaciónGuardarFechaFecha de finalizaciónFecha de iniciodmaCambiar al modo de entrada de calendarioPresiona para seleccionar un díaCambiar al modo de entrada de textoPresiona para seleccionar un añoMostrar contraseña ++ %d jakinarazpen berri ++ %d jakinarazpen berri ++ Zabaldu erdiraino%1$d/%2$d karaktere idatzi diraKaraktere-muga gainditu da: %1$d/%2$dGarbitu testuaErroreaErakutsi goitibeherako menuaLeihoko ikonoaFitxaHautatu AM edo PMHautatu ordua%1$s(r)ak diraHautatu minutuak%1$s minutuAMAldatu erloju modura ordua zehazteko.OrduaMinutuaPMHautatu orduaOrdua idazteko, aldatu testua idazteko metodora.Jakinarazpen berriaKendu %1$s%1$d jakinarazpen berri baino gehiagoAldatu hurrengo hilabeteraAldatu aurreko hilabeteraUneko hautapena: %1$s@android:string/ok%1$sHautatu dataHautatutako dataEgunen zutabea:%1$sFormatuak ez du balio.Adibidea: %1$sErabili: %1$sTarteak ez du balio.Joan %1$s. urteraOnartutako barrutitik kanpo: %1$sHasiera-data – %1$s%1$s – Amaiera-data%1$s-%2$sHautatu barrutiaHasiera-data - Amaiera-dataGordeDataAmaiera-dataHasiera-dataehuAldatu egutegiaren idazketa-metodoraSakatu eguna hautatzeko modura aldatzekoAldatu testua idazteko moduraSakatu urtea hautatzeko modura aldatzekoErakutsi pasahitza ++ %d ການແຈ້ງເຕືອນໃໝ່ ++ %d ການແຈ້ງເຕືອນໃໝ່ ++ ຂະຫຍາຍອອກເຄິ່ງໜຶ່ງຕົວອັກສອນທີ່ປ້ອນເຂົ້າ %1$d ຕົວຈາກທັງໝົດ %2$d ຕົວຂີດຈຳກັດຕົວອັກສອນເກີນ %1$d ຈາກທັງໝົດ %2$dລຶບລ້າງຂໍ້ຄວາມຜິດພາດສະແດງເມນູເລື່ອນລົງໄອຄອນກ່ອງໂຕ້ຕອບແຖບເລືອກຕອນເຊົ້າ ຫຼື ຕອນແລງເລືອກຊົ່ວໂມງ%1$s ໂມງເລືອກນາ​ທີ%1$s ນາທີໂມງເຊົ້າສະຫຼັບໄປໃຊ້ໂໝດໂມງສຳລັບການປ້ອນເວລາ.ຊົ່ວໂມງນາທີໂມງແລງເລືອກເວ​ລາສະຫຼັບໄປໃຊ້ໂໝດປ້ອນຂໍ້ຄວາມສຳລັບການປ້ອນເວລາ.ການແຈ້ງເຕືອນໃໝ່ລຶບ %1$s ອອກການແຈ້ງເຕືອນໃໝ່ຫຼາຍກວ່າ %1$d ລາຍການປ່ຽນເປັນເດືອນຕໍ່ໄປປ່ຽນເປັນເດືອນຜ່ານມາການເລືອກປັດຈຸບັນ: %1$s@android:string/ok%1$sເລືອກວັນທີເລືອກວັນທີຖັນມື້: %1$sຮູບແບບບໍ່ຖືກຕ້ອງ.ຕົວຢ່າງ: %1$sໃຊ້: %1$sໄລຍະບໍ່ຖືກຕ້ອງ.ເລື່ອນໄປປີ %1$sຢູ່ນອກຊ່ວງວັນທີ: %1$sວັນທີເລີ່ມຕົ້ນ – %1$s%1$s – ວັນທີສິ້ນສຸດ%1$s – %2$sເລືອກຊ່ວງວັນທີເລີ່ມຕົ້ນ – ວັນທີສິ້ນສຸດບັນທຶກວັນທີວັນທີສິ້ນສຸດວັນທີເລີ່ມປ່ຽນເປັນໂໝດປ້ອນຂໍ້ມູນປະຕິທິນແຕະເພື່ອປ່ຽນເປັນການເລືອກມື້ປ່ຽນເປັນໂໝດປ້ອນຂໍ້ມູນຂໍ້ຄວາມແຕະເພື່ອປ່ຽນເປັນການເລືອກປີສະແດງລະຫັດຜ່ານ ++ התראה חדשה אחת (%d) ++ %d התראות חדשות ++ %d התראות חדשות ++ %d התראות חדשות ++ הרחבה עד האמצעהוזנו %1$d תווים מתוך %2$dמגבלת התווים חורגת ב-%1$d מתוך %2$dמחיקת הטקסטשגיאההצגת התפריט הנפתחסמל לתיבת דו-שיחמקש Tabיש לבחור ב-AM או ב-PMבחר שעההשעה %1$sבחר דקות%1$s דקותלפנה\"צהעבר למצב שעון לצורך הזנת השעהשעהדקהאחה\"צבחר שעההעבר למצב קלט טקסט לצורך הזנת השעההתראה חדשההסרה של %1$sיותר מ-%1$d התראות חדשותמעבר לחודש הבאמעבר לחודש הקודםהבחירה הנוכחית: %1$s@android:string/ok%1$sיש לבחור תאריךהתאריך הנבחרעמודה של ימים: %1$sפורמט לא חוקי.דוגמה: %1$sיש להשתמש בפורמט: %1$sטווח לא חוקי.ניווט לשנת %1$sמחוץ לטווח: %1$sתאריך התחלה – %1$s%1$s – תאריך סיום%1$s – %2$sיש לבחור טווחתאריך התחלה - תאריך סיוםשמירהתאריךתאריך סיוםתאריך התחלהיחשהחלפה לשיטת קלט של יומןיש להקיש כדי להחליף לבחירת יוםהחלפה לשיטת קלט של טקסטיש להקיש כדי להחליף לבחירת שנההצגת סיסמה ++ %d new notification ++ %d new notifications ++ Expand halfwayCharacters entered %1$d of %2$dCharacter limit exceeded %1$d of %2$dClear textErrorShow drop-down menuDialogue IconTabSelect a.m. or p.m.Select hour%1$s o\'clockSelect minutes%1$s minutesAMSwitch to clock mode for the time input.HourMinutePMSelect timeSwitch to text input mode for the time input.New notificationRemove %1$sMore than %1$d new notificationsChange to next monthChange to previous monthCurrent selection: %1$s@android:string/ok%1$sSelect dateSelected dateColumn of days: %1$sInvalid format.Example: %1$sUse: %1$sInvalid range.Navigate to year %1$sOut of range: %1$sStart date – %1$s%1$s – End date%1$s – %2$sSelect rangeStart date – End dateSaveDateEnd dateStart datedmySwitch to calendar input modeTap to switch to selecting a daySwitch to text input modeTap to switch to selecting a yearShow password ++ %d uusi ilmoitus ++ %d uutta ilmoitusta ++ Laajenna puoliväliin%1$d/%2$d merkkiä kirjoitettuMerkkiraja ylitetty: %1$d/%2$dTyhjennä tekstiVirheNäytä avattava valikkoValintaikkunan kuvakeVälilehtiValitse AP tai IPValitse tuntiklo %1$sValitse minuutit%1$s minuuttiaapVaihda ajan syöttämiseen kellotilassa.TunnitMinuuttiipValitse aikaVaihda ajan syöttämiseen tekstitilassa.Uusi ilmoitusPoista %1$sYli %1$d uutta ilmoitustaVaihda seuraavaan kuukauteenVaihda edelliseen kuukauteenNykyinen valinta: %1$s@android:string/ok%1$sValitse päivämääräValittu päivämääräPäiväsarake: %1$sVirheellinen muotoEsimerkki: %1$sKäytä muotoa %1$sVirheellinen alueSiirry vuoteen %1$sKatvealueella: %1$sAlkamispäivä – %1$s%1$s – päättymispäivä%1$s – %2$sValitse jaksoAlkamispäivä – päättymispäiväTallennaPäivämääräPäättymispäiväAlkamispäiväpkvVaihda syöttötavaksi kalenteriSiirry päivän valintaan napauttamallaValitse syöttötavaksi tekstiSiirry vuoden valintaan napauttamallaNäytä salasanaDetox ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ /> ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug-mergeJavaRes/merge-state b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..e13c4fd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug-mergeJavaRes/merge-state differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= +new file mode 100644 +index 0000000..8127586 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug/packageFullDebugResources/compile-file-map.properties b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug/packageFullDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..13bb81b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug/packageFullDebugResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Mon Dec 30 10:58:34 ECT 2024 +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug/packageFullDebugResources/merged.dir/values/values.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug/packageFullDebugResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..26205e7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug/packageFullDebugResources/merged.dir/values/values.xml +@@ -0,0 +1,4 @@ ++ ++ ++ Detox ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug/packageFullDebugResources/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug/packageFullDebugResources/merger.xml +new file mode 100644 +index 0000000..4ba1e57 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebug/packageFullDebugResources/merger.xml +@@ -0,0 +1,2 @@ ++ ++Detox +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/merge-state b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..7d8ff5b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/merge-state differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/1HSt2boQZWP7qRtFpCz4GUQ3w0I= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/1HSt2boQZWP7qRtFpCz4GUQ3w0I= +new file mode 100644 +index 0000000..45832c0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/1HSt2boQZWP7qRtFpCz4GUQ3w0I= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/1f8ScNJ9BSUS6Y7Hb5EDuyN2+w4= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/1f8ScNJ9BSUS6Y7Hb5EDuyN2+w4= +new file mode 100644 +index 0000000..5c88b2b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/1f8ScNJ9BSUS6Y7Hb5EDuyN2+w4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/22pErq2oIPMkNC4XoqzNJ2ykn94= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/22pErq2oIPMkNC4XoqzNJ2ykn94= +new file mode 100644 +index 0000000..ab6eb53 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/22pErq2oIPMkNC4XoqzNJ2ykn94= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/29RmC_LqMtZHFjRoycYOvGv2Uik= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/29RmC_LqMtZHFjRoycYOvGv2Uik= +new file mode 100644 +index 0000000..c0c8d91 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/29RmC_LqMtZHFjRoycYOvGv2Uik= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/4cF+Ol1By1DyJKpF3XGxG8O1hDo= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/4cF+Ol1By1DyJKpF3XGxG8O1hDo= +new file mode 100644 +index 0000000..9c40c2b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/4cF+Ol1By1DyJKpF3XGxG8O1hDo= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/5Krh+pDJNfrZXByI9Q6S9Ic0zhQ= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/5Krh+pDJNfrZXByI9Q6S9Ic0zhQ= +new file mode 100644 +index 0000000..88f5191 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/5Krh+pDJNfrZXByI9Q6S9Ic0zhQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/5ybulip5sUV8DXjgKGLaowAwNdQ= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/5ybulip5sUV8DXjgKGLaowAwNdQ= +new file mode 100644 +index 0000000..1fddee3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/5ybulip5sUV8DXjgKGLaowAwNdQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/64wIDKAn7tvafGXFgiMgivS6qCw= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/64wIDKAn7tvafGXFgiMgivS6qCw= +new file mode 100644 +index 0000000..d0a17a9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/64wIDKAn7tvafGXFgiMgivS6qCw= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/6NuJJ1SFsTm6SAjtNAm06M1tOPI= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/6NuJJ1SFsTm6SAjtNAm06M1tOPI= +new file mode 100644 +index 0000000..ca89f7e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/6NuJJ1SFsTm6SAjtNAm06M1tOPI= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/6qmfJIurq+BPmVpH8bHMkb7AMXw= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/6qmfJIurq+BPmVpH8bHMkb7AMXw= +new file mode 100644 +index 0000000..e072fe0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/6qmfJIurq+BPmVpH8bHMkb7AMXw= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/7XL3oswP_iKDN+Ocgha6JFLnl6Q= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/7XL3oswP_iKDN+Ocgha6JFLnl6Q= +new file mode 100644 +index 0000000..40f58a5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/7XL3oswP_iKDN+Ocgha6JFLnl6Q= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/86kJ4rPP5p6O_nbybtvp+6Gpbr4= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/86kJ4rPP5p6O_nbybtvp+6Gpbr4= +new file mode 100644 +index 0000000..846dea1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/86kJ4rPP5p6O_nbybtvp+6Gpbr4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/8mWK65+aDS7bhTPwW8oc252gQdM= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/8mWK65+aDS7bhTPwW8oc252gQdM= +new file mode 100644 +index 0000000..1d3d1fa +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/8mWK65+aDS7bhTPwW8oc252gQdM= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/9Y1L+cKYiA3NUb6OXeVPsVzIdN4= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/9Y1L+cKYiA3NUb6OXeVPsVzIdN4= +new file mode 100644 +index 0000000..761fe3b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/9Y1L+cKYiA3NUb6OXeVPsVzIdN4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/9obJAk1KrXCQ61TIEBDWThfQJrg= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/9obJAk1KrXCQ61TIEBDWThfQJrg= +new file mode 100644 +index 0000000..4e019f2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/9obJAk1KrXCQ61TIEBDWThfQJrg= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ArOVrFvhXRMWTAu4PzfzwMynBlM= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ArOVrFvhXRMWTAu4PzfzwMynBlM= +new file mode 100644 +index 0000000..f37ded6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ArOVrFvhXRMWTAu4PzfzwMynBlM= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/CXXVe8H+JrNL_rOF1tgZgs5QGaM= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/CXXVe8H+JrNL_rOF1tgZgs5QGaM= +new file mode 100644 +index 0000000..db85be6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/CXXVe8H+JrNL_rOF1tgZgs5QGaM= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/CkGxYF2NcO+zw1uucNDzz8i863o= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/CkGxYF2NcO+zw1uucNDzz8i863o= +new file mode 100644 +index 0000000..5a560d1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/CkGxYF2NcO+zw1uucNDzz8i863o= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/DA61+rG3FZ6QxIl52Ult27xnwXQ= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/DA61+rG3FZ6QxIl52Ult27xnwXQ= +new file mode 100644 +index 0000000..4c9f52f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/DA61+rG3FZ6QxIl52Ult27xnwXQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/DpNsTAMqDlG9CQcksOuW5ODNz9M= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/DpNsTAMqDlG9CQcksOuW5ODNz9M= +new file mode 100644 +index 0000000..ba19014 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/DpNsTAMqDlG9CQcksOuW5ODNz9M= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/FDGUA2mlzc4FxvyYkgKDVYAgqLk= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/FDGUA2mlzc4FxvyYkgKDVYAgqLk= +new file mode 100644 +index 0000000..5dd6acd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/FDGUA2mlzc4FxvyYkgKDVYAgqLk= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/GZAR98GODBag68d77IsnlJjArT4= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/GZAR98GODBag68d77IsnlJjArT4= +new file mode 100644 +index 0000000..0e13323 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/GZAR98GODBag68d77IsnlJjArT4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/HTpZ4AmQ7Ca_esXrex3AqtCtxrY= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/HTpZ4AmQ7Ca_esXrex3AqtCtxrY= +new file mode 100644 +index 0000000..3068f1d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/HTpZ4AmQ7Ca_esXrex3AqtCtxrY= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/IUdNxIgYoNRp874MjQGV_jfjees= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/IUdNxIgYoNRp874MjQGV_jfjees= +new file mode 100644 +index 0000000..5119f5e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/IUdNxIgYoNRp874MjQGV_jfjees= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/IZ_Hrwi4JUc0JTARfn4b+yzJ6cA= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/IZ_Hrwi4JUc0JTARfn4b+yzJ6cA= +new file mode 100644 +index 0000000..a671f24 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/IZ_Hrwi4JUc0JTARfn4b+yzJ6cA= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/J7H0fYw7pWoz2UD9Dc3hDZYztbQ= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/J7H0fYw7pWoz2UD9Dc3hDZYztbQ= +new file mode 100644 +index 0000000..3a75d0d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/J7H0fYw7pWoz2UD9Dc3hDZYztbQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/JOkTkFJwzbOTNqf2IILX2+e6Dco= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/JOkTkFJwzbOTNqf2IILX2+e6Dco= +new file mode 100644 +index 0000000..3102808 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/JOkTkFJwzbOTNqf2IILX2+e6Dco= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Kru3OB4xw8cAukaw9RuBmC60XLA= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Kru3OB4xw8cAukaw9RuBmC60XLA= +new file mode 100644 +index 0000000..833b095 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Kru3OB4xw8cAukaw9RuBmC60XLA= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/LeiJ06k6HNgMRWA3RV8k8Gvu87w= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/LeiJ06k6HNgMRWA3RV8k8Gvu87w= +new file mode 100644 +index 0000000..b2a9d0b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/LeiJ06k6HNgMRWA3RV8k8Gvu87w= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/MXv_xwyEOuU7u8KDYiEertKQUuc= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/MXv_xwyEOuU7u8KDYiEertKQUuc= +new file mode 100644 +index 0000000..a307055 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/MXv_xwyEOuU7u8KDYiEertKQUuc= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/N68ABLfvHFnymTnveiRtKSN0WHY= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/N68ABLfvHFnymTnveiRtKSN0WHY= +new file mode 100644 +index 0000000..59222d9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/N68ABLfvHFnymTnveiRtKSN0WHY= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/NVOP4sfqhMBHFzI31cal4fYxXeQ= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/NVOP4sfqhMBHFzI31cal4fYxXeQ= +new file mode 100644 +index 0000000..9b56dc7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/NVOP4sfqhMBHFzI31cal4fYxXeQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/OMnl3_LydOfgKckWf24AaS6y2W0= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/OMnl3_LydOfgKckWf24AaS6y2W0= +new file mode 100644 +index 0000000..8568b5b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/OMnl3_LydOfgKckWf24AaS6y2W0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/O_xVdxtnQA8TU450NOLW1g5czNU= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/O_xVdxtnQA8TU450NOLW1g5czNU= +new file mode 100644 +index 0000000..c3eef53 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/O_xVdxtnQA8TU450NOLW1g5czNU= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/OhtStPYj9KLzaC1_WcwGzVo9PGk= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/OhtStPYj9KLzaC1_WcwGzVo9PGk= +new file mode 100644 +index 0000000..7106578 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/OhtStPYj9KLzaC1_WcwGzVo9PGk= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Q6n31_x6hDnOcb5G6jo_o3lKHl0= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Q6n31_x6hDnOcb5G6jo_o3lKHl0= +new file mode 100644 +index 0000000..d8ca88a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Q6n31_x6hDnOcb5G6jo_o3lKHl0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/RdCJXGcqiuGL4T23Tp3F5qOCUb0= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/RdCJXGcqiuGL4T23Tp3F5qOCUb0= +new file mode 100644 +index 0000000..4faab6e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/RdCJXGcqiuGL4T23Tp3F5qOCUb0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/STX80guMsMJZZXcMA5_kHNtH4_Y= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/STX80guMsMJZZXcMA5_kHNtH4_Y= +new file mode 100644 +index 0000000..44a52c1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/STX80guMsMJZZXcMA5_kHNtH4_Y= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/T3HAN5HLcPIMb78v7u2M7kOK2sY= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/T3HAN5HLcPIMb78v7u2M7kOK2sY= +new file mode 100644 +index 0000000..5f06440 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/T3HAN5HLcPIMb78v7u2M7kOK2sY= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Taha30SU3Zik25r2a3kMOXlvfLU= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Taha30SU3Zik25r2a3kMOXlvfLU= +new file mode 100644 +index 0000000..427f69c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Taha30SU3Zik25r2a3kMOXlvfLU= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/U1SpRrQ4lQNlJkyV7t+FBZOoLNQ= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/U1SpRrQ4lQNlJkyV7t+FBZOoLNQ= +new file mode 100644 +index 0000000..c6661be +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/U1SpRrQ4lQNlJkyV7t+FBZOoLNQ= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/UTmKreuK4yqsGxCcBSyRqt3gO1M= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/UTmKreuK4yqsGxCcBSyRqt3gO1M= +new file mode 100644 +index 0000000..10a70d6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/UTmKreuK4yqsGxCcBSyRqt3gO1M= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/XNksAy9G6EGWHwS+Fe5yIVdNoDo= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/XNksAy9G6EGWHwS+Fe5yIVdNoDo= +new file mode 100644 +index 0000000..2510a5a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/XNksAy9G6EGWHwS+Fe5yIVdNoDo= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/XQUyglgccQ4abZQwDKGdy7gIwZs= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/XQUyglgccQ4abZQwDKGdy7gIwZs= +new file mode 100644 +index 0000000..cb1e8e1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/XQUyglgccQ4abZQwDKGdy7gIwZs= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Xv9lNRfUBcAh3KCC+3Lgz7buXjo= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Xv9lNRfUBcAh3KCC+3Lgz7buXjo= +new file mode 100644 +index 0000000..18c0219 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Xv9lNRfUBcAh3KCC+3Lgz7buXjo= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= +new file mode 100644 +index 0000000..8127586 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/Y7fx6mzR94BqlfDYmwN6EsSwmO0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ZOXdnOSkbPRg5cQZgeL_GkEpFgk= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ZOXdnOSkbPRg5cQZgeL_GkEpFgk= +new file mode 100644 +index 0000000..8fd6cd4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ZOXdnOSkbPRg5cQZgeL_GkEpFgk= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ZoXLyhVV5e4haUX33EoBnTfgHP4= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ZoXLyhVV5e4haUX33EoBnTfgHP4= +new file mode 100644 +index 0000000..2e07982 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ZoXLyhVV5e4haUX33EoBnTfgHP4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/aVYO+bANX9gpliKqd8DC8MyryHs= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/aVYO+bANX9gpliKqd8DC8MyryHs= +new file mode 100644 +index 0000000..9ea8885 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/aVYO+bANX9gpliKqd8DC8MyryHs= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/a_rfYgFjDzTFMOQoZ08OEmf+jYk= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/a_rfYgFjDzTFMOQoZ08OEmf+jYk= +new file mode 100644 +index 0000000..05b7d8a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/a_rfYgFjDzTFMOQoZ08OEmf+jYk= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/bVk5jqaTm8lfb9HZThJjvMNU8Mw= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/bVk5jqaTm8lfb9HZThJjvMNU8Mw= +new file mode 100644 +index 0000000..6da55d8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/bVk5jqaTm8lfb9HZThJjvMNU8Mw= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/b_8uIek4gvLvDZaOYzjbVPH7B1E= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/b_8uIek4gvLvDZaOYzjbVPH7B1E= +new file mode 100644 +index 0000000..160357a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/b_8uIek4gvLvDZaOYzjbVPH7B1E= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ddl4Hr+s3kb4MFukZ9mmlkkR40o= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ddl4Hr+s3kb4MFukZ9mmlkkR40o= +new file mode 100644 +index 0000000..a429c72 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ddl4Hr+s3kb4MFukZ9mmlkkR40o= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/dl2oCRYA+iV+5SeQTS09IjkjnhA= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/dl2oCRYA+iV+5SeQTS09IjkjnhA= +new file mode 100644 +index 0000000..1ffce77 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/dl2oCRYA+iV+5SeQTS09IjkjnhA= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/f0J6sgOPUlFAkVg7A77HNtFZpjU= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/f0J6sgOPUlFAkVg7A77HNtFZpjU= +new file mode 100644 +index 0000000..96ce2e5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/f0J6sgOPUlFAkVg7A77HNtFZpjU= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/gN_tIrpZsiMs67_qh7EME+owLRE= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/gN_tIrpZsiMs67_qh7EME+owLRE= +new file mode 100644 +index 0000000..7353cf3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/gN_tIrpZsiMs67_qh7EME+owLRE= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/hUGsySqLUUmUrP2a6iom5FJZtzs= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/hUGsySqLUUmUrP2a6iom5FJZtzs= +new file mode 100644 +index 0000000..c5f4844 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/hUGsySqLUUmUrP2a6iom5FJZtzs= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/izfySEZY840+R4v0s+9HCSOsEH4= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/izfySEZY840+R4v0s+9HCSOsEH4= +new file mode 100644 +index 0000000..c0b07b4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/izfySEZY840+R4v0s+9HCSOsEH4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/kltBMuXBzoFku4Xr6iU6lItULXE= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/kltBMuXBzoFku4Xr6iU6lItULXE= +new file mode 100644 +index 0000000..e36377d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/kltBMuXBzoFku4Xr6iU6lItULXE= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/l205KGjvw5klIVrpHhytegeQ5Ao= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/l205KGjvw5klIVrpHhytegeQ5Ao= +new file mode 100644 +index 0000000..c68ea7a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/l205KGjvw5klIVrpHhytegeQ5Ao= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/lZtm+fgOHm1AzY3+EGT3jC6CULc= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/lZtm+fgOHm1AzY3+EGT3jC6CULc= +new file mode 100644 +index 0000000..08bcfa0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/lZtm+fgOHm1AzY3+EGT3jC6CULc= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/mNYTN1tqFOm9fRhp9hoUrm0DrUE= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/mNYTN1tqFOm9fRhp9hoUrm0DrUE= +new file mode 100644 +index 0000000..dc7b90e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/mNYTN1tqFOm9fRhp9hoUrm0DrUE= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/meByqPHkxu0GFcr6BNr+TGAHb_E= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/meByqPHkxu0GFcr6BNr+TGAHb_E= +new file mode 100644 +index 0000000..e0de390 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/meByqPHkxu0GFcr6BNr+TGAHb_E= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/mhBcA4DvazelXLmqw299eMD4uj4= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/mhBcA4DvazelXLmqw299eMD4uj4= +new file mode 100644 +index 0000000..de755d1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/mhBcA4DvazelXLmqw299eMD4uj4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/noUPqtl6VOi+N4T_+UkhbX6xU2A= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/noUPqtl6VOi+N4T_+UkhbX6xU2A= +new file mode 100644 +index 0000000..6888d08 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/noUPqtl6VOi+N4T_+UkhbX6xU2A= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/o2qlTprU+TDbnT+F64wu_DOke8I= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/o2qlTprU+TDbnT+F64wu_DOke8I= +new file mode 100644 +index 0000000..8812bd5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/o2qlTprU+TDbnT+F64wu_DOke8I= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/qC7vl9riqC8aWuIUDAYsvU2hPuY= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/qC7vl9riqC8aWuIUDAYsvU2hPuY= +new file mode 100644 +index 0000000..e7d9117 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/qC7vl9riqC8aWuIUDAYsvU2hPuY= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/qHon7YrsugonT_536lhv8TfDnYg= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/qHon7YrsugonT_536lhv8TfDnYg= +new file mode 100644 +index 0000000..22bdb4e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/qHon7YrsugonT_536lhv8TfDnYg= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/rdTpWYmyXu6YvUMwxdo3l6Ph_xA= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/rdTpWYmyXu6YvUMwxdo3l6Ph_xA= +new file mode 100644 +index 0000000..6ccda32 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/rdTpWYmyXu6YvUMwxdo3l6Ph_xA= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/s_WwRVNnSCedG0g9211Igwesa6Y= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/s_WwRVNnSCedG0g9211Igwesa6Y= +new file mode 100644 +index 0000000..073879c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/s_WwRVNnSCedG0g9211Igwesa6Y= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ta6O8GcfggpIfCWRY0mZfVlCsUA= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ta6O8GcfggpIfCWRY0mZfVlCsUA= +new file mode 100644 +index 0000000..ed4cf5a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/ta6O8GcfggpIfCWRY0mZfVlCsUA= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/uH4QncnOLl+rGmAFffdbB4rEqn4= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/uH4QncnOLl+rGmAFffdbB4rEqn4= +new file mode 100644 +index 0000000..bbdea02 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/uH4QncnOLl+rGmAFffdbB4rEqn4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/vQDRBjnHAZk_hPtl8vWuTI6fNR0= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/vQDRBjnHAZk_hPtl8vWuTI6fNR0= +new file mode 100644 +index 0000000..15cd1e7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/vQDRBjnHAZk_hPtl8vWuTI6fNR0= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/voWmeubQNUmaYJtgcB1bryBuF8U= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/voWmeubQNUmaYJtgcB1bryBuF8U= +new file mode 100644 +index 0000000..948a15f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/voWmeubQNUmaYJtgcB1bryBuF8U= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/vvDykwQcxe0h9HlbER_notzv80A= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/vvDykwQcxe0h9HlbER_notzv80A= +new file mode 100644 +index 0000000..dd51769 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/vvDykwQcxe0h9HlbER_notzv80A= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/wo53YIcl9bOFZyBurTbdHMPhTOw= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/wo53YIcl9bOFZyBurTbdHMPhTOw= +new file mode 100644 +index 0000000..2cec677 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/wo53YIcl9bOFZyBurTbdHMPhTOw= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/wqEFUmHmtFKg1ivKY0qy9sGVL9M= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/wqEFUmHmtFKg1ivKY0qy9sGVL9M= +new file mode 100644 +index 0000000..3f38e22 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/wqEFUmHmtFKg1ivKY0qy9sGVL9M= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/zTr2aNe+bXC_QAOe+_Lfw_mnxd4= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/zTr2aNe+bXC_QAOe+_Lfw_mnxd4= +new file mode 100644 +index 0000000..9cade31 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/zTr2aNe+bXC_QAOe+_Lfw_mnxd4= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/zwm2a+swh0ABwf4jmqctBFujE9k= b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/zwm2a+swh0ABwf4jmqctBFujE9k= +new file mode 100644 +index 0000000..2751601 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest-mergeJavaRes/zip-cache/zwm2a+swh0ABwf4jmqctBFujE9k= differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/compile-file-map.properties b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/compile-file-map.properties +new file mode 100644 +index 0000000..a45dbf5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Mon Dec 30 11:00:20 ECT 2024 +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-af/values-af.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-af/values-af.xml +new file mode 100644 +index 0000000..9f5ba7a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-af/values-af.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d nuwe kennisgewing ++ %d nuwe kennisgewings ++ ++ "Gaan na tuisskerm" ++ "Gaan op" ++ "Nog opsies" ++ "Klaar" ++ "Sien alles" ++ "Kies \'n program" ++ "AF" ++ "AAN" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Funksie+" ++ "Meta+" ++ "Shift+" ++ "spasiebalk" ++ "Simbool+" ++ "Kieslys+" ++ "Soek …" ++ "Vee navraag uit" ++ "Soektognavraag" ++ "Soek" ++ "Dien navraag in" ++ "Stemsoektog" ++ "Deel met" ++ "Deel met %s" ++ "Vou in" ++ Vou halfpad uit ++ Karakters ingevoer: %1$d van %2$d ++ Karakterlimiet oorskry %1$d van %2$d ++ Vee teks uit ++ Fout ++ Wys aftrekkieslys ++ Dialoogikoon ++ Oortjie ++ Kies vm. of nm. ++ Kies uur ++ %1$s-uur ++ Kies minute ++ %1$s minute ++ VM. ++ Skakel oor na horlosiemodus vir die tydinvoer. ++ Uur ++ Minuut ++ NM. ++ Kies tyd ++ Skakel oor na teksmodus vir die tydinvoer. ++ Nuwe kennisgewing ++ Verwyder %1$s ++ Meer as %1$d nuwe kennisgewings ++ Verander na volgende maand ++ Verander na vorige maand ++ Huidige keuse: %1$s ++ @android:string/ok ++ %1$s ++ Kies datum ++ Gekose datum ++ Kolom van dae: %1$s ++ Ongeldige formaat. ++ Voorbeeld: %1$s ++ Gebruik: %1$s ++ Ongeldige reeks. ++ Gaan na jaar %1$s ++ Buite reeks: %1$s ++ Begindatum – %1$s ++ %1$s – Einddatum ++ %1$s-%2$s ++ Kies datumreeks ++ Begindatum – Einddatum ++ Stoor ++ Datum ++ Einddatum ++ Begindatum ++ d ++ m ++ j ++ Skakel oor na kalenderinvoermodus ++ Tik om oor te skakel na die kies van \'n dag ++ Skakel oor na teksinvoermodus ++ Tik om oor te skakel na die kies van \'n jaar ++ Wys wagwoord ++ "Soek" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-am/values-am.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-am/values-am.xml +new file mode 100644 +index 0000000..2ad537c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-am/values-am.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d አዲስ ማሳወቂያዎች ++ %d አዲስ ማሳወቂያዎች ++ ++ "መነሻ ዳስስ" ++ "ወደ ላይ ያስሱ" ++ "ተጨማሪ አማራጮች" ++ "ተከናውኗል" ++ "ሁሉንም ይመልከቱ" ++ "አንድ መተግበሪያ ይምረጡ" ++ "አጥፋ" ++ "አብራ" ++ "Alt+" ++ "Ctrl+" ++ "ሰርዝ" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "ክፍተት" ++ "Sym+" ++ "Menu+" ++ "ይፈልጉ…" ++ "መጠይቅ አጽዳ" ++ "የፍለጋ መጠይቅ" ++ "ፍለጋ" ++ "መጠይቅ አስገባ" ++ "የድምጽ ፍለጋ" ++ "አጋራ በ" ++ "ለ%s አጋራ" ++ "ሰብስብ" ++ ግማሽ መንገድ ዘርጋ ++ ቁምፊዎች %1$d ከ%2$d ገብተዋል ++ የቁምፊ ገደብ %1$d ከ%2$d አልፏል ++ ጽሑፍን አጽዳ ++ ስህተት ++ ተቆልቋይ ምናሌን አሳይ ++ የንግግር አዶ ++ ትር ++ AM ወይም PM ይምረጡ ++ ሰዓትን ይምረጡ ++ %1$s ሰዓት ++ ደቂቃዎችን ይምረጡ ++ %1$s ደቂቃዎች ++ ጥዋት ++ ለጊዜ ግቤቱ ወደ የሰዓት ሁነታ ቀይር። ++ ሰዓት ++ ደቂቃ ++ ከሰዓት ++ ጊዜ ምረጥ ++ ለጊዜ ግቤቱ ወደ የጽሑፍ ግቤት ሁነታ ቀይር። ++ አዲስ ማሳወቂያ ++ %1$sን አስወግድ ++ ከ%1$d በላይ አዲስ ማሳወቂያዎች ++ ወደ የሚቀጥለው ወር ቀይር ++ ወደ ቀዳሚው ወር ቀይር ++ የአሁኑ ምርጫ፦ %1$s ++ @android:string/ok ++ %1$s ++ ቀን ይምረጡ ++ የተመረጠው ቀን ++ የቀኖች ዓምድ፦ %1$s ++ ልክ ያልሆነ ቅርጸት ++ ምሳሌ፦ %1$s ++ %1$s ን ይጠቀሙ ++ ልክ ያልኾነ ክልል። ++ ወደ ዓመት %1$s አሰስ ++ ከክልል ውጪ፦ %1$s ++ መጀመሪያ ቀን – %1$s ++ %1$s – መጨረሻ ቀን ++ %1$s – %2$s ++ ክልል ይምረጡ ++ የመጀመሪያ ቀን – የመጨረሻ ቀን ++ አስቀምጥ ++ ቀን ++ የማብቂያ ቀን ++ መጀመሪያ ቀን ++ ++ ++ ++ ወደ የቀን መቁጠሪያ ግቤት ሁነታ ቀይር ++ ወደ ቀን መምረጥ ለመቀየር መታ ያድርጉ ++ ወደ ጽሑፍ ግቤት ሁነታ ቀይር ++ ወደ ዓመት መምረጥ ለመቀየር መታ ያድርጉ ++ የይለፍ ቃል አሳይ ++ "ፍለጋ" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml +new file mode 100644 +index 0000000..1c40f8c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml +@@ -0,0 +1,94 @@ ++ ++ ++ ++ %d إشعار جديد ++ إشعار جديد واحد (%d) ++ إشعاران جديدان (%d) ++ %d إشعارات جديدة ++ %d إشعارًا جديدًا ++ %d إشعار جديد ++ ++ "التوجه إلى المنزل" ++ "التنقل إلى أعلى" ++ "خيارات أكثر" ++ "تم" ++ "عرض الكل" ++ "اختيار تطبيق" ++ "إيقاف" ++ "تفعيل" ++ "Alt+" ++ "Ctrl+" ++ "حذف" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "فضاء" ++ "Sym+" ++ "القائمة+" ++ "بحث…" ++ "محو طلب البحث" ++ "طلب بحث" ++ "البحث" ++ "إرسال طلب البحث" ++ "بحث صوتي" ++ "مشاركة مع" ++ "مشاركة مع %s" ++ "تصغير" ++ توسيع البطاقة السفلية ++ تمّ إدخال %1$d حرف من إجمالي %2$d. ++ تجاوز عدد الأحرف المسموح به %1$d من %2$d. ++ محو النص ++ خطأ ++ عرض القائمة المنسدلة ++ رمز مربع الحوار ++ علامة تبويب ++ يُرجى اختيار صباحًا أو مساءً. ++ تحديد الساعة ++ الساعة %1$s ++ تحديد الدقائق ++ %1$s دقيقة ++ صباحًا ++ يُرجى التبديل إلى وضع الساعة لإدخال الوقت. ++ الساعة ++ دقيقة ++ مساءً ++ اختيار الوقت ++ يُرجى التبديل إلى وضع إدخال النص لإدخال الوقت. ++ إشعار جديد ++ إزالة %1$s ++ يبلغ عدد الإشعارات الجديدة أكثر من %1$d. ++ التغيير إلى الشهر التالي ++ التغيير إلى الشهر السابق ++ الاختيار الحالي: %1$s ++ @android:string/ok ++ %1$s ++ يُرجى اختيار تاريخ. ++ التاريخ المحدَّد ++ عمود الأيام: %1$s ++ التنسيق غير صالح ++ مثال: %1$s ++ استخدام: %1$s ++ النطاق غير صالح ++ التنقل إلى العام %1$s ++ خارج النطاق: %1$s ++ تاريخ البدء – %1$s ++ %1$s – تاريخ الانتهاء ++ %1$s – %2$s ++ يُرجى اختيار نطاق زمني. ++ تاريخ البدء - تاريخ الانتهاء ++ حفظ ++ التاريخ ++ تاريخ الانتهاء ++ تاريخ البدء ++ ي ++ ش ++ س ++ التبديل إلى وضع \"الإدخال في التقويم\" ++ انقر للتبديل إلى اختيار يوم ++ التبديل إلى وضع \"إدخال النص\" ++ انقر للتبديل إلى اختيار عام ++ عرض كلمة المرور ++ "البحث" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-as/values-as.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-as/values-as.xml +new file mode 100644 +index 0000000..2f5706e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-as/values-as.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d new notification ++ %d new notifications ++ ++ "গৃহ পৃষ্ঠালৈ যাওক" ++ "ওপৰলৈ যাওক" ++ "অধিক বিকল্প" ++ "সম্পন্ন হ’ল" ++ "সকলো চাওক" ++ "কোনো এপ্ বাছনি কৰক" ++ "অফ" ++ "অন" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "সন্ধান কৰক…" ++ "সন্ধান কৰা প্ৰশ্ন মচক" ++ "সন্ধান কৰা প্ৰশ্ন" ++ "Search" ++ "প্ৰশ্ন দাখিল কৰক" ++ "কণ্ঠধ্বনিৰ দ্বাৰা সন্ধান" ++ "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক" ++ "%sৰ জৰিয়তে শ্বেয়াৰ কৰক" ++ "সংকোচন কৰক" ++ Expand halfway ++ %2$dটাৰ ভিতৰত %1$dটা বৰ্ণ লিখা হৈছে ++ %2$dটাৰ ভিতৰত %1$dটা বৰ্ণৰ সীমা অতিক্ৰম কৰিছে ++ Clear text ++ Error ++ Show dropdown menu ++ Dialog Icon ++ Tab ++ Select AM or PM ++ Select hour ++ %1$s o\'clock ++ মিনিট বাছনি কৰক ++ %1$s minutes ++ AM ++ সময়ৰ ইনপুটৰ বাবে ঘড়ী ম\'ডলৈ যাওক। ++ Hour ++ Minute ++ PM ++ Select time ++ সময়ৰ ইনপুটৰ বাবে পাঠৰ ইনপুট ম\'ডলৈ যাওক। ++ New notification ++ %1$sক আঁতৰাওক ++ More than %1$d new notifications ++ Change to next month ++ Change to previous month ++ Current selection: %1$s ++ @android:string/ok ++ %1$s ++ Select Date ++ Selected date ++ Column of days: %1$s ++ Invalid format. ++ Example: %1$s ++ Use: %1$s ++ Invalid range. ++ Navigate to year %1$s ++ Out of range: %1$s ++ Start date – %1$s ++ %1$s – End date ++ %1$s – %2$s ++ Select Range ++ Start date – End date ++ Save ++ Date ++ End date ++ Start date ++ d ++ m ++ y ++ Switch to calendar input mode ++ Tap to switch to selecting a day ++ Switch to text input mode ++ Tap to switch to selecting a year ++ পাছৱৰ্ড দেখুৱাওক ++ "Search" ++ "৯৯৯+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-az/values-az.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-az/values-az.xml +new file mode 100644 +index 0000000..4c91a08 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-az/values-az.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d yeni bildiriş ++ %d yeni bildiriş ++ ++ "Əsas səhifəyə keçin" ++ "Yuxarı keçin" ++ "Digər seçimlər" ++ "Hazırdır" ++ "Hamısına baxın" ++ "Tətbiq seçin" ++ "DEAKTİV" ++ "AKTİV" ++ "Alt+" ++ "Ctrl+" ++ "silin" ++ "daxil olun" ++ "Funksiya+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menyu+" ++ "Axtarış..." ++ "Sorğunu silin" ++ "Axtarış sorğusu" ++ "Axtarın" ++ "Sorğunu göndərin" ++ "Səsli axtarış" ++ "Paylaşın" ++ "%s ilə paylaşın" ++ "Yığcamlaşdırın" ++ Tam genişləndirin ++ %1$d/%2$d simvol daxil edilib ++ Simvol limiti %1$d/%2$d dəyərini keçdi ++ Mətni silin ++ Xəta ++ Açılan menyunu göstərin ++ Dialoq ikonası ++ Tab ++ Gündüz və ya axşam seçin ++ Saatı seçin ++ Saat %1$s ++ Dəqiqə seçin ++ %1$s dəqiqə ++ AM ++ Zamanı daxil etmək üçün saat rejiminə keçin ++ Saat ++ Dəqiqə ++ ++ Vaxt seçin ++ Zamanı daxil etmək üçün mətnlə daxiletmə rejiminə keçin ++ Yeni bildiriş ++ %1$s silin ++ Minimum %1$d yeni bildiriş ++ Növbəti aya dəyişin ++ Əvvəlki aya dəyişin ++ Cari seçim: %1$s ++ @android:string/ok ++ %1$s ++ Tarix seçin ++ Seçilmiş tarix ++ Gün sütunu: %1$s ++ Yanlış format. ++ Nümunə: %1$s ++ %1$s istifadə edin ++ Yanlış diapazon. ++ %1$s ilinə keçin ++ Əhatə dairəsindən kənar: %1$s ++ Başlama tarixi – %1$s ++ %1$s – Bitmə tarixi ++ %1$s: %2$s ++ Aralıq seçin ++ Başlama tarixi - Bitmə tarixi ++ Saxlayın ++ Tarix ++ Bitmə tarixi ++ Başlama tarixi ++ gün ++ ay ++ il ++ Təqvim daxiletmə rejiminə keçin ++ Gün seçiminə keçmək üçün toxunun ++ Mətn daxiletmə rejiminə keçin ++ İl seçiminə keçmək üçün toxunun ++ Parolu göstərin ++ "Axtarın" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-b+es+419/values-b+es+419.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-b+es+419/values-b+es+419.xml +new file mode 100644 +index 0000000..f007875 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-b+es+419/values-b+es+419.xml +@@ -0,0 +1,61 @@ ++ ++ ++ ++ %d notificación nueva ++ %d notificaciones nuevas ++ ++ Expandir hasta la mitad ++ Caracteres ingresados: %1$d de %2$d ++ Se excedió en %1$d el límite de caracteres de %2$d ++ Borrar texto ++ Error ++ Mostrar menú desplegable ++ Ícono de diálogo ++ Pestaña ++ Selecciona a.m. o p.m. ++ Seleccione la hora. ++ %1$s en punto ++ Seleccionar minutos ++ %1$s minutos ++ A. M. ++ Cambia al modo de reloj para ingresar la hora. ++ Hora ++ Minuto ++ P. M. ++ Seleccionar la hora ++ Cambia al modo de entrada de texto para ingresar la hora. ++ Notificación nueva ++ Quitar %1$s ++ Más de %1$d notificaciones nuevas ++ Cambiar al mes siguiente ++ Cambiar al mes anterior ++ Selección actual: %1$s ++ @android:string/ok ++ %1$s ++ Seleccionar fecha ++ Fecha seleccionada ++ Columna de días: %1$s ++ Formato no válido ++ Ejemplo: %1$s ++ Usar: %1$s ++ El rango no es válido. ++ Navegar al año %1$s ++ Fuera de rango: %1$s ++ Fecha de inicio - %1$s ++ %1$s - fecha de finalización ++ %1$s-%2$s ++ Selecciona un período ++ Fecha de inicio - fecha de finalización ++ Guardar ++ Fecha ++ Fecha de finalización ++ Fecha de inicio ++ d ++ m ++ a ++ Cambiar al modo de entrada de calendario ++ Presiona para seleccionar un día ++ Cambiar al modo de entrada de texto ++ Presiona para seleccionar un año ++ Mostrar contraseña ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +new file mode 100644 +index 0000000..88272c4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +@@ -0,0 +1,91 @@ ++ ++ ++ ++ %d novo obaveštenje ++ %d nova obaveštenja ++ %d novih obaveštenja ++ ++ "Idite na početnu" ++ "Idite nagore" ++ "Još opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Izaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "taster za razmak" ++ "Sym+" ++ "Menu+" ++ "Pretražite…" ++ "Obrišite upit" ++ "Pretražite upit" ++ "Pretražite" ++ "Pošaljite upit" ++ "Glasovna pretraga" ++ "Delite pomoću" ++ "Delite pomoću aplikacije %s" ++ "Skupi" ++ Proširite do pola ++ Uneti znakovi: %1$d od %2$d ++ Prekoračeno je ograničenje broja znakova: %1$d od %2$d ++ Obriši tekst ++ Greška ++ Prikaži padajući meni ++ Ikona dijaloga ++ Kartica ++ Izaberite pre podne ili po podne ++ Izaberite sat ++ %1$s s ++ Izaberite minute ++ %1$s min ++ AM ++ Pređite u režim sata radi unosa vremena. ++ Sat ++ Minut ++ PM ++ Izaberite vreme ++ Pređite u režim unosa teksta radi unosa vremena. ++ Novo obaveštenje ++ Uklonite %1$s ++ Novih obaveštenja: više od %1$d ++ Pređite na sledeći mesec ++ Pređite na prethodni mesec ++ Aktuelni izbor: %1$s ++ @android:string/ok ++ %1$s ++ Izaberite datum ++ Izabrani datum ++ Kolona sa danima: %1$s ++ Format je nevažeći. ++ Primer: %1$s ++ Koristite: %1$s ++ Nevažeći period. ++ Idite na godinu %1$s ++ Izvan perioda: %1$s ++ Datum početka – %1$s ++ %1$s – Datum završetka ++ %1$s–%2$s ++ Izaberite period ++ Datum početka – Datum završetka ++ Sačuvaj ++ Datum ++ Datum završetka ++ Datum početka ++ d ++ m ++ g ++ Pređite na režim unosa u Kalendaru ++ Dodirnite da biste prešli na izbor dana ++ Pređite na režim unosa teksta ++ Dodirnite da biste prešli na izbor godine ++ Prikaži lozinku ++ "Pretražite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-be/values-be.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-be/values-be.xml +new file mode 100644 +index 0000000..4c4dc18 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-be/values-be.xml +@@ -0,0 +1,92 @@ ++ ++ ++ ++ %d новае апавяшчэнне ++ %d новыя апавяшчэнні ++ %d новых апавяшчэнняў ++ %d новага апавяшчэння ++ ++ "Перайсці на галоўную старонку" ++ "Перайсці ўверх" ++ "Дадатковыя параметры" ++ "Гатова" ++ "Паказаць усе" ++ "Выберыце праграму" ++ "ВЫКЛ." ++ "УКЛ." ++ "Alt +" ++ "Ctrl +" ++ "Delete" ++ "Enter" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "Прабел" ++ "Sym +" ++ "Меню +" ++ "Пошук…" ++ "Выдаліць запыт" ++ "Пошукавы запыт" ++ "Пошук" ++ "Адправіць запыт" ++ "Галасавы пошук" ++ "Абагуліць праз" ++ "Абагуліць праз праграму \"%s\"" ++ "Згарнуць" ++ Разгарнуць напалову ++ Уведзена сімвалаў: %1$d з %2$d ++ Ліміт сімвалаў перавышаны: %1$d з %2$d ++ Ачысціць тэкст ++ Памылка ++ Паказаць выпадное меню ++ Значок дыялогавага акна ++ Укладка ++ Выберыце AM (да паўдня) або PM (пасля паўдня) ++ Выберыце гадзіну ++ %1$s гадз ++ Выберыце хвіліны ++ %1$s хв ++ AM ++ Пераключыцца на рэжым гадзінніка пры ўводзе часу. ++ Гадзіна ++ Хвіліна ++ PM ++ Выберыце час ++ Пераключыцца на рэжым тэксту пры ўводзе часу. ++ Новае апавяшчэнне ++ Выдаліць %1$s ++ Колькасць новых апавяшчэнняў перавысіла %1$d ++ Перайсці да наступнага месяца ++ Перайсці да папярэдняга месяца ++ Бягучае вылучэнне: %1$s ++ @android:string/ok ++ %1$s ++ Выберыце дату ++ Выбраная дата ++ Слупок дзён: %1$s ++ Няправільны фармат. ++ Прыклад: %1$s ++ Неабходны фармат: %1$s ++ Няправільны дыяпазон. ++ Перайсці ў %1$s год ++ Па-за межамі дыяпазону: %1$s ++ Дата пачатку – %1$s ++ %1$s – дата заканчэння ++ %1$s – %2$s ++ Выберыце дыяпазон дат ++ Дата пачатку – дата заканчэння ++ Захаваць ++ Дата ++ Дата заканчэння ++ Дата пачатку ++ д ++ м ++ г ++ Пераключыцца ў рэжым уводу \"Каляндар\" ++ Дакраніцеся, каб пераключыцца на выбар дня ++ Пераключыцца ў рэжым уводу \"Тэкст\" ++ Дакраніцеся, каб пераключыцца на выбар года ++ Паказаць пароль ++ "Пошук" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml +new file mode 100644 +index 0000000..2487b1d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ново известие ++ %d нови известия ++ ++ "Навигиране към началния екран" ++ "Навигиране нагоре" ++ "Още опции" ++ "Готово" ++ "Преглед на всички" ++ "Изберете приложение" ++ "ИЗКЛ." ++ "ВКЛ." ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "клавиша за интервал" ++ "Sym+" ++ "Menu+" ++ "Търсете…" ++ "Изчистване на заявката" ++ "Заявка за търсене" ++ "Търсене" ++ "Изпращане на заявката" ++ "Гласово търсене" ++ "Споделяне със:" ++ "Споделяне със: %s" ++ "Свиване" ++ Разгъване наполовина ++ Въведени знаци: %1$d от %2$d ++ Максималният брой знаци е надхвърлен с(ъс) %1$d от %2$d ++ Изчистване на текста ++ Грешка ++ Показване на падащото меню ++ Икона за диалогов прозорец ++ Раздел ++ Изберете AM или PM ++ Изберете час ++ %1$s часа ++ Избиране на минути ++ %1$s минути ++ AM ++ Превключете към режима за часовник, за да въведете часа. ++ Час ++ Минута ++ PM ++ Избор на час ++ Превключете към режима за въвеждане на текст, за да въведете часа. ++ Ново известие ++ Премахване на %1$s ++ Повече от %1$d нови известия ++ Преминаване към следващия месец ++ Преминаване към предишния месец ++ Текущ избор: %1$s ++ @android:string/ok ++ %1$s ++ Избиране на дата ++ Избрана дата ++ Колона за дни: %1$s ++ Форматът е невалиден. ++ Пример: %1$s ++ Използвайте: %1$s ++ Невалиден диапазон. ++ Навигиране до %1$s г. ++ Извън диапазона: %1$s ++ Начална дата – %1$s ++ %1$s – крайна дата ++ %1$s – %2$s ++ Избиране на период от време ++ Начална дата – крайна дата ++ Запазване ++ Дата ++ Крайна дата ++ Начална дата ++ д ++ м ++ г ++ Превключване към режим на въвеждане в календар ++ Докоснете, за да превключите към избиране на ден ++ Превключване към режим за въвеждане на текст ++ Докоснете, за да превключите към избиране на година ++ Показване на паролата ++ "Търсене" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml +new file mode 100644 +index 0000000..c959c22 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %dটি নতুন বিজ্ঞপ্তি ++ %dটি নতুন বিজ্ঞপ্তি ++ ++ "হোমে নেভিগেট করুন" ++ "উপরে নেভিগেট করুন" ++ "আরও বিকল্প" ++ "হয়ে গেছে" ++ "সবগুলি দেখুন" ++ "একটি অ্যাপ বেছে নিন" ++ "বন্ধ আছে" ++ "চালু করুন" ++ "Alt+" ++ "Ctrl+" ++ "মুছুন" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "সার্চ করুন…" ++ "কোয়েরি মুছে ফেলুন" ++ "সার্চ কোয়েরি" ++ "সার্চ করুন" ++ "কোয়েরি জমা দিন" ++ "ভয়েস সার্চ করুন" ++ "শেয়ার করুন" ++ "%s-এর সাথে শেয়ার করুন" ++ "সঙ্কুচিত করুন" ++ অর্ধেক প্রসারিত করুন ++ %2$dটির মধ্যে %1$dটি অক্ষর লেখা হয়েছে ++ অক্ষরের সীমা %1$d এর %2$d অতিক্রম করেছে ++ টেক্সট মুছুন ++ সমস্যা ++ ড্রপ-ডাউন মেনু দেখুন ++ ডায়ালগ আইকন ++ ট্যাব ++ AM অথবা PM বেছে নিন ++ ঘণ্টা বেছে নিন ++ %1$sটা বাজে ++ মিনিট বেছে নিন ++ %1$s মিনিট ++ AM ++ সময় ইনপুট দেওয়ার জন্য ঘড়ি মোডে যান। ++ ঘণ্টা ++ মিনিট ++ PM ++ সময় বেছে নিন ++ সময় ইনপুট দেওয়ার জন্য পাঠ্য ইনপুট মোডে যান। ++ নতুন বিজ্ঞপ্তি ++ %1$s সরিয়ে দিন ++ %1$dটির বেশি নতুন বিজ্ঞপ্তি ++ আগামী মাসে যান ++ আগের মাসে যান ++ বর্তমান বাছাই: %1$s ++ @android:string/ok ++ %1$s ++ তারিখ বেছে নিন ++ বেছে নেওয়া তারিখ ++ সপ্তাহের দিনগুলির কলাম: %1$s ++ ভুল ফর্ম্যাট। ++ উদাহরণ: %1$s ++ %1$s ফর্ম্যাটে লিখুন ++ তারিখ সঠিক নয়। ++ নেভিগেট করে %1$s সালে যান ++ নির্দিষ্ট তারিখের বাইরে: %1$s ++ শুরুর তারিখ – %1$s ++ %1$s – সমাপ্তির তারিখ ++ %1$s – %2$s ++ রেঞ্জ বেছে নিন ++ শুরুর তারিখ - সমাপ্তির তারিখ ++ সেভ করুন ++ তারিখ ++ সমাপ্তির তারিখ ++ শুরুর তারিখ ++ d ++ m ++ y ++ ক্যালেন্ডার ইনপুট মোডে বদল করুন ++ দিন বেছে নেওয়ার মোডে বদল করতে ট্যাপ করুন ++ টেক্সট ইনপুট মোডে বদল করুন ++ বছর বেছে নেওয়ার মোডে বদল করতে ট্যাপ করুন ++ পাসওয়ার্ড দেখান ++ "সার্চ করুন" ++ "৯৯৯+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml +new file mode 100644 +index 0000000..dcfd140 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml +@@ -0,0 +1,91 @@ ++ ++ ++ ++ %d novo obavještenje ++ %d nova obavještenja ++ %d novih obavještenja ++ ++ "Vratite se na početnu stranicu" ++ "Idi gore" ++ "Više opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Odaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "razmak" ++ "Sym+" ++ "Menu+" ++ "Pretražite..." ++ "Obriši upit" ++ "Pretraži upit" ++ "Pretraži" ++ "Pošalji upit" ++ "Glasovno pretraživanje" ++ "Dijeli sa" ++ "Dijeli putem aplikacije %s" ++ "Suzi" ++ Proširivanje dopola ++ Uneseno znakova: %1$d od %2$d ++ Ograničenje broja znakova premašuje %1$d od %2$d ++ Obriši tekst ++ Greška ++ Prikaži padajući meni ++ ikona dijaloškog okvira ++ Kartica ++ Odaberite prijepodne ili poslijepodne ++ Odaberite sat ++ %1$s h ++ Odaberite minute ++ %1$s min ++ AM ++ Prebacite u način rada kao sat za unos vremena. ++ Sat ++ Minuta ++ PM ++ Odabir vremena ++ Prebacite u način unosa teksta za unos vremena. ++ Novo obavještenje ++ Uklonite %1$s ++ Broj novih obavještenja: više od %1$d ++ Promijeni na sljedeći mjesec ++ Promijeni na prethodni mjesec ++ Trenutni izbor: %1$s ++ @android:string/ok ++ %1$s ++ Odaberite datum ++ Odabrani datum ++ Kolona za dane: %1$s ++ Nevažeći format. ++ Primjer: %1$s ++ Koristi: %1$s ++ Nevažeći opseg. ++ Odlazak na %1$s. godinu ++ Izvan opsega: %1$s ++ Datum početka – %1$s ++ %1$s – Datum završetka ++ %1$s – %2$s ++ Odaberite raspon ++ Datum početka – Datum završetka ++ Sačuvaj ++ Datum ++ Datum završetka ++ Datum početka ++ d ++ m ++ g ++ Prebacivanje na način unosa kalendara ++ Dodirnite da prebacite na odabir dana ++ Prebacivanje na način unosa teksta ++ Dodirnite da prebacite na odabir godine ++ Prikaži lozinku ++ "Pretražite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml +new file mode 100644 +index 0000000..abb3286 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d notificació nova ++ %d notificacions noves ++ ++ "Navega fins a la pàgina d\'inici" ++ "Navega cap amunt" ++ "Més opcions" ++ "Fet" ++ "Mostra-ho tot" ++ "Selecciona una aplicació" ++ "DESACTIVA" ++ "ACTIVA" ++ "Alt+" ++ "Ctrl+" ++ "Supr" ++ "Retorn" ++ "Funció+" ++ "Meta+" ++ "Maj+" ++ "Espai" ++ "Sym+" ++ "Menú+" ++ "Cerca…" ++ "Esborra la consulta" ++ "Consulta de cerca" ++ "Cerca" ++ "Envia la consulta" ++ "Cerca per veu" ++ "Comparteix amb" ++ "Comparteix amb %s" ++ "Replega" ++ Desplega fins a la meitat ++ Caràcters introduïts: %1$d de %2$d ++ S\'ha superat el límit de caràcters (%1$d de %2$d) ++ Esborra el text ++ Error ++ Mostra el menú desplegable ++ Icona del quadre de diàleg ++ Tabulador ++ Selecciona a. m. o p. m. ++ Seleccioneu l\'hora ++ %1$s en punt ++ Selecciona els minuts ++ %1$s minuts ++ a. m. ++ Canvia al mode de rellotge per introduir l\'hora. ++ Hora ++ Minut ++ p. m. ++ Selecció de l\'hora ++ Canvia al mode d\'introducció de text per introduir l\'hora. ++ Notificació nova ++ Suprimeix %1$s ++ Més de %1$d notificacions noves ++ Canvia al mes següent ++ Canvia al mes anterior ++ Selecció actual: %1$s ++ @android:string/ok ++ %1$s ++ Selecciona una data ++ Data seleccionada ++ Columna de dies: %1$s ++ El format no és vàlid. ++ Exemple: %1$s ++ Utilitza: %1$s ++ L\'interval no és vàlid. ++ Canvia a l\'any %1$s ++ La data està fora de l\'interval: %1$s ++ Data d\'inici - %1$s ++ %1$s - data de finalització ++ %1$s - %2$s ++ Selecciona un interval ++ Data d\'inici - data de finalització ++ Desa ++ Data ++ Data de finalització ++ Data d\'inici ++ d ++ m ++ a ++ Canvia al mode d\'introducció de dades del calendari ++ Toca per canviar a la selecció del dia ++ Canvia al mode d\'introducció de text ++ Toca per canviar a la selecció de l\'any ++ Mostra la contrasenya ++ "Cerca" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml +new file mode 100644 +index 0000000..d5f45bb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml +@@ -0,0 +1,92 @@ ++ ++ ++ ++ %d nové oznámení ++ %d nová oznámení ++ %d nového oznámení ++ %d nových oznámení ++ ++ "Přejít na plochu" ++ "Přejít nahoru" ++ "Další možnosti" ++ "Hotovo" ++ "Zobrazit vše" ++ "Vybrat aplikaci" ++ "VYP" ++ "ZAP" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mezerník" ++ "Sym+" ++ "Menu+" ++ "Vyhledat…" ++ "Smazat dotaz" ++ "Dotaz pro vyhledávání" ++ "Hledat" ++ "Odeslat dotaz" ++ "Hlasové vyhledávání" ++ "Sdílet s" ++ "Sdílet s aplikací %s" ++ "Sbalit" ++ Rozbalit napůl ++ Zadané znaky: %1$d z %2$d ++ Byl překročen povolený počet znaků (%1$d z %2$d) ++ Vymazat text ++ Chyba ++ Zobrazit rozbalovací nabídku ++ Ikona dialogového okna ++ Karta ++ Vyberte AM nebo PM ++ Vyberte hodinu ++ %1$s ++ Zvolte minuty ++ %1$s min ++ AM ++ Chcete-li zadat čas, přepněte na režim hodin. ++ Hodina ++ Minuta ++ PM ++ Vyberte čas ++ Chcete-li zadat čas, přepněte na režim textu. ++ Nové oznámení ++ Odstranit položku %1$s ++ Více než %1$d nových oznámení ++ Přejít na další měsíc ++ Přejít na předchozí měsíc ++ Aktuální výběr: %1$s ++ @android:string/ok ++ %1$s ++ Vyberte datum ++ Vybrané datum ++ Sloupec dnů: %1$s ++ Neplatný formát. ++ Příklad: %1$s ++ Použijte: %1$s ++ Neplatný rozsah. ++ Přejít na rok %1$s ++ Mimo rozsah: %1$s ++ Datum zahájení – %1$s ++ %1$s – datum ukončení ++ %1$s – %2$s ++ Vyberte rozsah ++ Datum zahájení – datum ukončení ++ Uložit ++ Datum ++ Datum ukončení ++ Datum zahájení ++ d ++ m ++ r ++ Přepnout na režim zadávání do kalendáře ++ Klepnutím přepnete na výběr dne ++ Přepnout na režim zadávání textu ++ Klepnutím přepnete na výběr roku ++ Zobrazit heslo ++ "Hledat" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-da/values-da.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-da/values-da.xml +new file mode 100644 +index 0000000..c152e4a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-da/values-da.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ny notifikation ++ %d nye notifikationer ++ ++ "Find hjem" ++ "Gå op" ++ "Flere valgmuligheder" ++ "Udfør" ++ "Se alle" ++ "Vælg en app" ++ "FRA" ++ "TIL" ++ "Alt+" ++ "Ctrl+" ++ "slet" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mellemrum" ++ "Sym+" ++ "Menu+" ++ "Søg…" ++ "Ryd forespørgsel" ++ "Søgeforespørgsel" ++ "Søg" ++ "Indsend forespørgsel" ++ "Talesøgning" ++ "Del med" ++ "Del med %s" ++ "Skjul" ++ Udvid halvdelen ++ Du har brugt %1$d ud af %2$d tegn ++ Du har brugt %1$d tegn og dermed overskredet tegnbegrænsningen på %2$d. ++ Ryd tekst ++ Fejl ++ Vis rullemenuen ++ Ikon for dialogboks ++ Fane ++ Vælg AM eller PM ++ Vælg time ++ klokken %1$s ++ Vælg minutter ++ %1$s minutter ++ f.m. ++ Skift til urtilstand for at angive klokkeslæt. ++ Time ++ Minut ++ e.m. ++ Vælg tidspunkt ++ Skift til teksttilstand for at angive klokkeslæt. ++ Ny notifikation ++ Fjern %1$s ++ Flere end %1$d nye notifikationer ++ Skift til næste måned ++ Skift til forrige måned ++ Aktuelt valg: %1$s ++ @android:string/ok ++ %1$s ++ Vælg dato ++ Valgt dato ++ Kolonne med dage: %1$s ++ Ugyldigt format. ++ Eksempel: %1$s ++ Brug: %1$s ++ Ugyldigt interval. ++ Gå til år %1$s ++ Uden for interval: %1$s ++ Startdato – %1$s ++ %1$s – slutdato ++ %1$s – %2$s ++ Vælg interval ++ Startdato – slutdato ++ Gem ++ Dato ++ Slutdato ++ Startdato ++ d ++ m ++ å ++ Skift til input-tilstand for kalender ++ Tryk for at gå til valg af dag ++ Skift til input-tilstand for tekst ++ Tryk for at gå til valg af år ++ Vis adgangskode ++ "Søg" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-de/values-de.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-de/values-de.xml +new file mode 100644 +index 0000000..e2a52ee +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-de/values-de.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d neue Benachrichtigung ++ %d neue Benachrichtigungen ++ ++ "Zur Startseite" ++ "Nach oben" ++ "Weitere Optionen" ++ "Fertig" ++ "Alle anzeigen" ++ "App auswählen" ++ "AUS" ++ "AN" ++ "Alt +" ++ "Strg +" ++ "Löschen" ++ "Eingabetaste" ++ "Funktionstaste +" ++ "Meta-Taste +" ++ "Umschalttaste +" ++ "Leertaste" ++ "Sym-Taste +" ++ "Menütaste +" ++ "Suchen…" ++ "Suchanfrage löschen" ++ "Suchanfrage" ++ "Suche" ++ "Anfrage senden" ++ "Sprachsuche" ++ "Teilen mit" ++ "Mit %s teilen" ++ "Minimieren" ++ Zur Hälfte maximieren ++ Eingegebene Zeichen: %1$d von %2$d ++ Zeichenbeschränkung überschritten: %1$d/%2$d ++ Text löschen ++ Fehler ++ Drop-down-Menü anzeigen ++ Dialogfeldsymbol ++ Tab ++ Vormittags oder Nachmittags auswählen ++ Stunde auswählen ++ %1$s Uhr ++ Minuten auswählen ++ %1$s Minuten ++ AM ++ In den Uhrzeitmodus wechseln, um die Uhrzeit einzugeben. ++ Stunde ++ Minute ++ PM ++ Uhrzeit auswählen ++ In den Texteingabemodus wechseln, um die Uhrzeit einzugeben. ++ Neue Benachrichtigung ++ %1$s entfernen ++ Mehr als %1$d neue Benachrichtigungen ++ Zum nächsten Monat wechseln ++ Zum vorherigen Monat wechseln ++ Aktuelle Auswahl: %1$s ++ @android:string/ok ++ %1$s ++ Datum auswählen ++ Ausgewähltes Datum ++ Spalte \"Wochentag\": %1$s ++ Ungültiges Format. ++ Beispiel: %1$s ++ Format: %1$s ++ Ungültiger Bereich. ++ Zum Jahr %1$s wechseln ++ Außerhalb des Bereichs: %1$s ++ Startdatum – %1$s ++ %1$s – Enddatum ++ %1$s – %2$s ++ Zeitraum auswählen ++ Startdatum – Enddatum ++ Speichern ++ Datum ++ Enddatum ++ Startdatum ++ T ++ M ++ J ++ In den Kalendereingabemodus wechseln ++ Tippen, um zur Tagesauswahl zu wechseln ++ In den Texteingabemodus wechseln ++ Tippen, um zur Jahresauswahl zu wechseln ++ Passwort anzeigen ++ "Suche" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-el/values-el.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-el/values-el.xml +new file mode 100644 +index 0000000..f2eeec9 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-el/values-el.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d νέα ειδοποίηση ++ %d νέες ειδοποιήσεις ++ ++ "Πλοήγηση στην αρχική σελίδα" ++ "Πλοήγηση προς τα επάνω" ++ "Περισσότερες επιλογές" ++ "Τέλος" ++ "Εμφάνιση όλων" ++ "Επιλέξτε μια εφαρμογή" ++ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ" ++ "ΕΝΕΡΓΟΠΟΙΗΣΗ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "διάστημα" ++ "Sym+" ++ "Menu+" ++ "Αναζήτηση…" ++ "Διαγραφή ερωτήματος" ++ "Ερώτημα αναζήτησης" ++ "Αναζήτηση" ++ "Υποβολή ερωτήματος" ++ "Φωνητική αναζήτηση" ++ "Κοινοποίηση σε" ++ "Κοινοποίηση στην εφαρμογή %s" ++ "Σύμπτυξη" ++ Ανάπτυξη μέχρι τη μέση ++ Εισήχθησαν %1$d από %2$d χαρακτήρες ++ Υπέρβαση ορίου χαρακτήρων %1$d από %2$d ++ Διαγραφή κειμένου ++ Σφάλμα ++ Εμφάνιση αναπτυσσόμενου μενού ++ Εικονίδιο παραθύρου διαλόγου ++ Καρτέλα ++ Επιλέξτε π.μ. ή μ.μ. ++ Επιλογή ώρας ++ %1$s ακριβώς ++ Επιλογή λεπτών ++ %1$s λεπτά ++ ΠΜ ++ Κάντε εναλλαγή στη λειτουργία ρολογιού, για την εισαγωγή της ώρας. ++ Ώρα ++ Λεπτό ++ ΜΜ ++ Επιλέξτε ώρα ++ Κάντε εναλλαγή στη λειτουργία εισαγωγής κειμένου, για την εισαγωγή της ώρας. ++ Νέα ειδοποίηση ++ Κατάργηση %1$s ++ Πάνω από %1$d νέες ειδοποιήσεις ++ Αλλαγή στον επόμενο μήνα ++ Αλλαγή στον προηγούμενο μήνα ++ Τρέχουσα επιλογή: %1$s ++ @android:string/ok ++ %1$s ++ Επιλογή ημερομηνίας ++ Επιλεγμένη ημερομηνία ++ Στήλη ημερών: %1$s ++ Μη έγκυρη μορφή. ++ Παράδειγμα: %1$s ++ Χρησιμοποιήστε: %1$s ++ Μη έγκυρο εύρος. ++ Πλοήγηση στο έτος %1$s ++ Εκτός εύρους: %1$s ++ Ημερομηνία έναρξης – %1$s ++ %1$s – Ημερομηνία λήξης ++ %1$s – %2$s ++ Επιλογή εύρους ++ Ημερομηνία έναρξης – Ημερομηνία λήξης ++ Αποθήκευση ++ Ημερομηνία ++ Ημερομηνία λήξης ++ Ημερομηνία έναρξης ++ η ++ μ ++ ε ++ Εναλλαγή στη λειτουργία εισαγωγής ημερολογίου ++ Πατήστε για εναλλαγή για την επιλογή ημέρας ++ Εναλλαγή στη λειτουργία εισαγωγής κειμένου ++ Πατήστε για εναλλαγή για την επιλογή έτους ++ Εμφάνιση κωδικού πρόσβασης ++ "Αναζήτηση" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml +new file mode 100644 +index 0000000..2bb4640 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d new notification ++ %d new notifications ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ Expand halfway ++ Characters entered %1$d of %2$d ++ Character limit exceeded %1$d of %2$d ++ Clear text ++ Error ++ Show drop-down menu ++ Dialogue Icon ++ Tab ++ Select a.m. or p.m. ++ Select hour ++ %1$s o\'clock ++ Select minutes ++ %1$s minutes ++ AM ++ Switch to clock mode for the time input. ++ Hour ++ Minute ++ PM ++ Select time ++ Switch to text input mode for the time input. ++ New notification ++ Remove %1$s ++ More than %1$d new notifications ++ Change to next month ++ Change to previous month ++ Current selection: %1$s ++ @android:string/ok ++ %1$s ++ Select date ++ Selected date ++ Column of days: %1$s ++ Invalid format. ++ Example: %1$s ++ Use: %1$s ++ Invalid range. ++ Navigate to year %1$s ++ Out of range: %1$s ++ Start date – %1$s ++ %1$s – End date ++ %1$s – %2$s ++ Select range ++ Start date – End date ++ Save ++ Date ++ End date ++ Start date ++ d ++ m ++ y ++ Switch to calendar input mode ++ Tap to switch to selecting a day ++ Switch to text input mode ++ Tap to switch to selecting a year ++ Show password ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml +new file mode 100644 +index 0000000..14b21fa +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‎‏‎‏‏‏‏‎‎‎‏‎‎‏‎‎‏‎‏‎‎‎‎‏‏‎‏‎‏‏‎‎‏‎‎‎‏‎‏‎‏‏‏‎‏‎‎‎‎‏‏‎‏‏‏‏‏‏‎‎Navigate home‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‏‏‎‏‎‎‎‏‏‎‎‎‏‏‏‏‎‏‎‎‎‎‏‏‎‏‏‎‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‎‎‏‏‏‎‎‎‎‎Navigate up‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‎‎‏‎‎‎‎‏‎‎‎‏‎‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‎‎‎‎‏‎‎‏‎‏‏‏‏‏‎‏‎‎‏‎More options‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‎‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‏‏‎‎‏‏‎‏‎‎‏‏‏‎‎‎‎‏‎‎‎‏‏‏‎‎‏‎‎‎‏‎‎‎‎‎Done‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‎‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‎‎‎‏‏‎‏‏‏‎‎‎‎‏‏‏‎‎‏‎‎‎‎‏‏‏‎‏‏‎‏‎‏‎‏‎‎‎‎‏‎See all‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‎‏‎‏‎‎‏‏‎‏‏‎‏‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‎‏‎‎‏‎‏‎‎‎‎‎‎‎‎‎‎Choose an app‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‎‏‎‎‎‏‏‏‎‏‏‎‎‏‏‎‏‏‎‏‎‎‎‎‎‏‏‎‏‎‏‏‎‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‎‏‏‎OFF‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‎‎‏‏‏‏‏‎‎‏‏‎‏‏‎‎‎‎ON‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‎‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‎‎‏‏‎‎‏‏‏‏‎‏‎‎Alt+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‎‏‏‏‏‎‎‏‎‎‎‏‎‎‏‎‏‎‎‎‎‎‏‎‏‎‎‏‎‏‎‏‎‏‎‎Ctrl+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‏‎‏‏‎‏‎‏‏‏‏‏‎‏‏‎‎‏‎‏‎‎‏‏‏‎‏‏‏‏‏‏‎‎‎‎‏‏‏‎‏‎‎‎delete‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‎‏‎‏‏‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‏‏‎enter‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‏‏‎‏‎‎‏‏‎‏‎‏‎‎‎‎‎‏‏‏‏‎‎‎‎‎‏‏‎‎‎‏‏‎‎‏‎‎‏‏‎‎‏‎‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎Function+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‏‎‏‏‎‏‏‏‎‎‎‏‎‎‎‏‎‎‎‎‏‏‏‏‎‎‏‏‎‎‏‎‎‎‎‎‏‎‏‎‎‏‎‎‏‏‏‏‏‏‎‎Meta+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‎‎‏‎‎‎‏‏‎‎‎‎‏‏‎Shift+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‎‏‏‏‏‏‏‎‏‏‏‎‎‎‏‎‎‏‏‏‎‏‏‎‎‎‎‎‎‎‏‏‎‏‏‎‎‎‏‏‎‎‏‎‎‎‏‏‎‏‎‎‎‎‏‎‏‏‎‎space‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‏‏‏‎‎‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‏‏‏‏‏‎‏‎‎‎‎‎‎‎‎‎‎‎‏‎‎‎‏‎‎‏‏‎‏‏‏‎‎Sym+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‏‎‎‏‎‎‏‏‏‎‎‎‎‎‎‏‏‏‎‏‏‏‏‎‎‎‎‎‏‎‎‎‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎‎‏‏‏‏‎‏‏‏‏‏‎‎Menu+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‎‎‎‎‎‎‏‎‎‎‎‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‎‏‎‎‎‏‏‏‏‏‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‎‏‏‎‏‎‎‎Search…‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‏‏‏‏‏‎‏‎‏‏‎‏‎‏‎‎‎‏‎‎‏‏‏‏‎‎‎‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‏‏‏‎‎‏‏‎Clear query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‏‏‏‎‏‏‎‏‎‎‎‏‏‎‎‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‎Search query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‎‏‎‎‏‎‏‎‎‏‏‎‎‎‎‎‎‎‎‎‏‏‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‏‏‎‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‎‎‏‎‏‎‎‎‎‏‎‎‏‏‏‏‎‎‎‎‏‎‏‏‎‏‎‏‎‏‎‏‏‎‏‏‏‎‎‎‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‏‏‏‎Submit query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‎‏‏‎‏‏‎‏‏‎‎‎‏‎‏‏‏‏‏‎‏‏‎‎‎‏‏‎‏‏‎‏‎‎‎‎‏‎‎‎‏‎‎‏‎‏‏‏‎Voice search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‎‏‎‏‎‏‎‏‏‎‏‎‎‏‏‎‎‏‎‎‏‎‎‏‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‏‎‏‏‏‏‎‏‏‎‏‏‏‎Share with‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‏‎‏‎‏‎‏‏‎‎‎‏‏‎‏‏‏‎‎‏‎‏‎‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‏‏‏‎‎‎‎‏‏‏‎‎‎Share with ‎‏‎‎‏‏‎%s‎‏‎‎‏‏‏‎‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‏‎‎‏‎‏‎‎‏‎‏‎‎‏‏‎‏‏‏‎‏‏‏‏‏‏‏‏‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‏‎‎‏‎‎Collapse‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‏‏‏‎‎‎‎‏‎‏‏‎‎‎‏‎‏‏‎‎‏‎‏‎‎‏‎‎‏‎‎‎‏‎‏‏‎‎‏‎‏‎‏‏‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml +new file mode 100644 +index 0000000..fa0851d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d notificación nueva ++ %d notificaciones nuevas ++ ++ "Navegar a la página principal" ++ "Navegar hacia arriba" ++ "Más opciones" ++ "Listo" ++ "Ver todas" ++ "Elegir una app" ++ "DESACTIVAR" ++ "ACTIVAR" ++ "Alt+" ++ "Ctrl+" ++ "borrar" ++ "intro" ++ "Función+" ++ "Meta+" ++ "Mayúscula+" ++ "espacio" ++ "Sym+" ++ "Menú+" ++ "Buscar…" ++ "Borrar consulta" ++ "Búsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "Búsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Contraer" ++ Expandir hasta la mitad ++ Caracteres ingresados: %1$d de %2$d ++ Se excedió en %1$d el límite de caracteres de %2$d ++ Borrar texto ++ Error ++ Mostrar menú desplegable ++ Ícono de diálogo ++ Pestaña ++ Selecciona a.m. o p.m. ++ Seleccione la hora. ++ %1$s en punto ++ Seleccionar minutos ++ %1$s minutos ++ A. M. ++ Cambia al modo de reloj para ingresar la hora. ++ Hora ++ Minuto ++ P. M. ++ Seleccionar la hora ++ Cambia al modo de entrada de texto para ingresar la hora. ++ Notificación nueva ++ Quitar %1$s ++ Más de %1$d notificaciones nuevas ++ Cambiar al mes siguiente ++ Cambiar al mes anterior ++ Selección actual: %1$s ++ @android:string/ok ++ %1$s ++ Seleccionar fecha ++ Fecha seleccionada ++ Columna de días: %1$s ++ Formato no válido ++ Ejemplo: %1$s ++ Usar: %1$s ++ El rango no es válido. ++ Navegar al año %1$s ++ Fuera de rango: %1$s ++ Fecha de inicio - %1$s ++ %1$s - fecha de finalización ++ %1$s-%2$s ++ Selecciona un período ++ Fecha de inicio - fecha de finalización ++ Guardar ++ Fecha ++ Fecha de finalización ++ Fecha de inicio ++ d ++ m ++ a ++ Cambiar al modo de entrada de calendario ++ Presiona para seleccionar un día ++ Cambiar al modo de entrada de texto ++ Presiona para seleccionar un año ++ Mostrar contraseña ++ "Buscar" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-es/values-es.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-es/values-es.xml +new file mode 100644 +index 0000000..54f21af +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-es/values-es.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d notificación nueva ++ %d notificaciones nuevas ++ ++ "Ir a inicio" ++ "Desplazarse hacia arriba" ++ "Más opciones" ++ "Listo" ++ "Ver todo" ++ "Seleccionar una aplicación" ++ "DESACTIVADO" ++ "ACTIVADO" ++ "Alt +" ++ "Ctrl +" ++ "Suprimir" ++ "Intro" ++ "Función +" ++ "Meta +" ++ "Mayús +" ++ "Espacio" ++ "Sym +" ++ "Menú +" ++ "Buscar…" ++ "Borrar consulta" ++ "Consulta de búsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "Búsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Ocultar" ++ Desplegar hasta la mitad ++ Caracteres introducidos: %1$d de %2$d ++ Límite de caracteres superado (%1$d de %2$d) ++ Borrar texto ++ Error ++ Mostrar menú desplegable ++ Icono del cuadro de diálogo ++ Pestaña ++ Selecciona AM o PM ++ Seleccionar hora ++ %1$s en punto ++ Seleccionar minutos ++ %1$s minutos ++ A.M. ++ Cambia al modo de reloj para escribir la hora. ++ Hora ++ Minuto ++ P.M. ++ Seleccionar la hora ++ Cambia al modo de introducción de texto para escribir la hora. ++ Notificación nueva ++ Retirar %1$s ++ Más de %1$d notificaciones nuevas ++ Cambiar al mes siguiente ++ Cambiar al mes anterior ++ Selección actual: %1$s ++ @android:string/ok ++ %1$s ++ Selecciona una fecha ++ Fecha seleccionada ++ Columna de días: %1$s ++ Formato no válido. ++ Ejemplo: %1$s ++ Usar: %1$s ++ El periodo no es válido. ++ Ir al año %1$s ++ Fuera del periodo válido: %1$s ++ Fecha de inicio–%1$s ++ %1$s–Fecha de finalización ++ %1$s – %2$s ++ Selecciona un periodo ++ Fecha de inicio–Fecha de finalización ++ Guardar ++ Fecha ++ Fecha de finalización ++ Fecha de inicio ++ d ++ m ++ a ++ Cambiar al modo de introducción Calendario ++ Toca para seleccionar un día ++ Cambiar al modo de introducción Texto ++ Toca para seleccionar un año ++ Mostrar contraseña ++ "Buscar" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-et/values-et.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-et/values-et.xml +new file mode 100644 +index 0000000..090540d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-et/values-et.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d uus märguanne ++ %d uut märguannet ++ ++ "Liigu avalehele" ++ "Liigu üles" ++ "Rohkem valikuid" ++ "Valmis" ++ "Kuva kõik" ++ "Valige rakendus" ++ "VÄLJAS" ++ "SEES" ++ "Alt +" ++ "Ctrl +" ++ "kustuta" ++ "sisestusklahv" ++ "Funktsiooniklahv +" ++ "Meta +" ++ "Tõstuklahv +" ++ "tühik" ++ "Sym +" ++ "Menüü +" ++ "Otsige …" ++ "Päringu tühistamine" ++ "Otsingupäring" ++ "Otsing" ++ "Päringu esitamine" ++ "Häälotsing" ++ "Jaga:" ++ "Jagamine rakendusega %s" ++ "Ahendamine" ++ Laiendamine poolenisti ++ Sisestatud tähemärgid: %1$d/%2$d ++ Tähemärgipiirang on ületatud: %1$d/%2$d ++ Kustuta tekst ++ Viga ++ Kuva rippmenüü ++ Dialoogi ikoon ++ Vaheleht ++ Valige AM või PM ++ Valige tund ++ Kell %1$s ++ Minutite valimine ++ %1$s minutit ++ AM ++ Aktiveerige kellaaja sisestamiseks kellarežiim. ++ Tunnid ++ Minut ++ PM ++ Aja valimine ++ Aktiveerige kellaaja sisestamiseks tekstisisestusrežiim. ++ Uus märguanne ++ Üksuse %1$s eemaldamine ++ Rohkem kui %1$d uut märguannet ++ Vaheta järgmisele kuule ++ Vaheta eelmisele kuule ++ Praegune valik: %1$s ++ @android:string/ok ++ %1$s ++ Valige kuupäev ++ Valitud kuupäev ++ Päevade veerg: %1$s ++ Sobimatu vorming. ++ Näide: %1$s ++ Kasutage: %1$s ++ Sobimatu vahemik. ++ Mine aastasse %1$s ++ Vahemikust väljas: %1$s ++ Alguskuupäev – %1$s ++ %1$s – lõppkuupäev ++ %1$s–%2$s ++ Valige vahemik ++ Alguskuupäev – lõppkuupäev ++ Salvesta ++ Kuupäev ++ Lõppkuupäev ++ Alguskuupäev ++ p ++ k ++ a ++ Lülitu kalendrisisestusrežiimile ++ Puudutage, et lülituda päeva valimisele ++ Lülitu tekstisisestusrežiimile ++ Puudutage, et lülituda aasta valimisele ++ Parooli kuvamine ++ "Otsing" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml +new file mode 100644 +index 0000000..004d6a1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d jakinarazpen berri ++ %d jakinarazpen berri ++ ++ "Joan orri nagusira" ++ "Joan gora" ++ "Aukera gehiago" ++ "Eginda" ++ "Ikusi guztiak" ++ "Aukeratu aplikazio bat" ++ "DESAKTIBATU" ++ "AKTIBATU" ++ "Alt +" ++ "Ktrl +" ++ "ezabatu" ++ "sartu" ++ "Funtzioa +" ++ "Meta +" ++ "Maius +" ++ "zuriunea" ++ "Sym +" ++ "Menua +" ++ "Bilatu…" ++ "Garbitu kontsulta" ++ "Bilaketa-kontsulta" ++ "Bilatu" ++ "Bidali kontsulta" ++ "Ahozko bilaketa" ++ "Partekatu honekin" ++ "Partekatu %s aplikazioarekin" ++ "Tolestu" ++ Zabaldu erdiraino ++ %1$d/%2$d karaktere idatzi dira ++ Karaktere-muga gainditu da: %1$d/%2$d ++ Garbitu testua ++ Errorea ++ Erakutsi goitibeherako menua ++ Leihoko ikonoa ++ Fitxa ++ Hautatu AM edo PM ++ Hautatu ordua ++ %1$s(r)ak dira ++ Hautatu minutuak ++ %1$s minutu ++ AM ++ Aldatu erloju modura ordua zehazteko. ++ Ordua ++ Minutua ++ PM ++ Hautatu ordua ++ Ordua idazteko, aldatu testua idazteko metodora. ++ Jakinarazpen berria ++ Kendu %1$s ++ %1$d jakinarazpen berri baino gehiago ++ Aldatu hurrengo hilabetera ++ Aldatu aurreko hilabetera ++ Uneko hautapena: %1$s ++ @android:string/ok ++ %1$s ++ Hautatu data ++ Hautatutako data ++ Egunen zutabea:%1$s ++ Formatuak ez du balio. ++ Adibidea: %1$s ++ Erabili: %1$s ++ Tarteak ez du balio. ++ Joan %1$s. urtera ++ Onartutako barrutitik kanpo: %1$s ++ Hasiera-data – %1$s ++ %1$s – Amaiera-data ++ %1$s-%2$s ++ Hautatu barrutia ++ Hasiera-data - Amaiera-data ++ Gorde ++ Data ++ Amaiera-data ++ Hasiera-data ++ e ++ h ++ u ++ Aldatu egutegiaren idazketa-metodora ++ Sakatu eguna hautatzeko modura aldatzeko ++ Aldatu testua idazteko modura ++ Sakatu urtea hautatzeko modura aldatzeko ++ Erakutsi pasahitza ++ "Bilatu" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml +new file mode 100644 +index 0000000..b9c60a4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d اعلان جدید ++ %d اعلان جدید ++ ++ "پیمایش به صفحه اصلی" ++ "رفتن به بالا" ++ "گزینه‌های بیشتر" ++ "تمام" ++ "دیدن همه" ++ "انتخاب برنامه" ++ "خاموش" ++ "روشن" ++ "‎Alt+‎" ++ "‎Ctrl+‎" ++ "حذف" ++ "enter" ++ "‎Function+‎" ++ "‎Meta+‎" ++ "‎Shift+‎" ++ "فاصله" ++ "‎Sym+‎" ++ "منو+" ++ "جستجو…‏" ++ "پاک کردن پُرسمان" ++ "درخواست جستجو" ++ "جستجو" ++ "ارسال پُرسمان" ++ "جستجوی گفتاری" ++ "هم‌رسانی با" ++ "هم‌رسانی با %s" ++ "کوچک کردن" ++ گسترده کردن تا نیمه ++ نویسه‌های واردشده %1$d از %2$d ++ محدودیت نویسه از حد مجاز %1$d از %2$d بیشتر شده است ++ پاک کردن نوشتار ++ خطا ++ نمایش منوی کرکره‌ای ++ نماد کادر گفتگو ++ برگه ++ انتخاب .ق.ظ. یا ب.ظ. ++ انتخاب ساعت ++ ساعت %1$s ++ انتخاب دقیقه ++ %1$s دقیقه ++ ق.ظ ++ برای وارد کردن زمان، به حالت ساعت تغییر وضعیت دهید. ++ ساعت ++ دقیقه ++ ب.ظ ++ انتخاب زمان ++ برای وارد کردن زمان، به حالت ورودی نوشتاری تغییر وضعیت دهید. ++ اعلان جدید ++ برداشتن %1$s ++ بیش از %1$d اعلان جدید ++ تغییر به ماه بعدی ++ تغییر به ماه قبلی ++ انتخاب کنونی: %1$s ++ @android:string/ok ++ %1$s ++ انتخاب تاریخ ++ تاریخ انتخابی ++ ستون روز: %1$s ++ قالب نامعتبر است. ++ مثال: %1$s ++ قالب: %1$s ++ محدوده نامعتبر است. ++ رفتن به سال %1$s ++ خارج از محدوده: %1$s ++ تاریخ شروع – %1$s ++ %1$s – تاریخ پایان ++ %1$s – %2$s ++ انتخاب محدوده ++ تاریخ شروع – تاریخ پایان ++ ذخیره ++ تاریخ ++ تاریخ پایان ++ تاریخ شروع ++ d ++ m ++ y ++ رفتن به روش ورودی تقویم ++ رفتن به رفتن به حالت انتخاب روز ضربه بزنید ++ رفتن به حالت ورودی نوشتاری ++ برای رفتن به حالت انتخاب سال ضربه بزنید ++ نمایش گذرواژه ++ "جستجو" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml +new file mode 100644 +index 0000000..4c9ff26 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d uusi ilmoitus ++ %d uutta ilmoitusta ++ ++ "Siirry etusivulle" ++ "Siirry ylös" ++ "Lisäasetukset" ++ "Valmis" ++ "Näytä kaikki" ++ "Valitse sovellus" ++ "POIS PÄÄLTÄ" ++ "PÄÄLLÄ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Vaihto+" ++ "välilyönti" ++ "Sym+" ++ "Valikko+" ++ "Haku…" ++ "Tyhjennä kysely" ++ "Hakukysely" ++ "Haku" ++ "Lähetä kysely" ++ "Puhehaku" ++ "Jaa…" ++ "Jaa: %s" ++ "Tiivistä" ++ Laajenna puoliväliin ++ %1$d/%2$d merkkiä kirjoitettu ++ Merkkiraja ylitetty: %1$d/%2$d ++ Tyhjennä teksti ++ Virhe ++ Näytä avattava valikko ++ Valintaikkunan kuvake ++ Välilehti ++ Valitse AP tai IP ++ Valitse tunti ++ klo %1$s ++ Valitse minuutit ++ %1$s minuuttia ++ ap ++ Vaihda ajan syöttämiseen kellotilassa. ++ Tunnit ++ Minuutti ++ ip ++ Valitse aika ++ Vaihda ajan syöttämiseen tekstitilassa. ++ Uusi ilmoitus ++ Poista %1$s ++ Yli %1$d uutta ilmoitusta ++ Vaihda seuraavaan kuukauteen ++ Vaihda edelliseen kuukauteen ++ Nykyinen valinta: %1$s ++ @android:string/ok ++ %1$s ++ Valitse päivämäärä ++ Valittu päivämäärä ++ Päiväsarake: %1$s ++ Virheellinen muoto ++ Esimerkki: %1$s ++ Käytä muotoa %1$s ++ Virheellinen alue ++ Siirry vuoteen %1$s ++ Katvealueella: %1$s ++ Alkamispäivä – %1$s ++ %1$s – päättymispäivä ++ %1$s – %2$s ++ Valitse jakso ++ Alkamispäivä – päättymispäivä ++ Tallenna ++ Päivämäärä ++ Päättymispäivä ++ Alkamispäivä ++ p ++ k ++ v ++ Vaihda syöttötavaksi kalenteri ++ Siirry päivän valintaan napauttamalla ++ Valitse syöttötavaksi teksti ++ Siirry vuoden valintaan napauttamalla ++ Näytä salasana ++ "Haku" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +new file mode 100644 +index 0000000..0cb0cde +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d nouvelle notification ++ %d nouvelles notifications ++ ++ "Revenir à l\'accueil" ++ "Revenir en arrière" ++ "Autres options" ++ "Terminé" ++ "Tout afficher" ++ "Sélectionner une application" ++ "DÉSACTIVER" ++ "ACTIVER" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrée" ++ "Fonction+" ++ "Méta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercher…" ++ "Effacer la requête" ++ "Requête de recherche" ++ "Rechercher" ++ "Envoyer la requête" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "Réduire" ++ Développer à moitié ++ Caractères entrés : %1$d sur %2$d ++ Limite de caractère dépassée : %1$d sur %2$d ++ Effacer le texte ++ Erreur ++ Afficher le menu déroulant ++ Icône de boîte de dialogue ++ Onglet ++ Sélectionner AM ou PM ++ Sélectionner l\'heure ++ %1$s heures ++ Sélectionnez les minutes ++ %1$s minutes ++ AM ++ Passer au mode Horloge pour entrer l\'heure. ++ Heure ++ Minute ++ PM ++ Sélectionner l\'heure ++ Passer au mode Entrée de texte pour entrer l\'heure. ++ Nouvelle notification ++ Supprimer %1$s ++ Plus de %1$d nouvelles notifications ++ Passer au mois suivant ++ Passer au mois précédent ++ Sélection actuelle : %1$s ++ @android:string/ok ++ %1$s ++ Sélectionnez la date ++ Date sélectionnée ++ Colonne des jours : %1$s ++ Format incorrect ++ Exemple : %1$s ++ Utiliser : %1$s ++ Plage incorrecte. ++ Naviguer vers l\'année %1$s ++ Hors de la plage : %1$s ++ Du (date de début) au %1$s ++ Du %1$s au (date de fin) ++ Du %1$s au %2$s ++ Sélectionnez la plage ++ Du (date de début) au (date de fin) ++ Enregistrer ++ Date ++ Date de fin ++ Date de début ++ j ++ m ++ a ++ Passer au mode d\'entrée Agenda ++ Touchez pour passer à la sélection de jour ++ Passer au mode d\'entrée Texte ++ Touchez pour passer à la sélection d\'année ++ Afficher le mot de passe ++ "Rechercher" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml +new file mode 100644 +index 0000000..8356128 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d nouvelle notification ++ %d nouvelles notifications ++ ++ "Revenir à l\'accueil" ++ "Revenir en haut de la page" ++ "Autres options" ++ "OK" ++ "Tout afficher" ++ "Sélectionner une application" ++ "NON" ++ "OUI" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrée" ++ "Fonction+" ++ "Méta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercher…" ++ "Effacer la requête" ++ "Requête de recherche" ++ "Rechercher" ++ "Envoyer la requête" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "Réduire" ++ Développer en entier ++ Caractères saisis %1$d sur %2$d ++ Nombre maximal de caractères dépassé : %1$d sur %2$d ++ Effacer le texte ++ Erreur ++ Afficher le menu déroulant ++ Icône de la boîte de dialogue ++ Tabulation ++ Sélectionner le format AM ou PM ++ Sélectionnez une heure ++ %1$s h ++ Sélectionner des minutes ++ %1$s min ++ AM ++ Passer en mode horloge pour la saisie de l\'heure. ++ Heure ++ Minute ++ PM ++ Sélectionner l\'heure ++ Passer en mode saisie de texte pour la saisie de l\'heure. ++ Nouvelle notification ++ Supprimer %1$s ++ Plus de %1$d nouvelles notifications ++ Passer au mois suivant ++ Passer au mois précédent ++ Sélection actuelle : %1$s ++ @android:string/ok ++ %1$s ++ Sélectionnez une date ++ Date sélectionnée ++ Colonne du jour de la semaine : %1$s ++ Format incorrect. ++ Exemple : %1$s ++ Utiliser %1$s ++ Plage non valide. ++ Accéder à l\'année %1$s ++ Hors de portée : %1$s ++ Date de début – %1$s ++ %1$s – Date de fin ++ %1$s - %2$s ++ Sélectionnez une période ++ Date de début – Date de fin ++ Enregistrer ++ Date ++ Date de fin ++ Date de début ++ j ++ m ++ a ++ Passer au mode de saisie Agenda ++ Appuyer pour sélectionner un jour ++ Passer au mode de saisie Texte ++ Appuyer pour sélectionner une année ++ Afficher le mot de passe ++ "Rechercher" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml +new file mode 100644 +index 0000000..654663c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d notificación nova ++ %d notificacións novas ++ ++ "Vai ao inicio" ++ "Vai cara arriba" ++ "Máis opcións" ++ "Feito" ++ "Ver todo" ++ "Selecciona unha aplicación" ++ "DESACTIVAR" ++ "ACTIVAR" ++ "Alt +" ++ "Ctrl +" ++ "eliminar" ++ "intro" ++ "Función +" ++ "Meta +" ++ "Maiús +" ++ "espazo" ++ "Sym +" ++ "Menú +" ++ "Busca…" ++ "Borra a consulta" ++ "Busca a consulta" ++ "Realiza buscas" ++ "Envía a consulta" ++ "Busca por voz" ++ "Comparte contido con" ++ "Comparte contido coa aplicación %s" ++ "Contrae" ++ Despregar ata a metade ++ Introducíronse %1$d caracteres de %2$d ++ Introducíronse %1$d caracteres, pero o límite é de %2$d ++ Borra texto ++ Produciuse un erro ++ Mostra o menú despregable ++ Icona de cadro de diálogo ++ Pestana ++ Seleccionar a.m. ou p.m. ++ Seleccionar hora ++ %1$s en punto ++ Seleccionar minutos ++ %1$s minutos ++ a.m. ++ Cambiar ao modo de reloxo para introducir a hora. ++ Hora ++ Minuto ++ p.m. ++ Seleccionar hora ++ Cambia ao modo de introdución de texto para introducir a hora. ++ Notificación nova ++ Quita %1$s ++ Máis de %1$d notificacións novas ++ Cambiar ao mes seguinte ++ Cambiar ao mes anterior ++ Selección actual: %1$s ++ @android:string/ok ++ %1$s ++ Selecciona unha data ++ Data seleccionada ++ Columna de días: %1$s ++ O formato non é válido. ++ Exemplo: %1$s ++ Usa este formato: %1$s ++ O intervalo de datas non é válido. ++ Ir ao ano %1$s ++ Só se admiten datas do intervalo: %1$s ++ Data de inicio - %1$s ++ %1$s - data de finalización ++ %1$s - %2$s ++ Selecciona un intervalo de datas ++ Data de inicio - data de finalización ++ Gardar ++ Data ++ Data de finalización ++ Data de inicio ++ d ++ m ++ a ++ Cambiar ao modo de entrada de calendario ++ Tocar para cambiar a selección de día ++ Cambiar ao modo de introdución de texto ++ Tocar para cambiar a selección de ano ++ Mostra o contrasinal ++ "Buscar" ++ ">999" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml +new file mode 100644 +index 0000000..7db7b93 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d નવું નોટિફિકેશન ++ %d નવા નોટિફિકેશન ++ ++ "ઘરનો રસ્તો બતાવો" ++ "ઉપર નૅવિગેટ કરો" ++ "વધુ વિકલ્પો" ++ "થઈ ગયું" ++ "બધી જુઓ" ++ "ઍપ્લિકેશન પસંદ કરો" ++ "બંધ" ++ "ચાલુ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "શોધો…" ++ "ક્વેરી સાફ કરો" ++ "શોધ ક્વેરી" ++ "શોધો" ++ "ક્વેરી સબમિટ કરો" ++ "વૉઇસ શોધ" ++ "આની સાથે શેર કરો" ++ "%sની સાથે શેર કરો" ++ "સંકુચિત કરો" ++ અડધે સુધી મોટું કરો ++ %2$dમાંથી %1$d અક્ષરો દાખલ કર્યા ++ %2$dમાંથી %1$dની વર્ણ મર્યાદા ઓળંગાઈ ગઈ છે ++ ટેક્સ્ટ સાફ કરો ++ ભૂલ ++ ડ્રૉપડાઉન મેનૂ બતાવો ++ સંવાદનું આઇકન ++ ટૅબ ++ AM અથવા PM પસંદ કરો ++ સમય પસંદ કરો ++ %1$s વાગ્યા છે ++ મિનિટ પસંદ કરો ++ %1$s મિનિટ ++ AM ++ સમય દાખલ કરવા માટે ઘડિયાળ મોડમાં સ્વિચ કરો. ++ કલાક ++ મિનિટ ++ PM ++ સમય પસંદ કરો ++ સમય દાખલ કરવા માટે ટેક્સ્ટ ઇનપુટ મોડમાં સ્વિચ કરો. ++ નવું નોટિફિકેશન ++ %1$s કાઢી નાખો ++ %1$dથી વધુ નવા નોટિફિકેશન ++ આગલા મહિના પર બદલો ++ પાછલા મહિના પર બદલો ++ હાલની પસંદગી: %1$s ++ @android:string/ok ++ %1$s ++ તારીખ પસંદ કરો ++ પસંદ કરેલી તારીખ ++ દિવસોની કૉલમ: %1$s ++ અમાન્ય ફોર્મેટ. ++ ઉદાહરણ: %1$s ++ આનો ઉપયોગ કરો: %1$s ++ અમાન્ય શ્રેણી. ++ %1$sના વર્ષ પર નૅવિગેટ કરો ++ આ શ્રેણીની બહાર છે: %1$s ++ શરૂ કરવાની તારીખ – %1$s ++ %1$s – સમાપ્તિની તારીખ ++ %1$s – %2$s ++ શ્રેણી પસંદ કરો ++ શરૂ કરવાની તારીખ – સમાપ્તિની તારીખ ++ સાચવો ++ તારીખ ++ સમાપ્તિની તારીખ ++ શરૂ કરવાની તારીખ ++ d ++ m ++ y ++ કૅલેન્ડર ઇનપુટ મોડ પર સ્વિચ કરો ++ દિવસની પસંદગી પર સ્વિચ કરવા માટે ટૅપ કરો ++ ટેક્સ્ટ ઇનપુટ મોડ પર સ્વિચ કરો ++ વર્ષની પસંદગી પર સ્વિચ કરવા માટે ટૅપ કરો ++ પાસવર્ડ બતાવો ++ "શોધો" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml +new file mode 100644 +index 0000000..62716d4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 8dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml +new file mode 100644 +index 0000000..4badce1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml +@@ -0,0 +1,12 @@ ++ ++ ++ 4dp ++ 18dp ++ 40dp ++ 2dp ++ 2dp ++ 40dp ++ 20dp ++ 128dp ++ 4dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml +new file mode 100644 +index 0000000..86eb422 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml +@@ -0,0 +1,12 @@ ++ ++ ++ 0dp ++ 22dp ++ 48dp ++ 2dp ++ 2dp ++ 48dp ++ 20dp ++ 168dp ++ 0dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml +new file mode 100644 +index 0000000..9b3fbb8 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 24dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +new file mode 100644 +index 0000000..e38bb90 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 54dip ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +new file mode 100644 +index 0000000..d5a138e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +@@ -0,0 +1,8 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml +new file mode 100644 +index 0000000..db27a74 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d नई सूचनाएं ++ %d नई सूचनाएं ++ ++ "होम पेज पर जाएं" ++ "वापस जाएं" ++ "ज़्यादा विकल्प" ++ "हो गया" ++ "सभी देखें" ++ "कोई ऐप्लिकेशन चुनें" ++ "बंद" ++ "चालू" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "खोजें…" ++ "क्‍वेरी हटाएं" ++ "सर्च क्वेरी" ++ "खोजें" ++ "क्वेरी सबमिट करें" ++ "बोलकर खोजें" ++ "इससे शेयर करें:" ++ "%s से शेयर करें" ++ "छोटा करें" ++ पूरी तरह बड़ा करें ++ %2$d वर्णों में से %1$d वर्ण दर्ज किए गए ++ अभी %1$d वर्ण हैं जबकि %2$d से ज़्यादा नहीं होने चाहिए ++ टेक्स्ट मिटाएं ++ गड़बड़ी ++ ड्रॉपडाउन मेन्यू दिखाएं ++ डायलॉग का आइकॉन ++ टैब ++ AM या PM चुनें ++ घंटा चुनें ++ %1$s बजे ++ मिनट चुनें ++ %1$s मिनट ++ पूर्वाह्न ++ समय इनपुट के लिए घड़ी मोड पर जाएं. ++ घंटा ++ मिनट ++ अपराह्न ++ समय चुनें ++ समय इनपुट के लिए लेख इनपुट मोड पर जाएं. ++ नई सूचना ++ %1$s हटाएं ++ %1$d से ज़्यादा नई सूचनाएं ++ अगले महीने पर जाएं ++ पिछले महीने पर जाएं ++ फ़िलहाल, यह चुना गया है: %1$s ++ @android:string/ok ++ %1$s ++ तारीख चुनें ++ चुनी गई तारीख ++ दिनों का कॉलम: %1$s ++ गलत फ़ॉर्मैट. ++ उदाहरण: %1$s ++ %1$s का इस्तेमाल करें ++ तारीखों की अमान्य सीमा. ++ साल %1$s पर जाएं ++ तारीख की मान्य सीमा से बाहर: %1$s ++ शुरू होने की तारीख – %1$s ++ %1$s – खत्म होने की तारीख ++ %1$s – %2$s ++ रेंज चुनें ++ शुरू होने की तारीख – खत्म होने की तारीख ++ सेव करें ++ तारीख ++ खत्म होने की तारीख ++ शुरू होने की तारीख ++ d ++ m ++ y ++ कैलेंडर के इनपुट मोड पर स्विच करें ++ \'दिन चुनना\' पर स्विच करने के लिए टैप करें ++ टेक्स्ट के इनपुट मोड पर स्विच करें ++ \'साल चुनना\' पर स्विच करने के लिए टैप करें ++ पासवर्ड दिखाएं ++ "खोजें" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml +new file mode 100644 +index 0000000..5e1778d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml +@@ -0,0 +1,91 @@ ++ ++ ++ ++ %d nova obavijest ++ %d nove obavijesti ++ %d novih obavijesti ++ ++ "Idi na početnu" ++ "Natrag" ++ "Više opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Odabir aplikacije" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "svemir" ++ "Sym+" ++ "Menu+" ++ "Pretražite…" ++ "Izbriši upit" ++ "Upit za pretraživanje" ++ "Pretraži" ++ "Pošalji upit" ++ "Glasovno pretraživanje" ++ "Dijeli s" ++ "Dijeli putem aplikacije %s" ++ "Sažmi" ++ Proširi donju polovicu ++ Uneseno znakova: %1$d od %2$d ++ Premašeno je ograničenje broja znakova: %1$d od %2$d ++ Brisanje teksta ++ Pogreška ++ Prikaži padajući izbornik ++ Ikona dijaloga ++ Kartica ++ Odaberite prijepodne ili poslijepodne ++ Odaberite sat ++ %1$s h ++ Odaberite minute ++ %1$s min ++ AM ++ Prijeđite na način rada sata da biste unijeli vrijeme. ++ Sat ++ Minuta ++ PM ++ Odabir vremena ++ Prijeđite na način unosa teksta da biste unijeli vrijeme. ++ Nova obavijest ++ Ukloni %1$s ++ Više od %1$d novih obavijesti ++ Prijelaz na sljedeći mjesec ++ Pomicanje na prethodni mjesec ++ Trenutačan odabir: %1$s ++ @android:string/ok ++ %1$s ++ Odaberite datum ++ Odabrani datum ++ Stupac s danima: %1$s ++ Nevažeći format. ++ Primjer: %1$s ++ Koristi format: %1$s ++ Raspon nije važeći. ++ Prijelaz na godinu %1$s ++ Izvan raspona: %1$s ++ Datum početka – %1$s ++ %1$s – datum završetka ++ %1$s – %2$s ++ Odaberite raspon ++ Datum početka – datum završetka ++ Spremi ++ Datum ++ Datum završetka ++ Datum početka ++ d ++ m ++ g ++ Prijelaz na način unosa u Kalendaru ++ Dodirnite za prijelaz na odabir dana ++ Prijelaz na način unosa teksta ++ Dodirnite za prijelaz na odabir godine ++ Prikaži zaporku ++ "Pretraži" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml +new file mode 100644 +index 0000000..5c019ea +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d új értesítés ++ %d új értesítés ++ ++ "Ugrás a főoldalra" ++ "Fel" ++ "További lehetőségek" ++ "Kész" ++ "Az összes megtekintése" ++ "Válasszon alkalmazást" ++ "KI" ++ "BE" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Szóköz" ++ "Sym+" ++ "Menu+" ++ "Keresés…" ++ "Lekérdezés törlése" ++ "Keresési lekérdezés" ++ "Keresés" ++ "Lekérdezés küldése" ++ "Hangalapú keresés" ++ "Megosztás a következővel:" ++ "Megosztás a következő alkalmazással: %s" ++ "Összecsukás" ++ Kibontás félig ++ Begépelt karakterszám: %2$d/%1$d ++ Maximális karakterszám túllépve: %2$d/%1$d ++ Szöveg törlése ++ Hiba ++ Legördülő menü megjelenítése ++ Párbeszédpanel ikonja ++ Lap ++ Válassza ki, hogy délelőtt vagy délután ++ Óra kiválasztása ++ %1$s óra ++ Perc kiválasztása ++ %1$s perc ++ de. ++ Időbevitelhez váltson óramódba. ++ Óra ++ Perc ++ du. ++ Időpont kiválasztása ++ Időbevitelhez váltson szövegbeviteli módba. ++ Új értesítés ++ Eltávolítás (%1$s) ++ Több mint %1$d új értesítés ++ Váltás a következő hónapra ++ Váltás az előző hónapra ++ Jelenleg kiválasztva: %1$s ++ @android:string/ok ++ %1$s ++ Válasszon dátumot ++ Kiválasztott dátum ++ Napok oszlopa: %1$s ++ Érvénytelen formátum. ++ Példa: %1$s ++ Használja ezt: %1$s ++ Érvénytelen tartomány. ++ Ugrás ehhez az évhez: %1$s ++ Tartományon kívül: %1$s ++ Kezdés dátuma – %1$s ++ %1$s – Befejezés dátuma ++ %1$s – %2$s ++ Válasszon dátumtartományt ++ Kezdés dátuma – Befejezés dátuma ++ Mentés ++ Dátum ++ Befejezés dátuma ++ Kezdés dátuma ++ N ++ H ++ É ++ Váltás naptárbeviteli módra ++ Koppintson a nap kiválasztásához ++ Váltás szövegbeviteli módra ++ Koppintson az év kiválasztásához ++ Jelszó megjelenítése ++ "Keresés" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml +new file mode 100644 +index 0000000..f68a610 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d նոր ծանուցում ++ %d նոր ծանուցում ++ ++ "Անցնել գլխավոր էջ" ++ "Անցնել վերև" ++ "Այլ ընտրանքներ" ++ "Պատրաստ է" ++ "Տեսնել բոլորը" ++ "Ընտրել հավելված" ++ "ԱՆՋԱՏԵԼ" ++ "ՄԻԱՑՆԵԼ" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "բացատ" ++ "Sym+" ++ "Menu+" ++ "Որոնում…" ++ "Ջնջել հարցումը" ++ "Որոնման հարցում" ++ "Որոնել" ++ "Ուղարկել հարցումը" ++ "Ձայնային որոնում" ++ "Կիսվել…" ++ "Կիսվել %s հավելվածի միջոցով" ++ "Ծալել" ++ Ծավալել կիսով չափ ++ Մուտքագրված նիշեր՝ %1$d/%2$d ++ Նիշերի առավելագույն քանակը գերազանցվել է (%1$d/%2$d) ++ Ջնջել տեքստը ++ Սխալ ++ Ցույց տալ իջնող ընտրացանկը ++ Երկխոսության պատուհանի պատկերակ ++ Ներդիր ++ Ընտրել AM կամ PM ++ Ընտրել ժամը ++ Ժամը %1$s է ++ Ընտրեք րոպեն ++ %1$s րոպե ++ AM ++ Ժամը մուտքագրելու համար միացրեք ժամացույցի ռեժիմը: ++ Ժամ ++ Րոպե ++ PM ++ Ժամանակի ընտրություն ++ Ժամը մուտքագրելու համար միացրեք տեքստի մուտքագրման ռեժիմը: ++ Նոր ծանուցում ++ Հեռացնել (%1$s) ++ Ավելի քան %1$d նոր ծանուցում ++ Անցնել հաջորդ ամիս ++ Անցնել նախորդ ամիս ++ Ներկայիս ընտրությունը՝ %1$s ++ @android:string/ok ++ %1$s ++ Ընտրեք ամսաթիվը ++ Ընտրված ամսաթիվը ++ Օրերի սյունակ՝ %1$s ++ Ձևաչափը սխալ է։ ++ Օրինակ՝ %1$s ++ Օգտագործեք՝ %1$s ++ Ընդգրկույթն անվավեր է: ++ Անցնել %1$s թվական ++ Ընդգրկույթից դուրս է՝ %1$s ++ Մեկնարկի ամսաթիվը – %1$s ++ %1$s – Ավարտի ամսաթիվը ++ %1$s – %2$s ++ Ընտրեք ընդգրկույթը ++ Մեկնարկի ամսաթիվը – Ավարտի ամսաթիվը ++ Պահել ++ Ամսաթիվ ++ Ավարտի ամսաթիվը ++ Մեկնարկի ամսաթիվը ++ օ ++ ա ++ տ ++ Անցնել օրացույցի մուտքագրման ռեժիմ ++ Հպեք՝ օրվա ընտությանն անցնելու համար ++ Անցնել տեքստի մուտքագրման ռեժիմին ++ Հպեք՝ տարեթվի ընտությանն անցնելու համար ++ Ցուցադրել գաղտնաբառը ++ "Որոնել" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-in/values-in.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-in/values-in.xml +new file mode 100644 +index 0000000..be9c2bb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-in/values-in.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d notifikasi baru ++ %d notifikasi baru ++ ++ "Tunjukkan jalan ke rumah" ++ "Kembali ke atas" ++ "Opsi lain" ++ "Selesai" ++ "Lihat semua" ++ "Pilih aplikasi" ++ "NONAKTIF" ++ "AKTIF" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "spasi" ++ "Sym+" ++ "Menu+" ++ "Telusuri..." ++ "Hapus kueri" ++ "Telusuri kueri" ++ "Telusuri" ++ "Kirim kueri" ++ "Penelusuran suara" ++ "Bagikan dengan" ++ "Bagikan dengan %s" ++ "Ciutkan" ++ Luaskan setengah ++ Karakter yang dimasukkan %1$d dari %2$d ++ Melebihi batas karakter %1$d dari %2$d ++ Menghapus teks ++ Error ++ Tampilkan menu dropdown ++ Ikon Dialog ++ Tab ++ Pilih AM atau PM ++ Pilih jam ++ Pukul %1$s ++ Pilih menit ++ %1$s menit ++ AM ++ Beralih ke mode jam untuk masukan waktu. ++ Jam ++ Menit ++ PM ++ Pilih waktu ++ Beralih ke mode masukan teks untuk masukan waktu. ++ Notifikasi baru ++ Menghapus %1$s ++ Lebih dari %1$d notifikasi baru ++ Ubah ke bulan berikutnya ++ Ubah ke bulan sebelumnya ++ Pilihan saat ini: %1$s ++ @android:string/ok ++ %1$s ++ Pilih Tanggal ++ Tanggal yang dipilih ++ Kolom hari: %1$s ++ Format tidak valid. ++ Contoh: %1$s ++ Gunakan: %1$s ++ Rentang tidak valid. ++ Buka tahun %1$s ++ Di luar rentang: %1$s ++ Tanggal mulai – %1$s ++ %1$s – Tanggal akhir ++ %1$s – %2$s ++ Pilih Rentang ++ Tanggal mulai – Tanggal akhir ++ Simpan ++ Tanggal ++ Tanggal akhir ++ Tanggal mulai ++ h ++ b ++ t ++ Beralih ke mode masukan kalender ++ Ketuk untuk beralih ke memilih hari ++ Beralih ke mode masukan teks ++ Ketuk untuk beralih ke memilih tahun ++ Tampilkan sandi ++ "Telusuri" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-is/values-is.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-is/values-is.xml +new file mode 100644 +index 0000000..59c7534 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-is/values-is.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ný tilkynning ++ %d nýjar tilkynningar ++ ++ "Fara heim" ++ "Fara upp" ++ "Fleiri valkostir" ++ "Lokið" ++ "Sjá allt" ++ "Veldu forrit" ++ "SLÖKKT" ++ "KVEIKT" ++ "Alt+" ++ "Ctrl+" ++ "eyða" ++ "enter" ++ "Aðgerðarlykill+" ++ "Meta+" ++ "Shift+" ++ "bilslá" ++ "Sym+" ++ "Valmynd+" ++ "Leita…" ++ "Hreinsa fyrirspurn" ++ "Leitarfyrirspurn" ++ "Leit" ++ "Senda fyrirspurn" ++ "Raddleit" ++ "Deila með" ++ "Deila með %s" ++ "Minnka" ++ Stækka til hálfs ++ Innslegnir stafir %1$d af %2$d ++ Yfir hámarksstafafjölda, %1$d af %2$d ++ Hreinsa texta ++ Villa ++ Sýna fellivalmynd ++ Gluggatákn ++ Flipi ++ Velja f.h. eða e.h. ++ Velja tíma ++ klukkan %1$s ++ Veldu mínútur ++ %1$s mínútur ++ f.h. ++ Skipta yfir í klukkustillingu til að færa inn tíma. ++ Klukkustund ++ Mínúta ++ e.h. ++ Veldu tíma ++ Skipta yfir í textastillingu til að færa inn tíma. ++ Ný tilkynning ++ Fjarlægja %1$s ++ Yfir %1$d nýjar tilkynningar ++ Breyta í næsta mánuð ++ Breyta í fyrri mánuð ++ Núverandi val: %1$s ++ @android:string/ok ++ %1$s ++ Veldu dagsetningu ++ Valin dagsetning ++ Dálkur með dögum: %1$s ++ Ógilt snið. ++ Dæmi: %1$s ++ Nota: %1$s ++ Ógilt svið. ++ Fara í árið %1$s ++ Utan sviðs: %1$s ++ Upphafsdagur – %1$s ++ %1$s – lokadagur ++ %1$s – %2$s ++ Veldu tímabil ++ Upphafsdagur – lokadagur ++ Vista ++ Dagsetning ++ Lokadagur ++ Upphafsdagur ++ d ++ m ++ á ++ Skipta yfir í innfærsluaðferð fyrir dagatal ++ Ýttu til að skipta yfir í að velja dag ++ Skipta yfir í innfærsluaðferð fyrir texta ++ Ýttu til að skipta yfir í að velja ár ++ Sýna aðgangsorð ++ "Leit" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-it/values-it.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-it/values-it.xml +new file mode 100644 +index 0000000..7e73a38 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-it/values-it.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d nuova notifica ++ %d nuove notifiche ++ ++ "Portami a casa" ++ "Torna indietro" ++ "Altre opzioni" ++ "Fine" ++ "Mostra tutto" ++ "Scelta di un\'app" ++ "OFF" ++ "ON" ++ "ALT +" ++ "CTRL +" ++ "CANC" ++ "INVIO" ++ "FUNZIONE +" ++ "META +" ++ "MAIUSC +" ++ "SPAZIO" ++ "SYM +" ++ "MENU +" ++ "Cerca…" ++ "Cancella query" ++ "Query di ricerca" ++ "Cerca" ++ "Invia query" ++ "Ricerca vocale" ++ "Condividi con" ++ "Condividi tramite %s" ++ "Comprimi" ++ Espandi a metà ++ %1$d caratteri inserirti su %2$d ++ Sono presenti %2$d caratteri in più rispetto al limite di %1$d ++ Cancella testo ++ Errore ++ Mostra il menu a discesa ++ Icona della finestra di dialogo ++ Scheda ++ Seleziona AM o PM ++ Seleziona l\'ora ++ %1$s in punto ++ Seleziona i minuti ++ %1$s minuti ++ am ++ Passa alla modalità orologio per inserire l\'ora. ++ Ora ++ Minuto ++ pm ++ Seleziona l\'ora ++ Passa alla modalità di immissione testo per inserire l\'ora. ++ Nuova notifica ++ Rimuovi %1$s ++ Più di %1$d nuove notifiche ++ Passa al mese successivo ++ Passa al mese precedente ++ Selezione attuale: %1$s ++ @android:string/ok ++ %1$s ++ Seleziona data ++ Data selezionata ++ Colonna dei giorni: %1$s ++ Formato non valido. ++ Esempio: %1$s ++ Usa: %1$s ++ Intervallo non valido. ++ Vai all\'anno %1$s ++ Non compresa nell\'intervallo: %1$s ++ Data di inizio - %1$s ++ %1$s - Data di fine ++ %1$s - %2$s ++ Seleziona intervallo ++ Data di inizio - Data di fine ++ Salva ++ Data ++ Data di fine ++ Data di inizio ++ g ++ m ++ a ++ Passa alla modalità di immissione Calendario ++ Tocca per passare alla selezione di un giorno ++ Passa alla modalità di immissione Testo ++ Tocca per passare alla selezione di un anno ++ Mostra password ++ "Cerca" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml +new file mode 100644 +index 0000000..e305ea0 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml +@@ -0,0 +1,92 @@ ++ ++ ++ ++ התראה חדשה אחת (%d) ++ %d התראות חדשות ++ %d התראות חדשות ++ %d התראות חדשות ++ ++ "ניווט לדף הבית" ++ "ניווט למעלה" ++ "עוד אפשרויות" ++ "סיום" ++ "הצגת הכול" ++ "בחירת אפליקציה" ++ "כבוי" ++ "מופעל" ++ "Alt+" ++ "Ctrl+‎" ++ "מחיקה" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "רווח" ++ "Sym+" ++ "תפריט+" ++ "חיפוש…" ++ "מחיקת השאילתה" ++ "שאילתת חיפוש" ++ "חיפוש" ++ "שליחת שאילתה" ++ "חיפוש קולי" ++ "שיתוף עם" ++ "שיתוף עם %s" ++ "כיווץ" ++ הרחבה עד האמצע ++ הוזנו %1$d תווים מתוך %2$d ++ מגבלת התווים חורגת ב-%1$d מתוך %2$d ++ מחיקת הטקסט ++ שגיאה ++ הצגת התפריט הנפתח ++ סמל לתיבת דו-שיח ++ מקש Tab ++ יש לבחור ב-AM או ב-PM ++ בחר שעה ++ השעה %1$s ++ בחר דקות ++ %1$s דקות ++ לפנה\"צ ++ העבר למצב שעון לצורך הזנת השעה ++ שעה ++ דקה ++ אחה\"צ ++ בחר שעה ++ העבר למצב קלט טקסט לצורך הזנת השעה ++ התראה חדשה ++ הסרה של %1$s ++ יותר מ-%1$d התראות חדשות ++ מעבר לחודש הבא ++ מעבר לחודש הקודם ++ הבחירה הנוכחית: %1$s ++ @android:string/ok ++ %1$s ++ יש לבחור תאריך ++ התאריך הנבחר ++ עמודה של ימים: %1$s ++ פורמט לא חוקי. ++ דוגמה: %1$s ++ יש להשתמש בפורמט: %1$s ++ טווח לא חוקי. ++ ניווט לשנת %1$s ++ מחוץ לטווח: %1$s ++ תאריך התחלה – %1$s ++ %1$s – תאריך סיום ++ %1$s – %2$s ++ יש לבחור טווח ++ תאריך התחלה - תאריך סיום ++ שמירה ++ תאריך ++ תאריך סיום ++ תאריך התחלה ++ י ++ ח ++ ש ++ החלפה לשיטת קלט של יומן ++ יש להקיש כדי להחליף לבחירת יום ++ החלפה לשיטת קלט של טקסט ++ יש להקיש כדי להחליף לבחירת שנה ++ הצגת סיסמה ++ "חיפוש" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml +new file mode 100644 +index 0000000..b49be74 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d 件の新しい通知 ++ %d 件の新しい通知 ++ ++ "ホームに戻る" ++ "前に戻る" ++ "その他のオプション" ++ "完了" ++ "すべて表示" ++ "アプリの選択" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Space" ++ "Sym+" ++ "Menu+" ++ "検索…" ++ "検索キーワードを削除" ++ "検索キーワード" ++ "検索" ++ "検索キーワードを送信" ++ "音声検索" ++ "共有" ++ "%sと共有" ++ "折りたたむ" ++ 下半分を展開 ++ 入力済み文字数: %1$d/%2$d ++ 文字数制限を超えています(%1$d/%2$d 文字) ++ テキストを消去 ++ エラー ++ プルダウン メニューを表示 ++ ダイアログ アイコン ++ タブ ++ 午前または午後を選択 ++ 時刻を選択してください ++ %1$s時 ++ 分を選択 ++ %1$s分 ++ AM ++ 時刻を時計で入力するモードに切り替えます。 ++ 時間 ++ ++ PM ++ 時間を選択 ++ 時刻をテキストで入力するモードに切り替えます。 ++ 新しい通知 ++ %1$s を削除します ++ %1$d 件以上の新しい通知 ++ 翌月に変更 ++ 前月に変更 ++ 現在の選択: %1$s ++ @android:string/ok ++ %1$s ++ 日付を選択してください ++ 選択した日付 ++ 曜日の列: %1$s ++ 形式が無効です。 ++ 例: %1$s ++ 使用: %1$s ++ 範囲が無効です。 ++ %1$s 年に移動 ++ 範囲外: %1$s ++ 開始日~%1$s ++ %1$s~終了日 ++ %1$s~%2$s ++ 期間を選択してください ++ 開始日~終了日 ++ 保存 ++ 日付 ++ 終了日 ++ 開始日 ++ d ++ m ++ y ++ カレンダー入力モードに切り替え ++ タップすると、日の選択に切り替わります ++ テキスト入力モードに切り替え ++ タップすると、年の選択に切り替わります ++ パスワードを表示 ++ "検索" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml +new file mode 100644 +index 0000000..cedb6c0 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ახალი შეტყობინება ++ %d ახალი შეტყობინება ++ ++ "მთავარზე გადასვლა" ++ "ზემოთ გადასვლა" ++ "სხვა ვარიანტები" ++ "მზადაა" ++ "ყველას ნახვა" ++ "აირჩიეთ აპი" ++ "გამორთვა" ++ "ჩართვა" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "შორისი" ++ "Sym+" ++ "Menu+" ++ "ძიება…" ++ "მოთხოვნის გასუფთავება" ++ "მოთხოვნის ძიება" ++ "ძიება" ++ "მოთხოვნის გადაგზავნა" ++ "ხმოვანი ძიება" ++ "გაზიარება:" ++ "%s-ით გაზიარება" ++ "ჩაკეცვა" ++ ნახევრამდე გაფართოება ++ შეყვანილია %2$d-დან %1$d სიმბოლო ++ გადაჭარბებულია სიმბოლოთა ლიმიტი (%2$d-დან %1$d) ++ ტექსტის გასუფთავება ++ შეცდომა ++ ჩამოსაშლელი მენიუს ჩვენება ++ დიალოგის ხატულა ++ ჩანართი ++ აირჩიეთ AM ან PM ++ აირჩიეთ საათი ++ %1$s საათი ++ აირჩიეთ წუთები ++ %1$s წუთი ++ AM ++ დროის შეყვანისთვის საათის რეჟიმზე გადართვა. ++ საათი ++ წუთი ++ PM ++ აირჩიეთ დრო ++ დროის შეყვანისთვის ტექსტის შეყვანის რეჟიმზე გადართვა. ++ ახალი შეტყობინება ++ %1$s-ის ამოშლა ++ %1$d-ზე მეტი ახალი შეტყობინება ++ შემდეგ თვეზე გადასვლა ++ წინა თვეზე გადასვლა ++ ამჟამინდელი არჩევანი: %1$s ++ @android:string/ok ++ %1$s ++ აირჩიეთ თარიღი ++ არჩეული თარიღი ++ დღეების სვეტი: %1$s ++ არასწორი ფორმატი. ++ მაგალითი: %1$s ++ %1$s-ის გამოყენება ++ დიაპაზონი არასწორია. ++ %1$s წელზე ნავიგაცია ++ დიაპაზონს მიღმა: %1$s ++ დაწყების თარიღი - %1$s ++ %1$s - დასრულების თარიღი ++ %1$s - %2$s ++ აირჩიეთ დიაპაზონი ++ დაწყების თარიღი - დასრულების თარიღი ++ შენახვა ++ თარიღი ++ დასრულების თარიღი ++ დაწყების თარიღი ++ ++ წთ ++ ++ კალენდარში შეყვანის რეჟიმზე გადართვა ++ შეეხეთ დღის არჩევაზე გადასართავად ++ ტექსტის შეყვანის რეჟიმზე გადართვა ++ შეეხეთ წლის არჩევაზე გადასართავად ++ პაროლის ჩვენება ++ "ძიება" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml +new file mode 100644 +index 0000000..4dd0652 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d жаңа хабарландыру ++ %d жаңа хабарландыру ++ ++ "Негізгі бетке өту" ++ "Жоғары қарай өту" ++ "Басқа опциялар" ++ "Дайын" ++ "Барлығын көру" ++ "Қолданбаны таңдау" ++ "ӨШІРУ" ++ "ҚОСУ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "бос орын" ++ "Sym+" ++ "Menu+" ++ "Іздеу…" ++ "Сұрауды өшіру" ++ "Іздеу сұрауы" ++ "Іздеу" ++ "Сұрауды жіберу" ++ "Дауыспен іздеу" ++ "Бөлісу" ++ "%s қолданбасымен бөлісу" ++ "Жию" ++ Жартылай кеңейту ++ %1$d/%2$d таңба енгізілді ++ Таңба саны шегінен асты: %1$d/%2$d ++ Мәтінді өшіру ++ Қате ++ Ашылмалы мәзірді көрсету ++ Диалог белгішесі ++ Қойынды ++ \"AM\" немесе \"PM\" форматын таңдау ++ Сағатты таңдау ++ Сағат: %1$s ++ Минут таңдау ++ %1$s минут ++ AM ++ Уақытты енгізу үшін сағат режиміне өтіңіз. ++ Сағат ++ Mинут ++ PM ++ Уақытты таңдау ++ Уақытты енгізу үшін мәтін енгізу режиміне өтіңіз. ++ Жаңа хабарландыру ++ %1$s мазмұнын өшіру ++ %1$d санынан көп жаңа хабарландыру ++ Келесі айға өту ++ Алдыңғы айға өту ++ Ағымдағы таңдау: %1$s ++ @android:string/ok ++ %1$s ++ Күнді таңдау ++ Таңдалған күн ++ Күндер бағаны: %1$s ++ Формат жарамсыз. ++ Мысал: %1$s. ++ Жарамды формат: %1$s. ++ Ауқым жарамсыз. ++ %1$s жылына жылжу ++ Ауқымнан тыc: %1$s ++ Басталу күні – %1$s ++ %1$s – аяқталу күні ++ %1$s – %2$s ++ Аралықты таңдау ++ Басталу күні – аяқталу күні ++ Сақтау ++ Күні ++ Аяқталу күні ++ Басталу күні ++ к ++ а ++ ж ++ Күнтізбенің енгізу режиміне ауысу ++ Күнді таңдауға ауысу үшін түртіңіз. ++ Мәтін енгізу режиміне ауысу ++ Жылды таңдауға ауысу үшін түртіңіз. ++ Құпия сөзді көрсету ++ "Іздеу" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-km/values-km.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-km/values-km.xml +new file mode 100644 +index 0000000..44195f5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-km/values-km.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ ការជូនដំណឹងថ្មី %d ++ ការជូនដំណឹងថ្មី %d ++ ++ "​ទៅទំព័រដើម" ++ "រំកិលឡើងលើ" ++ "ជម្រើសច្រើនទៀត" ++ "រួចរាល់" ++ "មើលទាំងអស់" ++ "ជ្រើសរើស​កម្មវិធី​​" ++ "បិទ" ++ "បើក" ++ "Alt+" ++ "Ctrl+" ++ "លុប" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ស្វែងរក…" ++ "សម្អាត​សំណួរ" ++ "ស្វែងរកសំណួរ​" ++ "ស្វែងរក" ++ "ដាក់បញ្ជូន​សំណួរ" ++ "ស្វែងរក​តាម​សំឡេង" ++ "ចែករំលែក​ជា​មួយ" ++ "ចែក​រំលែក​ជា​មួយ %s" ++ "បង្រួម" ++ ពង្រីក​ពាក់កណ្ដាល ++ តួ​អក្សរ​បាន​បញ្ចូល​ %1$d នៃ %2$d ++ ដែនកំណត់តួអក្សរបានលើស %1$d នៃ %2$d ++ សម្អាតអក្សរ ++ បញ្ហា ++ បង្ហាញ​ម៉ឺនុយ​ធ្លាក់ចុះ ++ រូប​ប្រអប់បញ្ចូល ++ ផ្ទាំង ++ ជ្រើសរើស AM ឬ PM ++ ជ្រើសរើសម៉ោង ++ ម៉ោង %1$s ++ ជ្រើស​នាទី ++ %1$s នាទី ++ ព្រឹក ++ ប្តូរ​ទៅ​មុខងារ​នាឡិកា​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។ ++ ម៉ោង ++ នាទី​ ++ ល្ងាច ++ ជ្រើស​ម៉ោង ++ ប្តូរ​ទៅ​មុខងារ​បញ្ចូល​អក្សរ​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។ ++ ការជូនដំណឹងថ្មី ++ លុប %1$s ++ ការជូនដំណឹង​ថ្មីៗ​លើស %1$d ហើយ ++ ប្ដូរ​ទៅ​ខែបន្ទាប់ ++ ប្ដូរ​ទៅ​ខែមុន ++ ការជ្រើសរើស​បច្ចុប្បន្ន៖ %1$s ++ @android:string/ok ++ %1$s ++ ជ្រើសរើស​កាល​បរិច្ឆេទ ++ កាលបរិច្ឆេទដែលបាន​ជ្រើសរើស ++ ជួរឈរ​នៃ​ថ្ងៃ៖ %1$s ++ ទម្រង់មិន​ត្រឹមត្រូវទេ។ ++ ឧទាហរណ៍៖ %1$s ++ ប្រើ៖ %1$s ++ ជួរ​មិនត្រឹមត្រូវទេ។ ++ ប្ដូរទៅ​ឆ្នាំ %1$s ++ នៅក្រៅ​ជួរ៖ %1$s ++ កាលបរិច្ឆេទ​ចាប់ផ្ដើម – %1$s ++ %1$s – កាលបរិច្ឆេទ​បញ្ចប់ ++ %1$s – %2$s ++ ជ្រើស​រើស​ចន្លោះ ++ កាលបរិច្ឆេទ​ចាប់ផ្ដើម – កាលបរិច្ឆេទ​បញ្ចប់ ++ រក្សាទុក ++ កាលបរិច្ឆេទ ++ កាល​បរិច្ឆេទ​បញ្ចប់ ++ កាល​បរិច្ឆេទ​ចាប់ផ្ដើម ++ ++ ++ ++ ប្ដូរទៅ​របៀប​បញ្ចូល​ប្រតិទិន ++ ចុច​ដើម្បីប្ដូរទៅ​ការជ្រើសរើសថ្ងៃ ++ ប្ដូរទៅ​របៀប​បញ្ចូល​អក្សរ ++ ចុច​ដើម្បីប្ដូរទៅ​ការជ្រើសរើសឆ្នាំ ++ បង្ហាញពាក្យសម្ងាត់ ++ "ស្វែងរក" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml +new file mode 100644 +index 0000000..6c925a7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ಹೊಸ ಅಧಿಸೂಚನೆಗಳು ++ %d ಹೊಸ ಅಧಿಸೂಚನೆಗಳು ++ ++ "ಹೋಮ್‌ಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" ++ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" ++ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" ++ "ಮುಗಿದಿದೆ" ++ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" ++ "ಆ್ಯಪ್‌ವೊಂದನ್ನು ಆಯ್ಕೆಮಾಡಿ" ++ "ಆಫ್" ++ "ಆನ್" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ಹುಡುಕಿ…" ++ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ" ++ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" ++ "Search" ++ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸಿ" ++ "ಧ್ವನಿ ಹುಡುಕಾಟ" ++ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" ++ "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" ++ "ಕುಗ್ಗಿಸಿ" ++ ಅರ್ಧದಷ್ಟು ವಿಸ್ತರಿಸಿ ++ %2$d ರಲ್ಲಿ %1$d ಅಕ್ಷರಗಳನ್ನು ನಮೂದಿಸಲಾಗಿದೆ ++ ಅಕ್ಷರ ಮಿತಿಯು %2$d ರಲ್ಲಿ %1$d ಮೀರಿದೆ ++ ಪಠ್ಯ ತೆರವುಗೊಳಿಸಿ ++ ದೋಷ ++ ಡ್ರಾಪ್‌ಡೌನ್ ಮೆನು ತೋರಿಸಿ ++ ಡೈಲಾಗ್ ಐಕಾನ್ ++ ಟ್ಯಾಬ್ ++ ಬೆಳಿಗ್ಗೆ ಅಥವಾ ಮಧ್ಯಾಹ್ನ ಆಯ್ಕೆಮಾಡಿ ++ ಸಮಯವನ್ನು ಆಯ್ಕೆಮಾಡಿ ++ %1$s ಗಂಟೆ ++ ನಿಮಿಷಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ ++ %1$s ನಿಮಿಷಗಳು ++ AM ++ ಸಮಯವನ್ನು ನಮೂದಿಸಲು ಗಡಿಯಾರದ ನಮೂನೆಗೆ ಬದಲಿಸಿ. ++ ಗಂಟೆ ++ ನಿಮಿಷ ++ PM ++ ಸಮಯವನ್ನು ಆಯ್ಕೆಮಾಡಿ ++ ಸಮಯವನ್ನು ನಮೂದಿಸಲು ಪಠ್ಯದ ನಮೂನೆಗೆ ಬದಲಿಸಿ. ++ ಹೊಸ ಅಧಿಸೂಚನೆ ++ %1$s ಅನ್ನು ತೆಗೆದುಹಾಕಿ ++ %1$d ಕ್ಕಿಂತ ಹೆಚ್ಚು ಹೊಸ ಅಧಿಸೂಚನೆಗಳು ++ ಮುಂದಿನ ತಿಂಗಳಿಗೆ ಬದಲಿಸಿ ++ ಹಿಂದಿನ ತಿಂಗಳಿಗೆ ಬದಲಿಸಿ ++ ಪ್ರಸ್ತುತ ಆಯ್ಕೆ: %1$s ++ @android:string/ok ++ %1$s ++ ದಿನಾಂಕವನ್ನು ಆಯ್ಕೆಮಾಡಿ ++ ದಿನಾಂಕವನ್ನು ಆಯ್ಕೆಮಾಡಲಾಗಿದೆ ++ ದಿನಗಳ ಕಾಲಮ್: %1$s ++ ಅಮಾನ್ಯವಾದ ಫಾರ್ಮ್ಯಾಟ್. ++ ಉದಾಹರಣೆ: %1$s ++ ಇದನ್ನು ಬಳಸಿ: %1$s ++ ಅಮಾನ್ಯ ಶ್ರೇಣಿ. ++ %1$s ವರ್ಷಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ ++ ವ್ಯಾಪ್ತಿಯ ಹೊರಗಿದೆ: %1$s ++ ಪ್ರಾರಂಭ ದಿನಾಂಕ – %1$s ++ %1$s – ಮುಕ್ತಾಯ ದಿನಾಂಕ ++ %1$s – %2$s ++ ಶ್ರೇಣಿಯನ್ನು ಆಯ್ಕೆಮಾಡಿ ++ ಪ್ರಾರಂಭ ದಿನಾಂಕ – ಮುಕ್ತಾಯ ದಿನಾಂಕ ++ ಉಳಿಸಿ ++ ದಿನಾಂಕ ++ ಮುಕ್ತಾಯ ದಿನಾಂಕ ++ ಪ್ರಾರಂಭ ದಿನಾಂಕ ++ ದಿ ++ ತಿ ++ ++ ಕ್ಯಾಲೆಂಡರ್ ಇನ್‌ಪುಟ್ ಮೋಡ್‌ಗೆ ಬದಲಿಸಿ ++ ದಿನವನ್ನು ಆಯ್ಕೆಗಾಗಿ ಬದಲಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ ++ ಪಠ್ಯ ಇನ್‌ಪುಟ್ ಮೋಡ್‌ಗೆ ಬದಲಿಸಿ ++ ವರ್ಷವನ್ನು ಆಯ್ಕೆಗಾಗಿ ಬದಲಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ ++ ಪಾಸ್‌ವರ್ಡ್ ತೋರಿಸಿ ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml +new file mode 100644 +index 0000000..8342973 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ 새 알림 %d개 ++ 새 알림 %d개 ++ ++ "홈으로 이동" ++ "위로 이동" ++ "추가 옵션" ++ "완료" ++ "전체 보기" ++ "앱 선택" ++ "사용 중지" ++ "사용" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "스페이스바" ++ "Sym+" ++ "Menu+" ++ "검색..." ++ "검색어 삭제" ++ "검색어" ++ "검색" ++ "검색어 보내기" ++ "음성 검색" ++ "공유 대상:" ++ "%s과(와) 공유" ++ "접기" ++ 반만 펼치기 ++ 입력된 글자 %1$d/%2$d ++ 글자 수 제한이 초과되었습니다(%1$d/%2$d). ++ 텍스트 삭제 ++ 오류 ++ 드롭다운 메뉴 표시 ++ 대화상자 아이콘 ++ ++ 오전 또는 오후를 선택하세요. ++ 시간 선택 ++ %1$s시 정각 ++ 분 선택 ++ %1$s분 ++ 오전 ++ 시간 입력을 위해 시계 모드로 전환합니다. ++ 시간 ++ ++ 오후 ++ 시간 선택 ++ 시간 입력을 위해 텍스트 입력 모드로 전환합니다. ++ 새 알림 ++ %1$s 삭제 ++ 새 알림 %1$d개 초과 ++ 다음 달로 변경 ++ 이전 달로 변경 ++ 현재 %1$s 선택됨 ++ @android:string/ok ++ %1$s ++ 날짜 선택 ++ 선택한 날짜 ++ 요일 열: %1$s ++ 형식이 잘못되었습니다. ++ 예: %1$s ++ %1$s 사용 ++ 날짜 범위가 잘못되었습니다. ++ %1$s년으로 이동 ++ %1$s은(는) 범위를 벗어난 날짜입니다. ++ 시작일~%1$s ++ %1$s~종료일 ++ %1$s~%2$s ++ 기간 선택 ++ 시작일~종료일 ++ 저장 ++ 날짜 ++ 종료일 ++ 시작일 ++ ++ ++ ++ 캘린더 입력 모드로 전환 ++ 탭하여 요일 선택으로 전환 ++ 텍스트 입력 모드로 전환 ++ 탭하여 연도 선택으로 전환 ++ 비밀번호 표시 ++ "검색" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml +new file mode 100644 +index 0000000..7d5c25f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d жаңы билдирме ++ %d жаңы билдирме ++ ++ "Башкы бетке чабыттоо" ++ "Мурунку экранга өтүү" ++ "Дагы параметрлер" ++ "Бүттү" ++ "Баарын көрүү" ++ "Колдонмо тандоо" ++ "ӨЧҮК" ++ "КҮЙҮК" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "боштук" ++ "Sym+" ++ "Menu+" ++ "Издөө…" ++ "Сурамды өчүрүү" ++ "Изделген сурам" ++ "Издөө" ++ "Сурам тапшыруу" ++ "Айтып издөө" ++ "Төмөнкү менен бөлүшүү" ++ "%s аркылуу бөлүшүү" ++ "Жыйыштыруу" ++ Жарымын жайып көрсөтүү ++ %2$d ичинен %1$d символ киргизилди ++ Символдордун саны коюлган %2$d чегинен %1$d символго ашып кетти ++ Текстти тазалоо ++ Ката ++ Түрүлмө менюну көрсөтүү ++ Диалог сүрөтчөсү ++ Өтмөк ++ Тандоо: AM же PM ++ Саат тандоо ++ Саат %1$s ++ Мүнөттөрдү тандаңыз ++ %1$s мүнөт ++ AM ++ Убакытты дубал саатынын режиминде киргизиңиз. ++ Саат ++ Мүнөт ++ PM ++ Убакыт тандоо ++ Убакытты текст киргизүү режиминде киргизиңиз. ++ Жаңы билдирме ++ Мазмунду алып салуу (%1$s) ++ %1$d ашуун жаңы билдирме ++ Кийинки айга өзгөртүү ++ Мурунку айга өзгөртүү ++ Учурдагы тандоо: %1$s ++ @android:string/ok ++ %1$s ++ Күн тандоо ++ Тандалган күн ++ Күндөр тилкеси: %1$s ++ Жараксыз формат. ++ Мисалы: %1$s ++ %1$s формтын колднуңуз ++ Жараксыз диапазон. ++ %1$s-жылга өтүү ++ Диапазондон тышкары: %1$s ++ Баштоо күнү – %1$s ++ %1$s – Аяктоо күнү ++ %1$s – %2$s ++ Даталар диапазонун тандоо ++ Баштоо күнү – Аяктоо күнү ++ Сактоо ++ Күн ++ Аяктоо күнү ++ Баштоо күнү ++ к ++ а ++ ж ++ Жылнаамага иш-чара киргизүү режимине которулуу ++ Күн тандоо үчүн таптап коюңуз ++ Текст киргизүү режимине которулуу ++ Жыл тандоо үчүн таптап коюңуз ++ Сырсөздү көрсөтүү ++ "Издөө" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-land/values-land.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-land/values-land.xml +new file mode 100644 +index 0000000..d45f4ba +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-land/values-land.xml +@@ -0,0 +1,41 @@ ++ ++ ++ 48dp ++ 12dp ++ 14dp ++ 450dp ++ 600dp ++ 24dp ++ 24dp ++ 24dp ++ 24dp ++ 20dp ++ 4dp ++ 96dp ++ 0dp ++ 0dp ++ 104dp ++ 68dp ++ 28dp ++ 64dp ++ 32dp ++ 24dp ++ 32dp ++ 0 ++ 6 ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml +new file mode 100644 +index 0000000..c0ec67a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml +@@ -0,0 +1,14 @@ ++ ++ ++ 440dp ++ 60% ++ 90% ++ 60% ++ 90% ++ 55% ++ 80% ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ta/values-ta.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ta/values-ta.xml +new file mode 100644 +index 0000000..34263c1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ta/values-ta.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d புதிய அறிவிப்பு ++ %d புதிய அறிவிப்புகள் ++ ++ "முகப்பிற்குச் செல்லும்" ++ "மேலே செல்லும்" ++ "மேலும் விருப்பங்கள்" ++ "முடிந்தது" ++ "அனைத்தையும் காட்டு" ++ "ஆப்ஸைத் தேர்வுசெய்க" ++ "ஆஃப்" ++ "ஆன்" ++ "Alt மற்றும்" ++ "Ctrl மற்றும்" ++ "delete" ++ "enter" ++ "Function மற்றும்" ++ "Meta மற்றும்" ++ "Shift மற்றும்" ++ "space" ++ "Sym மற்றும்" ++ "Menu மற்றும்" ++ "தேடுக…" ++ "வினவலை அழிக்கும்" ++ "தேடல் வினவல்" ++ "தேடும்" ++ "வினவலைச் சமர்ப்பிக்கும்" ++ "குரல் தேடல்" ++ "இதில் பகிர்" ++ "%s மூலம் பகிர்" ++ "சுருக்கும்" ++ பாதியளவு விரிவாக்கும் ++ %2$d இல் %1$d எழுத்துகள் உள்ளிடப்பட்டுள்ளன ++ %2$d இல் %1$d எழுத்து வரம்பு மீறப்பட்டது ++ உரையை அழிக்கும் ++ பிழை ++ கீழ் தோன்றல் மெனுவைக் காட்டும் பட்டன் ++ உரையாடல் ஐகான் ++ தாவல் ++ AM அல்லது PMமைத் தேர்ந்தெடுக்க உதவும் ++ மணிநேரத்தைத் தேர்ந்தெடுக்க உதவும் ++ %1$s மணி ++ நிமிடத்தைத் தேர்ந்தெடுக்கவும் ++ %1$s நிமிடங்கள் ++ AM ++ நேர உள்ளீட்டிற்காக, கடிகாரப் பயன்முறைக்கு மாற்றும். ++ மணிநேரம் ++ நிமிடம் ++ PM ++ நேரத்தைத் தேர்ந்தெடுக்கவும் ++ உரை உள்ளீட்டிற்காக, கடிகாரப் பயன்முறைக்கு மாற்றும். ++ புதிய அறிவிப்பு ++ %1$sஐ அகற்று ++ %1$d+ புதிய அறிவிப்புகள் ++ அடுத்த மாதத்தைக் காட்டு ++ முந்தைய மாதத்தைக் காட்டு ++ தற்போதைய தேர்வு: %1$s ++ @android:string/ok ++ %1$s ++ தேதியைத் தேர்ந்தெடுக்கவும் ++ தேர்ந்தெடுக்கப்பட்ட தேதி ++ நாட்களின் நெடுவரிசை: %1$s ++ தவறான வடிவம். ++ உதாரணம்: %1$s ++ %1$sஐப் பயன்படுத்துக ++ தவறான வரம்பு. ++ %1$s ஆம் ஆண்டிற்குச் செல்லும் ++ எல்லைக்கு வெளியே உள்ளது: %1$s ++ தொடக்கத் தேதி – %1$s ++ %1$s – முடிவுத் தேதி ++ %1$s – %2$s ++ வரம்பைத் தேர்ந்தெடுக்கவும் ++ தொடக்கத் தேதி - முடிவுத் தேதி ++ சேமி ++ தேதி ++ முடிவுத் தேதி ++ தொடக்கத் தேதி ++ நா ++ மா ++ ++ கேலெண்டர் உள்ளீட்டு முறைக்கு மாற்றும் ++ நாளைத் தேர்வுசெய்வதற்கு மாற்ற தட்டவும் ++ உரை உள்ளீட்டு முறைக்கு மாற்றும் ++ ஆண்டைத் தேர்வுசெய்வதற்கு மாற்ற தட்டவும் ++ கடவுச்சொல்லைக் காட்டு ++ "தேடல்" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-te/values-te.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-te/values-te.xml +new file mode 100644 +index 0000000..62c412e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-te/values-te.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d కొత్త నోటిఫికేషన్ ++ %d కొత్త నోటిఫికేషన్‌లు ++ ++ "హోమ్‌కు నావిగేట్ చేస్తుంది" ++ "పైకి నావిగేట్ చేస్తుంది" ++ "మరిన్ని ఎంపికలు" ++ "పూర్తయింది" ++ "అన్నీ చూడండి" ++ "యాప్‌ను ఎంచుకోండి" ++ "ఆఫ్" ++ "ఆన్" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "స్పేస్" ++ "Sym+" ++ "Menu+" ++ "వెతకండి…" ++ "ప్రశ్నను తీసివేస్తుంది" ++ "శోధన ప్రశ్న" ++ "సెర్చ్" ++ "ప్రశ్నని సమర్పిస్తుంది" ++ "వాయిస్ శోధన" ++ "వీరితో షేర్ చేస్తుంది" ++ "%sతో షేర్ చేస్తుంది" ++ "కుదిస్తుంది" ++ సగాన్ని విస్తరింపజేయండి ++ %2$dలో %1$d అక్షరాలు నమోదు చేయబడ్డాయి ++ అక్షర పరిధి %2$dలో %1$dను అధిగమించింది ++ రాసినదాన్ని తీసివేయి ++ ఎర్రర్ ++ డ్రాప్‌డౌన్ మెనూను చూపు ++ డైలాగ్ చిహ్నం ++ ట్యాబ్ ++ AM లేదా PMను ఎంచుకోండి ++ గంటను ఎంచుకోండి ++ %1$s అవుతుంది ++ నిమిషాలను ఎంచుకోండి ++ %1$s నిమిషాలు ++ AM ++ సమయాన్ని నమోదు చేయడం కోసం గడియారం మోడ్‌కు మారండి. ++ గంట ++ నిమిషం ++ PM ++ సమయాన్ని ఎంచుకోండి ++ సమయాన్ని నమోదు చేయడం కోసం వచన నమోదు మోడ్‌కి మారండి. ++ కొత్త నోటిఫికేషన్ ++ (%1$s)ని తీసివేస్తుంది ++ %1$d కంటే ఎక్కువ కొత్త నోటిఫికేషన్‌లు ++ వచ్చే నెలకు మార్చుతుంది ++ మునుపటి నెలకు మార్చుతుంది ++ ప్రస్తుత ఎంపిక: %1$s ++ @android:string/ok ++ %1$s ++ తేదీని ఎంచుకోండి ++ ఎంచుకున్న తేది ++ రోజుల నిలువు వరుస: %1$s ++ ఫార్మాట్ చెల్లదు. ++ ఉదాహరణ: %1$s ++ ఇలా ఉపయోగించండి: %1$s ++ చెల్లని పరిధి. ++ %1$sసంవత్సరానికి నావిగేట్ చేస్తుంది ++ పరిధి వెలుపల ఉంది: %1$s ++ ప్రారంభ తేదీ – %1$s ++ %1$s – ముగింపు తేది ++ %1$s – %2$s ++ పరిధిని ఎంచుకోండి ++ ప్రారంభ తేది - ముగింపు తేది ++ సేవ్ చేయి ++ తేదీ ++ ముగింపు తేదీ ++ ప్రారంభ తేదీ ++ రో ++ నె ++ సం ++ క్యాలెండర్ ఇన్‌పుట్ మోడ్‌కు మారుస్తుంది ++ \'రోజును ఎంపిక చేసుకోవడం\'కు మారడానికి నొక్కండి ++ వచన ఇన్‌పుట్ మోడ్‌కు మారుస్తుంది ++ \'సంవత్సరాన్ని ఎంపిక చేసుకోవడం\'కు మారడానికి నొక్కండి ++ పాస్‌వర్డ్‌ను చూపు ++ "సెర్చ్" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-th/values-th.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-th/values-th.xml +new file mode 100644 +index 0000000..ae49a79 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-th/values-th.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ การแจ้งเตือนใหม่ %d รายการ ++ การแจ้งเตือนใหม่ %d รายการ ++ ++ "นำทางไปหน้าแรก" ++ "กลับ" ++ "ตัวเลือกอื่น" ++ "เสร็จ" ++ "ดูทั้งหมด" ++ "เลือกแอป" ++ "ปิด" ++ "เปิด" ++ "Alt+" ++ "Ctrl+" ++ "ลบ" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Space" ++ "Sym+" ++ "เมนู+" ++ "ค้นหา…" ++ "ล้างคำค้นหา" ++ "คำค้นหา" ++ "ค้นหา" ++ "ส่งคำค้นหา" ++ "ค้นหาด้วยเสียง" ++ "แชร์กับ" ++ "แชร์ทาง %s" ++ "ยุบ" ++ ขยายรายการครึ่งหนึ่ง ++ ป้อนอักขระแล้ว %1$d จาก %2$d ตัว ++ เกินจำนวนอักขระสูงสุด %1$d จาก %2$d ++ ล้างข้อความ ++ ข้อผิดพลาด ++ แสดงเมนูแบบเลื่อนลง ++ ไอคอนกล่องโต้ตอบ ++ แท็บ ++ เลือก AM หรือ PM ++ เลือกชั่วโมง ++ %1$s นาฬิกา ++ เลือกนาที ++ %1$s นาที ++ AM ++ สลับไปโหมดนาฬิกาเพื่อป้อนเวลา ++ ชั่วโมง ++ นาที ++ PM ++ เลือกเวลา ++ สลับไปโหมดป้อนข้อความเพื่อป้อนเวลา ++ การแจ้งเตือนใหม่ ++ นำ %1$s ออก ++ การแจ้งเตือนใหม่มากกว่า %1$d รายการ ++ เปลี่ยนไปที่เดือนถัดไป ++ เปลี่ยนไปที่เดือนก่อนหน้า ++ การเลือกในปัจจุบัน: %1$s ++ @android:string/ok ++ %1$s ++ เลือกวันที่ ++ วันที่ที่เลือก ++ คอลัมน์ของวัน: %1$s ++ รูปแบบไม่ถูกต้อง ++ ตัวอย่าง: %1$s ++ ใช้: %1$s ++ ช่วงไม่ถูกต้อง ++ ไปที่ปี %1$s ++ วันที่ไม่อยู่ในช่วงที่อนุญาต: %1$s ++ วันที่เริ่มต้น – %1$s ++ %1$s – วันที่สิ้นสุด ++ %1$s – %2$s ++ เลือกช่วง ++ วันที่เริ่มต้น – วันที่สิ้นสุด ++ บันทึก ++ วันที่ ++ วันที่สิ้นสุด ++ วันที่เริ่มต้น ++ ++ ++ ++ สลับไปใช้โหมดป้อนข้อมูลปฏิทิน ++ แตะเพื่อสลับไปใช้การเลือกวัน ++ สลับไปใช้โหมดป้อนข้อมูลข้อความ ++ แตะเพื่อสลับไปใช้การเลือกปี ++ แสดงรหัสผ่าน ++ "ค้นหา" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml +new file mode 100644 +index 0000000..c660b55 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d bagong notification ++ %d na bagong notification ++ ++ "Mag-navigate sa home" ++ "Mag-navigate pataas" ++ "Higit pang opsyon" ++ "Tapos na" ++ "Tingnan lahat" ++ "Pumili ng app" ++ "I-OFF" ++ "I-ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Maghanap…" ++ "I-clear ang query" ++ "Query sa paghahanap" ++ "Maghanap" ++ "Isumite ang query" ++ "Paghahanap gamit ang boses" ++ "Ibahagi sa/kay" ++ "Ibahagi gamit ang %s" ++ "I-collapse" ++ I-expand hanggang gitna ++ Mga character na nailagay %1$d sa %2$d ++ Lumampas sa limitasyon sa bilang ng character %1$d sa %2$d ++ I-clear ang text ++ Error ++ Ipakita ang dropdown na menu ++ Icon ng Dialog ++ Tab ++ Piliin ang AM o PM ++ Pumili ng oras ++ %1$s o\'clock ++ Pumili ng mga minuto ++ %1$s (na) minuto ++ AM ++ Lumipat sa mode ng orasan para sa input na oras. ++ Oras ++ Minuto ++ PM ++ Pumili ng oras ++ Lumipat sa pamamaraan ng pag-input ng text para sa input na oras. ++ Bagong notification ++ Alisin ang %1$s ++ Mahigit %1$d (na) bagong notification ++ Lumipat sa susunod na buwan ++ Lumipat sa nakaraang buwan ++ Kasalukuyang seleksyon: %1$s ++ @android:string/ok ++ %1$s ++ Pumili ng Petsa ++ Piniling petsa ++ Column ng mga araw: %1$s ++ Invalid na format. ++ Halimbawa: %1$s ++ Gamitin: %1$s ++ Invalid na hanay. ++ Mag-navigate patungo sa taong %1$s ++ Wala sa sakop: %1$s ++ Petsa ng pagsisimula – %1$s ++ %1$s – Petsa ng pagtatapos ++ %1$s – %2$s ++ Pumili ng Range ++ Petsa ng pagsisimula – Petsa ng pagtatapos ++ I-save ++ Petsa ++ Petsa ng pagtatapos ++ Petsa ng pagsisimula ++ d ++ m ++ y ++ Lumipat sa pamamaraan ng pag-input ng kalendaryo ++ I-tap para lumipat sa pagpili ng araw ++ Lumipat sa pamamaraan ng pag-input ng text ++ I-tap para lumipat sa pagpili ng taon ++ Ipakita ang password ++ "Maghanap" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml +new file mode 100644 +index 0000000..527bbce +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d yeni bildirim ++ %d yeni bildirim ++ ++ "Eve gidiş yolunu göster" ++ "Yukarı git" ++ "Diğer seçenekler" ++ "Bitti" ++ "Tümünü göster" ++ "Bir uygulama seçin" ++ "KAPAT" ++ "AÇ" ++ "Alt+" ++ "Ctrl+" ++ "sil" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Üst Karakter+" ++ "boşluk" ++ "Sym+" ++ "Menü+" ++ "Ara…" ++ "Sorguyu temizle" ++ "Arama sorgusu" ++ "Ara" ++ "Sorguyu gönder" ++ "Sesli arama" ++ "Şununla paylaş:" ++ "%s ile paylaş" ++ "Daralt" ++ Yarım genişlet ++ Girilen karakter: %1$d / %2$d ++ Karakter sınırı aşıldı %1$d / %2$d ++ Metni temizle ++ Hata ++ Açılır menüyü göster ++ İletişim kutusu simgesi ++ Sekme ++ ÖÖ veya ÖS\'yi seçin ++ Saat seçin ++ Saat %1$s ++ Dakikayı seçin ++ %1$s dakika ++ AM ++ Zaman girişi için saat moduna geçin. ++ Saat ++ Dakika ++ PM ++ Zamanı seçin ++ Zaman girişi için metin girişi moduna geçin. ++ Yeni bildirim ++ %1$s içeriğini kaldır ++ %1$d adetten fazla yeni bildirim ++ Sonraki aya değiştir ++ Önceki aya değiştir ++ Geçerli seçim: %1$s ++ @android:string/ok ++ %1$s ++ Tarih Seçin ++ Seçilen tarih ++ Gün sütunu: %1$s ++ Geçersiz biçim. ++ Örnek: %1$s ++ Tarih biçimi: %1$s ++ Geçersiz aralık. ++ %1$s yılına git ++ İzin verilen aralığın dışında: %1$s ++ Başlangıç tarihi – %1$s ++ %1$s – Bitiş tarihi ++ %1$s-%2$s ++ Aralık Seçin ++ Başlangıç tarihi - Bitiş tarihi ++ Kaydet ++ Tarih ++ Bitiş tarihi ++ Başlangıç tarihi ++ g ++ a ++ y ++ Takvim giriş moduna geç ++ Gün seçmeye geçmek için dokunun ++ Metin giriş moduna geç ++ Yıl seçmeye geçmek için dokunun ++ Şifreyi göster ++ "Ara" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml +new file mode 100644 +index 0000000..0c0ffb5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml +@@ -0,0 +1,92 @@ ++ ++ ++ ++ %d нове сповіщення ++ %d нові сповіщення ++ %d нових сповіщень ++ %d нового сповіщення ++ ++ "Перейти на головну" ++ "Перейти вгору" ++ "Більше опцій" ++ "Готово" ++ "Показати всі" ++ "Вибрати програму" ++ "ЗНИЖКА" ++ "УВІМК." ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "пробіл" ++ "Sym+" ++ "Menu+" ++ "Введіть пошуковий запит…" ++ "Очистити запит" ++ "Пошуковий запит" ++ "Пошук" ++ "Наіслати запит" ++ "Голосовий пошук" ++ "Поділитися:" ++ "Поділитися через додаток %s" ++ "Згорнути" ++ Розгорнути нижню половину ++ Введено символів: %1$d з %2$d ++ Перевищено ліміт символів: %1$d з %2$d ++ Видалити текст ++ Помилка ++ Показати спадне меню ++ Значок вікна ++ Вкладка ++ Виберіть ДП чи ПП ++ Вибрати годину ++ %1$s год ++ Виберіть хвилини ++ %1$s хв ++ дп ++ Перейти в режим годинника, щоб ввести час. ++ Година ++ Хвилина ++ пп ++ Виберіть час ++ Перейти в текстовий режим, щоб ввести час. ++ Нове сповіщення ++ Видалити %1$s ++ Нових сповіщень більше ніж %1$d ++ Перейти до наступного місяця ++ Перейти до попереднього місяця ++ Поточний вибір: %1$s ++ @android:string/ok ++ %1$s ++ Виберіть дату ++ Вибрана дата ++ Стовпець із днями: %1$s ++ Недійсний формат. ++ Приклад: %1$s ++ Використовувати: %1$s ++ Недійсний діапазон. ++ Перейти до %1$s року ++ За межами діапазону: %1$s ++ Дата початку – %1$s ++ %1$s – дата завершення ++ %1$s – %2$s ++ Виберіть діапазон дат ++ Дата початку – дата завершення ++ Зберегти ++ Дата ++ Дата завершення ++ Дата початку ++ д ++ м ++ р ++ Перейти в режим введення в календарі ++ Натисніть, щоб вибрати день ++ Перейти в режим введення тексту ++ Натисніть, щоб вибрати рік ++ Показувати пароль ++ "Пошук" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ur/values-ur.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ur/values-ur.xml +new file mode 100644 +index 0000000..8bedb22 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-ur/values-ur.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d نئی اطلاع ++ %d نئی اطلاعات ++ ++ "گھر کی طرف نیویگیٹ کریں" ++ "اوپر نیویگیٹ کریں" ++ "مزید اختیارات" ++ "ہو گیا" ++ "سبھی دیکھیں" ++ "ایک ایپ منتخب کریں" ++ "آف" ++ "آن" ++ "Alt+‎" ++ "Ctrl+‎" ++ "delete" ++ "enter" ++ "Function+‎" ++ "Meta+‎" ++ "Shift+‎" ++ "space" ++ "Sym+‎" ++ "Menu+‎" ++ "تلاش کریں…" ++ "استفسار صاف کریں" ++ "تلاش کا استفسار" ++ "تلاش کریں" ++ "استفسار جمع کرائیں" ++ "صوتی تلاش" ++ "اس کے ساتھ اشتراک کریں" ++ "%s کے ساتھ اشتراک کریں" ++ "سکیڑیں" ++ نصف تک پھیلائیں ++ %2$d میں سے %1$d حروف درج کیے گئے ++ حروف کی تعداد کی حد %2$d سے %1$d پہنچ گئی ++ ٹیکسٹ صاف کریں ++ خرابی ++ ڈراپ ڈاؤن مینو دکھائیں ++ ڈائیلاگ کا آئیکن ++ ٹیب ++ AM یا PM منتخب کریں ++ گھنٹہ منتخب کریں ++ %1$s بجے ++ منٹ منتخب کریں ++ %1$s منٹ ++ قبل از دوپہر ++ وقت ان پٹ کے لیے گھڑی و‏ضع پر سوئچ کریں۔ ++ گھنٹہ ++ منٹ ++ رات ++ وقت منتخب کریں ++ وقت ان پٹ کے لیے ٹیکسٹ ان پٹ وضع پر سوئچ کریں۔ ++ نئی اطلاع ++ %1$s کو ہٹائیں ++ %1$d سے زیادہ نئی اطلاعات ++ اگلے مہینہ میں منتقل کریں ++ گزشتہ ماہ میں منتقل کریں ++ موجودہ انتخاب: %1$s ++ @android:string/ok ++ %1$s ++ تاریخ منتخب کریں ++ منتخب کردہ تاریخ ++ دنوں کا کالم: %1$s ++ غلط فارمیٹ۔ ++ مثال: %1$s۔ ++ %1$s استعمال کریں ++ غلط رینج۔ ++ %1$s سال پر نیویگیٹ کریں ++ حد سے باہر: %1$s ++ تاریخ آغاز – %1$s ++ %1$s – تاریخ اختتام ++ %1$s – %2$s ++ رینج منتخب کریں ++ تاریخ آغاز - تاریخ اختتام ++ محفوظ کریں ++ تاریخ ++ تاریخ اختتام ++ تاریخ آغاز ++ d ++ m ++ y ++ کیلنڈر ان پٹ وضع پر سوئچ کریں ++ دن کو منتخب کرنے کے ليے سوئچ پر تھپتھپائیں ++ متنی ان پٹ وضع پر سوئچ کریں ++ سال کو منتخب کرنے کے ليے سوئچ پر تھپتھپائیں ++ پاس ورڈ دکھائیں ++ "تلاش کریں" ++ "+999" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-uz/values-uz.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-uz/values-uz.xml +new file mode 100644 +index 0000000..3cf7edc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-uz/values-uz.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d ta yangi bildirishnoma ++ %d ta yangi bildirishnoma ++ ++ "Boshiga o‘tish" ++ "Yopish" ++ "Yana" ++ "OK" ++ "Hammasi" ++ "Ilovani tanlang" ++ "YOQILMAGAN" ++ "YONIQ" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "Probel" ++ "Sym+" ++ "Menyu+" ++ "Qidirish…" ++ "So‘rovni o‘chirish" ++ "Qidiruv so‘rovi" ++ "Qidiruv" ++ "So‘rov yaratish" ++ "Ovozli qidiruv" ++ "Ulashish" ++ "%s orqali ulashish" ++ "Yig‘ish" ++ Yarmiga kengaytirish ++ %1$d/%2$d ta belgi kiritildi ++ Harflar soni (%1$d) cheklovdan (%2$d) oshib ketdi ++ Matnni tozalash ++ Xato ++ Pastga ochiluvchi menyuni ochish ++ Muloqot ikonkasi ++ Tab : Varaq ++ Tushdan oldin yoki keyinligini tanlang ++ Soatni tanlang ++ %1$s soat ++ Daqiqalarni tanlash ++ %1$s daqiqa ++ AM ++ Vaqtni kiritish uchun soat rejimiga o‘ting. ++ Soat ++ Daqiqa ++ PM ++ Vaqtni tanlang ++ Vaqtni kiritish uchun matn kiritish rejimiga o‘ting. ++ Yangi bildirishnoma ++ Olib tashlash: %1$s ++ Yana %1$d dan ortiq bildirishnoma ++ Keyingi oyga oʻzgartirish ++ Avvalgi oyga oʻzgartirish ++ Joriy tanlov: %1$s ++ @android:string/ok ++ %1$s ++ Sanani tanlang ++ Tanlangan sana ++ Kunlar ustuni: %1$s ++ Yaroqsiz format. ++ Masalan: %1$s ++ Ishlatish: %1$s ++ Yaroqsiz oraliq. ++ Yilga nazar solish: %1$s ++ Chegaradan tashqari: %1$s ++ Boshlanish sanasi – %1$s ++ %1$s – Tugash sanasi ++ %1$s – %2$s ++ Oraliqni tanlang ++ Boshlanishi – Tugashi ++ Saqlash ++ Sana ++ Tugash sanasi ++ Boshlanish sanasi ++ k ++ o ++ y ++ Taqvim kiritish rejimiga oʻtish ++ Kunni tanlash uchun bosing ++ Matn kiritish rejimiga oʻtish ++ Yilni tanlash uchun bosing ++ Parol ochiq tursin ++ "Qidiruv" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml +new file mode 100644 +index 0000000..5ee2feb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml +@@ -0,0 +1,8 @@ ++ ++ ++ 4dp ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml +new file mode 100644 +index 0000000..f85a197 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml +@@ -0,0 +1,62 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml +new file mode 100644 +index 0000000..2ae8fdc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml +@@ -0,0 +1,20 @@ ++ ++ ++ 0px ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml +new file mode 100644 +index 0000000..20c89dc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml +@@ -0,0 +1,413 @@ ++ ++ ++ @color/androidx_core_secondary_text_default_material_light ++ 0dp ++ 1dp ++ 0.48 ++ 0.48 ++ 0.16 ++ 0.48 ++ 0.24 ++ 0.24 ++ 0.08 ++ 0.24 ++ 0dp ++ 0dp ++ 12dp ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml +new file mode 100644 +index 0000000..1ad118e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml +new file mode 100644 +index 0000000..2e5cef6 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml +@@ -0,0 +1,62 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml +new file mode 100644 +index 0000000..f9b3c08 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml +@@ -0,0 +1,5 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml +new file mode 100644 +index 0000000..4c30667 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml +new file mode 100644 +index 0000000..82e7ffe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d thông báo mới ++ %d thông báo mới ++ ++ "Chỉ đường về nhà" ++ "Di chuyển lên" ++ "Tùy chọn khác" ++ "Xong" ++ "Xem tất cả" ++ "Chọn một ứng dụng" ++ "TẮT" ++ "BẬT" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Tìm kiếm…" ++ "Xóa truy vấn" ++ "Truy vấn tìm kiếm" ++ "Tìm kiếm" ++ "Gửi truy vấn" ++ "Tìm kiếm bằng giọng nói" ++ "Chia sẻ với" ++ "Chia sẻ với %s" ++ "Thu gọn" ++ Mở rộng một nửa ++ Đã nhập %1$d trong số %2$d ký tự ++ Đã vượt quá giới hạn ký tự %1$d/%2$d ++ Xóa văn bản ++ Lỗi ++ Hiển thị menu thả xuống ++ Biểu tượng hộp thoại ++ Thẻ ++ Chọn SA hoặc CH ++ Chọn giờ ++ %1$s giờ ++ Chọn phút ++ %1$s phút ++ SA ++ Chuyển sang chế độ đồng hồ để nhập thời gian. ++ Giờ ++ Phút ++ CH ++ Chọn thời gian ++ Chuyển sang chế độ nhập văn bản để nhập thời gian. ++ Thông báo mới ++ Xóa %1$s ++ Hơn %1$d thông báo mới ++ Chuyển sang tháng tiếp theo ++ Chuyển về tháng trước ++ Lựa chọn hiện tại: %1$s ++ @android:string/ok ++ %1$s ++ Chọn ngày ++ Ngày đã chọn ++ Cột ngày: %1$s ++ Định dạng không hợp lệ. ++ Ví dụ: %1$s ++ Sử dụng: %1$s ++ Phạm vi không hợp lệ. ++ Chuyển tới năm %1$s ++ Nằm ngoài phạm vi: %1$s ++ Ngày bắt đầu – %1$s ++ %1$s – Ngày kết thúc ++ %1$s – %2$s ++ Chọn dải ô ++ Ngày bắt đầu – Ngày kết thúc ++ Lưu ++ Ngày ++ Ngày kết thúc ++ Ngày bắt đầu ++ d ++ m ++ y ++ Chuyển sang chế độ nhập lịch ++ Nhấn để chuyển sang chế độ chọn một ngày ++ Chuyển sang chế độ nhập văn bản ++ Nhấn để chuyển sang chế độ chọn một năm ++ Hiển thị mật khẩu ++ "Tìm kiếm" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w320dp-land-v13/values-w320dp-land-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w320dp-land-v13/values-w320dp-land-v13.xml +new file mode 100644 +index 0000000..b4fed6b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w320dp-land-v13/values-w320dp-land-v13.xml +@@ -0,0 +1,5 @@ ++ ++ ++ 24dp ++ 36dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml +new file mode 100644 +index 0000000..fa14e49 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml +@@ -0,0 +1,11 @@ ++ ++ ++ 4dp ++ 18dp ++ 40dp ++ 2dp ++ 2dp ++ 40dp ++ 40dp ++ 4dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w480dp-port-v13/values-w480dp-port-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w480dp-port-v13/values-w480dp-port-v13.xml +new file mode 100644 +index 0000000..e8cf2fe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w480dp-port-v13/values-w480dp-port-v13.xml +@@ -0,0 +1,11 @@ ++ ++ ++ 0dp ++ 22dp ++ 48dp ++ 2dp ++ 2dp ++ 48dp ++ 48dp ++ 0dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml +new file mode 100644 +index 0000000..aaaf955 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 64dp ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml +new file mode 100644 +index 0000000..2d85812 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml +@@ -0,0 +1,12 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml +new file mode 100644 +index 0000000..deecc9e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +new file mode 100644 +index 0000000..b499d2c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +@@ -0,0 +1,9 @@ ++ ++ ++ 60% ++ 90% ++ 50% ++ 70% ++ 45% ++ 72% ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +new file mode 100644 +index 0000000..b8332a4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d 条新通知 ++ %d 条新通知 ++ ++ "转到首页" ++ "转到上一层级" ++ "更多选项" ++ "完成" ++ "查看全部" ++ "选择应用" ++ "关闭" ++ "开启" ++ "Alt+" ++ "Ctrl+" ++ "Delete 键" ++ "Enter 键" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "空格键" ++ "Sym+" ++ "Menu+" ++ "搜索…" ++ "清除查询" ++ "搜索查询" ++ "搜索" ++ "提交查询" ++ "语音搜索" ++ "分享对象" ++ "与%s分享" ++ "收起" ++ 展开到一半高度 ++ 输入了 %1$d 个字符(上限为 %2$d 个) ++ 超出字符数限制(共 %1$d 个,上限为 %2$d 个) ++ 清除文字 ++ 错误 ++ 显示下拉菜单 ++ 对话框图标 ++ 标签页 ++ 选择上午或下午 ++ 选择小时 ++ %1$s 点 ++ 选择分钟 ++ %1$s 分 ++ 上午 ++ 切换到时钟模式来输入时间。 ++ 小时 ++ 分钟 ++ 下午 ++ 选择时间 ++ 切换到文字输入模式来输入时间。 ++ 新通知 ++ 移除%1$s ++ 有 %1$d 条以上的新通知 ++ 转到下个月 ++ 转到上个月 ++ 当前的选择是:%1$s ++ @android:string/ok ++ %1$s ++ 请选择日期 ++ 选定的日期 ++ 表示周几的列:%1$s ++ 格式无效。 ++ 示例:%1$s ++ 使用:%1$s ++ 范围无效。 ++ 转到 %1$s 年 ++ 不在允许的范围内:%1$s ++ 开始日期 – %1$s ++ %1$s – 结束日期 ++ %1$s - %2$s ++ 请选择范围 ++ 开始日期 - 结束日期 ++ 保存 ++ 日期 ++ 结束日期 ++ 开始日期 ++ d ++ m ++ y ++ 切换到日历输入模式 ++ 点按即可切换到选择某天 ++ 切换到文本字段输入模式 ++ 点按即可切换到选择某年 ++ 显示密码 ++ "搜索" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +new file mode 100644 +index 0000000..07f670f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d 個新通知 ++ %d 個新通知 ++ ++ "瀏覽主頁" ++ "向上瀏覽" ++ "更多選項" ++ "完成" ++ "查看全部" ++ "選擇應用程式" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "刪除" ++ "Enter 鍵" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "空白鍵" ++ "Sym +" ++ "Menu +" ++ "搜尋…" ++ "清除查詢" ++ "搜尋查詢" ++ "搜尋" ++ "提交查詢" ++ "語音搜尋" ++ "分享對象" ++ "使用「%s」分享" ++ "收合" ++ 展開一半 ++ 已輸入 %1$d 個字元 (共 %2$d 個) ++ 超出字元限制 %1$d 個字元 (上限 %2$d 個字元) ++ 清除文字 ++ 錯誤 ++ 顯示下拉式選單 ++ 對話框圖示 ++ 分頁 ++ 選擇上午或下午 ++ 選取時段 ++ %1$s 點 ++ 選取分鐘 ++ %1$s 分 ++ AM ++ 切換至時鐘模式即可輸入時間。 ++ 小時 ++ 分鐘 ++ PM ++ 選取時間 ++ 切換至文字輸入模式即可輸入時間。 ++ 新通知 ++ 移除「%1$s」 ++ 超過 %1$d 則新通知 ++ 變更為下個月 ++ 變更為上個月 ++ 目前選取:%1$s ++ @android:string/ok ++ %1$s ++ 請選擇日期 ++ 已選取日期 ++ 日期欄:%1$s ++ 格式無效。 ++ 例如:%1$s ++ 使用:%1$s ++ 範圍無效。 ++ 瀏覽至 %1$s 年 ++ 超出範圍:%1$s ++ 開始日期 – %1$s ++ %1$s – 結束日期 ++ %1$s – %2$s ++ 請選擇範圍 ++ 開始日期 – 結束日期 ++ 儲存 ++ 日期 ++ 結束日期 ++ 開始日期 ++ ++ ++ ++ 切換至日曆輸入模式 ++ 輕按以切換至選擇日期 ++ 切換至文字輸入模式 ++ 輕按以切換至選擇年份 ++ 顯示密碼 ++ "搜尋" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +new file mode 100644 +index 0000000..f0d7c80 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d 則新通知 ++ %d 則新通知 ++ ++ "瀏覽首頁" ++ "向上瀏覽" ++ "更多選項" ++ "完成" ++ "查看全部" ++ "選擇應用程式" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "Delete 鍵" ++ "Enter 鍵" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "空格鍵" ++ "Sym +" ++ "Menu +" ++ "搜尋…" ++ "清除查詢" ++ "搜尋查詢" ++ "搜尋" ++ "提交查詢" ++ "語音搜尋" ++ "分享對象" ++ "與「%s」分享" ++ "收合" ++ 展開一半 ++ 已輸入 %1$d 個字元 (上限為 %2$d 個字元) ++ 超過字元限制 (共 %1$d 字元,上限 %2$d 字元) ++ 清除文字 ++ 錯誤 ++ 顯示下拉式選單 ++ 對話方塊圖示 ++ 分頁標籤 ++ 選取上午或下午 ++ 請選取時段 ++ %1$s 點 ++ 選取分鐘數 ++ %1$s 分 ++ AM ++ 切換至時鐘模式來輸入時間。 ++ 小時 ++ 分鐘 ++ PM ++ 選取時間 ++ 切換至文字輸入模式來輸入時間。 ++ 新通知 ++ 移除 %1$s ++ 超過 %1$d 則新通知 ++ 變更至下個月 ++ 變更至上個月 ++ 目前選取:%1$s ++ @android:string/ok ++ %1$s ++ 選取日期 ++ 所選日期 ++ 星期幾資料欄:%1$s ++ 格式無效。 ++ 範例:%1$s ++ 使用:%1$s ++ 日期範圍無效。 ++ 前往 %1$s 年 ++ 超出日期範圍:%1$s ++ 開始日期 – %1$s ++ %1$s – 結束日期 ++ %1$s – %2$s ++ 選取範圍 ++ 開始日期 - 結束日期 ++ 儲存 ++ 日期 ++ 結束日期 ++ 開始日期 ++ d ++ m ++ y ++ 切換至日曆輸入模式 ++ 輕觸即可切換為選取星期幾 ++ 切換至文字輸入模式 ++ 輕觸即可切換為選取年份 ++ 顯示密碼 ++ "搜尋" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml +new file mode 100644 +index 0000000..91dfa69 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ %d izaziso ezintsha ++ %d izaziso ezintsha ++ ++ "Zulazulela ekhaya" ++ "Zulazulela phezulu" ++ "Ezinye izinketho" ++ "Kwenziwe" ++ "Buka konke" ++ "Khetha insiza" ++ "VALA" ++ "VULA" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Imenyu+" ++ "Sesha…" ++ "Sula inkinga" ++ "Sesha umbuzo" ++ "Sesha" ++ "Thumela umbuzo" ++ "Ukusesha ngezwi" ++ "Yabelana no" ++ "Yabelana ne-%s" ++ "Goqa" ++ Nweba phakathi ++ Izinhlamvu ezifakiwe ezingu-%1$d zokungu-%2$d ++ Umkhawulo wezinhlamvu udlule u-%1$d kokungu-%2$d ++ Sula umbhalo ++ Iphutha ++ Bonisa imenyu yokudonsela phansi ++ Isithonjana sebhokisi ++ Ithebhu ++ Khetha u-AM noma u-PM ++ Khetha ihora ++ %1$s ezimpondweni ++ Khetha amaminithi ++ amaminithi angu-%1$s ++ AM ++ Shintshela kumodi yewashi ngokufakwa kwesikhathi. ++ Ihora ++ Iminithi ++ PM ++ Khetha isikhathi ++ Shintshela kumodi yokufaka umbhalo ngokufaka isikhathi. ++ Isaziso esisha ++ Susa i-%1$s ++ Izaziso ezintsha ezingaphezu kokungu-%1$d ++ Shintshela kunyanga elandelayo ++ Shintshela kunyanga edlule ++ Ukukhetha kwamanje: %1$s ++ @android:string/ok ++ %1$s ++ Khetha Idethi ++ Khetha idethi ++ Ikholomu yezinsuku: %1$s ++ Ifomethi engavumelekile. ++ Isibonelo: %1$s ++ Sebenzisa: %1$s ++ Ibanga elingavumelekile. ++ Zulela onyakeni %1$s ++ Ikude kubanga: %1$s ++ Idethi yokuqala – %1$s ++ %1$s – Idethi yokuphela ++ %1$s – %2$s ++ Khetha Ibanga ++ Idethi yokuqala – Idethi yokuphela ++ Londoloza ++ Idethi ++ Idethi yokuphela ++ Idethi yokuqala ++ d ++ m ++ y ++ Shintshela kwimodi yokufaka yekhalenda ++ Thepha ukuze ushintshe ekukhetheni usuku ++ Shintshela kwimodi yokufaka yombhalo ++ Thepha ukuze ushintshele ekukhetheni unyaka ++ Bonisa iphasiwedi ++ "Sesha" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values/values.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..2b4dd45 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir/values/values.xml +@@ -0,0 +1,7900 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ true ++ true ++ #ff000000 ++ #ffffffff ++ #7fa87f ++ @android:color/black ++ @android:color/black ++ @color/material_deep_teal_200 ++ @color/material_deep_teal_500 ++ #1f000000 ++ #8a000000 ++ @color/material_grey_800 ++ @android:color/white ++ @color/material_grey_850 ++ @color/material_grey_50 ++ #80ffffff ++ #80000000 ++ @color/bright_foreground_material_light ++ @color/bright_foreground_material_dark ++ @android:color/white ++ @android:color/black ++ #ff5a595b ++ #ffd6d7d7 ++ #FF424242 ++ #FFFFFFFF ++ #03000000 ++ #37000000 ++ #14000000 ++ #121212 ++ #CF6679 ++ #FFFFFF ++ #000000 ++ #000000 ++ #000000 ++ #FFFFFF ++ #BA86FC ++ #000000 ++ #3700B3 ++ #03DAC6 ++ #03DAC6 ++ #121212 ++ #FFFFFF ++ #B00020 ++ #000000 ++ #FFFFFF ++ #FFFFFF ++ #000000 ++ #000000 ++ #6200EE ++ #3700B3 ++ #3700B3 ++ #03DAC6 ++ #018786 ++ #FFFFFF ++ @android:color/transparent ++ #14000000 ++ #44000000 ++ #0A000000 ++ #0F000000 ++ #1AFFFFFF ++ #2EFFFFFF ++ #323232 ++ #80bebebe ++ #80323232 ++ #ffbebebe ++ #ff323232 ++ #ff7043 ++ #ff5722 ++ @android:color/white ++ @android:color/black ++ #6680cbc4 ++ #66009688 ++ #ff37474f ++ #ff263238 ++ #ff21272b ++ #ff80cbc4 ++ #ff008577 ++ #fff5f5f5 ++ #ffe0e0e0 ++ #fffafafa ++ #ff757575 ++ #ff424242 ++ #ff303030 ++ #ff212121 ++ #61000000 ++ #00ffffff ++ #52000000 ++ #6B000000 ++ #1F000000 ++ #0A000000 ++ #00000000 ++ #DE000000 ++ #ffffffff ++ #ff9e9e9e ++ @android:color/black ++ @color/material_grey_600 ++ @color/material_grey_900 ++ @color/material_grey_100 ++ #ffffffff ++ #de000000 ++ #4Dffffff ++ #39000000 ++ #33ffffff ++ #1f000000 ++ #b3ffffff ++ #8a000000 ++ #36ffffff ++ #24000000 ++ #ff616161 ++ #ffbdbdbd ++ #ffbdbdbd ++ #fff1f1f1 ++ #e6616161 ++ #e6FFFFFF ++ 16dp ++ 72dp ++ 56dp ++ 0dp ++ 0dp ++ 4dp ++ 16dp ++ 10dp ++ 6dp ++ 48dp ++ 180dp ++ 5dp ++ -3dp ++ 48dp ++ 48dp ++ 36dp ++ 48dp ++ 48dp ++ @dimen/abc_control_inset_material ++ 6dp ++ 8dp ++ @dimen/abc_control_padding_material ++ 720dp ++ 320dp ++ 2dp ++ 4dp ++ 4dp ++ 2dp ++ 80% ++ 100% ++ 320dp ++ 320dp ++ 8dp ++ 8dp ++ 65% ++ 95% ++ 24dp ++ 18dp ++ 8dp ++ 0.30 ++ 0.26 ++ 32dip ++ 8dip ++ 8dip ++ 7dp ++ 4dp ++ 10dp ++ 16dp ++ 80dp ++ 64dp ++ 48dp ++ @dimen/abc_action_bar_content_inset_material ++ 296dp ++ 4dp ++ 48dip ++ 320dip ++ 2dp ++ 2dp ++ 20dp ++ 48dp ++ 36dp ++ 16dp ++ 3dp ++ 14sp ++ 14sp ++ 14sp ++ 12sp ++ 34sp ++ 45sp ++ 56sp ++ 112sp ++ 24sp ++ 22sp ++ 18sp ++ 14sp ++ 16sp ++ 14sp ++ 16sp ++ 16dp ++ 20sp ++ 20dp ++ 16dp ++ 16dp ++ 1dp ++ 2dp ++ 2dp ++ 64dp ++ 4dp ++ 6dp ++ 8dp ++ 4dp ++ 2dp ++ 320dp ++ 320dp ++ 10dp ++ 100dp ++ 4dp ++ 168dp ++ 96dp ++ 14sp ++ 8dp ++ 56dp ++ 24dp ++ 96dp ++ 56dp ++ 10dp ++ 8dp ++ 1dp ++ 12sp ++ 8dp ++ 16dp ++ 64dp ++ 0.5dp ++ 6dp ++ 24dp ++ 40dp ++ 56dp ++ 6dp ++ 6dp ++ 16dp ++ 32dp ++ 24dp ++ 16dp ++ 32dp ++ 280dp ++ 8dp ++ 8dp ++ 128dp ++ 1.0 ++ 0dp ++ 6dp ++ 0dp ++ -1px ++ -1px ++ 12dp ++ 14dp ++ 16dp ++ 14sp ++ 264dp ++ 72dp ++ 14sp ++ 12sp ++ 5dp ++ 0.30 ++ 0.26 ++ 8dp ++ 0dp ++ 50dp ++ 0.26 ++ 0.20 ++ 0.12 ++ 0.50 ++ 0.38 ++ 0.70 ++ 0.54 ++ 20dp ++ 800dp ++ 120dp ++ 640dp ++ 24dp ++ 44dp ++ 4dp ++ 4dp ++ 2dp ++ 15dp ++ 96dp ++ 12dp ++ 52dp ++ 256dp ++ -6dp ++ -12dp ++ 2dp ++ 0.38 ++ 0.87 ++ 0.6 ++ 12dp ++ 23dp ++ 8dp ++ 32dp ++ 4dp ++ 8dp ++ 4dp ++ 12dp ++ 8dp ++ 2dp ++ 200px ++ 100px ++ 245dp ++ 488dp ++ 56dp ++ 560dp ++ 340dp ++ 24dp ++ 80dp ++ 24dp ++ 24dp ++ 80dp ++ 24dp ++ 4dp ++ 4dp ++ 4dp ++ 6dp ++ 10sp ++ 12dp ++ 12dp ++ 8dp ++ 60dp ++ 16dp ++ 5dp ++ 8dp ++ 0dp ++ 56dp ++ 4dp ++ 64dp ++ 0dp ++ 0dp ++ 2dp ++ 2dp ++ 2dp ++ 12dp ++ 8dp ++ 6dp ++ 0.07 ++ 320dp ++ 4dp ++ 16dp ++ 16dp ++ 4dp ++ 6dp ++ 8dp ++ 1dp ++ 4dp ++ 8dp ++ 8dp ++ 14sp ++ 0dp ++ 64dp ++ 52dp ++ 8dp ++ 0dp ++ 12dp ++ 15dp ++ 32dp ++ 3dp ++ 1dp ++ 1dp ++ 36dp ++ 24dp ++ 16dp ++ 12dp ++ 4dp ++ 1dp ++ 120dp ++ 128dp ++ 32dp ++ 12dp ++ 8dp ++ 24dp ++ 0dp ++ 480dp ++ 2dp ++ 0dp ++ 4dp ++ 48dp ++ 4dp ++ 8dp ++ 104dp ++ 20dp ++ 24dp ++ 100dp ++ 16dp ++ 28dp ++ 68dp ++ 18dp ++ 52dp ++ 8dp ++ 8dp ++ 88dp ++ 8dp ++ 24dp ++ 4dp ++ 5dp ++ 1dp ++ 8dp ++ 3dp ++ 14sp ++ 12dp ++ 8dp ++ -8dp ++ 8dp ++ 12dp ++ 24dp ++ 0dp ++ 0dp ++ 6dp ++ 20dp ++ 20dp ++ 24dp ++ 12dp ++ 48dp ++ 120dp ++ 20dp ++ 12dp ++ 12dp ++ 0dp ++ 2dp ++ 6dp ++ 6dp ++ 48dp ++ 2dp ++ 6dp ++ 0.00 ++ 0.24 ++ 0.08 ++ 0.24 ++ 100dp ++ 0.00 ++ 0.12 ++ 0.04 ++ 0.12 ++ 48dp ++ 24dp ++ 8dp ++ 0dp ++ 22dp ++ 14dp ++ 24dp ++ 8dp ++ 4dp ++ 14dp ++ 56dp ++ 72dp ++ 8dp ++ 14dp ++ 24dp ++ 8dp ++ 16dp ++ 12dp ++ 4dp ++ 2dp ++ 4dp ++ 4dp ++ 18dp ++ 40dp ++ 20dp ++ 40dp ++ 28dp ++ 2.5dp ++ 4dp ++ 3dp ++ 2dp ++ 4dp ++ 0dp ++ 4dp ++ 4dp ++ 24dp ++ 4dp ++ 13dp ++ 26dp ++ 1dp ++ 10dp ++ 4dp ++ 16dp ++ 24dp ++ 48dp ++ 0.5 ++ 4dp ++ 0.8 ++ 8dp ++ 8dp ++ 8dp ++ 4dp ++ 4dp ++ 0dp ++ 4dp ++ 1dp ++ 2dp ++ 16dp ++ 4dp ++ 16dp ++ 4dp ++ 56dp ++ 14dp ++ 4dp ++ 32dp ++ 32dp ++ 12dp ++ 30dp ++ 32dp ++ 13sp ++ 12dp ++ 8dp ++ 64dp ++ 64dp ++ 10dp ++ @dimen/notification_content_margin_start ++ 16dp ++ 2dp ++ 3dp ++ 24dp ++ 13sp ++ 10dp ++ 5dp ++ 52dp ++ 168dp ++ 96dp ++ 14sp ++ 8dp ++ 56dp ++ 24dp ++ 96dp ++ 56dp ++ 10dp ++ 1dp ++ 12sp ++ 2dp ++ 16dp ++ 8dp ++ 8dp ++ 96dp ++ 6.5dp ++ 0dp ++ 16dp ++ @drawable/material_ic_keyboard_arrow_right_black_24dp ++ @drawable/material_ic_keyboard_arrow_left_black_24dp ++ #3333B5E5 ++ #0cffffff ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 220 ++ 150 ++ 150 ++ 150 ++ 127 ++ 150 ++ 2 ++ 300 ++ 320 ++ 300 ++ 350 ++ 200 ++ 250 ++ 75 ++ 150 ++ 0 ++ 4 ++ 100 ++ 100 ++ 1 ++ 1 ++ 3 ++ 75 ++ 120 ++ 100 ++ 250 ++ 200 ++ 999 ++ ++ %d new notification ++ %d new notifications ++ ++ Navigate home ++ Navigate up ++ More options ++ Done ++ See all ++ Choose an app ++ OFF ++ ON ++ Alt+ ++ Ctrl+ ++ delete ++ enter ++ Function+ ++ Meta+ ++ Shift+ ++ space ++ Sym+ ++ Menu+ ++ Search… ++ Clear query ++ Search query ++ Search ++ Submit query ++ Voice search ++ Share with ++ Share with %s ++ Collapse ++ Detox ++ com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior ++ com.google.android.material.bottomsheet.BottomSheetBehavior ++ Expand halfway ++ Characters entered %1$d of %2$d ++ Character limit exceeded %1$d of %2$d ++ %1$d/%2$d ++ Chip text ++ Clear text ++ Error ++ Show dropdown menu ++ com.google.android.material.transformation.FabTransformationScrimBehavior ++ com.google.android.material.transformation.FabTransformationSheetBehavior ++ com.google.android.material.behavior.HideBottomViewOnScrollBehavior ++ Dialog Icon ++ Tab ++ : ++ Select AM or PM ++ Select hour ++ %1$s o\'clock ++ Select minutes ++ %1$s minutes ++ cubic-bezier(0.4, 0.0, 1.0, 1.0) ++ cubic-bezier(0.0, 0.0, 0.2, 1.0) ++ path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1) ++ cubic-bezier(0.0, 0.0, 1.0, 1.0) ++ cubic-bezier(0.4, 0.0, 0.2, 1.0) ++ Range end, ++ Range start, ++ AM ++ Switch to clock mode for the time input. ++ Hour ++ Minute ++ PM ++ Select time ++ Switch to text input mode for the time input. ++ New notification ++ Remove %1$s ++ More than %1$d new notifications ++ %1$d%2$s ++ Change to next month ++ Change to previous month ++ Current selection: %1$s ++ @android:string/cancel ++ @android:string/ok ++ %1$s ++ Select Date ++ Selected date ++ Column of days: %1$s ++ Invalid format. ++ Example: %1$s ++ Use: %1$s ++ Invalid range. ++ Navigate to year %1$s ++ Out of range: %1$s ++ Start date – %1$s ++ %1$s – End date ++ %1$s – %2$s ++ Select Range ++ Start date – End date ++ Save ++ Date ++ End date ++ Start date ++ d ++ m ++ y ++ Switch to calendar input mode ++ Tap to switch to selecting a day ++ Switch to text input mode ++ Tap to switch to selecting a year ++ Show password ++ M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z ++ M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z ++ M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z ++ M3.27,4.27 L19.74,20.74 ++ Search ++ 999+ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ /> ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merger.xml +new file mode 100644 +index 0000000..a832f26 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merger.xml +@@ -0,0 +1,9224 @@ ++ ++#FF424242#FFFFFFFF#03000000#37000000 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1dp2dp2dp@color/androidx_core_secondary_text_default_material_light0dp0dp12dp"999+""999+"">999""999+"4dp"999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""९९९+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+"#1f000000#8a000000#ffffffff#ff9e9e9e4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 8dp0dp50dp20dp800dp120dp ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 10dp ++ ++ ++ 24dp80dp64dp8dp8dp580dp16dp20dp"Navigați la ecranul de pornire""Navigați în sus""Mai multe opțiuni""Gata""Afișați tot""Alegeți o aplicație""DEZACTIVAT""ACTIVAT""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Meniu+""Căutați…""Ștergeți interogarea""Termen de căutare""Căutați""Trimiteți interogarea""Căutare vocală""Trimiteți la""Trimiteți folosind %s""Restrângeți""Căutați""హోమ్‌కు నావిగేట్ చేస్తుంది""పైకి నావిగేట్ చేస్తుంది""మరిన్ని ఎంపికలు""పూర్తయింది""అన్నీ చూడండి""యాప్‌ను ఎంచుకోండి""ఆఫ్""ఆన్""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""స్పేస్""Sym+""Menu+""వెతకండి…""ప్రశ్నను తీసివేస్తుంది""శోధన ప్రశ్న""సెర్చ్""ప్రశ్నని సమర్పిస్తుంది""వాయిస్ శోధన""వీరితో షేర్ చేస్తుంది""%sతో షేర్ చేస్తుంది""కుదిస్తుంది""సెర్చ్"0px"Перейти на главный экран""Перейти вверх""Ещё""Готово""Показать все""Выберите приложение""ВЫКЛ""ВКЛ""Alt +""Ctrl +""Delete""Ввод""Fn +""Meta +""Shift +""Пробел""Sym +""Меню +""Введите запрос""Удалить запрос""Поисковый запрос""Поиск""Отправить запрос""Голосовой поиск""Поделиться с помощью""Поделиться с помощью %s""Свернуть""Поиск""Mag-navigate sa home""Mag-navigate pataas""Higit pang opsyon""Tapos na""Tingnan lahat""Pumili ng app""I-OFF""I-ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Maghanap…""I-clear ang query""Query sa paghahanap""Maghanap""Isumite ang query""Paghahanap gamit ang boses""Ibahagi sa/kay""Ibahagi gamit ang %s""I-collapse""Maghanap""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""Delete 鍵""Enter 鍵""Fn +""Meta +""Shift +""空格鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""與「%s」分享""收合""搜尋""Portami a casa""Torna indietro""Altre opzioni""Fine""Mostra tutto""Scelta di un\'app""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""SPAZIO""SYM +""MENU +""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Cerca""Navega fins a la pàgina d\'inici""Navega cap amunt""Més opcions""Fet""Mostra-ho tot""Selecciona una aplicació""DESACTIVA""ACTIVA""Alt+""Ctrl+""Supr""Retorn""Funció+""Meta+""Maj+""Espai""Sym+""Menú+""Cerca…""Esborra la consulta""Consulta de cerca""Cerca""Envia la consulta""Cerca per veu""Comparteix amb""Comparteix amb %s""Replega""Cerca""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""eyða""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leit""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leit""Přejít na plochu""Přejít nahoru""Další možnosti""Hotovo""Zobrazit vše""Vybrat aplikaci""VYP""ZAP""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Shift+""mezerník""Sym+""Menu+""Vyhledat…""Smazat dotaz""Dotaz pro vyhledávání""Hledat""Odeslat dotaz""Hlasové vyhledávání""Sdílet s""Sdílet s aplikací %s""Sbalit""Hledat""转到首页""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享对象""与%s分享""收起""搜索""Tunjukkan jalan ke rumah""Kembali ke atas""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Telusuri kueri""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Ciutkan""Telusuri""ホームに戻る""前に戻る""その他のオプション""完了""すべて表示""アプリの選択""OFF""ON""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""Menu+""検索…""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""折りたたむ""検索""Πλοήγηση στην αρχική σελίδα""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Εμφάνιση όλων""Επιλέξτε μια εφαρμογή""ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ""ΕΝΕΡΓΟΠΟΙΗΣΗ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""διάστημα""Sym+""Menu+""Αναζήτηση…""Διαγραφή ερωτήματος""Ερώτημα αναζήτησης""Αναζήτηση""Υποβολή ερωτήματος""Φωνητική αναζήτηση""Κοινοποίηση σε""Κοινοποίηση στην εφαρμογή %s""Σύμπτυξη""Αναζήτηση""นำทางไปหน้าแรก""กลับ""ตัวเลือกอื่น""เสร็จ""ดูทั้งหมด""เลือกแอป""ปิด""เปิด""Alt+""Ctrl+""ลบ""Enter""Function+""Meta+""Shift+""Space""Sym+""เมนู+""ค้นหา…""ล้างคำค้นหา""คำค้นหา""ค้นหา""ส่งคำค้นหา""ค้นหาด้วยเสียง""แชร์กับ""แชร์ทาง %s""ยุบ""ค้นหา""پیمایش به صفحه اصلی""رفتن به بالا""گزینه‌های بیشتر""تمام""دیدن همه""انتخاب برنامه""خاموش""روشن""‎Alt+‎""‎Ctrl+‎""حذف""enter""‎Function+‎""‎Meta+‎""‎Shift+‎""فاصله""‎Sym+‎""منو+""جستجو…‏""پاک کردن پُرسمان""درخواست جستجو""جستجو""ارسال پُرسمان""جستجوی گفتاری""هم‌رسانی با""هم‌رسانی با %s""کوچک کردن""جستجو""Eiti į pagrindinį puslapį""Naršyti aukštyn""Daugiau parinkčių""Atlikta""Žr. viską""Pasirinkite programą""IŠJUNGTI""ĮJUNGTI""„Alt“ +""„Ctrl“ +""„delete“""„enter“""„Function“ +""„Meta“ +""„Shift“ +""„space“""„Sym“ +""„Menu“ +""Ieškoti…""Išvalyti užklausą""Paieškos užklausa""Ieškoti""Pateikti užklausą""Paieška balsu""Bendrinti su""Bendrinti naudojant programą „%s“""Sutraukti""Ieškoti""ହୋମ୍ ପେଜ୍‌କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଅଧିକ ବିକଳ୍ପ""ହୋଇଗଲା""ସବୁ ଦେଖନ୍ତୁ""ଗୋଟିଏ ଆପ୍‍ ବାଛନ୍ତୁ""ବନ୍ଦ""ଅନ୍""Alt+""Ctrl+""ଡିଲିଟ୍‍""ଏଣ୍ଟର୍""Function+""Meta+""Shift+""ସ୍ପେସ୍‍""Sym+""ମେନୁ""ସର୍ଚ୍ଚ କରନ୍ତୁ…""କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ""ସର୍ଚ୍ଚ କ୍ୱେରୀ""Search""କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ""ଭଏସ୍‌ ସର୍ଚ୍ଚ""ଏହାଙ୍କ ସହ ସେୟାର୍‌ କରନ୍ତୁ""%s ସହ ସେୟାର୍‍ କରନ୍ତୁ""ସଂକୁଚିତ କରନ୍ତୁ""Search""Joan orri nagusira""Joan gora""Aukera gehiago""Eginda""Ikusi guztiak""Aukeratu aplikazio bat""DESAKTIBATU""AKTIBATU""Alt +""Ktrl +""ezabatu""sartu""Funtzioa +""Meta +""Maius +""zuriunea""Sym +""Menua +""Bilatu…""Garbitu kontsulta""Bilaketa-kontsulta""Bilatu""Bidali kontsulta""Ahozko bilaketa""Partekatu honekin""Partekatu %s aplikazioarekin""Tolestu""Bilatu""ກັບໄປໜ້າຫຼັກ""ເລື່ອນຂຶ້ນເທິງ""ຕົວເລືອກເພີ່ມເຕີມ""ແລ້ວໆ""ເບິ່ງທັງໝົດ""ເລືອກແອັບ""ປິດ""ເປີດ""Alt+""Ctrl+""ລຶບ""enter""Function+""Meta+""Shift+""ຍະຫວ່າງ""Sym+""Menu+""ຊອກຫາ…""ລຶບຂໍ້ຄວາມຊອກຫາ""ຄຳສຳລັບຄົ້ນຫາ""ຊອກຫາ""ສົ່ງຂໍ້ມູນ""ຊອກຫາດ້ວຍສຽງ""ແບ່ງປັນກັບ""ແບ່ງປັນດ້ວຍ %s""ຫຍໍ້ລົງ""ຊອກຫາ""ניווט לדף הבית""ניווט למעלה""עוד אפשרויות""סיום""הצגת הכול""בחירת אפליקציה""כבוי""מופעל""Alt+""Ctrl+‎""מחיקה""Enter""Function+""Meta+""Shift+""רווח""Sym+""תפריט+""חיפוש…""מחיקת השאילתה""שאילתת חיפוש""חיפוש""שליחת שאילתה""חיפוש קולי""שיתוף עם""שיתוף עם %s""כיווץ""חיפוש""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Siirry etusivulle""Siirry ylös""Lisäasetukset""Valmis""Näytä kaikki""Valitse sovellus""POIS PÄÄLTÄ""PÄÄLLÄ""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Vaihto+""välilyönti""Sym+""Valikko+""Haku…""Tyhjennä kysely""Hakukysely""Haku""Lähetä kysely""Puhehaku""Jaa…""Jaa: %s""Tiivistä""Haku"320dp0dp2dp24dp576dp320dp@dimen/design_snackbar_padding_vertical ++ 160dp64dp64dp1 ++ %d notificare nouă ++ %d notificări noi ++ %d de notificări noi ++ Extinde pe ecran completCaractere introduse: %1$d din %2$dLimita de caractere a depășit %1$d din %2$dȘtergeți textulEroareAfișați meniul drop-downPictogramă de dialogFilăSelectați oraSelectați oraOra %1$sSelectați minutele%1$s minutea.m.Pentru a introduce ora, comutați la modul ceas.OraMinutp.m.Selectați oraPentru a introduce ora, comutați la modul de introducere a textului.Notificare nouăEliminați %1$sPeste %1$d notificări noiTreceți la luna următoareTreceți la luna anterioarăSelecția actuală: %1$s@android:string/ok%1$sSelectați dataData selectatăColoana cu zile: %1$sFormat nevalid.Exemplu: %1$sFolosiți: %1$sInterval nevalid.Navigați la anul %1$sFără acoperire: %1$sData de începere – %1$s%1$s – data de încheiere%1$s – %2$sSelectați intervalulData de începere – data de încheiereSalvațiDatăData de încheiereData de începerezlaComutați la modul introducere în calendarAtingeți pentru a comuta la selectarea unei zileComutați la modul de introducere a textuluiAtingeți pentru a comuta la selectarea unui anAfișați parola ++ %d కొత్త నోటిఫికేషన్ ++ %d కొత్త నోటిఫికేషన్‌లు ++ సగాన్ని విస్తరింపజేయండి%2$dలో %1$d అక్షరాలు నమోదు చేయబడ్డాయిఅక్షర పరిధి %2$dలో %1$dను అధిగమించిందిరాసినదాన్ని తీసివేయిఎర్రర్డ్రాప్‌డౌన్ మెనూను చూపుడైలాగ్ చిహ్నంట్యాబ్AM లేదా PMను ఎంచుకోండిగంటను ఎంచుకోండి%1$s అవుతుందినిమిషాలను ఎంచుకోండి%1$s నిమిషాలుAMసమయాన్ని నమోదు చేయడం కోసం గడియారం మోడ్‌కు మారండి.గంటనిమిషంPMసమయాన్ని ఎంచుకోండిసమయాన్ని నమోదు చేయడం కోసం వచన నమోదు మోడ్‌కి మారండి.కొత్త నోటిఫికేషన్(%1$s)ని తీసివేస్తుంది%1$d కంటే ఎక్కువ కొత్త నోటిఫికేషన్‌లువచ్చే నెలకు మార్చుతుందిమునుపటి నెలకు మార్చుతుందిప్రస్తుత ఎంపిక: %1$s@android:string/ok%1$sతేదీని ఎంచుకోండిఎంచుకున్న తేదిరోజుల నిలువు వరుస: %1$sఫార్మాట్ చెల్లదు.ఉదాహరణ: %1$sఇలా ఉపయోగించండి: %1$sచెల్లని పరిధి.%1$sసంవత్సరానికి నావిగేట్ చేస్తుందిపరిధి వెలుపల ఉంది: %1$sప్రారంభ తేదీ – %1$s%1$s – ముగింపు తేది%1$s – %2$sపరిధిని ఎంచుకోండిప్రారంభ తేది - ముగింపు తేదిసేవ్ చేయితేదీముగింపు తేదీప్రారంభ తేదీరోనెసంక్యాలెండర్ ఇన్‌పుట్ మోడ్‌కు మారుస్తుంది\'రోజును ఎంపిక చేసుకోవడం\'కు మారడానికి నొక్కండివచన ఇన్‌పుట్ మోడ్‌కు మారుస్తుంది\'సంవత్సరాన్ని ఎంపిక చేసుకోవడం\'కు మారడానికి నొక్కండిపాస్‌వర్డ్‌ను చూపు ++ %d новое уведомление ++ %d новых уведомления ++ %d новых уведомлений ++ %d нового уведомления ++ Развернуть наполовинуВведено символов: %1$d из %2$dПревышено ограничение на количество символов (%1$d из %2$d)Очистить текстовое полеОшибкаПоказать раскрывающееся менюЗначок диалогового окнаВкладкаВыберите AM (до полудня) или PM (после полудня)Выберите час%1$s ч.Выберите минуты%1$s мин.AMЧтобы ввести время, перейдите в режим часов.ЧасМинутыPMВыбор времениЧтобы ввести время, перейдите в режим ввода текста.Новое уведомлениеУдалить \"%1$s\"Новых уведомлений больше %1$dПерейти к следующему месяцуПерейти к предыдущему месяцуВыбранный элемент: %1$s@android:string/ok%1$sВыберите датуВыбранная датаСтолбец со днями недели: %1$sНедействительный формат.Пример: %1$sИспользуйте: %1$sНедопустимый диапазон.Перейти к %1$s годуВне диапазона: %1$sДата начала – %1$s%1$s – дата окончания%1$s – %2$sВыберите диапазон датДата начала – дата окончанияСохранитьДатаДата окончанияДата началадмгПерейти в режим выбора днейНажмите, чтобы перейти к выбору дняПерейти в режим ввода текстаНажмите, чтобы перейти к выбору годаПоказать пароль ++ %d bagong notification ++ %d na bagong notification ++ I-expand hanggang gitnaMga character na nailagay %1$d sa %2$dLumampas sa limitasyon sa bilang ng character %1$d sa %2$dI-clear ang textErrorIpakita ang dropdown na menuIcon ng DialogTabPiliin ang AM o PMPumili ng oras%1$s o\'clockPumili ng mga minuto%1$s (na) minutoAMLumipat sa mode ng orasan para sa input na oras.OrasMinutoPMPumili ng orasLumipat sa pamamaraan ng pag-input ng text para sa input na oras.Bagong notificationAlisin ang %1$sMahigit %1$d (na) bagong notificationLumipat sa susunod na buwanLumipat sa nakaraang buwanKasalukuyang seleksyon: %1$s@android:string/ok%1$sPumili ng PetsaPiniling petsaColumn ng mga araw: %1$sInvalid na format.Halimbawa: %1$sGamitin: %1$sInvalid na hanay.Mag-navigate patungo sa taong %1$sWala sa sakop: %1$sPetsa ng pagsisimula – %1$s%1$s – Petsa ng pagtatapos%1$s – %2$sPumili ng RangePetsa ng pagsisimula – Petsa ng pagtataposI-savePetsaPetsa ng pagtataposPetsa ng pagsisimuladmyLumipat sa pamamaraan ng pag-input ng kalendaryoI-tap para lumipat sa pagpili ng arawLumipat sa pamamaraan ng pag-input ng textI-tap para lumipat sa pagpili ng taonIpakita ang password ++ %d 則新通知 ++ %d 則新通知 ++ 展開一半已輸入 %1$d 個字元 (上限為 %2$d 個字元)超過字元限制 (共 %1$d 字元,上限 %2$d 字元)清除文字錯誤顯示下拉式選單對話方塊圖示分頁標籤選取上午或下午請選取時段%1$s 點選取分鐘數%1$s 分AM切換至時鐘模式來輸入時間。小時分鐘PM選取時間切換至文字輸入模式來輸入時間。新通知移除 %1$s超過 %1$d 則新通知變更至下個月變更至上個月目前選取:%1$s@android:string/ok%1$s選取日期所選日期星期幾資料欄:%1$s格式無效。範例:%1$s使用:%1$s日期範圍無效。前往 %1$s 年超出日期範圍:%1$s開始日期 – %1$s%1$s – 結束日期%1$s – %2$s選取範圍開始日期 - 結束日期儲存日期結束日期開始日期dmy切換至日曆輸入模式輕觸即可切換為選取星期幾切換至文字輸入模式輕觸即可切換為選取年份顯示密碼64dp ++ %d nuova notifica ++ %d nuove notifiche ++ Espandi a metà%1$d caratteri inserirti su %2$dSono presenti %2$d caratteri in più rispetto al limite di %1$dCancella testoErroreMostra il menu a discesaIcona della finestra di dialogoSchedaSeleziona AM o PMSeleziona l\'ora%1$s in puntoSeleziona i minuti%1$s minutiamPassa alla modalità orologio per inserire l\'ora.OraMinutopmSeleziona l\'oraPassa alla modalità di immissione testo per inserire l\'ora.Nuova notificaRimuovi %1$sPiù di %1$d nuove notifichePassa al mese successivoPassa al mese precedenteSelezione attuale: %1$s@android:string/ok%1$sSeleziona dataData selezionataColonna dei giorni: %1$sFormato non valido.Esempio: %1$sUsa: %1$sIntervallo non valido.Vai all\'anno %1$sNon compresa nell\'intervallo: %1$sData di inizio - %1$s%1$s - Data di fine%1$s - %2$sSeleziona intervalloData di inizio - Data di fineSalvaDataData di fineData di iniziogmaPassa alla modalità di immissione CalendarioTocca per passare alla selezione di un giornoPassa alla modalità di immissione TestoTocca per passare alla selezione di un annoMostra password ++ %d notificació nova ++ %d notificacions noves ++ Desplega fins a la meitatCaràcters introduïts: %1$d de %2$dS\'ha superat el límit de caràcters (%1$d de %2$d)Esborra el textErrorMostra el menú desplegableIcona del quadre de diàlegTabuladorSelecciona a. m. o p. m.Seleccioneu l\'hora%1$s en puntSelecciona els minuts%1$s minutsa. m.Canvia al mode de rellotge per introduir l\'hora.HoraMinutp. m.Selecció de l\'horaCanvia al mode d\'introducció de text per introduir l\'hora.Notificació novaSuprimeix %1$sMés de %1$d notificacions novesCanvia al mes següentCanvia al mes anteriorSelecció actual: %1$s@android:string/ok%1$sSelecciona una dataData seleccionadaColumna de dies: %1$sEl format no és vàlid.Exemple: %1$sUtilitza: %1$sL\'interval no és vàlid.Canvia a l\'any %1$sLa data està fora de l\'interval: %1$sData d\'inici - %1$s%1$s - data de finalització%1$s - %2$sSelecciona un intervalData d\'inici - data de finalitzacióDesaDataData de finalitzacióData d\'inicidmaCanvia al mode d\'introducció de dades del calendariToca per canviar a la selecció del diaCanvia al mode d\'introducció de textToca per canviar a la selecció de l\'anyMostra la contrasenya ++ %d ný tilkynning ++ %d nýjar tilkynningar ++ Stækka til hálfsInnslegnir stafir %1$d af %2$dYfir hámarksstafafjölda, %1$d af %2$dHreinsa textaVillaSýna fellivalmyndGluggatáknFlipiVelja f.h. eða e.h.Velja tímaklukkan %1$sVeldu mínútur%1$s mínúturf.h.Skipta yfir í klukkustillingu til að færa inn tíma.KlukkustundMínútae.h.Veldu tímaSkipta yfir í textastillingu til að færa inn tíma.Ný tilkynningFjarlægja %1$sYfir %1$d nýjar tilkynningarBreyta í næsta mánuðBreyta í fyrri mánuðNúverandi val: %1$s@android:string/ok%1$sVeldu dagsetninguValin dagsetningDálkur með dögum: %1$sÓgilt snið.Dæmi: %1$sNota: %1$sÓgilt svið.Fara í árið %1$sUtan sviðs: %1$sUpphafsdagur – %1$s%1$s – lokadagur%1$s – %2$sVeldu tímabilUpphafsdagur – lokadagurVistaDagsetningLokadagurUpphafsdagurdmáSkipta yfir í innfærsluaðferð fyrir dagatalÝttu til að skipta yfir í að velja dagSkipta yfir í innfærsluaðferð fyrir textaÝttu til að skipta yfir í að velja árSýna aðgangsorð ++ %d nové oznámení ++ %d nová oznámení ++ %d nového oznámení ++ %d nových oznámení ++ Rozbalit napůlZadané znaky: %1$d z %2$dByl překročen povolený počet znaků (%1$d z %2$d)Vymazat textChybaZobrazit rozbalovací nabídkuIkona dialogového oknaKartaVyberte AM nebo PMVyberte hodinu%1$sZvolte minuty%1$s minAMChcete-li zadat čas, přepněte na režim hodin.HodinaMinutaPMVyberte časChcete-li zadat čas, přepněte na režim textu.Nové oznámeníOdstranit položku %1$sVíce než %1$d nových oznámeníPřejít na další měsícPřejít na předchozí měsícAktuální výběr: %1$s@android:string/ok%1$sVyberte datumVybrané datumSloupec dnů: %1$sNeplatný formát.Příklad: %1$sPoužijte: %1$sNeplatný rozsah.Přejít na rok %1$sMimo rozsah: %1$sDatum zahájení – %1$s%1$s – datum ukončení%1$s – %2$sVyberte rozsahDatum zahájení – datum ukončeníUložitDatumDatum ukončeníDatum zahájenídmrPřepnout na režim zadávání do kalendářeKlepnutím přepnete na výběr dnePřepnout na režim zadávání textuKlepnutím přepnete na výběr rokuZobrazit heslo0dp22dp48dp2dp2dp48dp20dp168dp0dp ++ %d 条新通知 ++ %d 条新通知 ++ 展开到一半高度输入了 %1$d 个字符(上限为 %2$d 个)超出字符数限制(共 %1$d 个,上限为 %2$d 个)清除文字错误显示下拉菜单对话框图标标签页选择上午或下午选择小时%1$s 点选择分钟%1$s 分上午切换到时钟模式来输入时间。小时分钟下午选择时间切换到文字输入模式来输入时间。新通知移除%1$s有 %1$d 条以上的新通知转到下个月转到上个月当前的选择是:%1$s@android:string/ok%1$s请选择日期选定的日期表示周几的列:%1$s格式无效。示例:%1$s使用:%1$s范围无效。转到 %1$s 年不在允许的范围内:%1$s开始日期 – %1$s%1$s – 结束日期%1$s - %2$s请选择范围开始日期 - 结束日期保存日期结束日期开始日期dmy切换到日历输入模式点按即可切换到选择某天切换到文本字段输入模式点按即可切换到选择某年显示密码 ++ %d notifikasi baru ++ %d notifikasi baru ++ Luaskan setengahKarakter yang dimasukkan %1$d dari %2$dMelebihi batas karakter %1$d dari %2$dMenghapus teksErrorTampilkan menu dropdownIkon DialogTabPilih AM atau PMPilih jamPukul %1$sPilih menit%1$s menitAMBeralih ke mode jam untuk masukan waktu.JamMenitPMPilih waktuBeralih ke mode masukan teks untuk masukan waktu.Notifikasi baruMenghapus %1$sLebih dari %1$d notifikasi baruUbah ke bulan berikutnyaUbah ke bulan sebelumnyaPilihan saat ini: %1$s@android:string/ok%1$sPilih TanggalTanggal yang dipilihKolom hari: %1$sFormat tidak valid.Contoh: %1$sGunakan: %1$sRentang tidak valid.Buka tahun %1$sDi luar rentang: %1$sTanggal mulai – %1$s%1$s – Tanggal akhir%1$s – %2$sPilih RentangTanggal mulai – Tanggal akhirSimpanTanggalTanggal akhirTanggal mulaihbtBeralih ke mode masukan kalenderKetuk untuk beralih ke memilih hariBeralih ke mode masukan teksKetuk untuk beralih ke memilih tahunTampilkan sandi ++ %d 件の新しい通知 ++ %d 件の新しい通知 ++ 下半分を展開入力済み文字数: %1$d/%2$d文字数制限を超えています(%1$d/%2$d 文字)テキストを消去エラープルダウン メニューを表示ダイアログ アイコンタブ午前または午後を選択時刻を選択してください%1$s時分を選択%1$s分AM時刻を時計で入力するモードに切り替えます。時間PM時間を選択時刻をテキストで入力するモードに切り替えます。新しい通知%1$s を削除します%1$d 件以上の新しい通知翌月に変更前月に変更現在の選択: %1$s@android:string/ok%1$s日付を選択してください選択した日付曜日の列: %1$s形式が無効です。例: %1$s使用: %1$s範囲が無効です。%1$s 年に移動範囲外: %1$s開始日~%1$s%1$s~終了日%1$s~%2$s期間を選択してください開始日~終了日保存日付終了日開始日dmyカレンダー入力モードに切り替えタップすると、日の選択に切り替わりますテキスト入力モードに切り替えタップすると、年の選択に切り替わりますパスワードを表示 ++ %d νέα ειδοποίηση ++ %d νέες ειδοποιήσεις ++ Ανάπτυξη μέχρι τη μέσηΕισήχθησαν %1$d από %2$d χαρακτήρεςΥπέρβαση ορίου χαρακτήρων %1$d από %2$dΔιαγραφή κειμένουΣφάλμαΕμφάνιση αναπτυσσόμενου μενούΕικονίδιο παραθύρου διαλόγουΚαρτέλαΕπιλέξτε π.μ. ή μ.μ.Επιλογή ώρας%1$s ακριβώςΕπιλογή λεπτών%1$s λεπτάΠΜΚάντε εναλλαγή στη λειτουργία ρολογιού, για την εισαγωγή της ώρας.ΏραΛεπτόΜΜΕπιλέξτε ώραΚάντε εναλλαγή στη λειτουργία εισαγωγής κειμένου, για την εισαγωγή της ώρας.Νέα ειδοποίησηΚατάργηση %1$sΠάνω από %1$d νέες ειδοποιήσειςΑλλαγή στον επόμενο μήναΑλλαγή στον προηγούμενο μήναΤρέχουσα επιλογή: %1$s@android:string/ok%1$sΕπιλογή ημερομηνίαςΕπιλεγμένη ημερομηνίαΣτήλη ημερών: %1$sΜη έγκυρη μορφή.Παράδειγμα: %1$sΧρησιμοποιήστε: %1$sΜη έγκυρο εύρος.Πλοήγηση στο έτος %1$sΕκτός εύρους: %1$sΗμερομηνία έναρξης – %1$s%1$s – Ημερομηνία λήξης%1$s – %2$sΕπιλογή εύρουςΗμερομηνία έναρξης – Ημερομηνία λήξηςΑποθήκευσηΗμερομηνίαΗμερομηνία λήξηςΗμερομηνία έναρξηςημεΕναλλαγή στη λειτουργία εισαγωγής ημερολογίουΠατήστε για εναλλαγή για την επιλογή ημέραςΕναλλαγή στη λειτουργία εισαγωγής κειμένουΠατήστε για εναλλαγή για την επιλογή έτουςΕμφάνιση κωδικού πρόσβασης ++ %d jaunu paziņojumu ++ %d jauns paziņojums ++ %d jauni paziņojumi ++ Izvērst līdz puseiIevadītās rakstzīmes: %1$d no %2$dPārsniegts rakstzīmju skaita ierobežojums (%1$d no %2$d)Notīrīt tekstuKļūdaRādīt nolaižamo izvēlniDialoglodziņa ikonaCilneAtlasiet “AM” (priekšpusdienā) vai “PM” (pēcpusdienā).Atlasiet stunduplkst. %1$sAtlasiet minūtes.%1$s minAMLai ievadītu laiku, ieslēdziet pulksteņa režīmu.StundaMinūtePMLaika atlasīšanaLai ievadītu laiku, ieslēdziet teksta ievades režīmu.Jauns paziņojumsNoņemt: %1$sVairāk nekā %1$d jauni paziņojumiPāriet uz nākamo mēnesiPāriet uz iepriekšējo mēnesiPašreizējā atlase: %1$s@android:string/ok%1$sAtlasiet datumuAtlasītais datumsDienu sleja: %1$sNederīgs formāts.Piemērs: %1$sIzmantojiet: %1$sNederīgs diapazons.Pāriet uz šo gadu: %1$sĀrpus diapazona: %1$sSākuma datums–%1$s%1$s–beigu datums%1$s–%2$sAtlasiet diapazonuSākuma datums–beigu datumsSaglabātDatumsBeigu datumsSākuma datumsdmgPārslēgties uz kalendāra ievades režīmuPieskarties, lai pārslēgtos uz dienas atlasīšanuPārslēgties uz teksta ievades režīmuPieskarties, lai pārslēgtos uz gada atlasīšanuRādīt paroli24dp36dp0dp22dp48dp2dp2dp48dp48dp0dp ++ %d ny notifikation ++ %d nye notifikationer ++ Udvid halvdelenDu har brugt %1$d ud af %2$d tegnDu har brugt %1$d tegn og dermed overskredet tegnbegrænsningen på %2$d.Ryd tekstFejlVis rullemenuenIkon for dialogboksFaneVælg AM eller PMVælg timeklokken %1$sVælg minutter%1$s minutterf.m.Skift til urtilstand for at angive klokkeslæt.TimeMinute.m.Vælg tidspunktSkift til teksttilstand for at angive klokkeslæt.Ny notifikationFjern %1$sFlere end %1$d nye notifikationerSkift til næste månedSkift til forrige månedAktuelt valg: %1$s@android:string/ok%1$sVælg datoValgt datoKolonne med dage: %1$sUgyldigt format.Eksempel: %1$sBrug: %1$sUgyldigt interval.Gå til år %1$sUden for interval: %1$sStartdato – %1$s%1$s – slutdato%1$s – %2$sVælg intervalStartdato – slutdatoGemDatoSlutdatoStartdatodmåSkift til input-tilstand for kalenderTryk for at gå til valg af dagSkift til input-tilstand for tekstTryk for at gå til valg af årVis adgangskode ++ %d नवीन सूचना ++ %d नवीन सूचना ++ पूर्णपणे विस्तृत करा%2$d पैकी %1$d वर्ण एंटर केले आहे%2$d पैकी %1$d वर्णमर्यादा ओलांडली आहेमजकूर साफ कराएररड्रॉपडाउन मेनू दाखवाडायलॉग आयकनटॅबAM किंवा PM निवडावेळ निवडा%1$s वाजतामिनिटे निवडा%1$s मिनिटेAMवेळेच्या इनपुटसाठी घड्याळ मोडवर स्विच करा.तासमिनिटPMवेळ निवडावेळ इनपुटसाठी मजकूर इनपुट मोडवर स्विच करा.नवीन सूचनाकाढून टाका %1$s%1$d पेक्षा अधिक नवीन सूचनापुढील महिन्यावर बदलामागील महिन्यावर बदलासध्याची निवड: %1$s@android:string/ok%1$sतारीख निवडानिवडलेली तारीखदिवसांचा स्तंभ: %1$sचुकीचा फॉरमॅट.उदाहरण: %1$s%1$s: वापराचुकीची श्रेणी.%1$s वर्षावर नेव्हिगेट करारेंजच्या बाहेर: %1$sसुरू होण्याची तारीख – %1$s%1$s – संपण्याची तारीख%1$s – %2$sरेंज निवडासुरू होण्याची तारीख – संपण्याची तारीखसेव्ह करातारीखसंपण्याची तारीखसुरू होण्याची तारीखदिकॅलेंडर इनपुट मोडवर स्विच करादिवस निवडण्यासाठी स्विच करा वर टॅप करामजकूर इनपुट मोडवर स्विच करावर्ष निवडण्यासाठी स्विच करा वर टॅप करापासवर्ड दाखवा ++ %d жаңа хабарландыру ++ %d жаңа хабарландыру ++ Жартылай кеңейту%1$d/%2$d таңба енгізілдіТаңба саны шегінен асты: %1$d/%2$dМәтінді өшіруҚатеАшылмалы мәзірді көрсетуДиалог белгішесіҚойынды\"AM\" немесе \"PM\" форматын таңдауСағатты таңдауСағат: %1$sМинут таңдау%1$s минутAMУақытты енгізу үшін сағат режиміне өтіңіз.СағатMинутPMУақытты таңдауУақытты енгізу үшін мәтін енгізу режиміне өтіңіз.Жаңа хабарландыру%1$s мазмұнын өшіру%1$d санынан көп жаңа хабарландыруКелесі айға өтуАлдыңғы айға өтуАғымдағы таңдау: %1$s@android:string/ok%1$sКүнді таңдауТаңдалған күнКүндер бағаны: %1$sФормат жарамсыз.Мысал: %1$s.Жарамды формат: %1$s.Ауқым жарамсыз.%1$s жылына жылжуАуқымнан тыc: %1$sБасталу күні – %1$s%1$s – аяқталу күні%1$s – %2$sАралықты таңдауБасталу күні – аяқталу күніСақтауКүніАяқталу күніБасталу күнікажКүнтізбенің енгізу режиміне ауысуКүнді таңдауға ауысу үшін түртіңіз.Мәтін енгізу режиміне ауысуЖылды таңдауға ауысу үшін түртіңіз.Құпия сөзді көрсету ++ %d жаңы билдирме ++ %d жаңы билдирме ++ Жарымын жайып көрсөтүү%2$d ичинен %1$d символ киргизилдиСимволдордун саны коюлган %2$d чегинен %1$d символго ашып кеттиТекстти тазалооКатаТүрүлмө менюну көрсөтүүДиалог сүрөтчөсүӨтмөкТандоо: AM же PMСаат тандооСаат %1$sМүнөттөрдү тандаңыз%1$s мүнөтAMУбакытты дубал саатынын режиминде киргизиңиз.СаатМүнөтPMУбакыт тандооУбакытты текст киргизүү режиминде киргизиңиз.Жаңы билдирмеМазмунду алып салуу (%1$s)%1$d ашуун жаңы билдирмеКийинки айга өзгөртүүМурунку айга өзгөртүүУчурдагы тандоо: %1$s@android:string/ok%1$sКүн тандооТандалган күнКүндөр тилкеси: %1$sЖараксыз формат.Мисалы: %1$s%1$s формтын колднуңузЖараксыз диапазон.%1$s-жылга өтүүДиапазондон тышкары: %1$sБаштоо күнү – %1$s%1$s – Аяктоо күнү%1$s – %2$sДаталар диапазонун тандооБаштоо күнү – Аяктоо күнүСактооКүнАяктоо күнүБаштоо күнүкажЖылнаамага иш-чара киргизүү режимине которулууКүн тандоо үчүн таптап коюңузТекст киргизүү режимине которулууЖыл тандоо үчүн таптап коюңузСырсөздү көрсөтүү ++ %d નવું નોટિફિકેશન ++ %d નવા નોટિફિકેશન ++ અડધે સુધી મોટું કરો%2$dમાંથી %1$d અક્ષરો દાખલ કર્યા%2$dમાંથી %1$dની વર્ણ મર્યાદા ઓળંગાઈ ગઈ છેટેક્સ્ટ સાફ કરોભૂલડ્રૉપડાઉન મેનૂ બતાવોસંવાદનું આઇકનટૅબAM અથવા PM પસંદ કરોસમય પસંદ કરો%1$s વાગ્યા છેમિનિટ પસંદ કરો%1$s મિનિટAMસમય દાખલ કરવા માટે ઘડિયાળ મોડમાં સ્વિચ કરો.કલાકમિનિટPMસમય પસંદ કરોસમય દાખલ કરવા માટે ટેક્સ્ટ ઇનપુટ મોડમાં સ્વિચ કરો.નવું નોટિફિકેશન%1$s કાઢી નાખો%1$dથી વધુ નવા નોટિફિકેશનઆગલા મહિના પર બદલોપાછલા મહિના પર બદલોહાલની પસંદગી: %1$s@android:string/ok%1$sતારીખ પસંદ કરોપસંદ કરેલી તારીખદિવસોની કૉલમ: %1$sઅમાન્ય ફોર્મેટ.ઉદાહરણ: %1$sઆનો ઉપયોગ કરો: %1$sઅમાન્ય શ્રેણી.%1$sના વર્ષ પર નૅવિગેટ કરોઆ શ્રેણીની બહાર છે: %1$sશરૂ કરવાની તારીખ – %1$s%1$s – સમાપ્તિની તારીખ%1$s – %2$sશ્રેણી પસંદ કરોશરૂ કરવાની તારીખ – સમાપ્તિની તારીખસાચવોતારીખસમાપ્તિની તારીખશરૂ કરવાની તારીખdmyકૅલેન્ડર ઇનપુટ મોડ પર સ્વિચ કરોદિવસની પસંદગી પર સ્વિચ કરવા માટે ટૅપ કરોટેક્સ્ટ ઇનપુટ મોડ પર સ્વિચ કરોવર્ષની પસંદગી પર સ્વિચ કરવા માટે ટૅપ કરોપાસવર્ડ બતાવો ++ %d шинэ мэдэгдэл ++ %d шинэ мэдэгдэл ++ Хагас дэлгэнэ үү%2$d-н %1$d тэмдэгтийг оруулсанТэмдэгтийн хязгаар %2$d-н %1$d-с хэтэрсэнТекстийг арилгахАлдааДоош унадаг цэсийг харуулахХарилцах цонхны дүрс тэмдэгТабҮӨ эсвэл ҮХ сонгоно ууЦаг сонгох%1$s цагМинут сонгоно уу%1$s минутAMЦагийг оруулахын тулд цагийн горимд шилжүүлнэ үү.ЦагМинутPMЦаг сонгохЦагийг оруулахын тулд текст оруулах горимд шилжүүлнэ үү.Шинэ мэдэгдэл%1$s-г устгах%1$d-с олон шинэ мэдэгдэлДараагийн сар луу өөрчлөхӨмнөх сар луу өөрчлөхОдоогийн сонголт: %1$s@android:string/ok%1$sОгноо сонгохСонгосон огнооӨдрийн багана: %1$sБуруу формат байна.Жишээ нь: %1$sАшиглах формат: %1$sОгнооны хязгаар буруу байна.%1$s он руу шилжихХязгаараас хэтэрсэн: %1$sЭхлэх огноо – %1$s%1$s – Дуусах огноо%1$s – %2$sМуж сонгохЭхлэх огноо – Дуусах огнооХадгалахОгнооДуусах огнооЭхлэх огнооөсжКалендарийн орох горим руу сэлгэхӨдөр сонгох руу сэлгэхийн тулд товшино ууТекстийн орох горим руу сэлгэхОн сонгох руу сэлгэхийн тулд товшино ууНууц үгийг харуулах8dp ++ %d pemberitahuan baharu ++ %d pemberitahuan baharu ++ Kembangkan helaian bawahAksara dimasukkan %1$d daripada %2$dMelebihi had aksara %1$d daripada %2$dKosongkan teksRalatTunjukkan menu lungsurIkon DialogTabPilih AM atau PMPilih jamPukul %1$sPilih minit%1$s minitPGBeralih ke mod jam untuk input masa.JamMinitP/MPilih masaBeralih ke mod input teks untuk input masa.Pemberitahuan baharuAlih keluar %1$sLebih daripada %1$d pemberitahuan baharuTukar kepada bulan seterusnyaTukar kepada bulan sebelumnyaPilihan semasa: %1$s@android:string/ok%1$sPilih TarikhTarikh dipilihLajur hari: %1$sFormat tidak sah.Contoh: %1$sGunakan: %1$sJulat tidak sah.Navigasi ke tahun %1$sDi luar julat: %1$sTarikh mula – %1$s%1$s – Tarikh tamat%1$s – %2$sPilih JulatTarikh mula – Tarikh tamatSimpanTarikhTarikh tamatTarikh mulahbtBeralih kepada mod input kalendarKetik untuk beralih kepada pemilihan hariBeralih kepada mod input teksKetik untuk beralih kepada pemilihan tahunTunjukkan kata laluan ++ %d 個新通知 ++ %d 個新通知 ++ 展開一半已輸入 %1$d 個字元 (共 %2$d 個)超出字元限制 %1$d 個字元 (上限 %2$d 個字元)清除文字錯誤顯示下拉式選單對話框圖示分頁選擇上午或下午選取時段%1$s 點選取分鐘%1$s 分AM切換至時鐘模式即可輸入時間。小時分鐘PM選取時間切換至文字輸入模式即可輸入時間。新通知移除「%1$s」超過 %1$d 則新通知變更為下個月變更為上個月目前選取:%1$s@android:string/ok%1$s請選擇日期已選取日期日期欄:%1$s格式無效。例如:%1$s使用:%1$s範圍無效。瀏覽至 %1$s 年超出範圍:%1$s開始日期 – %1$s%1$s – 結束日期%1$s – %2$s請選擇範圍開始日期 – 結束日期儲存日期結束日期開始日期切換至日曆輸入模式輕按以切換至選擇日期切換至文字輸入模式輕按以切換至選擇年份顯示密碼 ++ ការជូនដំណឹងថ្មី %d ++ ការជូនដំណឹងថ្មី %d ++ ពង្រីក​ពាក់កណ្ដាលតួ​អក្សរ​បាន​បញ្ចូល​ %1$d នៃ %2$dដែនកំណត់តួអក្សរបានលើស %1$d នៃ %2$dសម្អាតអក្សរបញ្ហាបង្ហាញ​ម៉ឺនុយ​ធ្លាក់ចុះរូប​ប្រអប់បញ្ចូលផ្ទាំងជ្រើសរើស AM ឬ PMជ្រើសរើសម៉ោងម៉ោង %1$sជ្រើស​នាទី%1$s នាទីព្រឹកប្តូរ​ទៅ​មុខងារ​នាឡិកា​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។ម៉ោងនាទី​ល្ងាចជ្រើស​ម៉ោងប្តូរ​ទៅ​មុខងារ​បញ្ចូល​អក្សរ​សម្រាប់​ការ​បញ្ចូល​ម៉ោង។ការជូនដំណឹងថ្មីលុប %1$sការជូនដំណឹង​ថ្មីៗ​លើស %1$d ហើយប្ដូរ​ទៅ​ខែបន្ទាប់ប្ដូរ​ទៅ​ខែមុនការជ្រើសរើស​បច្ចុប្បន្ន៖ %1$s@android:string/ok%1$sជ្រើសរើស​កាល​បរិច្ឆេទកាលបរិច្ឆេទដែលបាន​ជ្រើសរើសជួរឈរ​នៃ​ថ្ងៃ៖ %1$sទម្រង់មិន​ត្រឹមត្រូវទេ។ឧទាហរណ៍៖ %1$sប្រើ៖ %1$sជួរ​មិនត្រឹមត្រូវទេ។ប្ដូរទៅ​ឆ្នាំ %1$sនៅក្រៅ​ជួរ៖ %1$sកាលបរិច្ឆេទ​ចាប់ផ្ដើម – %1$s%1$s – កាលបរិច្ឆេទ​បញ្ចប់%1$s – %2$sជ្រើស​រើស​ចន្លោះកាលបរិច្ឆេទ​ចាប់ផ្ដើម – កាលបរិច្ឆេទ​បញ្ចប់រក្សាទុកកាលបរិច្ឆេទកាល​បរិច្ឆេទ​បញ្ចប់កាល​បរិច្ឆេទ​ចាប់ផ្ដើមប្ដូរទៅ​របៀប​បញ្ចូល​ប្រតិទិនចុច​ដើម្បីប្ដូរទៅ​ការជ្រើសរើសថ្ងៃប្ដូរទៅ​របៀប​បញ្ចូល​អក្សរចុច​ដើម្បីប្ដូរទៅ​ការជ្រើសរើសឆ្នាំបង្ហាញពាក្យសម្ងាត់ ++ %d nova notificação ++ %d novas notificações ++ Expandir até a metadeCaracteres inseridos: %1$d de %2$dLimite de %2$d caracteres excedido em %1$dLimpar textoErroMostrar menu suspensoÍcone de caixa de diálogoGuiaSelecionar AM ou PMSelecionar horário%1$s em pontoSelecione os minutos%1$s minutosAMAlterne para o modo de relógio para informar o horário.HoraMinutoPMSelecionar horárioAlterne para o modo de entrada de texto para informar o horário.Nova notificaçãoRemover %1$sMais de %1$d novas notificaçõesAlterar para o próximo mêsAlterar para o mês anteriorSeleção atual: %1$s@android:string/ok%1$sSelecionar dataData selecionadaColuna de dias: %1$sFormato inválido.Exemplo: %1$sUsar %1$sIntervalo inválido.Ir para o ano %1$sFora do intervalo: %1$sData de início – %1$s%1$s – Data de término%1$s – %2$sSelecionar intervaloData de início – Data de términoSalvarDataData de términoData de iníciodmaAlternar para o modo de entrada da agendaToque para alternar para a seleção de um diaAlternar para o modo de entrada de textoToque para alternar para a seleção de um anoExibir senha ++ %d նոր ծանուցում ++ %d նոր ծանուցում ++ Ծավալել կիսով չափՄուտքագրված նիշեր՝ %1$d/%2$dՆիշերի առավելագույն քանակը գերազանցվել է (%1$d/%2$d)Ջնջել տեքստըՍխալՑույց տալ իջնող ընտրացանկըԵրկխոսության պատուհանի պատկերակՆերդիրԸնտրել AM կամ PMԸնտրել ժամըԺամը %1$s էԸնտրեք րոպեն%1$s րոպեAMԺամը մուտքագրելու համար միացրեք ժամացույցի ռեժիմը:ԺամՐոպեPMԺամանակի ընտրությունԺամը մուտքագրելու համար միացրեք տեքստի մուտքագրման ռեժիմը:Նոր ծանուցումՀեռացնել (%1$s)Ավելի քան %1$d նոր ծանուցումԱնցնել հաջորդ ամիսԱնցնել նախորդ ամիսՆերկայիս ընտրությունը՝ %1$s@android:string/ok%1$sԸնտրեք ամսաթիվըԸնտրված ամսաթիվըՕրերի սյունակ՝ %1$sՁևաչափը սխալ է։Օրինակ՝ %1$sՕգտագործեք՝ %1$sԸնդգրկույթն անվավեր է:Անցնել %1$s թվականԸնդգրկույթից դուրս է՝ %1$sՄեկնարկի ամսաթիվը – %1$s%1$s – Ավարտի ամսաթիվը%1$s – %2$sԸնտրեք ընդգրկույթըՄեկնարկի ամսաթիվը – Ավարտի ամսաթիվըՊահելԱմսաթիվԱվարտի ամսաթիվըՄեկնարկի ամսաթիվըօատԱնցնել օրացույցի մուտքագրման ռեժիմՀպեք՝ օրվա ընտությանն անցնելու համարԱնցնել տեքստի մուտքագրման ռեժիմինՀպեք՝ տարեթվի ընտությանն անցնելու համարՑուցադրել գաղտնաբառը ++ %d አዲስ ማሳወቂያዎች ++ %d አዲስ ማሳወቂያዎች ++ ግማሽ መንገድ ዘርጋቁምፊዎች %1$d ከ%2$d ገብተዋልየቁምፊ ገደብ %1$d ከ%2$d አልፏልጽሑፍን አጽዳስህተትተቆልቋይ ምናሌን አሳይየንግግር አዶትርAM ወይም PM ይምረጡሰዓትን ይምረጡ%1$s ሰዓትደቂቃዎችን ይምረጡ%1$s ደቂቃዎችጥዋትለጊዜ ግቤቱ ወደ የሰዓት ሁነታ ቀይር።ሰዓትደቂቃከሰዓትጊዜ ምረጥለጊዜ ግቤቱ ወደ የጽሑፍ ግቤት ሁነታ ቀይር።አዲስ ማሳወቂያ%1$sን አስወግድከ%1$d በላይ አዲስ ማሳወቂያዎችወደ የሚቀጥለው ወር ቀይርወደ ቀዳሚው ወር ቀይርየአሁኑ ምርጫ፦ %1$s@android:string/ok%1$sቀን ይምረጡየተመረጠው ቀንየቀኖች ዓምድ፦ %1$sልክ ያልሆነ ቅርጸትምሳሌ፦ %1$s%1$s ን ይጠቀሙልክ ያልኾነ ክልል።ወደ ዓመት %1$s አሰስከክልል ውጪ፦ %1$sመጀመሪያ ቀን – %1$s%1$s – መጨረሻ ቀን%1$s – %2$sክልል ይምረጡየመጀመሪያ ቀን – የመጨረሻ ቀንአስቀምጥቀንየማብቂያ ቀንመጀመሪያ ቀንወደ የቀን መቁጠሪያ ግቤት ሁነታ ቀይርወደ ቀን መምረጥ ለመቀየር መታ ያድርጉወደ ጽሑፍ ግቤት ሁነታ ቀይርወደ ዓመት መምረጥ ለመቀየር መታ ያድርጉየይለፍ ቃል አሳይ ++ %d новае апавяшчэнне ++ %d новыя апавяшчэнні ++ %d новых апавяшчэнняў ++ %d новага апавяшчэння ++ Разгарнуць напаловуУведзена сімвалаў: %1$d з %2$dЛіміт сімвалаў перавышаны: %1$d з %2$dАчысціць тэкстПамылкаПаказаць выпадное менюЗначок дыялогавага акнаУкладкаВыберыце AM (да паўдня) або PM (пасля паўдня)Выберыце гадзіну%1$s гадзВыберыце хвіліны%1$s хвAMПераключыцца на рэжым гадзінніка пры ўводзе часу.ГадзінаХвілінаPMВыберыце часПераключыцца на рэжым тэксту пры ўводзе часу.Новае апавяшчэннеВыдаліць %1$sКолькасць новых апавяшчэнняў перавысіла %1$dПерайсці да наступнага месяцаПерайсці да папярэдняга месяцаБягучае вылучэнне: %1$s@android:string/ok%1$sВыберыце датуВыбраная датаСлупок дзён: %1$sНяправільны фармат.Прыклад: %1$sНеабходны фармат: %1$sНяправільны дыяпазон.Перайсці ў %1$s годПа-за межамі дыяпазону: %1$sДата пачатку – %1$s%1$s – дата заканчэння%1$s – %2$sВыберыце дыяпазон датДата пачатку – дата заканчэнняЗахавацьДатаДата заканчэнняДата пачаткудмгПераключыцца ў рэжым уводу \"Каляндар\"Дакраніцеся, каб пераключыцца на выбар дняПераключыцца ў рэжым уводу \"Тэкст\"Дакраніцеся, каб пераключыцца на выбар годаПаказаць пароль450dp600dp24dp24dp24dp24dp20dp4dp96dp0dp0dp104dp68dp28dp64dp32dp24dp32dp06 ++ ++ ++ true#14000000#121212#CF6679#FFFFFF#000000#000000#000000#FFFFFF#BA86FC#000000#3700B3#03DAC6#03DAC6#121212#FFFFFF#B00020#000000#FFFFFF#FFFFFF#000000#000000#6200EE#3700B3#3700B3#03DAC6#018786#FFFFFF@android:color/transparent#14000000#44000000#0A000000#0F000000#1AFFFFFF#2EFFFFFF#323232#61000000#00ffffff#52000000#6B000000#1F000000#0A000000#00000000#DE00000016dp16dp64dp100dp4dp168dp96dp14sp8dp56dp24dp96dp56dp10dp8dp1dp12sp8dp16dp64dp0.5dp6dp24dp40dp56dp6dp6dp16dp32dp24dp16dp32dp280dp8dp8dp128dp1.00dp6dp0dp-1px-1px12dp14dp16dp14sp264dp72dp14sp12sp5dp640dp24dp44dp4dp4dp2dp15dp96dp12dp52dp256dp-6dp-12dp2dp0.380.870.612dp23dp8dp32dp4dp8dp4dp12dp8dp2dp200px100px245dp488dp56dp560dp340dp24dp80dp24dp24dp80dp24dp4dp4dp4dp6dp10sp12dp12dp8dp60dp16dp5dp8dp0dp56dp4dp64dp0dp0dp2dp2dp2dp12dp8dp6dp0.07320dp4dp16dp16dp4dp6dp8dp1dp4dp8dp8dp14sp0dp64dp52dp8dp0dp12dp15dp32dp3dp1dp1dp36dp24dp16dp12dp4dp1dp120dp128dp32dp12dp8dp24dp0dp480dp2dp0dp4dp48dp4dp8dp104dp20dp24dp100dp16dp28dp68dp18dp52dp8dp8dp88dp8dp24dp4dp5dp1dp8dp3dp14sp12dp8dp-8dp8dp12dp24dp0dp0dp6dp20dp20dp24dp12dp48dp120dp20dp12dp12dp0dp2dp6dp6dp48dp2dp6dp0.000.240.080.24100dp0.000.120.040.1248dp24dp8dp0dp22dp14dp24dp8dp4dp14dp56dp72dp8dp14dp24dp8dp16dp12dp4dp2dp4dp4dp18dp40dp20dp40dp28dp2.5dp4dp3dp2dp4dp0dp4dp4dp24dp4dp13dp26dp1dp10dp4dp16dp24dp48dp0.54dp0.88dp8dp8dp4dp4dp0dp4dp1dp2dp16dp4dp16dp4dp56dp14dp4dp32dp32dp12dp30dp52dp168dp96dp14sp8dp56dp24dp96dp56dp10dp1dp12sp@drawable/material_ic_keyboard_arrow_right_black_24dp@drawable/material_ic_keyboard_arrow_left_black_24dp1501502300320300350200250751500410010011375120100250200 ++ %d new notification ++ %d new notifications ++ com.google.android.material.appbar.AppBarLayout$ScrollingViewBehaviorcom.google.android.material.bottomsheet.BottomSheetBehaviorExpand halfwayCharacters entered %1$d of %2$dCharacter limit exceeded %1$d of %2$d%1$d/%2$dChip textClear textErrorShow dropdown menucom.google.android.material.transformation.FabTransformationScrimBehaviorcom.google.android.material.transformation.FabTransformationSheetBehaviorcom.google.android.material.behavior.HideBottomViewOnScrollBehaviorDialog IconTab:Select AM or PMSelect hour%1$s o\'clockSelect minutes%1$s minutescubic-bezier(0.4, 0.0, 1.0, 1.0)cubic-bezier(0.0, 0.0, 0.2, 1.0)path(M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1)cubic-bezier(0.0, 0.0, 1.0, 1.0)cubic-bezier(0.4, 0.0, 0.2, 1.0)Range end, Range start, AMSwitch to clock mode for the time input.HourMinutePMSelect timeSwitch to text input mode for the time input.New notificationRemove %1$sMore than %1$d new notifications%1$d%2$sChange to next monthChange to previous monthCurrent selection: %1$s@android:string/cancel@android:string/ok%1$sSelect DateSelected dateColumn of days: %1$sInvalid format.Example: %1$sUse: %1$sInvalid range.Navigate to year %1$sOut of range: %1$sStart date – %1$s%1$s – End date%1$s – %2$sSelect RangeStart date – End dateSaveDateEnd dateStart datedmySwitch to calendar input modeTap to switch to selecting a daySwitch to text input modeTap to switch to selecting a yearShow passwordM12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM3.27,4.27 L19.74,20.74 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ %d ta yangi bildirishnoma ++ %d ta yangi bildirishnoma ++ Yarmiga kengaytirish%1$d/%2$d ta belgi kiritildiHarflar soni (%1$d) cheklovdan (%2$d) oshib ketdiMatnni tozalashXatoPastga ochiluvchi menyuni ochishMuloqot ikonkasiTab : VaraqTushdan oldin yoki keyinligini tanlangSoatni tanlang%1$s soatDaqiqalarni tanlash%1$s daqiqaAMVaqtni kiritish uchun soat rejimiga o‘ting.SoatDaqiqaPMVaqtni tanlangVaqtni kiritish uchun matn kiritish rejimiga o‘ting.Yangi bildirishnomaOlib tashlash: %1$sYana %1$d dan ortiq bildirishnomaKeyingi oyga oʻzgartirishAvvalgi oyga oʻzgartirishJoriy tanlov: %1$s@android:string/ok%1$sSanani tanlangTanlangan sanaKunlar ustuni: %1$sYaroqsiz format.Masalan: %1$sIshlatish: %1$sYaroqsiz oraliq.Yilga nazar solish: %1$sChegaradan tashqari: %1$sBoshlanish sanasi – %1$s%1$s – Tugash sanasi%1$s – %2$sOraliqni tanlangBoshlanishi – TugashiSaqlashSanaTugash sanasiBoshlanish sanasikoyTaqvim kiritish rejimiga oʻtishKunni tanlash uchun bosingMatn kiritish rejimiga oʻtishYilni tanlash uchun bosingParol ochiq tursin ++ %d nouvelle notification ++ %d nouvelles notifications ++ Développer à moitiéCaractères entrés : %1$d sur %2$dLimite de caractère dépassée : %1$d sur %2$dEffacer le texteErreurAfficher le menu déroulantIcône de boîte de dialogueOngletSélectionner AM ou PMSélectionner l\'heure%1$s heuresSélectionnez les minutes%1$s minutesAMPasser au mode Horloge pour entrer l\'heure.HeureMinutePMSélectionner l\'heurePasser au mode Entrée de texte pour entrer l\'heure.Nouvelle notificationSupprimer %1$sPlus de %1$d nouvelles notificationsPasser au mois suivantPasser au mois précédentSélection actuelle : %1$s@android:string/ok%1$sSélectionnez la dateDate sélectionnéeColonne des jours : %1$sFormat incorrectExemple : %1$sUtiliser : %1$sPlage incorrecte.Naviguer vers l\'année %1$sHors de la plage : %1$sDu (date de début) au %1$sDu %1$s au (date de fin)Du %1$s au %2$sSélectionnez la plageDu (date de début) au (date de fin)EnregistrerDateDate de finDate de débutjmaPasser au mode d\'entrée AgendaTouchez pour passer à la sélection de jourPasser au mode d\'entrée TexteTouchez pour passer à la sélection d\'annéeAfficher le mot de passe ++ %d nowe powiadomienie ++ %d nowe powiadomienia ++ %d nowych powiadomień ++ %d nowego powiadomienia ++ Rozwiń do połowy%1$d z %2$d znakówPrzekroczono limit znaków (%1$d z %2$d)Wyczyść tekstBłądPokaż menuIkona oknaKartaWybierz: przed południem czy po południuWybierz godzinę%1$sWybierz minuty%1$s minutAMAby wprowadzić czas, włącz tryb zegara.GodzinaMinutaPMOkreśl czasAby wprowadzić czas, włącz tryb wprowadzania tekstu.Nowe powiadomienieUsuń: (%1$s)Liczba nowych powiadomień przekracza %1$dZmień na następny miesiącZmień na poprzedni miesiącBieżący wybór: %1$s@android:string/ok%1$sWybierz datęWybrana dataKolumna z dniami: %1$sNieprawidłowy format.Przykład: %1$sUżyj formatu: %1$sNieprawidłowy zakres.Przejdź do roku %1$sPoza zakresem: %1$sData rozpoczęcia – %1$s%1$s – data zakończenia%1$s–%2$sWybierz zakresData rozpoczęcia – data zakończeniaZapiszDataData zakończeniaData rozpoczęciadmrWłącz kalendarzowy tryb wprowadzaniaKliknij, by wybrać dzieńWłącz tekstowy tryb wprowadzaniaKliknij, by wybrać rokPokaż hasło ++ %d thông báo mới ++ %d thông báo mới ++ Mở rộng một nửaĐã nhập %1$d trong số %2$d ký tựĐã vượt quá giới hạn ký tự %1$d/%2$dXóa văn bảnLỗiHiển thị menu thả xuốngBiểu tượng hộp thoạiThẻChọn SA hoặc CHChọn giờ%1$s giờChọn phút%1$s phútSAChuyển sang chế độ đồng hồ để nhập thời gian.GiờPhútCHChọn thời gianChuyển sang chế độ nhập văn bản để nhập thời gian.Thông báo mớiXóa %1$sHơn %1$d thông báo mớiChuyển sang tháng tiếp theoChuyển về tháng trướcLựa chọn hiện tại: %1$s@android:string/ok%1$sChọn ngàyNgày đã chọnCột ngày: %1$sĐịnh dạng không hợp lệ.Ví dụ: %1$sSử dụng: %1$sPhạm vi không hợp lệ.Chuyển tới năm %1$sNằm ngoài phạm vi: %1$sNgày bắt đầu – %1$s%1$s – Ngày kết thúc%1$s – %2$sChọn dải ôNgày bắt đầu – Ngày kết thúcLưuNgàyNgày kết thúcNgày bắt đầudmyChuyển sang chế độ nhập lịchNhấn để chuyển sang chế độ chọn một ngàyChuyển sang chế độ nhập văn bảnNhấn để chuyển sang chế độ chọn một nămHiển thị mật khẩu ++ %d njoftim i ri ++ %d njoftime të reja ++ Zgjeroje deri në gjysmëKarakteret e futura: %1$d nga %2$dKufiri i karaktereve është kaluar: %1$d nga %2$dPastro tekstinGabimShfaq menynë me lëshim poshtëIkona e dialogutTabZgjidh paradite ose pasditeZgjidh orën%1$s fiksPërzgjidh minutat%1$s minutaPDKalo te modaliteti i orës për hyrjen e kohës.OraMinutaPDZgjidh orënKalo te modaliteti i hyrjes së tekstit për hyrjen e kohës.Njoftim i riHiq %1$sMë shumë se %1$d njoftime të rejaNdrysho te muaji i ardhshëmNdrysho te muaji i kaluarZgjedhja aktuale: %1$s@android:string/ok%1$sZgjidh datënData e zgjedhurKolona e ditëve: %1$sFormat i pavlefshëm.Shembull: %1$sPërdor: %1$sGamë e pavlefshme.Navigo te viti %1$sJashtë gamës: %1$sData e fillimit – %1$s%1$s – data e përfundimit%1$s - %2$sZgjidh gamënData e fillimit - data e përfundimitRuajDataData e përfundimitData e fillimitdmvKalo te modaliteti i \"Hyrjes së kalendarit\"Trokit për të kaluar te zgjedhja e një diteKalo te modaliteti i \"Hyrjes së tekstit\"Trokit për të kaluar te zgjedhja e një vitiShfaq fjalëkalimin ++ %d ny avisering ++ %d nya aviseringar ++ Utöka till hälften%1$d av %2$d tecken har angettsTeckengränsen har överskridits: %1$d av %2$dRensa textFelVisa rullgardinsmenynDialogikonFlikVälj mellan FM och EMAnge timmeKlockan %1$sVälj minuter%1$s minuterFMByt till klockläget och ange tid.TimmeMinutEMVälj tidByt till textinmatningsläget och ange tid.Ny aviseringTa bort (%1$s)Fler än %1$d nya aviseringarÄndra till nästa månadÄndra till föregående månadAktuellt val: %1$s@android:string/ok%1$sVälj datumValt datumKolumn med dagar: %1$sOgiltigt format.Exempel: %1$sAnvänd %1$sOgiltigt intervall.Navigera till år %1$sUtanför intervallet: %1$sStartdatum–%1$s%1$s–slutdatum%1$s–%2$sVälj intervallStartdatum–slutdatumSparaDatumSlutdatumStartdatumdmåByt till kalender som inmatningslägeByt till att välja en dag genom att tryckaByt till text som inmatningslägeByt till att välja ett år genom att tryckaVisa lösenord ++ %d novo obvestilo ++ %d novi obvestili ++ %d nova obvestila ++ %d novih obvestil ++ Razširjanje na pol višineŠtevilo vnesenih znakov je %1$d od %2$dOmejitev števila znakov je presegla %1$d od %2$dIzbris besedilaNapakaPrikaz spustnega menijaIkona pogovornega oknaZavihekIzberite dopoldanski ali popoldanski čas.Izberite uro%1$sIzberite minute%1$s mindop.Preklopite na način ure, da vnesete čas.UraMinutapop.Izberite uroPreklopite na način za vnašanje besedila, da vnesete čas.Novo obvestiloOdstranite %1$sVeč kot toliko novih obvestil: %1$dSpremeni na naslednji mesecSpremeni na prejšnji mesecTrenutna izbira: %1$s@android:string/ok%1$sIzberite datumIzbrani datumStolpec dni: %1$sNeveljavna oblika.Primer: %1$sUporabite: %1$sNeveljaven razpon.Pomik na leto %1$sZunaj razpona: %1$sZačetni datum–%1$s%1$s–končni datum%1$s–%2$sIzberite obsegZačetni datum–končni datumShraniDatumKončni datumZačetni datumdmlPreklop na način vnosa v koledarDotik za preklop na izbiro dnevaPreklop na način vnosa besedilaDotik za preklop na izbiro letaPrikaz gesla ++ %d nové upozornenie ++ %d nové upozornenia ++ %d new notifications ++ %d nových upozornení ++ Rozbaliť napolyZadané znaky: %1$d z %2$dBol prekročený povolený počet znakov (%1$d z %2$d)Vymazať textChybaZobraziť rozbaľovaciu ponukuIkona dialógového oknaTabulátorVyberte AM alebo PMVybrať hodinu%1$sVyberte minúty%1$s minAMAk chcete zadať čas, prepnite na režim hodín.HodinaMinútaPMVyberte časAk chcete zadať čas, prepnite na textový režim vstupuNové upozornenieOdstrániť položku %1$sViac než %1$d nových upozorneníĎalší mesiacPredchádzajúci mesiacAktuálny výber: %1$s@android:string/ok%1$sVyberte dátumVybraný dátumStĺpec dní: %1$sNeplatný formát.Príklad: %1$sPoužite: %1$sNeplatný rozsah.Prejsť na rok %1$sMimo rozsahu: %1$sDátum začatia – %1$s%1$s – dátum ukončenia%1$s – %2$sVyberte rozsahDátum začatia – dátum ukončeniaUložiťDátumDátum ukončeniaDátum začatiadmrPrepnúť na kalendárový režim vstupuKlepnutím prepnete na výber dňaPrepnúť na textový režim vstupuKlepnutím prepnete na výber rokaZobraziť heslo ++ %d نئی اطلاع ++ %d نئی اطلاعات ++ نصف تک پھیلائیں%2$d میں سے %1$d حروف درج کیے گئےحروف کی تعداد کی حد %2$d سے %1$d پہنچ گئیٹیکسٹ صاف کریںخرابیڈراپ ڈاؤن مینو دکھائیںڈائیلاگ کا آئیکنٹیبAM یا PM منتخب کریںگھنٹہ منتخب کریں%1$s بجےمنٹ منتخب کریں%1$s منٹقبل از دوپہروقت ان پٹ کے لیے گھڑی و‏ضع پر سوئچ کریں۔گھنٹہمنٹراتوقت منتخب کریںوقت ان پٹ کے لیے ٹیکسٹ ان پٹ وضع پر سوئچ کریں۔نئی اطلاع%1$s کو ہٹائیں%1$d سے زیادہ نئی اطلاعاتاگلے مہینہ میں منتقل کریںگزشتہ ماہ میں منتقل کریںموجودہ انتخاب: %1$s@android:string/ok%1$sتاریخ منتخب کریںمنتخب کردہ تاریخدنوں کا کالم: %1$sغلط فارمیٹ۔مثال: %1$s۔%1$s استعمال کریںغلط رینج۔%1$s سال پر نیویگیٹ کریںحد سے باہر: %1$sتاریخ آغاز – %1$s%1$s – تاریخ اختتام%1$s – %2$sرینج منتخب کریںتاریخ آغاز - تاریخ اختتاممحفوظ کریںتاریختاریخ اختتامتاریخ آغازdmyکیلنڈر ان پٹ وضع پر سوئچ کریںدن کو منتخب کرنے کے ليے سوئچ پر تھپتھپائیںمتنی ان پٹ وضع پر سوئچ کریںسال کو منتخب کرنے کے ليے سوئچ پر تھپتھپائیںپاس ورڈ دکھائیں ++ Arifa %d mpya ++ Arifa %d mpya ++ Panua nusuUmeweka herufi %1$d kati ya %2$dUmepitisha idadi ya juu ya herufi %1$d kati ya %2$dFuta maandishiHitilafuOnyesha menyu kunjuziAikoni ya KidirishaKichupoChagua AM au PMChagua saaSaa %1$s kamiliChagua dakikaDakika %1$sAMBadilisha umbo liwe la saa ya mishale wakati wa kuweka muda.SaaDakikaPMChagua wakatiBadilisha iwe katika hali ya maandishi wakati wa kuweka muda.Arifa mpyaOndoa %1$sZaidi ya arifa %1$d mpyaNenda kwenye mwezi unaofuataRudi kwenye mwezi uliotanguliaUteuzi wa sasa: %1$s@android:string/ok%1$sChagua TareheTarehe uliyochaguaSafu wima ya siku: %1$sMuundo si sahihiMfano: %1$sTumia: %1$sKipindi si sahihi.Sogeza kwenye mwaka wa %1$sNje ya kipindi: %1$sTarehe ya kuanza – %1$s%1$s – Tarehe ya mwisho%1$s – %2$sChagua Kipindi cha TareheTarehe ya kuanza – Tarehe ya mwishoHifadhiTareheTarehe ya mwishoTarehe ya kuanzadmyTumia programu ya kuingiza data kwenye kalendaGusa ili uende kwenye sehemu ya kuchagua sikuTumia programu ya kuingiza data ya maandishiGusa ili uende kwenye sehemu ya kuchagua mwakaOnyesha nenosiri ++ %d nova notificação ++ %d novas notificações ++ Expandir até metadeCarateres introduzidos: %1$d de %2$dLimite de carateres excedido: %1$d de %2$dLimpar textoErroMostrar menu pendenteÍcone de caixa de diálogoSeparadorSelecionar AM ou PMSelecionar hora%1$s hora(s)Selecionar minutos%1$s minutosAMMude para o modo de relógio para a introdução da hora.HoraMinutoPMSelecionar horaMude para o modo de introdução de texto para a introdução da hora.Nova notificaçãoRemover %1$sMais de %1$d notificações novasMudar para o mês seguinteMudar para o mês anteriorSeleção atual: %1$s@android:string/ok%1$sSelecione a dataData selecionadaColuna de dias: %1$sFormato inválido.Exemplo: %1$sUtilize: %1$sIntervalo inválido.Navegue para o ano %1$sFora do intervalo: %1$sData de início – %1$s%1$s – Data de conclusão%1$s – %2$sSelecione o intervaloData de início – Data de conclusãoGuardarDataData de conclusãoData de iníciodmaMudar para o modo de introdução de calendárioToque para mudar para a seleção do diaMudar para o modo de introdução de textoToque para mudar para a seleção do anoMostrar palavra-passe ++ %d yeni bildirim ++ %d yeni bildirim ++ Yarım genişletGirilen karakter: %1$d / %2$dKarakter sınırı aşıldı %1$d / %2$dMetni temizleHataAçılır menüyü gösterİletişim kutusu simgesiSekmeÖÖ veya ÖS\'yi seçinSaat seçinSaat %1$sDakikayı seçin%1$s dakikaAMZaman girişi için saat moduna geçin.SaatDakikaPMZamanı seçinZaman girişi için metin girişi moduna geçin.Yeni bildirim%1$s içeriğini kaldır%1$d adetten fazla yeni bildirimSonraki aya değiştirÖnceki aya değiştirGeçerli seçim: %1$s@android:string/ok%1$sTarih SeçinSeçilen tarihGün sütunu: %1$sGeçersiz biçim.Örnek: %1$sTarih biçimi: %1$sGeçersiz aralık.%1$s yılına gitİzin verilen aralığın dışında: %1$sBaşlangıç tarihi – %1$s%1$s – Bitiş tarihi%1$s-%2$sAralık SeçinBaşlangıç tarihi - Bitiş tarihiKaydetTarihBitiş tarihiBaşlangıç tarihigayTakvim giriş moduna geçGün seçmeye geçmek için dokununMetin giriş moduna geçYıl seçmeye geçmek için dokununŞifreyi göster24dp24dp24dp24dp@drawable/material_ic_keyboard_arrow_left_black_24dp@drawable/material_ic_keyboard_arrow_right_black_24dp24dp ++ การแจ้งเตือนใหม่ %d รายการ ++ การแจ้งเตือนใหม่ %d รายการ ++ ขยายรายการครึ่งหนึ่งป้อนอักขระแล้ว %1$d จาก %2$d ตัวเกินจำนวนอักขระสูงสุด %1$d จาก %2$dล้างข้อความข้อผิดพลาดแสดงเมนูแบบเลื่อนลงไอคอนกล่องโต้ตอบแท็บเลือก AM หรือ PMเลือกชั่วโมง%1$s นาฬิกาเลือกนาที%1$s นาทีAMสลับไปโหมดนาฬิกาเพื่อป้อนเวลาชั่วโมงนาทีPMเลือกเวลาสลับไปโหมดป้อนข้อความเพื่อป้อนเวลาการแจ้งเตือนใหม่นำ %1$s ออกการแจ้งเตือนใหม่มากกว่า %1$d รายการเปลี่ยนไปที่เดือนถัดไปเปลี่ยนไปที่เดือนก่อนหน้าการเลือกในปัจจุบัน: %1$s@android:string/ok%1$sเลือกวันที่วันที่ที่เลือกคอลัมน์ของวัน: %1$sรูปแบบไม่ถูกต้องตัวอย่าง: %1$sใช้: %1$sช่วงไม่ถูกต้องไปที่ปี %1$sวันที่ไม่อยู่ในช่วงที่อนุญาต: %1$sวันที่เริ่มต้น – %1$s%1$s – วันที่สิ้นสุด%1$s – %2$sเลือกช่วงวันที่เริ่มต้น – วันที่สิ้นสุดบันทึกวันที่วันที่สิ้นสุดวันที่เริ่มต้นสลับไปใช้โหมดป้อนข้อมูลปฏิทินแตะเพื่อสลับไปใช้การเลือกวันสลับไปใช้โหมดป้อนข้อมูลข้อความแตะเพื่อสลับไปใช้การเลือกปีแสดงรหัสผ่าน4dp18dp40dp2dp2dp40dp40dp4dp ++ %d اعلان جدید ++ %d اعلان جدید ++ گسترده کردن تا نیمهنویسه‌های واردشده %1$d از %2$dمحدودیت نویسه از حد مجاز %1$d از %2$d بیشتر شده استپاک کردن نوشتارخطانمایش منوی کرکره‌اینماد کادر گفتگوبرگهانتخاب .ق.ظ. یا ب.ظ.انتخاب ساعتساعت %1$sانتخاب دقیقه%1$s دقیقهق.ظبرای وارد کردن زمان، به حالت ساعت تغییر وضعیت دهید.ساعتدقیقهب.ظانتخاب زمانبرای وارد کردن زمان، به حالت ورودی نوشتاری تغییر وضعیت دهید.اعلان جدیدبرداشتن %1$sبیش از %1$d اعلان جدیدتغییر به ماه بعدیتغییر به ماه قبلیانتخاب کنونی: %1$s@android:string/ok%1$sانتخاب تاریختاریخ انتخابیستون روز: %1$sقالب نامعتبر است.مثال: %1$sقالب: %1$sمحدوده نامعتبر است.رفتن به سال %1$sخارج از محدوده: %1$sتاریخ شروع – %1$s%1$s – تاریخ پایان%1$s – %2$sانتخاب محدودهتاریخ شروع – تاریخ پایانذخیرهتاریختاریخ پایانتاریخ شروعdmyرفتن به روش ورودی تقویمرفتن به رفتن به حالت انتخاب روز ضربه بزنیدرفتن به حالت ورودی نوشتاریبرای رفتن به حالت انتخاب سال ضربه بزنیدنمایش گذرواژه ++ %d naujas pranešimas ++ %d nauji pranešimai ++ %d naujo pranešimo ++ %d naujų pranešimų ++ Išskleisti iki pusėsĮvesta simbolių: %1$d iš %2$dViršytas simbolių skaičius: %1$d iš %2$dIšvalyti tekstąKlaidaRodyti išskleidžiamąjį meniuDialogo lango piktogramaSkirtukasPasirinkite „iki pietų“ arba „po pietų“Pasirinkite valandą%1$s val.Pasirinkite minutes%1$s min.AMLaiko įvestį pateikti perjungus į laikrodžio režimą.ValandaMinutėPMPasirinkite laikąLaiko įvestį pateikti perjungus į teksto įvesties režimą.Naujas pranešimasPašalinti %1$sNaujų pranešimų: daugiau nei %1$dPakeisti į kitą mėnesįPakeisti į ankstesnį mėnesįDabartinis pasirinkimas: %1$s@android:string/ok%1$sPasirinkite datąPasirinkta dataDienų stulpelis: %1$sNetinkamas formatas.Pavyzdys: %1$sNaudoti: %1$sNetinkamas diapazonas.Eiti į %1$s metusNepatenka į diapazoną: %1$sPradžios data–%1$s%1$s–pabaigos data%1$s–%2$sPasirinkite diapazonąPradžios data–pabaigos dataIšsaugotiDataPabaigos dataPradžios datadmyPerjungti į kalendoriaus įvesties režimąPalieskite, kad perjungtumėte į dienos pasirinkimąPerjungti į teksto įvesties režimąPalieskite, kad perjungtumėte į metų pasirinkimąRodyti slaptažodį ++ %d new notification ++ %d new notifications ++ Expand halfway%2$d ର %1$d ଅକ୍ଷର ଲେଖିଛନ୍ତି%2$d ର %1$d ଅକ୍ଷର ଲେଖିଛନ୍ତିClear textErrorShow dropdown menuDialog IconTabSelect AM or PMSelect hour%1$s o\'clockମିନିଟ୍‍ ଚୟନ କରନ୍ତୁ%1$s minutesAMସମୟ ଇନପୁଟ୍‍ ପାଇଁ ଘଣ୍ଟା ମୋଡ୍‌କୁ ବଦଳାନ୍ତୁ।HourMinutePMSelect timeସମୟ ଇନପୁଟ୍‍ ପାଇଁ ଟେକ୍ସଟ୍‍ ଇନପୁଟ୍‌କୁ ବଦଳାନ୍ତୁ।New notification%1$s କାଢ଼ିଦିଅନ୍ତୁMore than %1$d new notificationsChange to next monthChange to previous monthCurrent selection: %1$s@android:string/ok%1$sSelect DateSelected dateColumn of days: %1$sInvalid format.Example: %1$sUse: %1$sInvalid range.Navigate to year %1$sOut of range: %1$sStart date – %1$s%1$s – End date%1$s – %2$sSelect RangeStart date – End dateSaveDateEnd dateStart datedmySwitch to calendar input modeTap to switch to selecting a daySwitch to text input modeTap to switch to selecting a yearପାସ୍‍ୱାର୍ଡ ଦେଖାନ୍ତୁ ++ %d notificación nueva ++ %d notificaciones nuevas ++ Expandir hasta la mitadCaracteres ingresados: %1$d de %2$dSe excedió en %1$d el límite de caracteres de %2$dBorrar textoErrorMostrar menú desplegableÍcono de diálogoPestañaSelecciona a.m. o p.m.Seleccione la hora.%1$s en puntoSeleccionar minutos%1$s minutosA. M.Cambia al modo de reloj para ingresar la hora.HoraMinutoP. M.Seleccionar la horaCambia al modo de entrada de texto para ingresar la hora.Notificación nuevaQuitar %1$sMás de %1$d notificaciones nuevasCambiar al mes siguienteCambiar al mes anteriorSelección actual: %1$s@android:string/ok%1$sSeleccionar fechaFecha seleccionadaColumna de días: %1$sFormato no válidoEjemplo: %1$sUsar: %1$sEl rango no es válido.Navegar al año %1$sFuera de rango: %1$sFecha de inicio - %1$s%1$s - fecha de finalización%1$s-%2$sSelecciona un períodoFecha de inicio - fecha de finalizaciónGuardarFechaFecha de finalizaciónFecha de iniciodmaCambiar al modo de entrada de calendarioPresiona para seleccionar un díaCambiar al modo de entrada de textoPresiona para seleccionar un añoMostrar contraseña ++ %d jakinarazpen berri ++ %d jakinarazpen berri ++ Zabaldu erdiraino%1$d/%2$d karaktere idatzi diraKaraktere-muga gainditu da: %1$d/%2$dGarbitu testuaErroreaErakutsi goitibeherako menuaLeihoko ikonoaFitxaHautatu AM edo PMHautatu ordua%1$s(r)ak diraHautatu minutuak%1$s minutuAMAldatu erloju modura ordua zehazteko.OrduaMinutuaPMHautatu orduaOrdua idazteko, aldatu testua idazteko metodora.Jakinarazpen berriaKendu %1$s%1$d jakinarazpen berri baino gehiagoAldatu hurrengo hilabeteraAldatu aurreko hilabeteraUneko hautapena: %1$s@android:string/ok%1$sHautatu dataHautatutako dataEgunen zutabea:%1$sFormatuak ez du balio.Adibidea: %1$sErabili: %1$sTarteak ez du balio.Joan %1$s. urteraOnartutako barrutitik kanpo: %1$sHasiera-data – %1$s%1$s – Amaiera-data%1$s-%2$sHautatu barrutiaHasiera-data - Amaiera-dataGordeDataAmaiera-dataHasiera-dataehuAldatu egutegiaren idazketa-metodoraSakatu eguna hautatzeko modura aldatzekoAldatu testua idazteko moduraSakatu urtea hautatzeko modura aldatzekoErakutsi pasahitza ++ %d ການແຈ້ງເຕືອນໃໝ່ ++ %d ການແຈ້ງເຕືອນໃໝ່ ++ ຂະຫຍາຍອອກເຄິ່ງໜຶ່ງຕົວອັກສອນທີ່ປ້ອນເຂົ້າ %1$d ຕົວຈາກທັງໝົດ %2$d ຕົວຂີດຈຳກັດຕົວອັກສອນເກີນ %1$d ຈາກທັງໝົດ %2$dລຶບລ້າງຂໍ້ຄວາມຜິດພາດສະແດງເມນູເລື່ອນລົງໄອຄອນກ່ອງໂຕ້ຕອບແຖບເລືອກຕອນເຊົ້າ ຫຼື ຕອນແລງເລືອກຊົ່ວໂມງ%1$s ໂມງເລືອກນາ​ທີ%1$s ນາທີໂມງເຊົ້າສະຫຼັບໄປໃຊ້ໂໝດໂມງສຳລັບການປ້ອນເວລາ.ຊົ່ວໂມງນາທີໂມງແລງເລືອກເວ​ລາສະຫຼັບໄປໃຊ້ໂໝດປ້ອນຂໍ້ຄວາມສຳລັບການປ້ອນເວລາ.ການແຈ້ງເຕືອນໃໝ່ລຶບ %1$s ອອກການແຈ້ງເຕືອນໃໝ່ຫຼາຍກວ່າ %1$d ລາຍການປ່ຽນເປັນເດືອນຕໍ່ໄປປ່ຽນເປັນເດືອນຜ່ານມາການເລືອກປັດຈຸບັນ: %1$s@android:string/ok%1$sເລືອກວັນທີເລືອກວັນທີຖັນມື້: %1$sຮູບແບບບໍ່ຖືກຕ້ອງ.ຕົວຢ່າງ: %1$sໃຊ້: %1$sໄລຍະບໍ່ຖືກຕ້ອງ.ເລື່ອນໄປປີ %1$sຢູ່ນອກຊ່ວງວັນທີ: %1$sວັນທີເລີ່ມຕົ້ນ – %1$s%1$s – ວັນທີສິ້ນສຸດ%1$s – %2$sເລືອກຊ່ວງວັນທີເລີ່ມຕົ້ນ – ວັນທີສິ້ນສຸດບັນທຶກວັນທີວັນທີສິ້ນສຸດວັນທີເລີ່ມປ່ຽນເປັນໂໝດປ້ອນຂໍ້ມູນປະຕິທິນແຕະເພື່ອປ່ຽນເປັນການເລືອກມື້ປ່ຽນເປັນໂໝດປ້ອນຂໍ້ມູນຂໍ້ຄວາມແຕະເພື່ອປ່ຽນເປັນການເລືອກປີສະແດງລະຫັດຜ່ານ ++ התראה חדשה אחת (%d) ++ %d התראות חדשות ++ %d התראות חדשות ++ %d התראות חדשות ++ הרחבה עד האמצעהוזנו %1$d תווים מתוך %2$dמגבלת התווים חורגת ב-%1$d מתוך %2$dמחיקת הטקסטשגיאההצגת התפריט הנפתחסמל לתיבת דו-שיחמקש Tabיש לבחור ב-AM או ב-PMבחר שעההשעה %1$sבחר דקות%1$s דקותלפנה\"צהעבר למצב שעון לצורך הזנת השעהשעהדקהאחה\"צבחר שעההעבר למצב קלט טקסט לצורך הזנת השעההתראה חדשההסרה של %1$sיותר מ-%1$d התראות חדשותמעבר לחודש הבאמעבר לחודש הקודםהבחירה הנוכחית: %1$s@android:string/ok%1$sיש לבחור תאריךהתאריך הנבחרעמודה של ימים: %1$sפורמט לא חוקי.דוגמה: %1$sיש להשתמש בפורמט: %1$sטווח לא חוקי.ניווט לשנת %1$sמחוץ לטווח: %1$sתאריך התחלה – %1$s%1$s – תאריך סיום%1$s – %2$sיש לבחור טווחתאריך התחלה - תאריך סיוםשמירהתאריךתאריך סיוםתאריך התחלהיחשהחלפה לשיטת קלט של יומןיש להקיש כדי להחליף לבחירת יוםהחלפה לשיטת קלט של טקסטיש להקיש כדי להחליף לבחירת שנההצגת סיסמה ++ %d new notification ++ %d new notifications ++ Expand halfwayCharacters entered %1$d of %2$dCharacter limit exceeded %1$d of %2$dClear textErrorShow drop-down menuDialogue IconTabSelect a.m. or p.m.Select hour%1$s o\'clockSelect minutes%1$s minutesAMSwitch to clock mode for the time input.HourMinutePMSelect timeSwitch to text input mode for the time input.New notificationRemove %1$sMore than %1$d new notificationsChange to next monthChange to previous monthCurrent selection: %1$s@android:string/ok%1$sSelect dateSelected dateColumn of days: %1$sInvalid format.Example: %1$sUse: %1$sInvalid range.Navigate to year %1$sOut of range: %1$sStart date – %1$s%1$s – End date%1$s – %2$sSelect rangeStart date – End dateSaveDateEnd dateStart datedmySwitch to calendar input modeTap to switch to selecting a daySwitch to text input modeTap to switch to selecting a yearShow password ++ %d uusi ilmoitus ++ %d uutta ilmoitusta ++ Laajenna puoliväliin%1$d/%2$d merkkiä kirjoitettuMerkkiraja ylitetty: %1$d/%2$dTyhjennä tekstiVirheNäytä avattava valikkoValintaikkunan kuvakeVälilehtiValitse AP tai IPValitse tuntiklo %1$sValitse minuutit%1$s minuuttiaapVaihda ajan syöttämiseen kellotilassa.TunnitMinuuttiipValitse aikaVaihda ajan syöttämiseen tekstitilassa.Uusi ilmoitusPoista %1$sYli %1$d uutta ilmoitustaVaihda seuraavaan kuukauteenVaihda edelliseen kuukauteenNykyinen valinta: %1$s@android:string/ok%1$sValitse päivämääräValittu päivämääräPäiväsarake: %1$sVirheellinen muotoEsimerkki: %1$sKäytä muotoa %1$sVirheellinen alueSiirry vuoteen %1$sKatvealueella: %1$sAlkamispäivä – %1$s%1$s – päättymispäivä%1$s – %2$sValitse jaksoAlkamispäivä – päättymispäiväTallennaPäivämääräPäättymispäiväAlkamispäiväpkvVaihda syöttötavaksi kalenteriSiirry päivän valintaan napauttamallaValitse syöttötavaksi tekstiSiirry vuoden valintaan napauttamallaNäytä salasanaDetox ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ /> ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugAndroidTestAssets/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugAndroidTestAssets/merger.xml +new file mode 100644 +index 0000000..bb09552 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugAndroidTestAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugAndroidTestJniLibFolders/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugAndroidTestJniLibFolders/merger.xml +new file mode 100644 +index 0000000..58b4609 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugAndroidTestJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugAndroidTestShaders/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugAndroidTestShaders/merger.xml +new file mode 100644 +index 0000000..0662e31 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugAndroidTestShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugJniLibFolders/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..064572d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugShaders/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugShaders/merger.xml +new file mode 100644 +index 0000000..a71c347 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/mergeCoreNativeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugAndroidTestAssets/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugAndroidTestAssets/merger.xml +new file mode 100644 +index 0000000..b17ec65 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugAndroidTestAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugAndroidTestJniLibFolders/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugAndroidTestJniLibFolders/merger.xml +new file mode 100644 +index 0000000..df52563 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugAndroidTestJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugAndroidTestShaders/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugAndroidTestShaders/merger.xml +new file mode 100644 +index 0000000..5c806ce +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugAndroidTestShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugJniLibFolders/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..f29e51e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugShaders/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugShaders/merger.xml +new file mode 100644 +index 0000000..7877fce +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/mergeFullDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAndroidTest/tmp/coreNativeDebugAndroidTest/dex-renamer-state.txt b/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAndroidTest/tmp/coreNativeDebugAndroidTest/dex-renamer-state.txt +new file mode 100644 +index 0000000..ed362d7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAndroidTest/tmp/coreNativeDebugAndroidTest/dex-renamer-state.txt +@@ -0,0 +1,40 @@ ++#Mon Dec 30 11:00:20 ECT 2024 ++path.4=13/classes.dex ++path.3=12/classes.dex ++path.2=11/classes.dex ++renamed.9=classes10.dex ++path.1=1/classes.dex ++renamed.8=classes9.dex ++path.8=7/classes.dex ++path.7=6/classes.dex ++path.6=4/classes.dex ++renamed.12=classes13.dex ++path.5=14/classes.dex ++renamed.11=classes12.dex ++renamed.10=classes11.dex ++path.0=classes.dex ++base.4=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/13/classes.dex ++base.3=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/12/classes.dex ++base.2=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/11/classes.dex ++base.1=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/1/classes.dex ++base.0=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeExtDexCoreNativeDebugAndroidTest/classes.dex ++renamed.3=classes4.dex ++path.12=classes2.dex ++renamed.2=classes3.dex ++renamed.1=classes2.dex ++path.10=0/classes.dex ++renamed.0=classes.dex ++base.9=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/8/classes.dex ++path.9=8/classes.dex ++path.11=9/classes.dex ++renamed.7=classes8.dex ++base.8=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/7/classes.dex ++renamed.6=classes7.dex ++base.7=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/6/classes.dex ++renamed.5=classes6.dex ++base.6=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/4/classes.dex ++renamed.4=classes5.dex ++base.5=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeLibDexCoreNativeDebugAndroidTest/14/classes.dex ++base.12=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeExtDexCoreNativeDebugAndroidTest/classes2.dex ++base.11=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeProjectDexCoreNativeDebugAndroidTest/9/classes.dex ++base.10=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/coreNativeDebugAndroidTest/mergeProjectDexCoreNativeDebugAndroidTest/0/classes.dex +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAndroidTest/tmp/coreNativeDebugAndroidTest/zip-cache/androidResources b/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAndroidTest/tmp/coreNativeDebugAndroidTest/zip-cache/androidResources +new file mode 100644 +index 0000000..e9eca7a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAndroidTest/tmp/coreNativeDebugAndroidTest/zip-cache/androidResources differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAndroidTest/tmp/coreNativeDebugAndroidTest/zip-cache/javaResources0 b/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAndroidTest/tmp/coreNativeDebugAndroidTest/zip-cache/javaResources0 +new file mode 100644 +index 0000000..367a145 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAndroidTest/tmp/coreNativeDebugAndroidTest/zip-cache/javaResources0 differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAssets/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAssets/merger.xml +new file mode 100644 +index 0000000..bda035d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/packageCoreNativeDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAndroidTest/tmp/fullDebugAndroidTest/dex-renamer-state.txt b/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAndroidTest/tmp/fullDebugAndroidTest/dex-renamer-state.txt +new file mode 100644 +index 0000000..f6a054d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAndroidTest/tmp/fullDebugAndroidTest/dex-renamer-state.txt +@@ -0,0 +1,58 @@ ++#Mon Dec 30 11:00:29 ECT 2024 ++path.4=12/classes.dex ++path.3=11/classes.dex ++path.2=10/classes.dex ++path.1=1/classes.dex ++path.8=2/classes.dex ++path.7=15/classes.dex ++path.6=14/classes.dex ++path.5=13/classes.dex ++path.0=classes.dex ++base.4=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/12/classes.dex ++base.3=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/11/classes.dex ++base.2=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/10/classes.dex ++base.1=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/1/classes.dex ++base.0=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeExtDexFullDebugAndroidTest/classes.dex ++path.9=3/classes.dex ++base.9=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/3/classes.dex ++base.8=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/2/classes.dex ++base.7=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/15/classes.dex ++base.6=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/14/classes.dex ++base.5=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/13/classes.dex ++renamed.18=classes19.dex ++renamed.17=classes18.dex ++renamed.9=classes10.dex ++renamed.16=classes17.dex ++path.18=classes2.dex ++renamed.8=classes9.dex ++renamed.15=classes16.dex ++renamed.14=classes15.dex ++renamed.13=classes14.dex ++renamed.12=classes13.dex ++renamed.11=classes12.dex ++renamed.10=classes11.dex ++base.17=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeProjectDexFullDebugAndroidTest/9/classes.dex ++base.16=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeProjectDexFullDebugAndroidTest/0/classes.dex ++base.15=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/9/classes.dex ++base.14=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/8/classes.dex ++base.18=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeExtDexFullDebugAndroidTest/classes2.dex ++renamed.3=classes4.dex ++path.12=6/classes.dex ++renamed.2=classes3.dex ++path.13=7/classes.dex ++renamed.1=classes2.dex ++path.10=4/classes.dex ++renamed.0=classes.dex ++path.11=5/classes.dex ++renamed.7=classes8.dex ++path.16=0/classes.dex ++renamed.6=classes7.dex ++path.17=9/classes.dex ++renamed.5=classes6.dex ++path.14=8/classes.dex ++renamed.4=classes5.dex ++path.15=9/classes.dex ++base.13=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/7/classes.dex ++base.12=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/6/classes.dex ++base.11=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/5/classes.dex ++base.10=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/dex/fullDebugAndroidTest/mergeLibDexFullDebugAndroidTest/4/classes.dex +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAndroidTest/tmp/fullDebugAndroidTest/zip-cache/androidResources b/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAndroidTest/tmp/fullDebugAndroidTest/zip-cache/androidResources +new file mode 100644 +index 0000000..e9eca7a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAndroidTest/tmp/fullDebugAndroidTest/zip-cache/androidResources differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAndroidTest/tmp/fullDebugAndroidTest/zip-cache/javaResources0 b/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAndroidTest/tmp/fullDebugAndroidTest/zip-cache/javaResources0 +new file mode 100644 +index 0000000..367a145 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAndroidTest/tmp/fullDebugAndroidTest/zip-cache/javaResources0 differ +diff --git a/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAssets/merger.xml b/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAssets/merger.xml +new file mode 100644 +index 0000000..cd4d8fb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/incremental/packageFullDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/java_res/coreNativeDebug/processCoreNativeDebugJavaRes/out/META-INF/detox_coreNativeDebug.kotlin_module b/node_modules/detox/android/detox/build/intermediates/java_res/coreNativeDebug/processCoreNativeDebugJavaRes/out/META-INF/detox_coreNativeDebug.kotlin_module +new file mode 100644 +index 0000000..49a1801 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/java_res/coreNativeDebug/processCoreNativeDebugJavaRes/out/META-INF/detox_coreNativeDebug.kotlin_module differ +diff --git a/node_modules/detox/android/detox/build/intermediates/java_res/fullDebug/processFullDebugJavaRes/out/META-INF/detox_fullDebug.kotlin_module b/node_modules/detox/android/detox/build/intermediates/java_res/fullDebug/processFullDebugJavaRes/out/META-INF/detox_fullDebug.kotlin_module +new file mode 100644 +index 0000000..a79f7a1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/java_res/fullDebug/processFullDebugJavaRes/out/META-INF/detox_fullDebug.kotlin_module differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/BuildConfig.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/BuildConfig.class +new file mode 100644 +index 0000000..d0e6629 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/BuildConfig.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class +new file mode 100644 +index 0000000..1ef9a86 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class +new file mode 100644 +index 0000000..0158649 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class +new file mode 100644 +index 0000000..60af370 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$StaleActionException.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$StaleActionException.class +new file mode 100644 +index 0000000..ed6ce9d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$StaleActionException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors.class +new file mode 100644 +index 0000000..c37e851 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/espresso/scroll/ScrollHelper.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/espresso/scroll/ScrollHelper.class +new file mode 100644 +index 0000000..3089648 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/com/wix/detox/espresso/scroll/ScrollHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/Reflect$1.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/Reflect$1.class +new file mode 100644 +index 0000000..19803cc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/Reflect$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/Reflect$NULL.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/Reflect$NULL.class +new file mode 100644 +index 0000000..7ac2524 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/Reflect$NULL.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/Reflect.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/Reflect.class +new file mode 100644 +index 0000000..d2f6cb9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/Reflect.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/ReflectException.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/ReflectException.class +new file mode 100644 +index 0000000..bebde47 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebug/compileCoreNativeDebugJavaWithJavac/classes/org/joor/ReflectException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebugAndroidTest/compileCoreNativeDebugAndroidTestJavaWithJavac/classes/com/wix/detox/test/BuildConfig.class b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebugAndroidTest/compileCoreNativeDebugAndroidTestJavaWithJavac/classes/com/wix/detox/test/BuildConfig.class +new file mode 100644 +index 0000000..1f2c943 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/coreNativeDebugAndroidTest/compileCoreNativeDebugAndroidTestJavaWithJavac/classes/com/wix/detox/test/BuildConfig.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/BuildConfig.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/BuildConfig.class +new file mode 100644 +index 0000000..1d1e1fc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/BuildConfig.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/Delegator.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/Delegator.class +new file mode 100644 +index 0000000..2bb4638 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/Delegator.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/Detox.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/Detox.class +new file mode 100644 +index 0000000..c5e7fa7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/Detox.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/DetoxJUnitRunner$1.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/DetoxJUnitRunner$1.class +new file mode 100644 +index 0000000..838a72e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/DetoxJUnitRunner$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/DetoxJUnitRunner.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/DetoxJUnitRunner.class +new file mode 100644 +index 0000000..b8b8b7a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/DetoxJUnitRunner.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/LaunchArgs.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/LaunchArgs.class +new file mode 100644 +index 0000000..5c5d9e8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/LaunchArgs.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/adapters/server/WebSocketClient$WSEventsHandler.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/adapters/server/WebSocketClient$WSEventsHandler.class +new file mode 100644 +index 0000000..a438b50 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/adapters/server/WebSocketClient$WSEventsHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/adapters/server/WebSocketClient$WebSocketEventsListener.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/adapters/server/WebSocketClient$WebSocketEventsListener.class +new file mode 100644 +index 0000000..04daa08 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/adapters/server/WebSocketClient$WebSocketEventsListener.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/adapters/server/WebSocketClient.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/adapters/server/WebSocketClient.class +new file mode 100644 +index 0000000..661b7f5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/adapters/server/WebSocketClient.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class +new file mode 100644 +index 0000000..1ef9a86 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class +new file mode 100644 +index 0000000..0158649 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class +new file mode 100644 +index 0000000..60af370 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$StaleActionException.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$StaleActionException.class +new file mode 100644 +index 0000000..ed6ce9d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors$StaleActionException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors.class +new file mode 100644 +index 0000000..c37e851 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/common/DetoxErrors.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction$1.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction$1.class +new file mode 100644 +index 0000000..5b9265e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction$2.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction$2.class +new file mode 100644 +index 0000000..8f459d5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction$2.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction$3.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction$3.class +new file mode 100644 +index 0000000..7379755 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction$3.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction.class +new file mode 100644 +index 0000000..85cda82 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAssertion.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAssertion.class +new file mode 100644 +index 0000000..59dd091 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxAssertion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxMatcher.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxMatcher.class +new file mode 100644 +index 0000000..81f4a69 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxMatcher.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxViewActions.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxViewActions.class +new file mode 100644 +index 0000000..1f71236 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/DetoxViewActions.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$1.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$1.class +new file mode 100644 +index 0000000..6858379 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$2.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$2.class +new file mode 100644 +index 0000000..bbddbfa +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$2.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$3.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$3.class +new file mode 100644 +index 0000000..7ebe5bf +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$3.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$4.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$4.class +new file mode 100644 +index 0000000..aab19d5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox$4.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox.class +new file mode 100644 +index 0000000..8344f45 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/EspressoDetox.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$1.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$1.class +new file mode 100644 +index 0000000..6772b38 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$2.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$2.class +new file mode 100644 +index 0000000..e732511 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$2.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$3$1.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$3$1.class +new file mode 100644 +index 0000000..f1de869 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$3$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$3.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$3.class +new file mode 100644 +index 0000000..3f3e692 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper$3.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper.class +new file mode 100644 +index 0000000..bd1e6d2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/UiAutomatorHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/action/DetoxTypeTextAction.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/action/DetoxTypeTextAction.class +new file mode 100644 +index 0000000..beb9148 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/action/DetoxTypeTextAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/action/RNClickAction.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/action/RNClickAction.class +new file mode 100644 +index 0000000..9fcfeb3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/action/RNClickAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/assertion/ViewAssertions$MatchesViewAssertion.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/assertion/ViewAssertions$MatchesViewAssertion.class +new file mode 100644 +index 0000000..ff11dd1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/assertion/ViewAssertions$MatchesViewAssertion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/assertion/ViewAssertions.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/assertion/ViewAssertions.class +new file mode 100644 +index 0000000..ab85465 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/assertion/ViewAssertions.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/scroll/ScrollHelper.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/scroll/ScrollHelper.class +new file mode 100644 +index 0000000..3089648 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/scroll/ScrollHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/DetoxWebAtomMatcher.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/DetoxWebAtomMatcher.class +new file mode 100644 +index 0000000..5a4c140 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/DetoxWebAtomMatcher.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/EspressoWebDetox.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/EspressoWebDetox.class +new file mode 100644 +index 0000000..994864c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/EspressoWebDetox.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebElement.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebElement.class +new file mode 100644 +index 0000000..2e608a8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebElement.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebExpect.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebExpect.class +new file mode 100644 +index 0000000..62c6256 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebExpect.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebViewElement$1.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebViewElement$1.class +new file mode 100644 +index 0000000..9e170eb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebViewElement$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebViewElement.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebViewElement.class +new file mode 100644 +index 0000000..00553e0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/espresso/web/WebViewElement.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/genymotion/DetoxGenymotionManager.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/genymotion/DetoxGenymotionManager.class +new file mode 100644 +index 0000000..fecb73f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/genymotion/DetoxGenymotionManager.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/DetoxInstrumentsException.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/DetoxInstrumentsException.class +new file mode 100644 +index 0000000..d4bf59d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/DetoxInstrumentsException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/DetoxInstrumentsManager.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/DetoxInstrumentsManager.class +new file mode 100644 +index 0000000..7819103 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/DetoxInstrumentsManager.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/Instruments.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/Instruments.class +new file mode 100644 +index 0000000..5f291c7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/Instruments.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/InstrumentsRecording.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/InstrumentsRecording.class +new file mode 100644 +index 0000000..8e56d7a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/InstrumentsRecording.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/reflected/InstrumentsRecordingReflected.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/reflected/InstrumentsRecordingReflected.class +new file mode 100644 +index 0000000..2473e5b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/reflected/InstrumentsRecordingReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/reflected/InstrumentsReflected.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/reflected/InstrumentsReflected.class +new file mode 100644 +index 0000000..4154eb3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/instruments/reflected/InstrumentsReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/uiautomator/UiAutomator.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/uiautomator/UiAutomator.class +new file mode 100644 +index 0000000..a1ed560 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/detox/uiautomator/UiAutomator.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/MethodInvocation.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/MethodInvocation.class +new file mode 100644 +index 0000000..8ffb1c8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/MethodInvocation.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/MethodUtilsExt.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/MethodUtilsExt.class +new file mode 100644 +index 0000000..78425ad +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/MethodUtilsExt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/exceptions/EmptyInvocationInstructionException.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/exceptions/EmptyInvocationInstructionException.class +new file mode 100644 +index 0000000..0616280 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/exceptions/EmptyInvocationInstructionException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/parser/JsonParser.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/parser/JsonParser.class +new file mode 100644 +index 0000000..0144064 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/parser/JsonParser.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/ClassTarget.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/ClassTarget.class +new file mode 100644 +index 0000000..ada4747 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/ClassTarget.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/Invocation.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/Invocation.class +new file mode 100644 +index 0000000..527dcc7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/Invocation.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/InvocationTarget.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/InvocationTarget.class +new file mode 100644 +index 0000000..ac25bbf +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/InvocationTarget.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/ObjectInstanceTarget.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/ObjectInstanceTarget.class +new file mode 100644 +index 0000000..25b11c2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/ObjectInstanceTarget.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/Target.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/Target.class +new file mode 100644 +index 0000000..f7710ff +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/com/wix/invoke/types/Target.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/Reflect$1.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/Reflect$1.class +new file mode 100644 +index 0000000..19803cc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/Reflect$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/Reflect$NULL.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/Reflect$NULL.class +new file mode 100644 +index 0000000..7ac2524 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/Reflect$NULL.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/Reflect.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/Reflect.class +new file mode 100644 +index 0000000..d2f6cb9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/Reflect.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/ReflectException.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/ReflectException.class +new file mode 100644 +index 0000000..bebde47 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebug/compileFullDebugJavaWithJavac/classes/org/joor/ReflectException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/javac/fullDebugAndroidTest/compileFullDebugAndroidTestJavaWithJavac/classes/com/wix/detox/test/BuildConfig.class b/node_modules/detox/android/detox/build/intermediates/javac/fullDebugAndroidTest/compileFullDebugAndroidTestJavaWithJavac/classes/com/wix/detox/test/BuildConfig.class +new file mode 100644 +index 0000000..967c474 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/javac/fullDebugAndroidTest/compileFullDebugAndroidTestJavaWithJavac/classes/com/wix/detox/test/BuildConfig.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/linked-resources-binary-format.ap_ b/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/linked-resources-binary-format.ap_ +new file mode 100644 +index 0000000..f9ea129 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/linked-resources-binary-format.ap_ differ +diff --git a/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/output-metadata.json b/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/output-metadata.json +new file mode 100644 +index 0000000..28900e6 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/output-metadata.json +@@ -0,0 +1,20 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "LINKED_RESOURCES_BINARY_FORMAT", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.wix.detox.test", ++ "variantName": "coreNativeDebugAndroidTest", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "versionCode": 0, ++ "versionName": "", ++ "outputFile": "linked-resources-binary-format.ap_" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/fullDebugAndroidTest/processFullDebugAndroidTestResources/linked-resources-binary-format.ap_ b/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/fullDebugAndroidTest/processFullDebugAndroidTestResources/linked-resources-binary-format.ap_ +new file mode 100644 +index 0000000..f9ea129 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/fullDebugAndroidTest/processFullDebugAndroidTestResources/linked-resources-binary-format.ap_ differ +diff --git a/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/fullDebugAndroidTest/processFullDebugAndroidTestResources/output-metadata.json b/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/fullDebugAndroidTest/processFullDebugAndroidTestResources/output-metadata.json +new file mode 100644 +index 0000000..2eee825 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/linked_resources_binary_format/fullDebugAndroidTest/processFullDebugAndroidTestResources/output-metadata.json +@@ -0,0 +1,20 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "LINKED_RESOURCES_BINARY_FORMAT", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.wix.detox.test", ++ "variantName": "fullDebugAndroidTest", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "versionCode": 0, ++ "versionName": "", ++ "outputFile": "linked-resources-binary-format.ap_" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/lint_model_metadata/fullDebug/writeFullDebugLintModelMetadata/lint-model-metadata.properties b/node_modules/detox/android/detox/build/intermediates/lint_model_metadata/fullDebug/writeFullDebugLintModelMetadata/lint-model-metadata.properties +new file mode 100644 +index 0000000..e674480 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/lint_model_metadata/fullDebug/writeFullDebugLintModelMetadata/lint-model-metadata.properties +@@ -0,0 +1,3 @@ ++mavenArtifactId=detox ++mavenGroupId=RNGoogleMobileAdsExample ++mavenVersion=unspecified +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/local_aar_for_lint/fullDebug/out.aar b/node_modules/detox/android/detox/build/intermediates/local_aar_for_lint/fullDebug/out.aar +new file mode 100644 +index 0000000..300f808 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/local_aar_for_lint/fullDebug/out.aar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/local_only_symbol_list/coreNativeDebug/parseCoreNativeDebugLocalResources/R-def.txt b/node_modules/detox/android/detox/build/intermediates/local_only_symbol_list/coreNativeDebug/parseCoreNativeDebugLocalResources/R-def.txt +new file mode 100644 +index 0000000..34ca0ec +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/local_only_symbol_list/coreNativeDebug/parseCoreNativeDebugLocalResources/R-def.txt +@@ -0,0 +1,3 @@ ++R_DEF: Internal format may change without notice ++local ++string app_name +diff --git a/node_modules/detox/android/detox/build/intermediates/local_only_symbol_list/fullDebug/parseFullDebugLocalResources/R-def.txt b/node_modules/detox/android/detox/build/intermediates/local_only_symbol_list/fullDebug/parseFullDebugLocalResources/R-def.txt +new file mode 100644 +index 0000000..34ca0ec +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/local_only_symbol_list/fullDebug/parseFullDebugLocalResources/R-def.txt +@@ -0,0 +1,3 @@ ++R_DEF: Internal format may change without notice ++local ++string app_name +diff --git a/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/coreNativeDebug/processCoreNativeDebugManifest/manifest-merger-blame-coreNative-debug-report.txt b/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/coreNativeDebug/processCoreNativeDebugManifest/manifest-merger-blame-coreNative-debug-report.txt +new file mode 100644 +index 0000000..d24832c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/coreNativeDebug/processCoreNativeDebugManifest/manifest-merger-blame-coreNative-debug-report.txt +@@ -0,0 +1,7 @@ ++1 ++2 ++4 ++5 ++6 ++7 +diff --git a/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestManifest/manifest-merger-blame-coreNative-debug-androidTest-report.txt b/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestManifest/manifest-merger-blame-coreNative-debug-androidTest-report.txt +new file mode 100644 +index 0000000..599510d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestManifest/manifest-merger-blame-coreNative-debug-androidTest-report.txt +@@ -0,0 +1,102 @@ ++1 ++2 ++4 ++5 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:5:5-74 ++6 android:minSdkVersion="24" ++6-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:5:15-41 ++7 android:targetSdkVersion="34" /> ++7-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:5:42-71 ++8 ++9 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:11:5-15:68 ++10 android:name="android.test.InstrumentationTestRunner" ++10-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:11:22-75 ++11 android:functionalTest="false" ++11-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:14:22-52 ++12 android:handleProfiling="false" ++12-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:13:22-53 ++13 android:label="Tests for com.wix.detox.test" ++13-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:15:22-66 ++14 android:targetPackage="com.wix.detox.test" /> ++14-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:12:22-64 ++15 ++16 ++16-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:24:5-72 ++16-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:24:22-69 ++17 ++18 ++18-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:24:5-28:15 ++19 ++19-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:25:9-62 ++19-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:25:18-59 ++20 ++20-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:26:9-58 ++20-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:26:18-55 ++21 ++21-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:27:9-83 ++21-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:27:18-80 ++22 ++23 ++24 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:7:5-9:19 ++25 android:appComponentFactory="androidx.core.app.CoreComponentFactory" ++25-->[androidx.core:core:1.8.0] /Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/AndroidManifest.xml:24:18-86 ++26 android:debuggable="true" ++27 android:extractNativeLibs="false" > ++28 ++28-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:8:9-60 ++28-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/coreNative/debug/tempFile1ProcessTestManifest14656509974331651802.xml:8:23-57 ++29 ++30 [androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:27:9-34:20 ++31 android:name="androidx.test.core.app.InstrumentationActivityInvoker$BootstrapActivity" ++31-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:28:13-99 ++32 android:exported="true" ++32-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:29:13-36 ++33 android:theme="@style/WhiteBackgroundTheme" > ++33-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:30:13-56 ++34 ++34-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:13-33:29 ++34-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:28-51 ++35 ++35-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:17-77 ++35-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:27-74 ++36 ++37 ++38 [androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:35:9-42:20 ++39 android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyActivity" ++39-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:36:13-95 ++40 android:exported="true" ++40-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:37:13-36 ++41 android:theme="@style/WhiteBackgroundTheme" > ++41-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:38:13-56 ++42 ++42-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:13-33:29 ++42-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:28-51 ++43 ++43-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:17-77 ++43-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:27-74 ++44 ++45 ++46 [androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:43:9-50:20 ++47 android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyFloatingActivity" ++47-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:44:13-103 ++48 android:exported="true" ++48-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:45:13-36 ++49 android:theme="@style/WhiteBackgroundDialogTheme" > ++49-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:46:13-62 ++50 ++50-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:13-33:29 ++50-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:28-51 ++51 ++51-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:17-77 ++51-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:27-74 ++52 ++53 ++54 ++55 ++56 +diff --git a/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/fullDebug/processFullDebugManifest/manifest-merger-blame-full-debug-report.txt b/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/fullDebug/processFullDebugManifest/manifest-merger-blame-full-debug-report.txt +new file mode 100644 +index 0000000..d24832c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/fullDebug/processFullDebugManifest/manifest-merger-blame-full-debug-report.txt +@@ -0,0 +1,7 @@ ++1 ++2 ++4 ++5 ++6 ++7 +diff --git a/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/fullDebugAndroidTest/processFullDebugAndroidTestManifest/manifest-merger-blame-full-debug-androidTest-report.txt b/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/fullDebugAndroidTest/processFullDebugAndroidTestManifest/manifest-merger-blame-full-debug-androidTest-report.txt +new file mode 100644 +index 0000000..73360e9 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/manifest_merge_blame_file/fullDebugAndroidTest/processFullDebugAndroidTestManifest/manifest-merger-blame-full-debug-androidTest-report.txt +@@ -0,0 +1,102 @@ ++1 ++2 ++4 ++5 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:5:5-74 ++6 android:minSdkVersion="24" ++6-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:5:15-41 ++7 android:targetSdkVersion="34" /> ++7-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:5:42-71 ++8 ++9 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:11:5-15:68 ++10 android:name="android.test.InstrumentationTestRunner" ++10-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:11:22-75 ++11 android:functionalTest="false" ++11-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:14:22-52 ++12 android:handleProfiling="false" ++12-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:13:22-53 ++13 android:label="Tests for com.wix.detox.test" ++13-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:15:22-66 ++14 android:targetPackage="com.wix.detox.test" /> ++14-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:12:22-64 ++15 ++16 ++16-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:24:5-72 ++16-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:24:22-69 ++17 ++18 ++18-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:24:5-28:15 ++19 ++19-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:25:9-62 ++19-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:25:18-59 ++20 ++20-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:26:9-58 ++20-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:26:18-55 ++21 ++21-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:27:9-83 ++21-->[androidx.test:runner:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/5b9bcf298700817f9659d3804b02d280/transformed/runner-1.6.1/AndroidManifest.xml:27:18-80 ++22 ++23 ++24 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:7:5-9:19 ++25 android:appComponentFactory="androidx.core.app.CoreComponentFactory" ++25-->[androidx.core:core:1.8.0] /Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/AndroidManifest.xml:24:18-86 ++26 android:debuggable="true" ++27 android:extractNativeLibs="false" > ++28 ++28-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:8:9-60 ++28-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/tmp/manifest/androidTest/full/debug/tempFile1ProcessTestManifest7332540195172022559.xml:8:23-57 ++29 ++30 [androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:27:9-34:20 ++31 android:name="androidx.test.core.app.InstrumentationActivityInvoker$BootstrapActivity" ++31-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:28:13-99 ++32 android:exported="true" ++32-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:29:13-36 ++33 android:theme="@style/WhiteBackgroundTheme" > ++33-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:30:13-56 ++34 ++34-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:13-33:29 ++34-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:28-51 ++35 ++35-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:17-77 ++35-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:27-74 ++36 ++37 ++38 [androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:35:9-42:20 ++39 android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyActivity" ++39-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:36:13-95 ++40 android:exported="true" ++40-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:37:13-36 ++41 android:theme="@style/WhiteBackgroundTheme" > ++41-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:38:13-56 ++42 ++42-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:13-33:29 ++42-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:28-51 ++43 ++43-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:17-77 ++43-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:27-74 ++44 ++45 ++46 [androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:43:9-50:20 ++47 android:name="androidx.test.core.app.InstrumentationActivityInvoker$EmptyFloatingActivity" ++47-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:44:13-103 ++48 android:exported="true" ++48-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:45:13-36 ++49 android:theme="@style/WhiteBackgroundDialogTheme" > ++49-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:46:13-62 ++50 ++50-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:13-33:29 ++50-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:31:28-51 ++51 ++51-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:17-77 ++51-->[androidx.test:core:1.6.1] /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/AndroidManifest.xml:32:27-74 ++52 ++53 ++54 ++55 ++56 +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_consumer_proguard_file/coreNativeDebug/mergeCoreNativeDebugConsumerProguardFiles/proguard.txt b/node_modules/detox/android/detox/build/intermediates/merged_consumer_proguard_file/coreNativeDebug/mergeCoreNativeDebugConsumerProguardFiles/proguard.txt +new file mode 100644 +index 0000000..8bef018 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_consumer_proguard_file/coreNativeDebug/mergeCoreNativeDebugConsumerProguardFiles/proguard.txt +@@ -0,0 +1,25 @@ ++-dontwarn org.xmlpull.** ++-dontwarn sun.misc.** ++ ++-dontnote android.** ++-dontnote androidx.** ++-dontnote java.** ++-dontnote javax.** ++-dontnote kotlin.** ++-dontnote org.apache.** ++-dontnote junit.** ++-dontnote org.junit.** ++-dontnote org.joor.** ++-dontnote org.hamcrest.** ++-dontnote com.facebook.** ++ ++-keep class org.apache.commons.lang3.** { *; } ++-keep class org.apache.commons.io.** { *; } ++ ++# Detox profiler (optional) ++ ++-keep class com.wix.detoxprofiler.** { *; } ++-dontnote com.wix.detox.instruments.reflected.** ++ ++-dontwarn androidx.appcompat.** ++-dontwarn javax.lang.model.element.** +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_consumer_proguard_file/fullDebug/mergeFullDebugConsumerProguardFiles/proguard.txt b/node_modules/detox/android/detox/build/intermediates/merged_consumer_proguard_file/fullDebug/mergeFullDebugConsumerProguardFiles/proguard.txt +new file mode 100644 +index 0000000..8bef018 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_consumer_proguard_file/fullDebug/mergeFullDebugConsumerProguardFiles/proguard.txt +@@ -0,0 +1,25 @@ ++-dontwarn org.xmlpull.** ++-dontwarn sun.misc.** ++ ++-dontnote android.** ++-dontnote androidx.** ++-dontnote java.** ++-dontnote javax.** ++-dontnote kotlin.** ++-dontnote org.apache.** ++-dontnote junit.** ++-dontnote org.junit.** ++-dontnote org.joor.** ++-dontnote org.hamcrest.** ++-dontnote com.facebook.** ++ ++-keep class org.apache.commons.lang3.** { *; } ++-keep class org.apache.commons.io.** { *; } ++ ++# Detox profiler (optional) ++ ++-keep class com.wix.detoxprofiler.** { *; } ++-dontnote com.wix.detox.instruments.reflected.** ++ ++-dontwarn androidx.appcompat.** ++-dontwarn javax.lang.model.element.** +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_java_res/coreNativeDebug/mergeCoreNativeDebugJavaResource/feature-detox.jar b/node_modules/detox/android/detox/build/intermediates/merged_java_res/coreNativeDebug/mergeCoreNativeDebugJavaResource/feature-detox.jar +new file mode 100644 +index 0000000..24a0ec7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_java_res/coreNativeDebug/mergeCoreNativeDebugJavaResource/feature-detox.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_java_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestJavaResource/feature-detox.jar b/node_modules/detox/android/detox/build/intermediates/merged_java_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestJavaResource/feature-detox.jar +new file mode 100644 +index 0000000..96ddc23 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_java_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestJavaResource/feature-detox.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_java_res/fullDebug/mergeFullDebugJavaResource/feature-detox.jar b/node_modules/detox/android/detox/build/intermediates/merged_java_res/fullDebug/mergeFullDebugJavaResource/feature-detox.jar +new file mode 100644 +index 0000000..ff13607 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_java_res/fullDebug/mergeFullDebugJavaResource/feature-detox.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_java_res/fullDebugAndroidTest/mergeFullDebugAndroidTestJavaResource/feature-detox.jar b/node_modules/detox/android/detox/build/intermediates/merged_java_res/fullDebugAndroidTest/mergeFullDebugAndroidTestJavaResource/feature-detox.jar +new file mode 100644 +index 0000000..96ddc23 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_java_res/fullDebugAndroidTest/mergeFullDebugAndroidTestJavaResource/feature-detox.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_manifest/coreNativeDebug/processCoreNativeDebugManifest/AndroidManifest.xml b/node_modules/detox/android/detox/build/intermediates/merged_manifest/coreNativeDebug/processCoreNativeDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..17d372a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_manifest/coreNativeDebug/processCoreNativeDebugManifest/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_manifest/fullDebug/processFullDebugManifest/AndroidManifest.xml b/node_modules/detox/android/detox/build/intermediates/merged_manifest/fullDebug/processFullDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..17d372a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_manifest/fullDebug/processFullDebugManifest/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-af_values-af.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-af_values-af.arsc.flat +new file mode 100644 +index 0000000..0f321db +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-af_values-af.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-am_values-am.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-am_values-am.arsc.flat +new file mode 100644 +index 0000000..50a39ed +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-am_values-am.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ar_values-ar.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ar_values-ar.arsc.flat +new file mode 100644 +index 0000000..e1e69b2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ar_values-ar.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-as_values-as.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-as_values-as.arsc.flat +new file mode 100644 +index 0000000..ea15da0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-as_values-as.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-az_values-az.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-az_values-az.arsc.flat +new file mode 100644 +index 0000000..e7f6f9c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-az_values-az.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-b+es+419_values-b+es+419.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-b+es+419_values-b+es+419.arsc.flat +new file mode 100644 +index 0000000..e2f7d7e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-b+es+419_values-b+es+419.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat +new file mode 100644 +index 0000000..71a1b6c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-be_values-be.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-be_values-be.arsc.flat +new file mode 100644 +index 0000000..a9546a1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-be_values-be.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-bg_values-bg.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-bg_values-bg.arsc.flat +new file mode 100644 +index 0000000..a03b8c5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-bg_values-bg.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-bn_values-bn.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-bn_values-bn.arsc.flat +new file mode 100644 +index 0000000..eb9f8d0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-bn_values-bn.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-bs_values-bs.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-bs_values-bs.arsc.flat +new file mode 100644 +index 0000000..f2a6374 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-bs_values-bs.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ca_values-ca.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ca_values-ca.arsc.flat +new file mode 100644 +index 0000000..6bb41db +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ca_values-ca.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-cs_values-cs.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-cs_values-cs.arsc.flat +new file mode 100644 +index 0000000..230c909 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-cs_values-cs.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-da_values-da.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-da_values-da.arsc.flat +new file mode 100644 +index 0000000..fe84d4e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-da_values-da.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-de_values-de.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-de_values-de.arsc.flat +new file mode 100644 +index 0000000..967de3c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-de_values-de.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-el_values-el.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-el_values-el.arsc.flat +new file mode 100644 +index 0000000..08ca27e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-el_values-el.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rAU_values-en-rAU.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rAU_values-en-rAU.arsc.flat +new file mode 100644 +index 0000000..295682a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rAU_values-en-rAU.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rCA_values-en-rCA.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rCA_values-en-rCA.arsc.flat +new file mode 100644 +index 0000000..44fe30f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rCA_values-en-rCA.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rGB_values-en-rGB.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rGB_values-en-rGB.arsc.flat +new file mode 100644 +index 0000000..7a7e713 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rGB_values-en-rGB.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rIN_values-en-rIN.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rIN_values-en-rIN.arsc.flat +new file mode 100644 +index 0000000..6ade984 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rIN_values-en-rIN.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rXC_values-en-rXC.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rXC_values-en-rXC.arsc.flat +new file mode 100644 +index 0000000..ef95e64 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-en-rXC_values-en-rXC.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-es-rUS_values-es-rUS.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-es-rUS_values-es-rUS.arsc.flat +new file mode 100644 +index 0000000..da90c9d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-es-rUS_values-es-rUS.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-es_values-es.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-es_values-es.arsc.flat +new file mode 100644 +index 0000000..7454030 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-es_values-es.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-et_values-et.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-et_values-et.arsc.flat +new file mode 100644 +index 0000000..6bfa05e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-et_values-et.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-eu_values-eu.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-eu_values-eu.arsc.flat +new file mode 100644 +index 0000000..ec5130c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-eu_values-eu.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fa_values-fa.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fa_values-fa.arsc.flat +new file mode 100644 +index 0000000..4c0e645 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fa_values-fa.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fi_values-fi.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fi_values-fi.arsc.flat +new file mode 100644 +index 0000000..e51f33f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fi_values-fi.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fr-rCA_values-fr-rCA.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fr-rCA_values-fr-rCA.arsc.flat +new file mode 100644 +index 0000000..81dd6d0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fr-rCA_values-fr-rCA.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fr_values-fr.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fr_values-fr.arsc.flat +new file mode 100644 +index 0000000..716e799 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-fr_values-fr.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-gl_values-gl.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-gl_values-gl.arsc.flat +new file mode 100644 +index 0000000..1d6416b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-gl_values-gl.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-gu_values-gu.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-gu_values-gu.arsc.flat +new file mode 100644 +index 0000000..07b7620 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-gu_values-gu.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat +new file mode 100644 +index 0000000..cfe79fb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat +new file mode 100644 +index 0000000..4b7ab08 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat +new file mode 100644 +index 0000000..fbb1e02 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat +new file mode 100644 +index 0000000..521fc26 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h720dp-v13_values-h720dp-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h720dp-v13_values-h720dp-v13.arsc.flat +new file mode 100644 +index 0000000..2997650 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-h720dp-v13_values-h720dp-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hdpi-v4_values-hdpi-v4.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hdpi-v4_values-hdpi-v4.arsc.flat +new file mode 100644 +index 0000000..02c2cc3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hdpi-v4_values-hdpi-v4.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hi_values-hi.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hi_values-hi.arsc.flat +new file mode 100644 +index 0000000..d168771 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hi_values-hi.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hr_values-hr.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hr_values-hr.arsc.flat +new file mode 100644 +index 0000000..95bfc89 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hr_values-hr.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hu_values-hu.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hu_values-hu.arsc.flat +new file mode 100644 +index 0000000..8873b85 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hu_values-hu.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hy_values-hy.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hy_values-hy.arsc.flat +new file mode 100644 +index 0000000..b7c7f09 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-hy_values-hy.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-in_values-in.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-in_values-in.arsc.flat +new file mode 100644 +index 0000000..537e0d3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-in_values-in.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-is_values-is.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-is_values-is.arsc.flat +new file mode 100644 +index 0000000..d9a834a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-is_values-is.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-it_values-it.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-it_values-it.arsc.flat +new file mode 100644 +index 0000000..ec87e0d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-it_values-it.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-iw_values-iw.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-iw_values-iw.arsc.flat +new file mode 100644 +index 0000000..3af831e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-iw_values-iw.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ja_values-ja.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ja_values-ja.arsc.flat +new file mode 100644 +index 0000000..334d32b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ja_values-ja.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ka_values-ka.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ka_values-ka.arsc.flat +new file mode 100644 +index 0000000..ac38ede +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ka_values-ka.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-kk_values-kk.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-kk_values-kk.arsc.flat +new file mode 100644 +index 0000000..d576717 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-kk_values-kk.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-km_values-km.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-km_values-km.arsc.flat +new file mode 100644 +index 0000000..631a3ab +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-km_values-km.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-kn_values-kn.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-kn_values-kn.arsc.flat +new file mode 100644 +index 0000000..58858d6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-kn_values-kn.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ko_values-ko.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ko_values-ko.arsc.flat +new file mode 100644 +index 0000000..e939cd3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ko_values-ko.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ky_values-ky.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ky_values-ky.arsc.flat +new file mode 100644 +index 0000000..588cbcc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ky_values-ky.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-land_values-land.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-land_values-land.arsc.flat +new file mode 100644 +index 0000000..6a80499 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-land_values-land.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-large-v4_values-large-v4.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-large-v4_values-large-v4.arsc.flat +new file mode 100644 +index 0000000..d23b664 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-large-v4_values-large-v4.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ldltr-v21_values-ldltr-v21.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ldltr-v21_values-ldltr-v21.arsc.flat +new file mode 100644 +index 0000000..4686d58 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ldltr-v21_values-ldltr-v21.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ldrtl-v17_values-ldrtl-v17.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ldrtl-v17_values-ldrtl-v17.arsc.flat +new file mode 100644 +index 0000000..2bd2bdc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ldrtl-v17_values-ldrtl-v17.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-lo_values-lo.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-lo_values-lo.arsc.flat +new file mode 100644 +index 0000000..440b498 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-lo_values-lo.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-lt_values-lt.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-lt_values-lt.arsc.flat +new file mode 100644 +index 0000000..4e97ff9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-lt_values-lt.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-lv_values-lv.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-lv_values-lv.arsc.flat +new file mode 100644 +index 0000000..5604054 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-lv_values-lv.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-mk_values-mk.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-mk_values-mk.arsc.flat +new file mode 100644 +index 0000000..6130518 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-mk_values-mk.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ml_values-ml.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ml_values-ml.arsc.flat +new file mode 100644 +index 0000000..4100b69 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ml_values-ml.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-mn_values-mn.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-mn_values-mn.arsc.flat +new file mode 100644 +index 0000000..7b803ec +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-mn_values-mn.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-mr_values-mr.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-mr_values-mr.arsc.flat +new file mode 100644 +index 0000000..1d00f84 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-mr_values-mr.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ms_values-ms.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ms_values-ms.arsc.flat +new file mode 100644 +index 0000000..bc34832 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ms_values-ms.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-my_values-my.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-my_values-my.arsc.flat +new file mode 100644 +index 0000000..5d775ec +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-my_values-my.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-nb_values-nb.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-nb_values-nb.arsc.flat +new file mode 100644 +index 0000000..253576b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-nb_values-nb.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ne_values-ne.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ne_values-ne.arsc.flat +new file mode 100644 +index 0000000..2661910 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ne_values-ne.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-night-v8_values-night-v8.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-night-v8_values-night-v8.arsc.flat +new file mode 100644 +index 0000000..1d517d8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-night-v8_values-night-v8.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-nl_values-nl.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-nl_values-nl.arsc.flat +new file mode 100644 +index 0000000..36ce926 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-nl_values-nl.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-or_values-or.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-or_values-or.arsc.flat +new file mode 100644 +index 0000000..ab5cf85 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-or_values-or.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pa_values-pa.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pa_values-pa.arsc.flat +new file mode 100644 +index 0000000..9003f5d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pa_values-pa.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pl_values-pl.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pl_values-pl.arsc.flat +new file mode 100644 +index 0000000..107ad5e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pl_values-pl.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-port_values-port.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-port_values-port.arsc.flat +new file mode 100644 +index 0000000..e8401f3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-port_values-port.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pt-rBR_values-pt-rBR.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pt-rBR_values-pt-rBR.arsc.flat +new file mode 100644 +index 0000000..ac9be90 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pt-rBR_values-pt-rBR.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pt-rPT_values-pt-rPT.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pt-rPT_values-pt-rPT.arsc.flat +new file mode 100644 +index 0000000..eac9784 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pt-rPT_values-pt-rPT.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pt_values-pt.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pt_values-pt.arsc.flat +new file mode 100644 +index 0000000..f504886 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-pt_values-pt.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ro_values-ro.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ro_values-ro.arsc.flat +new file mode 100644 +index 0000000..f12df80 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ro_values-ro.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ru_values-ru.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ru_values-ru.arsc.flat +new file mode 100644 +index 0000000..4053714 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ru_values-ru.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-si_values-si.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-si_values-si.arsc.flat +new file mode 100644 +index 0000000..d8eacfe +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-si_values-si.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sk_values-sk.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sk_values-sk.arsc.flat +new file mode 100644 +index 0000000..ed298f8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sk_values-sk.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sl_values-sl.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sl_values-sl.arsc.flat +new file mode 100644 +index 0000000..811e228 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sl_values-sl.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-small-v4_values-small-v4.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-small-v4_values-small-v4.arsc.flat +new file mode 100644 +index 0000000..f238a8e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-small-v4_values-small-v4.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sq_values-sq.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sq_values-sq.arsc.flat +new file mode 100644 +index 0000000..cafd852 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sq_values-sq.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sr_values-sr.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sr_values-sr.arsc.flat +new file mode 100644 +index 0000000..4065253 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sr_values-sr.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sv_values-sv.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sv_values-sv.arsc.flat +new file mode 100644 +index 0000000..e41d959 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sv_values-sv.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sw600dp-v13_values-sw600dp-v13.arsc.flat +new file mode 100644 +index 0000000..1842a1e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sw_values-sw.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sw_values-sw.arsc.flat +new file mode 100644 +index 0000000..fa6dbeb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-sw_values-sw.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ta_values-ta.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ta_values-ta.arsc.flat +new file mode 100644 +index 0000000..616f7d5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ta_values-ta.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-te_values-te.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-te_values-te.arsc.flat +new file mode 100644 +index 0000000..79636fd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-te_values-te.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-th_values-th.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-th_values-th.arsc.flat +new file mode 100644 +index 0000000..8aecd4a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-th_values-th.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-tl_values-tl.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-tl_values-tl.arsc.flat +new file mode 100644 +index 0000000..495e268 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-tl_values-tl.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-tr_values-tr.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-tr_values-tr.arsc.flat +new file mode 100644 +index 0000000..a3cc573 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-tr_values-tr.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-uk_values-uk.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-uk_values-uk.arsc.flat +new file mode 100644 +index 0000000..d89b493 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-uk_values-uk.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ur_values-ur.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ur_values-ur.arsc.flat +new file mode 100644 +index 0000000..7d014cc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-ur_values-ur.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-uz_values-uz.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-uz_values-uz.arsc.flat +new file mode 100644 +index 0000000..223251f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-uz_values-uz.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v16_values-v16.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v16_values-v16.arsc.flat +new file mode 100644 +index 0000000..1ae6c3a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v16_values-v16.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v17_values-v17.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v17_values-v17.arsc.flat +new file mode 100644 +index 0000000..c933e1e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v17_values-v17.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v18_values-v18.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v18_values-v18.arsc.flat +new file mode 100644 +index 0000000..b7e8569 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v18_values-v18.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v21_values-v21.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v21_values-v21.arsc.flat +new file mode 100644 +index 0000000..2f04a69 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v21_values-v21.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v22_values-v22.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v22_values-v22.arsc.flat +new file mode 100644 +index 0000000..d0b883c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v22_values-v22.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v23_values-v23.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v23_values-v23.arsc.flat +new file mode 100644 +index 0000000..993c67b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v23_values-v23.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v24_values-v24.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v24_values-v24.arsc.flat +new file mode 100644 +index 0000000..c3b85bb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v24_values-v24.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v25_values-v25.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v25_values-v25.arsc.flat +new file mode 100644 +index 0000000..7c732b5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v25_values-v25.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v26_values-v26.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v26_values-v26.arsc.flat +new file mode 100644 +index 0000000..e0e58a5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v26_values-v26.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v28_values-v28.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v28_values-v28.arsc.flat +new file mode 100644 +index 0000000..fe79e2c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-v28_values-v28.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-vi_values-vi.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-vi_values-vi.arsc.flat +new file mode 100644 +index 0000000..03f6f51 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-vi_values-vi.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat +new file mode 100644 +index 0000000..188a96d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat +new file mode 100644 +index 0000000..6cb7668 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat +new file mode 100644 +index 0000000..c0e08e6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat +new file mode 100644 +index 0000000..3b3fd92 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-watch-v20_values-watch-v20.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-watch-v20_values-watch-v20.arsc.flat +new file mode 100644 +index 0000000..980f7e4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-watch-v20_values-watch-v20.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-watch-v21_values-watch-v21.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-watch-v21_values-watch-v21.arsc.flat +new file mode 100644 +index 0000000..b5141b3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-watch-v21_values-watch-v21.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-xlarge-v4_values-xlarge-v4.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-xlarge-v4_values-xlarge-v4.arsc.flat +new file mode 100644 +index 0000000..32bc533 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-xlarge-v4_values-xlarge-v4.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zh-rCN_values-zh-rCN.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zh-rCN_values-zh-rCN.arsc.flat +new file mode 100644 +index 0000000..803d7ca +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zh-rCN_values-zh-rCN.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zh-rHK_values-zh-rHK.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zh-rHK_values-zh-rHK.arsc.flat +new file mode 100644 +index 0000000..8e3a9d1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zh-rHK_values-zh-rHK.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zh-rTW_values-zh-rTW.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zh-rTW_values-zh-rTW.arsc.flat +new file mode 100644 +index 0000000..7b11c56 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zh-rTW_values-zh-rTW.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zu_values-zu.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zu_values-zu.arsc.flat +new file mode 100644 +index 0000000..83d1b23 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values-zu_values-zu.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values_values.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values_values.arsc.flat +new file mode 100644 +index 0000000..bac65e4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/values_values.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-af_values-af.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-af_values-af.arsc.flat +new file mode 100644 +index 0000000..f1be5f5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-af_values-af.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-am_values-am.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-am_values-am.arsc.flat +new file mode 100644 +index 0000000..b7a47d1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-am_values-am.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ar_values-ar.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ar_values-ar.arsc.flat +new file mode 100644 +index 0000000..19a094a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ar_values-ar.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-as_values-as.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-as_values-as.arsc.flat +new file mode 100644 +index 0000000..5d58fcb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-as_values-as.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-az_values-az.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-az_values-az.arsc.flat +new file mode 100644 +index 0000000..f58cfd0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-az_values-az.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-b+es+419_values-b+es+419.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-b+es+419_values-b+es+419.arsc.flat +new file mode 100644 +index 0000000..52900f9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-b+es+419_values-b+es+419.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat +new file mode 100644 +index 0000000..a3cf431 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-be_values-be.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-be_values-be.arsc.flat +new file mode 100644 +index 0000000..23b5137 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-be_values-be.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-bg_values-bg.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-bg_values-bg.arsc.flat +new file mode 100644 +index 0000000..f52ea81 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-bg_values-bg.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-bn_values-bn.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-bn_values-bn.arsc.flat +new file mode 100644 +index 0000000..9a90976 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-bn_values-bn.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-bs_values-bs.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-bs_values-bs.arsc.flat +new file mode 100644 +index 0000000..f9ec684 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-bs_values-bs.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ca_values-ca.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ca_values-ca.arsc.flat +new file mode 100644 +index 0000000..ed4ec4d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ca_values-ca.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-cs_values-cs.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-cs_values-cs.arsc.flat +new file mode 100644 +index 0000000..91b5e21 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-cs_values-cs.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-da_values-da.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-da_values-da.arsc.flat +new file mode 100644 +index 0000000..60fec27 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-da_values-da.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-de_values-de.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-de_values-de.arsc.flat +new file mode 100644 +index 0000000..969ce36 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-de_values-de.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-el_values-el.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-el_values-el.arsc.flat +new file mode 100644 +index 0000000..6bd45b0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-el_values-el.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rAU_values-en-rAU.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rAU_values-en-rAU.arsc.flat +new file mode 100644 +index 0000000..e2dbfb2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rAU_values-en-rAU.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rCA_values-en-rCA.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rCA_values-en-rCA.arsc.flat +new file mode 100644 +index 0000000..6f8e8d1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rCA_values-en-rCA.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rGB_values-en-rGB.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rGB_values-en-rGB.arsc.flat +new file mode 100644 +index 0000000..9e7195a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rGB_values-en-rGB.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rIN_values-en-rIN.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rIN_values-en-rIN.arsc.flat +new file mode 100644 +index 0000000..58fdf94 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rIN_values-en-rIN.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rXC_values-en-rXC.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rXC_values-en-rXC.arsc.flat +new file mode 100644 +index 0000000..335dc5b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-en-rXC_values-en-rXC.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-es-rUS_values-es-rUS.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-es-rUS_values-es-rUS.arsc.flat +new file mode 100644 +index 0000000..9d2b604 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-es-rUS_values-es-rUS.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-es_values-es.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-es_values-es.arsc.flat +new file mode 100644 +index 0000000..2457246 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-es_values-es.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-et_values-et.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-et_values-et.arsc.flat +new file mode 100644 +index 0000000..c011acf +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-et_values-et.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-eu_values-eu.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-eu_values-eu.arsc.flat +new file mode 100644 +index 0000000..f409523 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-eu_values-eu.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fa_values-fa.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fa_values-fa.arsc.flat +new file mode 100644 +index 0000000..6036ca9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fa_values-fa.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fi_values-fi.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fi_values-fi.arsc.flat +new file mode 100644 +index 0000000..7e8e395 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fi_values-fi.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fr-rCA_values-fr-rCA.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fr-rCA_values-fr-rCA.arsc.flat +new file mode 100644 +index 0000000..588ca6b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fr-rCA_values-fr-rCA.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fr_values-fr.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fr_values-fr.arsc.flat +new file mode 100644 +index 0000000..379796e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-fr_values-fr.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-gl_values-gl.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-gl_values-gl.arsc.flat +new file mode 100644 +index 0000000..c4d4922 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-gl_values-gl.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-gu_values-gu.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-gu_values-gu.arsc.flat +new file mode 100644 +index 0000000..1f3346f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-gu_values-gu.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat +new file mode 100644 +index 0000000..cebbd13 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat +new file mode 100644 +index 0000000..4e8af98 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat +new file mode 100644 +index 0000000..19b620d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat +new file mode 100644 +index 0000000..2fdc561 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h720dp-v13_values-h720dp-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h720dp-v13_values-h720dp-v13.arsc.flat +new file mode 100644 +index 0000000..a2ff357 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-h720dp-v13_values-h720dp-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hdpi-v4_values-hdpi-v4.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hdpi-v4_values-hdpi-v4.arsc.flat +new file mode 100644 +index 0000000..6015a6b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hdpi-v4_values-hdpi-v4.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hi_values-hi.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hi_values-hi.arsc.flat +new file mode 100644 +index 0000000..9bff9b3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hi_values-hi.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hr_values-hr.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hr_values-hr.arsc.flat +new file mode 100644 +index 0000000..557e0f1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hr_values-hr.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hu_values-hu.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hu_values-hu.arsc.flat +new file mode 100644 +index 0000000..e84c09a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hu_values-hu.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hy_values-hy.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hy_values-hy.arsc.flat +new file mode 100644 +index 0000000..ad73c06 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-hy_values-hy.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-in_values-in.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-in_values-in.arsc.flat +new file mode 100644 +index 0000000..3d38f29 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-in_values-in.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-is_values-is.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-is_values-is.arsc.flat +new file mode 100644 +index 0000000..83665c2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-is_values-is.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-it_values-it.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-it_values-it.arsc.flat +new file mode 100644 +index 0000000..af98f01 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-it_values-it.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-iw_values-iw.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-iw_values-iw.arsc.flat +new file mode 100644 +index 0000000..8f265ce +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-iw_values-iw.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ja_values-ja.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ja_values-ja.arsc.flat +new file mode 100644 +index 0000000..84fb226 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ja_values-ja.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ka_values-ka.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ka_values-ka.arsc.flat +new file mode 100644 +index 0000000..81000d3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ka_values-ka.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-kk_values-kk.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-kk_values-kk.arsc.flat +new file mode 100644 +index 0000000..6f7fbcd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-kk_values-kk.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-km_values-km.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-km_values-km.arsc.flat +new file mode 100644 +index 0000000..bfcdae2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-km_values-km.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-kn_values-kn.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-kn_values-kn.arsc.flat +new file mode 100644 +index 0000000..669cd84 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-kn_values-kn.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ko_values-ko.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ko_values-ko.arsc.flat +new file mode 100644 +index 0000000..1c14faf +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ko_values-ko.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ky_values-ky.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ky_values-ky.arsc.flat +new file mode 100644 +index 0000000..f69b007 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ky_values-ky.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-land_values-land.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-land_values-land.arsc.flat +new file mode 100644 +index 0000000..d624509 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-land_values-land.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-large-v4_values-large-v4.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-large-v4_values-large-v4.arsc.flat +new file mode 100644 +index 0000000..b35b76f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-large-v4_values-large-v4.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ldltr-v21_values-ldltr-v21.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ldltr-v21_values-ldltr-v21.arsc.flat +new file mode 100644 +index 0000000..0e517a8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ldltr-v21_values-ldltr-v21.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ldrtl-v17_values-ldrtl-v17.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ldrtl-v17_values-ldrtl-v17.arsc.flat +new file mode 100644 +index 0000000..498df7b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ldrtl-v17_values-ldrtl-v17.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-lo_values-lo.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-lo_values-lo.arsc.flat +new file mode 100644 +index 0000000..2fea725 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-lo_values-lo.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-lt_values-lt.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-lt_values-lt.arsc.flat +new file mode 100644 +index 0000000..9e85f71 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-lt_values-lt.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-lv_values-lv.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-lv_values-lv.arsc.flat +new file mode 100644 +index 0000000..0fbfc7b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-lv_values-lv.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-mk_values-mk.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-mk_values-mk.arsc.flat +new file mode 100644 +index 0000000..b66fcf8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-mk_values-mk.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ml_values-ml.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ml_values-ml.arsc.flat +new file mode 100644 +index 0000000..705ca30 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ml_values-ml.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-mn_values-mn.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-mn_values-mn.arsc.flat +new file mode 100644 +index 0000000..8778d96 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-mn_values-mn.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-mr_values-mr.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-mr_values-mr.arsc.flat +new file mode 100644 +index 0000000..c07b181 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-mr_values-mr.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ms_values-ms.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ms_values-ms.arsc.flat +new file mode 100644 +index 0000000..700957a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ms_values-ms.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-my_values-my.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-my_values-my.arsc.flat +new file mode 100644 +index 0000000..029900d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-my_values-my.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-nb_values-nb.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-nb_values-nb.arsc.flat +new file mode 100644 +index 0000000..0320ded +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-nb_values-nb.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ne_values-ne.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ne_values-ne.arsc.flat +new file mode 100644 +index 0000000..1ec9626 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ne_values-ne.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-night-v8_values-night-v8.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-night-v8_values-night-v8.arsc.flat +new file mode 100644 +index 0000000..42324a2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-night-v8_values-night-v8.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-nl_values-nl.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-nl_values-nl.arsc.flat +new file mode 100644 +index 0000000..98dbf55 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-nl_values-nl.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-or_values-or.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-or_values-or.arsc.flat +new file mode 100644 +index 0000000..5660b51 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-or_values-or.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pa_values-pa.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pa_values-pa.arsc.flat +new file mode 100644 +index 0000000..0ca5988 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pa_values-pa.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pl_values-pl.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pl_values-pl.arsc.flat +new file mode 100644 +index 0000000..02a8c5b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pl_values-pl.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-port_values-port.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-port_values-port.arsc.flat +new file mode 100644 +index 0000000..cfeeefd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-port_values-port.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pt-rBR_values-pt-rBR.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pt-rBR_values-pt-rBR.arsc.flat +new file mode 100644 +index 0000000..5fa595f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pt-rBR_values-pt-rBR.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pt-rPT_values-pt-rPT.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pt-rPT_values-pt-rPT.arsc.flat +new file mode 100644 +index 0000000..dbd2996 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pt-rPT_values-pt-rPT.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pt_values-pt.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pt_values-pt.arsc.flat +new file mode 100644 +index 0000000..d3cc3e4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-pt_values-pt.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ro_values-ro.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ro_values-ro.arsc.flat +new file mode 100644 +index 0000000..f149f6a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ro_values-ro.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ru_values-ru.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ru_values-ru.arsc.flat +new file mode 100644 +index 0000000..2e5864b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ru_values-ru.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-si_values-si.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-si_values-si.arsc.flat +new file mode 100644 +index 0000000..d7ea024 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-si_values-si.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sk_values-sk.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sk_values-sk.arsc.flat +new file mode 100644 +index 0000000..27b41e9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sk_values-sk.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sl_values-sl.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sl_values-sl.arsc.flat +new file mode 100644 +index 0000000..c48c040 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sl_values-sl.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-small-v4_values-small-v4.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-small-v4_values-small-v4.arsc.flat +new file mode 100644 +index 0000000..e47e961 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-small-v4_values-small-v4.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sq_values-sq.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sq_values-sq.arsc.flat +new file mode 100644 +index 0000000..c970f38 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sq_values-sq.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sr_values-sr.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sr_values-sr.arsc.flat +new file mode 100644 +index 0000000..eb6149d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sr_values-sr.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sv_values-sv.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sv_values-sv.arsc.flat +new file mode 100644 +index 0000000..59fc127 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sv_values-sv.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sw600dp-v13_values-sw600dp-v13.arsc.flat +new file mode 100644 +index 0000000..25f6ed5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sw_values-sw.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sw_values-sw.arsc.flat +new file mode 100644 +index 0000000..cf49d1f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-sw_values-sw.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ta_values-ta.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ta_values-ta.arsc.flat +new file mode 100644 +index 0000000..4ac34d5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ta_values-ta.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-te_values-te.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-te_values-te.arsc.flat +new file mode 100644 +index 0000000..5d71f1f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-te_values-te.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-th_values-th.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-th_values-th.arsc.flat +new file mode 100644 +index 0000000..5fa4e6a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-th_values-th.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-tl_values-tl.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-tl_values-tl.arsc.flat +new file mode 100644 +index 0000000..f736560 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-tl_values-tl.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-tr_values-tr.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-tr_values-tr.arsc.flat +new file mode 100644 +index 0000000..4ea463e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-tr_values-tr.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-uk_values-uk.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-uk_values-uk.arsc.flat +new file mode 100644 +index 0000000..71d806c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-uk_values-uk.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ur_values-ur.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ur_values-ur.arsc.flat +new file mode 100644 +index 0000000..4ca85b7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-ur_values-ur.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-uz_values-uz.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-uz_values-uz.arsc.flat +new file mode 100644 +index 0000000..8fe3603 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-uz_values-uz.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v16_values-v16.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v16_values-v16.arsc.flat +new file mode 100644 +index 0000000..537057d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v16_values-v16.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v17_values-v17.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v17_values-v17.arsc.flat +new file mode 100644 +index 0000000..0b32fca +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v17_values-v17.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v18_values-v18.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v18_values-v18.arsc.flat +new file mode 100644 +index 0000000..cfb0f73 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v18_values-v18.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v21_values-v21.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v21_values-v21.arsc.flat +new file mode 100644 +index 0000000..b695a1b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v21_values-v21.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v22_values-v22.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v22_values-v22.arsc.flat +new file mode 100644 +index 0000000..d47ca11 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v22_values-v22.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v23_values-v23.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v23_values-v23.arsc.flat +new file mode 100644 +index 0000000..1ede945 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v23_values-v23.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v24_values-v24.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v24_values-v24.arsc.flat +new file mode 100644 +index 0000000..c90abac +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v24_values-v24.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v25_values-v25.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v25_values-v25.arsc.flat +new file mode 100644 +index 0000000..dc7a40b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v25_values-v25.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v26_values-v26.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v26_values-v26.arsc.flat +new file mode 100644 +index 0000000..705b5fb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v26_values-v26.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v28_values-v28.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v28_values-v28.arsc.flat +new file mode 100644 +index 0000000..0acfd98 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-v28_values-v28.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-vi_values-vi.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-vi_values-vi.arsc.flat +new file mode 100644 +index 0000000..793b3a7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-vi_values-vi.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat +new file mode 100644 +index 0000000..923c543 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat +new file mode 100644 +index 0000000..364e97d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat +new file mode 100644 +index 0000000..b5c9205 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat +new file mode 100644 +index 0000000..1612af5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-watch-v20_values-watch-v20.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-watch-v20_values-watch-v20.arsc.flat +new file mode 100644 +index 0000000..774981c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-watch-v20_values-watch-v20.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-watch-v21_values-watch-v21.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-watch-v21_values-watch-v21.arsc.flat +new file mode 100644 +index 0000000..35d0135 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-watch-v21_values-watch-v21.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-xlarge-v4_values-xlarge-v4.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-xlarge-v4_values-xlarge-v4.arsc.flat +new file mode 100644 +index 0000000..9c5ba55 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-xlarge-v4_values-xlarge-v4.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zh-rCN_values-zh-rCN.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zh-rCN_values-zh-rCN.arsc.flat +new file mode 100644 +index 0000000..a0dd91a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zh-rCN_values-zh-rCN.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zh-rHK_values-zh-rHK.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zh-rHK_values-zh-rHK.arsc.flat +new file mode 100644 +index 0000000..03f08c2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zh-rHK_values-zh-rHK.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zh-rTW_values-zh-rTW.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zh-rTW_values-zh-rTW.arsc.flat +new file mode 100644 +index 0000000..3dcf04d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zh-rTW_values-zh-rTW.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zu_values-zu.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zu_values-zu.arsc.flat +new file mode 100644 +index 0000000..acb5499 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values-zu_values-zu.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values_values.arsc.flat b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values_values.arsc.flat +new file mode 100644 +index 0000000..955bc9a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/values_values.arsc.flat differ +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/mergeCoreNativeDebugAndroidTestResources.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/mergeCoreNativeDebugAndroidTestResources.json +new file mode 100644 +index 0000000..59182f9 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/mergeCoreNativeDebugAndroidTestResources.json +@@ -0,0 +1,5911 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-tr_values-tr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,2797", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,384,483,595,680,786,906,986,1061,1152,1245,1337,1431,1531,1624,1726,1821,1912,2003,2082,2189,2293,2389,2496,2599,2708,2864,7219", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "379,478,590,675,781,901,981,1056,1147,1240,1332,1426,1526,1619,1721,1816,1907,1998,2077,2184,2288,2384,2491,2594,2703,2859,2957,7294" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,297,393,505,587,651,742,819,880,971,1034,1093,1162,1225,1279,1387,1445,1507,1561,1634,1755,1839,1930,2040,2117,2193,2280,2347,2413,2483,2560,2643,2714,2789,2867,2938,3023,3112,3207,3300,3372,3444,3540,3592,3659,3743,3833,3895,3959,4022,4116,4212,4301,4398", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,95,111,81,63,90,76,60,90,62,58,68,62,53,107,57,61,53,72,120,83,90,109,76,75,86,66,65,69,76,82,70,74,77,70,84,88,94,92,71,71,95,51,66,83,89,61,63,62,93,95,88,96,78", ++ "endOffsets": "215,292,388,500,582,646,737,814,875,966,1029,1088,1157,1220,1274,1382,1440,1502,1556,1629,1750,1834,1925,2035,2112,2188,2275,2342,2408,2478,2555,2638,2709,2784,2862,2933,3018,3107,3202,3295,3367,3439,3535,3587,3654,3738,3828,3890,3954,4017,4111,4207,4296,4393,4472" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3039,3135,3247,3329,3393,3484,3561,3622,3713,3776,3835,3904,3967,4021,4129,4187,4249,4303,4376,4497,4581,4672,4782,4859,4935,5022,5089,5155,5225,5302,5385,5456,5531,5609,5680,5765,5854,5949,6042,6114,6186,6282,6334,6401,6485,6575,6637,6701,6764,6858,6954,7043,7140", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,95,111,81,63,90,76,60,90,62,58,68,62,53,107,57,61,53,72,120,83,90,109,76,75,86,66,65,69,76,82,70,74,77,70,84,88,94,92,71,71,95,51,66,83,89,61,63,62,93,95,88,96,78", ++ "endOffsets": "265,3034,3130,3242,3324,3388,3479,3556,3617,3708,3771,3830,3899,3962,4016,4124,4182,4244,4298,4371,4492,4576,4667,4777,4854,4930,5017,5084,5150,5220,5297,5380,5451,5526,5604,5675,5760,5849,5944,6037,6109,6181,6277,6329,6396,6480,6570,6632,6696,6759,6853,6949,7038,7135,7214" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7299", ++ "endColumns": "100", ++ "endOffsets": "7395" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-v23_values-v23.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,190,325,400,487,1371,2267,2386,2513,2735,2959,3074,3181,3294", ++ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", ++ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", ++ "endOffsets": "185,320,395,482,1366,2262,2381,2508,2730,2954,3069,3176,3289,3519" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,190,325,400,487,1225,1975,2094,2221,2443,2667,2782,2889,3002", ++ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", ++ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", ++ "endOffsets": "185,320,395,482,1220,1970,2089,2216,2438,2662,2777,2884,2997,3227" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ac2b811be8f6b6e801e40541beb0df8/transformed/cardview-1.0.0/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "4", ++ "endColumns": "12", ++ "endOffsets": "200" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "3232", ++ "endLines": "52", ++ "endColumns": "12", ++ "endOffsets": "3377" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2,6", ++ "startColumns": "4,4", ++ "startOffsets": "55,320", ++ "endLines": "5,9", ++ "endColumns": "10,10", ++ "endOffsets": "315,588" ++ }, ++ "to": { ++ "startLines": "53,57", ++ "startColumns": "4,4", ++ "startOffsets": "3382,3647", ++ "endLines": "56,60", ++ "endColumns": "10,10", ++ "endOffsets": "3642,3915" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-port_values-port.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-port/values-port.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "55", ++ "endOffsets": "106" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-da_values-da.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,305,405,554,632,696,782,855,915,1002,1064,1126,1194,1259,1315,1433,1491,1552,1608,1683,1809,1895,1975,2086,2164,2244,2330,2397,2463,2531,2605,2694,2766,2844,2914,2987,3071,3148,3236,3325,3399,3472,3557,3606,3672,3752,3835,3897,3961,4024,4132,4227,4328,4423", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,148,77,63,85,72,59,86,61,61,67,64,55,117,57,60,55,74,125,85,79,110,77,79,85,66,65,67,73,88,71,77,69,72,83,76,87,88,73,72,84,48,65,79,82,61,63,62,107,94,100,94,79", ++ "endOffsets": "222,300,400,549,627,691,777,850,910,997,1059,1121,1189,1254,1310,1428,1486,1547,1603,1678,1804,1890,1970,2081,2159,2239,2325,2392,2458,2526,2600,2689,2761,2839,2909,2982,3066,3143,3231,3320,3394,3467,3552,3601,3667,3747,3830,3892,3956,4019,4127,4222,4323,4418,4498" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2929,3007,3107,3256,3334,3398,3484,3557,3617,3704,3766,3828,3896,3961,4017,4135,4193,4254,4310,4385,4511,4597,4677,4788,4866,4946,5032,5099,5165,5233,5307,5396,5468,5546,5616,5689,5773,5850,5938,6027,6101,6174,6259,6308,6374,6454,6537,6599,6663,6726,6834,6929,7030,7125", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,148,77,63,85,72,59,86,61,61,67,64,55,117,57,60,55,74,125,85,79,110,77,79,85,66,65,67,73,88,71,77,69,72,83,76,87,88,73,72,84,48,65,79,82,61,63,62,107,94,100,94,79", ++ "endOffsets": "272,3002,3102,3251,3329,3393,3479,3552,3612,3699,3761,3823,3891,3956,4012,4130,4188,4249,4305,4380,4506,4592,4672,4783,4861,4941,5027,5094,5160,5228,5302,5391,5463,5541,5611,5684,5768,5845,5933,6022,6096,6169,6254,6303,6369,6449,6532,6594,6658,6721,6829,6924,7025,7120,7200" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,2757", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,2832" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,377,471,587,672,772,885,963,1039,1130,1223,1316,1410,1504,1597,1692,1790,1881,1972,2051,2159,2266,2362,2475,2578,2679,2832,7205", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "372,466,582,667,767,880,958,1034,1125,1218,1311,1405,1499,1592,1687,1785,1876,1967,2046,2154,2261,2357,2470,2573,2674,2827,2924,7280" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7285", ++ "endColumns": "100", ++ "endOffsets": "7381" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-nl_values-nl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7451", ++ "endColumns": "100", ++ "endOffsets": "7547" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,328,435,520,628,748,826,902,994,1088,1183,1277,1377,1471,1567,1662,1754,1846,1928,2039,2142,2241,2356,2470,2573,2728,2831", ++ "endColumns": "117,104,106,84,107,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "218,323,430,515,623,743,821,897,989,1083,1178,1272,1372,1466,1562,1657,1749,1841,1923,2034,2137,2236,2351,2465,2568,2723,2826,2909" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,392,497,604,689,797,917,995,1071,1163,1257,1352,1446,1546,1640,1736,1831,1923,2015,2097,2208,2311,2410,2525,2639,2742,2897,7368", ++ "endColumns": "117,104,106,84,107,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "387,492,599,684,792,912,990,1066,1158,1252,1347,1441,1541,1635,1731,1826,1918,2010,2092,2203,2306,2405,2520,2634,2737,2892,2995,7446" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,301,398,520,601,665,758,837,900,993,1059,1117,1190,1254,1310,1432,1489,1551,1607,1683,1817,1902,1988,2096,2177,2256,2346,2413,2479,2557,2640,2728,2803,2882,2955,3026,3120,3198,3287,3377,3451,3532,3619,3672,3739,3820,3904,3966,4030,4093,4201,4302,4404,4507", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,96,121,80,63,92,78,62,92,65,57,72,63,55,121,56,61,55,75,133,84,85,107,80,78,89,66,65,77,82,87,74,78,72,70,93,77,88,89,73,80,86,52,66,80,83,61,63,62,107,100,101,102,84", ++ "endOffsets": "219,296,393,515,596,660,753,832,895,988,1054,1112,1185,1249,1305,1427,1484,1546,1602,1678,1812,1897,1983,2091,2172,2251,2341,2408,2474,2552,2635,2723,2798,2877,2950,3021,3115,3193,3282,3372,3446,3527,3614,3667,3734,3815,3899,3961,4025,4088,4196,4297,4399,4502,4587" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3000,3077,3174,3296,3377,3441,3534,3613,3676,3769,3835,3893,3966,4030,4086,4208,4265,4327,4383,4459,4593,4678,4764,4872,4953,5032,5122,5189,5255,5333,5416,5504,5579,5658,5731,5802,5896,5974,6063,6153,6227,6308,6395,6448,6515,6596,6680,6742,6806,6869,6977,7078,7180,7283", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,96,121,80,63,92,78,62,92,65,57,72,63,55,121,56,61,55,75,133,84,85,107,80,78,89,66,65,77,82,87,74,78,72,70,93,77,88,89,73,80,86,52,66,80,83,61,63,62,107,100,101,102,84", ++ "endOffsets": "269,3072,3169,3291,3372,3436,3529,3608,3671,3764,3830,3888,3961,4025,4081,4203,4260,4322,4378,4454,4588,4673,4759,4867,4948,5027,5117,5184,5250,5328,5411,5499,5574,5653,5726,5797,5891,5969,6058,6148,6222,6303,6390,6443,6510,6591,6675,6737,6801,6864,6972,7073,7175,7278,7363" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-bn_values-bn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,2835", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,2917" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,490,596,685,790,911,994,1076,1167,1260,1354,1448,1548,1641,1736,1830,1921,2012,2098,2208,2312,2415,2523,2631,2736,2901,7301", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "379,485,591,680,785,906,989,1071,1162,1255,1349,1443,1543,1636,1731,1825,1916,2007,2093,2203,2307,2410,2518,2626,2731,2896,3001,7383" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7388", ++ "endColumns": "100", ++ "endOffsets": "7484" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,309,413,530,611,677,768,834,895,985,1052,1113,1182,1244,1298,1405,1464,1525,1579,1653,1773,1858,1942,2047,2118,2188,2275,2342,2408,2481,2561,2656,2725,2801,2881,2950,3045,3128,3218,3313,3387,3461,3554,3608,3675,3761,3846,3908,3972,4035,4137,4242,4335,4441", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,103,116,80,65,90,65,60,89,66,60,68,61,53,106,58,60,53,73,119,84,83,104,70,69,86,66,65,72,79,94,68,75,79,68,94,82,89,94,73,73,92,53,66,85,84,61,63,62,101,104,92,105,79", ++ "endOffsets": "221,304,408,525,606,672,763,829,890,980,1047,1108,1177,1239,1293,1400,1459,1520,1574,1648,1768,1853,1937,2042,2113,2183,2270,2337,2403,2476,2556,2651,2720,2796,2876,2945,3040,3123,3213,3308,3382,3456,3549,3603,3670,3756,3841,3903,3967,4030,4132,4237,4330,4436,4516" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3006,3089,3193,3310,3391,3457,3548,3614,3675,3765,3832,3893,3962,4024,4078,4185,4244,4305,4359,4433,4553,4638,4722,4827,4898,4968,5055,5122,5188,5261,5341,5436,5505,5581,5661,5730,5825,5908,5998,6093,6167,6241,6334,6388,6455,6541,6626,6688,6752,6815,6917,7022,7115,7221", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,103,116,80,65,90,65,60,89,66,60,68,61,53,106,58,60,53,73,119,84,83,104,70,69,86,66,65,72,79,94,68,75,79,68,94,82,89,94,73,73,92,53,66,85,84,61,63,62,101,104,92,105,79", ++ "endOffsets": "271,3084,3188,3305,3386,3452,3543,3609,3670,3760,3827,3888,3957,4019,4073,4180,4239,4300,4354,4428,4548,4633,4717,4822,4893,4963,5050,5117,5183,5256,5336,5431,5500,5576,5656,5725,5820,5903,5993,6088,6162,6236,6329,6383,6450,6536,6621,6683,6747,6810,6912,7017,7110,7216,7296" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ar_values-ar.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "92", ++ "startColumns": "4", ++ "startOffsets": "7518", ++ "endColumns": "100", ++ "endOffsets": "7614" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,420,504,605,724,801,864,955,1024,1091,1191,1256,1317,1385,1447,1505,1619,1679,1740,1797,1870,1993,2074,2154,2272,2353,2434,2523,2590,2656,2734,2814,2898,2970,3044,3117,3187,3278,3349,3439,3534,3608,3691,3784,3833,3902,3988,4073,4135,4199,4262,4371,4463,4560,4653", ++ "endLines": "9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63", ++ "endColumns": "12,83,100,118,76,62,90,68,66,99,64,60,67,61,57,113,59,60,56,72,122,80,79,117,80,80,88,66,65,77,79,83,71,73,72,69,90,70,89,94,73,82,92,48,68,85,84,61,63,62,108,91,96,92,79", ++ "endOffsets": "415,499,600,719,796,859,950,1019,1086,1186,1251,1312,1380,1442,1500,1614,1674,1735,1792,1865,1988,2069,2149,2267,2348,2429,2518,2585,2651,2729,2809,2893,2965,3039,3112,3182,3273,3344,3434,3529,3603,3686,3779,3828,3897,3983,4068,4130,4194,4257,4366,4458,4555,4648,4728" ++ }, ++ "to": { ++ "startLines": "2,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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,90", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3123,3207,3308,3427,3504,3567,3658,3727,3794,3894,3959,4020,4088,4150,4208,4322,4382,4443,4500,4573,4696,4777,4857,4975,5056,5137,5226,5293,5359,5437,5517,5601,5673,5747,5820,5890,5981,6052,6142,6237,6311,6394,6487,6536,6605,6691,6776,6838,6902,6965,7074,7166,7263,7356", ++ "endLines": "9,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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,90", ++ "endColumns": "12,83,100,118,76,62,90,68,66,99,64,60,67,61,57,113,59,60,56,72,122,80,79,117,80,80,88,66,65,77,79,83,71,73,72,69,90,70,89,94,73,82,92,48,68,85,84,61,63,62,108,91,96,92,79", ++ "endOffsets": "465,3202,3303,3422,3499,3562,3653,3722,3789,3889,3954,4015,4083,4145,4203,4317,4377,4438,4495,4568,4691,4772,4852,4970,5051,5132,5221,5288,5354,5432,5512,5596,5668,5742,5815,5885,5976,6047,6137,6232,6306,6389,6482,6531,6600,6686,6771,6833,6897,6960,7069,7161,7258,7351,7431" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,424,506,607,721,801,879,970,1063,1155,1249,1349,1442,1537,1630,1721,1815,1894,1999,2097,2195,2303,2403,2506,2661,2758", ++ "endColumns": "107,103,106,81,100,113,79,77,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "208,312,419,501,602,716,796,874,965,1058,1150,1244,1344,1437,1532,1625,1716,1810,1889,1994,2092,2190,2298,2398,2501,2656,2753,2835" ++ }, ++ "to": { ++ "startLines": "10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,91", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "470,578,682,789,871,972,1086,1166,1244,1335,1428,1520,1614,1714,1807,1902,1995,2086,2180,2259,2364,2462,2560,2668,2768,2871,3026,7436", ++ "endColumns": "107,103,106,81,100,113,79,77,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "573,677,784,866,967,1081,1161,1239,1330,1423,1515,1609,1709,1802,1897,1990,2081,2175,2254,2359,2457,2555,2663,2763,2866,3021,3118,7513" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-it_values-it.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7483", ++ "endColumns": "100", ++ "endOffsets": "7579" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,300,399,539,622,688,783,868,930,1018,1087,1150,1223,1286,1340,1461,1518,1580,1634,1711,1848,1933,2015,2120,2201,2282,2373,2440,2506,2579,2659,2750,2825,2902,2971,3048,3136,3225,3318,3411,3485,3565,3659,3710,3776,3860,3948,4010,4074,4137,4252,4362,4468,4577", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,98,139,82,65,94,84,61,87,68,62,72,62,53,120,56,61,53,76,136,84,81,104,80,80,90,66,65,72,79,90,74,76,68,76,87,88,92,92,73,79,93,50,65,83,87,61,63,62,114,109,105,108,79", ++ "endOffsets": "218,295,394,534,617,683,778,863,925,1013,1082,1145,1218,1281,1335,1456,1513,1575,1629,1706,1843,1928,2010,2115,2196,2277,2368,2435,2501,2574,2654,2745,2820,2897,2966,3043,3131,3220,3313,3406,3480,3560,3654,3705,3771,3855,3943,4005,4069,4132,4247,4357,4463,4572,4652" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2967,3044,3143,3283,3366,3432,3527,3612,3674,3762,3831,3894,3967,4030,4084,4205,4262,4324,4378,4455,4592,4677,4759,4864,4945,5026,5117,5184,5250,5323,5403,5494,5569,5646,5715,5792,5880,5969,6062,6155,6229,6309,6403,6454,6520,6604,6692,6754,6818,6881,6996,7106,7212,7321", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,98,139,82,65,94,84,61,87,68,62,72,62,53,120,56,61,53,76,136,84,81,104,80,80,90,66,65,72,79,90,74,76,68,76,87,88,92,92,73,79,93,50,65,83,87,61,63,62,114,109,105,108,79", ++ "endOffsets": "268,3039,3138,3278,3361,3427,3522,3607,3669,3757,3826,3889,3962,4025,4079,4200,4257,4319,4373,4450,4587,4672,4754,4859,4940,5021,5112,5179,5245,5318,5398,5489,5564,5641,5710,5787,5875,5964,6057,6150,6224,6304,6398,6449,6515,6599,6687,6749,6813,6876,6991,7101,7207,7316,7396" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,2799", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,378,481,590,674,779,898,976,1051,1143,1237,1330,1424,1525,1619,1716,1811,1903,1995,2076,2182,2289,2387,2491,2597,2704,2867,7401", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "373,476,585,669,774,893,971,1046,1138,1232,1325,1419,1520,1614,1711,1806,1898,1990,2071,2177,2284,2382,2486,2592,2699,2862,2962,7478" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-be_values-be.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,2835", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,2912" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "387,507,610,726,812,917,1036,1116,1193,1285,1379,1474,1568,1663,1757,1853,1948,2040,2132,2213,2319,2424,2522,2630,2736,2844,3017,7549", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "502,605,721,807,912,1031,1111,1188,1280,1374,1469,1563,1658,1752,1848,1943,2035,2127,2208,2314,2419,2517,2625,2731,2839,3012,3112,7626" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,337,419,516,632,715,782,875,952,1015,1131,1200,1259,1330,1389,1443,1564,1625,1688,1742,1815,1937,2025,2108,2230,2316,2403,2494,2561,2627,2699,2776,2860,2935,3012,3094,3170,3259,3341,3432,3528,3602,3683,3778,3832,3898,3985,4071,4133,4197,4260,4370,4477,4580,4689", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,81,96,115,82,66,92,76,62,115,68,58,70,58,53,120,60,62,53,72,121,87,82,121,85,86,90,66,65,71,76,83,74,76,81,75,88,81,90,95,73,80,94,53,65,86,85,61,63,62,109,106,102,108,79", ++ "endOffsets": "332,414,511,627,710,777,870,947,1010,1126,1195,1254,1325,1384,1438,1559,1620,1683,1737,1810,1932,2020,2103,2225,2311,2398,2489,2556,2622,2694,2771,2855,2930,3007,3089,3165,3254,3336,3427,3523,3597,3678,3773,3827,3893,3980,4066,4128,4192,4255,4365,4472,4575,4684,4764" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3117,3199,3296,3412,3495,3562,3655,3732,3795,3911,3980,4039,4110,4169,4223,4344,4405,4468,4522,4595,4717,4805,4888,5010,5096,5183,5274,5341,5407,5479,5556,5640,5715,5792,5874,5950,6039,6121,6212,6308,6382,6463,6558,6612,6678,6765,6851,6913,6977,7040,7150,7257,7360,7469", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,96,115,82,66,92,76,62,115,68,58,70,58,53,120,60,62,53,72,121,87,82,121,85,86,90,66,65,71,76,83,74,76,81,75,88,81,90,95,73,80,94,53,65,86,85,61,63,62,109,106,102,108,79", ++ "endOffsets": "382,3194,3291,3407,3490,3557,3650,3727,3790,3906,3975,4034,4105,4164,4218,4339,4400,4463,4517,4590,4712,4800,4883,5005,5091,5178,5269,5336,5402,5474,5551,5635,5710,5787,5869,5945,6034,6116,6207,6303,6377,6458,6553,6607,6673,6760,6846,6908,6972,7035,7145,7252,7355,7464,7544" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7631", ++ "endColumns": "100", ++ "endOffsets": "7727" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-my_values-my.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7514", ++ "endColumns": "100", ++ "endOffsets": "7610" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,240,316,422,551,636,701,791,866,925,1016,1081,1140,1211,1273,1330,1449,1507,1568,1623,1696,1828,1919,2008,2119,2197,2274,2366,2433,2499,2571,2653,2735,2810,2884,2956,3035,3132,3213,3299,3391,3465,3544,3630,3684,3752,3835,3916,3978,4042,4105,4217,4320,4424,4529", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,75,105,128,84,64,89,74,58,90,64,58,70,61,56,118,57,60,54,72,131,90,88,110,77,76,91,66,65,71,81,81,74,73,71,78,96,80,85,91,73,78,85,53,67,82,80,61,63,62,111,102,103,104,81", ++ "endOffsets": "235,311,417,546,631,696,786,861,920,1011,1076,1135,1206,1268,1325,1444,1502,1563,1618,1691,1823,1914,2003,2114,2192,2269,2361,2428,2494,2566,2648,2730,2805,2879,2951,3030,3127,3208,3294,3386,3460,3539,3625,3679,3747,3830,3911,3973,4037,4100,4212,4315,4419,4524,4606" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3057,3133,3239,3368,3453,3518,3608,3683,3742,3833,3898,3957,4028,4090,4147,4266,4324,4385,4440,4513,4645,4736,4825,4936,5014,5091,5183,5250,5316,5388,5470,5552,5627,5701,5773,5852,5949,6030,6116,6208,6282,6361,6447,6501,6569,6652,6733,6795,6859,6922,7034,7137,7241,7346", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,75,105,128,84,64,89,74,58,90,64,58,70,61,56,118,57,60,54,72,131,90,88,110,77,76,91,66,65,71,81,81,74,73,71,78,96,80,85,91,73,78,85,53,67,82,80,61,63,62,111,102,103,104,81", ++ "endOffsets": "285,3128,3234,3363,3448,3513,3603,3678,3737,3828,3893,3952,4023,4085,4142,4261,4319,4380,4435,4508,4640,4731,4820,4931,5009,5086,5178,5245,5311,5383,5465,5547,5622,5696,5768,5847,5944,6025,6111,6203,6277,6356,6442,6496,6564,6647,6728,6790,6854,6917,7029,7132,7236,7341,7423" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,325,441,528,637,760,842,923,1014,1107,1202,1296,1396,1489,1584,1678,1769,1860,1945,2060,2169,2268,2394,2501,2609,2769,2872", ++ "endColumns": "112,106,115,86,108,122,81,80,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "213,320,436,523,632,755,837,918,1009,1102,1197,1291,1391,1484,1579,1673,1764,1855,1940,2055,2164,2263,2389,2496,2604,2764,2867,2953" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "290,403,510,626,713,822,945,1027,1108,1199,1292,1387,1481,1581,1674,1769,1863,1954,2045,2130,2245,2354,2453,2579,2686,2794,2954,7428", ++ "endColumns": "112,106,115,86,108,122,81,80,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "398,505,621,708,817,940,1022,1103,1194,1287,1382,1476,1576,1669,1764,1858,1949,2040,2125,2240,2349,2448,2574,2681,2789,2949,3052,7509" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-b+es+419_values-b+es+419.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-b+es+419/values-b+es+419.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,319,421,549,630,695,790,860,923,1016,1088,1151,1225,1289,1346,1464,1522,1584,1641,1721,1855,1944,2025,2136,2217,2297,2387,2454,2520,2596,2678,2766,2839,2916,2986,3063,3152,3226,3320,3422,3494,3575,3679,3732,3799,3892,3981,4043,4107,4170,4281,4378,4480,4578", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "228,314,416,544,625,690,785,855,918,1011,1083,1146,1220,1284,1341,1459,1517,1579,1636,1716,1850,1939,2020,2131,2212,2292,2382,2449,2515,2591,2673,2761,2834,2911,2981,3058,3147,3221,3315,3417,3489,3570,3674,3727,3794,3887,3976,4038,4102,4165,4276,4373,4475,4573,4656" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ur_values-ur.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,2832", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,2913" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,378,484,593,679,783,903,980,1055,1147,1241,1336,1430,1531,1625,1721,1815,1907,1999,2084,2192,2298,2400,2511,2612,2728,2893,7279", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "373,479,588,674,778,898,975,1050,1142,1236,1331,1425,1526,1620,1716,1810,1902,1994,2079,2187,2293,2395,2506,2607,2723,2888,2986,7360" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,292,392,511,594,659,752,822,881,971,1040,1098,1167,1227,1291,1403,1462,1521,1576,1651,1774,1854,1938,2041,2123,2204,2291,2358,2424,2499,2579,2664,2731,2806,2883,2947,3041,3111,3200,3293,3367,3442,3532,3588,3655,3739,3823,3885,3949,4012,4112,4219,4313,4422", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,118,82,64,92,69,58,89,68,57,68,59,63,111,58,58,54,74,122,79,83,102,81,80,86,66,65,74,79,84,66,74,76,63,93,69,88,92,73,74,89,55,66,83,83,61,63,62,99,106,93,108,79", ++ "endOffsets": "209,287,387,506,589,654,747,817,876,966,1035,1093,1162,1222,1286,1398,1457,1516,1571,1646,1769,1849,1933,2036,2118,2199,2286,2353,2419,2494,2574,2659,2726,2801,2878,2942,3036,3106,3195,3288,3362,3437,3527,3583,3650,3734,3818,3880,3944,4007,4107,4214,4308,4417,4497" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2991,3069,3169,3288,3371,3436,3529,3599,3658,3748,3817,3875,3944,4004,4068,4180,4239,4298,4353,4428,4551,4631,4715,4818,4900,4981,5068,5135,5201,5276,5356,5441,5508,5583,5660,5724,5818,5888,5977,6070,6144,6219,6309,6365,6432,6516,6600,6662,6726,6789,6889,6996,7090,7199", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,118,82,64,92,69,58,89,68,57,68,59,63,111,58,58,54,74,122,79,83,102,81,80,86,66,65,74,79,84,66,74,76,63,93,69,88,92,73,74,89,55,66,83,83,61,63,62,99,106,93,108,79", ++ "endOffsets": "259,3064,3164,3283,3366,3431,3524,3594,3653,3743,3812,3870,3939,3999,4063,4175,4234,4293,4348,4423,4546,4626,4710,4813,4895,4976,5063,5130,5196,5271,5351,5436,5503,5578,5655,5719,5813,5883,5972,6065,6139,6214,6304,6360,6427,6511,6595,6657,6721,6784,6884,6991,7085,7194,7274" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7365", ++ "endColumns": "100", ++ "endOffsets": "7461" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-h720dp-v13_values-h720dp-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-h720dp-v13/values-h720dp-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "66", ++ "endOffsets": "117" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-fa_values-fa.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7292", ++ "endColumns": "100", ++ "endOffsets": "7388" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,296,393,522,606,669,759,828,888,979,1043,1102,1169,1231,1286,1409,1467,1528,1583,1655,1792,1873,1955,2055,2129,2203,2289,2356,2422,2493,2570,2651,2724,2798,2868,2942,3028,3102,3191,3283,3357,3430,3519,3570,3637,3720,3804,3866,3930,3993,4087,4194,4287,4392", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,96,128,83,62,89,68,59,90,63,58,66,61,54,122,57,60,54,71,136,80,81,99,73,73,85,66,65,70,76,80,72,73,69,73,85,73,88,91,73,72,88,50,66,82,83,61,63,62,93,106,92,104,77", ++ "endOffsets": "209,291,388,517,601,664,754,823,883,974,1038,1097,1164,1226,1281,1404,1462,1523,1578,1650,1787,1868,1950,2050,2124,2198,2284,2351,2417,2488,2565,2646,2719,2793,2863,2937,3023,3097,3186,3278,3352,3425,3514,3565,3632,3715,3799,3861,3925,3988,4082,4189,4282,4387,4465" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2954,3036,3133,3262,3346,3409,3499,3568,3628,3719,3783,3842,3909,3971,4026,4149,4207,4268,4323,4395,4532,4613,4695,4795,4869,4943,5029,5096,5162,5233,5310,5391,5464,5538,5608,5682,5768,5842,5931,6023,6097,6170,6259,6310,6377,6460,6544,6606,6670,6733,6827,6934,7027,7132", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,96,128,83,62,89,68,59,90,63,58,66,61,54,122,57,60,54,71,136,80,81,99,73,73,85,66,65,70,76,80,72,73,69,73,85,73,88,91,73,72,88,50,66,82,83,61,63,62,93,106,92,104,77", ++ "endOffsets": "259,3031,3128,3257,3341,3404,3494,3563,3623,3714,3778,3837,3904,3966,4021,4144,4202,4263,4318,4390,4527,4608,4690,4790,4864,4938,5024,5091,5157,5228,5305,5386,5459,5533,5603,5677,5763,5837,5926,6018,6092,6165,6254,6305,6372,6455,6539,6601,6665,6728,6822,6929,7022,7127,7205" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,2795", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,374,475,586,670,771,886,966,1043,1136,1231,1323,1417,1519,1614,1711,1805,1898,1988,2070,2178,2282,2380,2486,2591,2696,2853,7210", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "369,470,581,665,766,881,961,1038,1131,1226,1318,1412,1514,1609,1706,1800,1893,1983,2065,2173,2277,2375,2481,2586,2691,2848,2949,7287" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-sr_values-sr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,2833", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,2915" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "326,433,534,640,726,830,952,1036,1117,1208,1301,1396,1490,1590,1683,1778,1883,1974,2065,2151,2256,2362,2465,2571,2680,2787,2957,7394", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "428,529,635,721,825,947,1031,1112,1203,1296,1391,1485,1585,1678,1773,1878,1969,2060,2146,2251,2357,2460,2566,2675,2782,2952,3049,7476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,276,356,450,581,662,728,820,888,951,1054,1120,1176,1247,1307,1361,1473,1530,1591,1645,1721,1846,1932,2015,2123,2204,2287,2375,2442,2508,2582,2660,2749,2824,2900,2975,3046,3136,3209,3301,3397,3469,3545,3641,3694,3761,3848,3935,3997,4061,4124,4229,4333,4429,4536", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,79,93,130,80,65,91,67,62,102,65,55,70,59,53,111,56,60,53,75,124,85,82,107,80,82,87,66,65,73,77,88,74,75,74,70,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "271,351,445,576,657,723,815,883,946,1049,1115,1171,1242,1302,1356,1468,1525,1586,1640,1716,1841,1927,2010,2118,2199,2282,2370,2437,2503,2577,2655,2744,2819,2895,2970,3041,3131,3204,3296,3392,3464,3540,3636,3689,3756,3843,3930,3992,4056,4119,4224,4328,4424,4531,4611" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3054,3134,3228,3359,3440,3506,3598,3666,3729,3832,3898,3954,4025,4085,4139,4251,4308,4369,4423,4499,4624,4710,4793,4901,4982,5065,5153,5220,5286,5360,5438,5527,5602,5678,5753,5824,5914,5987,6079,6175,6247,6323,6419,6472,6539,6626,6713,6775,6839,6902,7007,7111,7207,7314", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,93,130,80,65,91,67,62,102,65,55,70,59,53,111,56,60,53,75,124,85,82,107,80,82,87,66,65,73,77,88,74,75,74,70,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "321,3129,3223,3354,3435,3501,3593,3661,3724,3827,3893,3949,4020,4080,4134,4246,4303,4364,4418,4494,4619,4705,4788,4896,4977,5060,5148,5215,5281,5355,5433,5522,5597,5673,5748,5819,5909,5982,6074,6170,6242,6318,6414,6467,6534,6621,6708,6770,6834,6897,7002,7106,7202,7309,7389" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7481", ++ "endColumns": "100", ++ "endOffsets": "7577" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ky_values-ky.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,2817", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,2894" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,381,490,602,687,792,909,988,1066,1157,1250,1345,1439,1539,1632,1727,1822,1913,2004,2085,2191,2296,2394,2501,2604,2719,2880,7321", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "376,485,597,682,787,904,983,1061,1152,1245,1340,1434,1534,1627,1722,1817,1908,1999,2080,2186,2291,2389,2496,2599,2714,2875,2977,7398" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,305,406,547,631,695,789,859,920,1007,1071,1130,1204,1266,1320,1437,1495,1556,1610,1684,1806,1890,1986,2088,2166,2244,2333,2400,2466,2535,2612,2699,2771,2847,2929,3002,3087,3166,3256,3348,3422,3507,3597,3649,3714,3797,3882,3944,4008,4071,4188,4282,4382,4477", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,100,140,83,63,93,69,60,86,63,58,73,61,53,116,57,60,53,73,121,83,95,101,77,77,88,66,65,68,76,86,71,75,81,72,84,78,89,91,73,84,89,51,64,82,84,61,63,62,116,93,99,94,81", ++ "endOffsets": "215,300,401,542,626,690,784,854,915,1002,1066,1125,1199,1261,1315,1432,1490,1551,1605,1679,1801,1885,1981,2083,2161,2239,2328,2395,2461,2530,2607,2694,2766,2842,2924,2997,3082,3161,3251,3343,3417,3502,3592,3644,3709,3792,3877,3939,4003,4066,4183,4277,4377,4472,4554" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2982,3067,3168,3309,3393,3457,3551,3621,3682,3769,3833,3892,3966,4028,4082,4199,4257,4318,4372,4446,4568,4652,4748,4850,4928,5006,5095,5162,5228,5297,5374,5461,5533,5609,5691,5764,5849,5928,6018,6110,6184,6269,6359,6411,6476,6559,6644,6706,6770,6833,6950,7044,7144,7239", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,100,140,83,63,93,69,60,86,63,58,73,61,53,116,57,60,53,73,121,83,95,101,77,77,88,66,65,68,76,86,71,75,81,72,84,78,89,91,73,84,89,51,64,82,84,61,63,62,116,93,99,94,81", ++ "endOffsets": "265,3062,3163,3304,3388,3452,3546,3616,3677,3764,3828,3887,3961,4023,4077,4194,4252,4313,4367,4441,4563,4647,4743,4845,4923,5001,5090,5157,5223,5292,5369,5456,5528,5604,5686,5759,5844,5923,6013,6105,6179,6264,6354,6406,6471,6554,6639,6701,6765,6828,6945,7039,7139,7234,7316" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7403", ++ "endColumns": "100", ++ "endOffsets": "7499" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-te_values-te.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,222,334,445,535,640,759,837,913,1004,1097,1192,1286,1386,1479,1574,1669,1760,1851,1934,2048,2150,2249,2364,2467,2582,2744,2847", ++ "endColumns": "116,111,110,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,82,113,101,98,114,102,114,161,102,82", ++ "endOffsets": "217,329,440,530,635,754,832,908,999,1092,1187,1281,1381,1474,1569,1664,1755,1846,1929,2043,2145,2244,2359,2462,2577,2739,2842,2925" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "281,398,510,621,711,816,935,1013,1089,1180,1273,1368,1462,1562,1655,1750,1845,1936,2027,2110,2224,2326,2425,2540,2643,2758,2920,7460", ++ "endColumns": "116,111,110,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,82,113,101,98,114,102,114,161,102,82", ++ "endOffsets": "393,505,616,706,811,930,1008,1084,1175,1268,1363,1457,1557,1650,1745,1840,1931,2022,2105,2219,2321,2420,2535,2638,2753,2915,3018,7538" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,231,317,421,537,626,692,786,853,915,1008,1076,1139,1213,1278,1332,1453,1510,1572,1626,1705,1833,1921,2013,2128,2208,2290,2378,2445,2511,2586,2664,2754,2827,2903,2984,3053,3158,3235,3326,3419,3493,3570,3662,3717,3783,3867,3953,4016,4081,4145,4255,4367,4466,4585", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,103,115,88,65,93,66,61,92,67,62,73,64,53,120,56,61,53,78,127,87,91,114,79,81,87,66,65,74,77,89,72,75,80,68,104,76,90,92,73,76,91,54,65,83,85,62,64,63,109,111,98,118,82", ++ "endOffsets": "226,312,416,532,621,687,781,848,910,1003,1071,1134,1208,1273,1327,1448,1505,1567,1621,1700,1828,1916,2008,2123,2203,2285,2373,2440,2506,2581,2659,2749,2822,2898,2979,3048,3153,3230,3321,3414,3488,3565,3657,3712,3778,3862,3948,4011,4076,4140,4250,4362,4461,4580,4663" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3023,3109,3213,3329,3418,3484,3578,3645,3707,3800,3868,3931,4005,4070,4124,4245,4302,4364,4418,4497,4625,4713,4805,4920,5000,5082,5170,5237,5303,5378,5456,5546,5619,5695,5776,5845,5950,6027,6118,6211,6285,6362,6454,6509,6575,6659,6745,6808,6873,6937,7047,7159,7258,7377", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,103,115,88,65,93,66,61,92,67,62,73,64,53,120,56,61,53,78,127,87,91,114,79,81,87,66,65,74,77,89,72,75,80,68,104,76,90,92,73,76,91,54,65,83,85,62,64,63,109,111,98,118,82", ++ "endOffsets": "276,3104,3208,3324,3413,3479,3573,3640,3702,3795,3863,3926,4000,4065,4119,4240,4297,4359,4413,4492,4620,4708,4800,4915,4995,5077,5165,5232,5298,5373,5451,5541,5614,5690,5771,5840,5945,6022,6113,6206,6280,6357,6449,6504,6570,6654,6740,6803,6868,6932,7042,7154,7253,7372,7455" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7543", ++ "endColumns": "100", ++ "endOffsets": "7639" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values_values.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/113a9edb5eab6212082ea70ac0555d5e/transformed/appcompat-resources-1.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,29,36,47,74", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,1702,2087,2684,4317", ++ "endLines": "28,35,46,73,78", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "1697,2082,2679,4312,4582" ++ }, ++ "to": { ++ "startLines": "5156,5172,5178,7330,7346", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "333041,333466,333644,428385,428796", ++ "endLines": "5171,5177,5187,7345,7349", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "333461,333639,333923,428791,428918" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/461d7c19ef38b4f9b46fbdeb7e398449/transformed/espresso-contrib-3.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "5", ++ "startColumns": "0", ++ "startOffsets": "164", ++ "endColumns": "73", ++ "endOffsets": "237" ++ }, ++ "to": { ++ "startLines": "982", ++ "startColumns": "4", ++ "startOffsets": "57683", ++ "endColumns": "77", ++ "endOffsets": "57756" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,89,90,94,95,96,97,103,113,146,167,200", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,115,187,275,344,407,477,545,617,687,748,822,895,956,1017,1079,1143,1205,1266,1334,1434,1494,1560,1633,1702,1759,1811,1873,1945,2021,2086,2145,2204,2264,2324,2384,2444,2504,2564,2624,2684,2744,2804,2863,2923,2983,3043,3103,3163,3223,3283,3343,3403,3463,3522,3582,3642,3701,3760,3819,3878,3937,3996,4031,4066,4121,4184,4239,4297,4355,4416,4479,4536,4587,4637,4698,4755,4821,4855,4890,4925,4995,5066,5183,5384,5494,5695,5824,5896,5963,6166,6467,8198,8879,9561", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,88,89,93,94,95,96,102,112,145,166,199,205", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "110,182,270,339,402,472,540,612,682,743,817,890,951,1012,1074,1138,1200,1261,1329,1429,1489,1555,1628,1697,1754,1806,1868,1940,2016,2081,2140,2199,2259,2319,2379,2439,2499,2559,2619,2679,2739,2799,2858,2918,2978,3038,3098,3158,3218,3278,3338,3398,3458,3517,3577,3637,3696,3755,3814,3873,3932,3991,4026,4061,4116,4179,4234,4292,4350,4411,4474,4531,4582,4632,4693,4750,4816,4850,4885,4920,4990,5061,5178,5379,5489,5690,5819,5891,5958,6161,6462,8193,8874,9556,9723" ++ }, ++ "to": { ++ "startLines": "312,413,414,496,497,605,606,607,608,609,610,611,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,988,989,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1036,1075,1184,3645,3646,3650,3651,3655,4204,4205,5900,6204,6433,6466,6502,6535", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "14944,19842,19914,25552,25621,32876,32946,33014,33086,33156,33217,33291,52866,52927,52988,53050,53114,53176,53237,53305,53405,53465,53531,53604,53673,53730,53782,55355,55427,55503,55568,55627,55686,55746,55806,55866,55926,55986,56046,56106,56166,56226,56286,56345,56405,56465,56525,56585,56645,56705,56765,56825,56885,56945,57004,57064,57124,57183,57242,57301,57360,57419,58005,58040,59332,59387,59450,59505,59563,59621,59682,59745,59802,59853,59903,59964,60021,60087,60121,60503,62813,77035,238337,238454,238655,238765,238966,278078,278150,358443,368261,390140,391871,393096,393778", ++ "endLines": "312,413,414,496,497,605,606,607,608,609,610,611,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,988,989,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1036,1075,1184,3645,3649,3650,3654,3655,4204,4205,5905,6213,6465,6486,6534,6540", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "14999,19909,19997,25616,25679,32941,33009,33081,33151,33212,33286,33359,52922,52983,53045,53109,53171,53232,53300,53400,53460,53526,53599,53668,53725,53777,53839,55422,55498,55563,55622,55681,55741,55801,55861,55921,55981,56041,56101,56161,56221,56281,56340,56400,56460,56520,56580,56640,56700,56760,56820,56880,56940,56999,57059,57119,57178,57237,57296,57355,57414,57473,58035,58070,59382,59445,59500,59558,59616,59677,59740,59797,59848,59898,59959,60016,60082,60116,60151,60533,62878,77101,238449,238650,238760,238961,239090,278145,278212,358641,368557,391866,392547,393773,393940" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/6193ccf8266fe7e7acf873e6a6e33027/transformed/recyclerview-1.2.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,111,170,218,274,349,425,497,563", ++ "endLines": "2,3,4,5,6,7,8,9,38", ++ "endColumns": "55,58,47,55,74,75,71,65,24", ++ "endOffsets": "106,165,213,269,344,420,492,558,2084" ++ }, ++ "to": { ++ "startLines": "330,663,664,665,673,674,675,987,7121", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "15685,36669,36728,36776,37443,37518,37594,57939,421661", ++ "endLines": "330,663,664,665,673,674,675,987,7141", ++ "endColumns": "55,58,47,55,74,75,71,65,24", ++ "endOffsets": "15736,36723,36771,36827,37513,37589,37661,58000,422496" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/aab319f82c96efbdcc73962788b25c1d/transformed/fragment-1.3.6/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,10", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,112,177,241,411", ++ "endLines": "2,3,4,9,13", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "107,172,236,406,555" ++ }, ++ "to": { ++ "startLines": "983,1012,1047,6493,6498", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "57761,59221,61031,392777,392947", ++ "endLines": "983,1012,1047,6497,6501", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "57813,59281,61090,392942,393091" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,221,222,226,230,234,239,245,252,256,260,265,269,273,277,281,285,289,295,299,305,309,315,319,324,328,331,335,341,345,351,355,361,364,368,372,376,380,384,385,386,387,390,393,396,399,403,404,405,406,407,410,412,414,416,421,422,426,432,436,437,439,451,452,456,462,466,467,468,472,499,503,504,508,536,708,734,906,932,963,971,977,993,1015,1020,1025,1035,1044,1053,1057,1064,1083,1090,1091,1100,1103,1106,1110,1114,1118,1121,1122,1127,1132,1142,1147,1154,1160,1161,1164,1168,1173,1175,1177,1180,1183,1185,1189,1192,1199,1202,1205,1209,1211,1215,1217,1219,1221,1225,1233,1241,1253,1259,1268,1271,1282,1285,1286,1291,1292,1297,1366,1436,1437,1447,1456,1457,1459,1463,1466,1469,1472,1475,1478,1481,1484,1488,1491,1494,1497,1501,1504,1508,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1534,1536,1537,1538,1539,1540,1541,1542,1543,1545,1546,1548,1549,1551,1553,1554,1556,1557,1558,1559,1560,1561,1563,1564,1565,1566,1567,1568,1570,1572,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1588,1589,1590,1591,1592,1593,1594,1596,1600,1604,1605,1606,1607,1608,1609,1613,1614,1615,1616,1618,1620,1622,1624,1626,1627,1628,1629,1631,1633,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1649,1650,1651,1652,1654,1656,1657,1659,1660,1662,1664,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1684,1685,1686,1687,1688,1690,1692,1694,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1794,1797,1800,1803,1817,1828,1838,1868,1895,1904,1979,2382,2387,2415,2433,2469,2475,2481,2504,2645,2665,2671,2675,2681,2718,2730,2796,2820,2889,2908,2934", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,160,205,254,295,350,412,476,546,607,682,758,835,913,998,1080,1156,1232,1309,1387,1493,1599,1678,1758,1815,1873,1947,2022,2087,2153,2213,2274,2346,2419,2486,2554,2613,2672,2731,2790,2849,2903,2957,3010,3064,3118,3172,3226,3300,3379,3452,3526,3597,3669,3741,3814,3871,3929,4002,4076,4150,4225,4297,4370,4440,4511,4571,4632,4701,4770,4840,4914,4990,5054,5131,5207,5284,5349,5418,5495,5570,5639,5707,5784,5850,5911,6008,6073,6142,6241,6312,6371,6429,6486,6545,6609,6680,6752,6824,6896,6968,7035,7103,7171,7230,7293,7357,7447,7538,7598,7664,7731,7797,7867,7931,7984,8051,8112,8179,8292,8350,8413,8478,8543,8618,8691,8763,8807,8854,8900,8949,9010,9071,9132,9194,9258,9322,9386,9451,9514,9574,9635,9701,9760,9820,9882,9953,10013,10081,10167,10254,10344,10431,10519,10601,10684,10774,10865,10917,10975,11020,11086,11150,11207,11264,11318,11375,11423,11472,11523,11557,11604,11653,11699,11731,11795,11857,11917,11974,12048,12118,12196,12250,12320,12405,12453,12499,12560,12623,12689,12753,12824,12887,12952,13016,13077,13138,13190,13263,13337,13406,13481,13555,13629,13770,13840,13893,13971,14061,14149,14245,14335,14917,15006,15253,15534,15786,16071,16464,16941,17163,17385,17661,17888,18118,18348,18578,18808,19035,19454,19680,20105,20335,20763,20982,21265,21473,21604,21831,22257,22482,22909,23130,23555,23675,23951,24252,24576,24867,25181,25318,25449,25554,25796,25963,26167,26375,26646,26758,26870,26975,27092,27306,27452,27592,27678,28026,28114,28360,28778,29027,29109,29207,29889,29989,30241,30665,30920,31014,31103,31340,33392,33634,33736,33989,36173,47362,48878,60165,61693,63450,64076,64496,65757,67022,67278,67514,68061,68555,69160,69358,69938,71306,71681,71799,72337,72494,72690,72963,73219,73389,73530,73594,73959,74326,75002,75266,75604,75957,76051,76237,76543,76805,76930,77057,77296,77507,77626,77819,77996,78451,78632,78754,79013,79126,79313,79415,79522,79651,79926,80434,80930,81807,82101,82671,82820,83552,83724,83808,84144,84236,84514,89908,95442,95504,96134,96748,96839,96952,97181,97341,97493,97664,97830,97999,98166,98329,98572,98742,98915,99086,99360,99559,99764,100094,100178,100274,100370,100468,100568,100670,100772,100874,100976,101078,101178,101274,101386,101515,101638,101769,101900,101998,102112,102206,102346,102480,102576,102688,102788,102904,103000,103112,103212,103352,103488,103652,103782,103940,104090,104231,104375,104510,104622,104772,104900,105028,105164,105296,105426,105556,105668,105808,105954,106098,106236,106302,106392,106468,106572,106662,106764,106872,106980,107080,107160,107252,107350,107460,107512,107590,107696,107788,107892,108002,108124,108287,108444,108524,108624,108714,108824,108914,109155,109249,109355,109447,109547,109659,109773,109889,110005,110099,110213,110325,110427,110547,110669,110751,110855,110975,111101,111199,111293,111381,111493,111609,111731,111843,112018,112134,112220,112312,112424,112548,112615,112741,112809,112937,113081,113209,113278,113373,113488,113601,113700,113809,113920,114031,114132,114237,114337,114467,114558,114681,114775,114887,114973,115077,115173,115261,115379,115483,115587,115713,115801,115909,116009,116099,116209,116293,116395,116479,116533,116597,116703,116789,116899,116983,117103,122247,122365,122480,122612,123327,124019,124536,126135,127668,128056,132791,153454,153714,155224,156257,158270,158532,158888,159718,166500,167634,167928,168151,168478,170528,171176,175027,176229,180308,181523,182932", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,220,221,225,229,233,238,244,251,255,259,264,268,272,276,280,284,288,294,298,304,308,314,318,323,327,330,334,340,344,350,354,360,363,367,371,375,379,383,384,385,386,389,392,395,398,402,403,404,405,406,409,411,413,415,420,421,425,431,435,436,438,450,451,455,461,465,466,467,471,498,502,503,507,535,707,733,905,931,962,970,976,992,1014,1019,1024,1034,1043,1052,1056,1063,1082,1089,1090,1099,1102,1105,1109,1113,1117,1120,1121,1126,1131,1141,1146,1153,1159,1160,1163,1167,1172,1174,1176,1179,1182,1184,1188,1191,1198,1201,1204,1208,1210,1214,1216,1218,1220,1224,1232,1240,1252,1258,1267,1270,1281,1284,1285,1290,1291,1296,1365,1435,1436,1446,1455,1456,1458,1462,1465,1468,1471,1474,1477,1480,1483,1487,1490,1493,1496,1500,1503,1507,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1533,1535,1536,1537,1538,1539,1540,1541,1542,1544,1545,1547,1548,1550,1552,1553,1555,1556,1557,1558,1559,1560,1562,1563,1564,1565,1566,1567,1569,1571,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1587,1588,1589,1590,1591,1592,1593,1595,1599,1603,1604,1605,1606,1607,1608,1612,1613,1614,1615,1617,1619,1621,1623,1625,1626,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1648,1649,1650,1651,1653,1655,1656,1658,1659,1661,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1678,1679,1680,1681,1683,1684,1685,1686,1687,1689,1691,1693,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1793,1796,1799,1802,1816,1827,1837,1867,1894,1903,1978,2381,2386,2414,2432,2468,2474,2480,2503,2644,2664,2670,2674,2680,2717,2729,2795,2819,2888,2907,2933,2942", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "155,200,249,290,345,407,471,541,602,677,753,830,908,993,1075,1151,1227,1304,1382,1488,1594,1673,1753,1810,1868,1942,2017,2082,2148,2208,2269,2341,2414,2481,2549,2608,2667,2726,2785,2844,2898,2952,3005,3059,3113,3167,3221,3295,3374,3447,3521,3592,3664,3736,3809,3866,3924,3997,4071,4145,4220,4292,4365,4435,4506,4566,4627,4696,4765,4835,4909,4985,5049,5126,5202,5279,5344,5413,5490,5565,5634,5702,5779,5845,5906,6003,6068,6137,6236,6307,6366,6424,6481,6540,6604,6675,6747,6819,6891,6963,7030,7098,7166,7225,7288,7352,7442,7533,7593,7659,7726,7792,7862,7926,7979,8046,8107,8174,8287,8345,8408,8473,8538,8613,8686,8758,8802,8849,8895,8944,9005,9066,9127,9189,9253,9317,9381,9446,9509,9569,9630,9696,9755,9815,9877,9948,10008,10076,10162,10249,10339,10426,10514,10596,10679,10769,10860,10912,10970,11015,11081,11145,11202,11259,11313,11370,11418,11467,11518,11552,11599,11648,11694,11726,11790,11852,11912,11969,12043,12113,12191,12245,12315,12400,12448,12494,12555,12618,12684,12748,12819,12882,12947,13011,13072,13133,13185,13258,13332,13401,13476,13550,13624,13765,13835,13888,13966,14056,14144,14240,14330,14912,15001,15248,15529,15781,16066,16459,16936,17158,17380,17656,17883,18113,18343,18573,18803,19030,19449,19675,20100,20330,20758,20977,21260,21468,21599,21826,22252,22477,22904,23125,23550,23670,23946,24247,24571,24862,25176,25313,25444,25549,25791,25958,26162,26370,26641,26753,26865,26970,27087,27301,27447,27587,27673,28021,28109,28355,28773,29022,29104,29202,29884,29984,30236,30660,30915,31009,31098,31335,33387,33629,33731,33984,36168,47357,48873,60160,61688,63445,64071,64491,65752,67017,67273,67509,68056,68550,69155,69353,69933,71301,71676,71794,72332,72489,72685,72958,73214,73384,73525,73589,73954,74321,74997,75261,75599,75952,76046,76232,76538,76800,76925,77052,77291,77502,77621,77814,77991,78446,78627,78749,79008,79121,79308,79410,79517,79646,79921,80429,80925,81802,82096,82666,82815,83547,83719,83803,84139,84231,84509,89903,95437,95499,96129,96743,96834,96947,97176,97336,97488,97659,97825,97994,98161,98324,98567,98737,98910,99081,99355,99554,99759,100089,100173,100269,100365,100463,100563,100665,100767,100869,100971,101073,101173,101269,101381,101510,101633,101764,101895,101993,102107,102201,102341,102475,102571,102683,102783,102899,102995,103107,103207,103347,103483,103647,103777,103935,104085,104226,104370,104505,104617,104767,104895,105023,105159,105291,105421,105551,105663,105803,105949,106093,106231,106297,106387,106463,106567,106657,106759,106867,106975,107075,107155,107247,107345,107455,107507,107585,107691,107783,107887,107997,108119,108282,108439,108519,108619,108709,108819,108909,109150,109244,109350,109442,109542,109654,109768,109884,110000,110094,110208,110320,110422,110542,110664,110746,110850,110970,111096,111194,111288,111376,111488,111604,111726,111838,112013,112129,112215,112307,112419,112543,112610,112736,112804,112932,113076,113204,113273,113368,113483,113596,113695,113804,113915,114026,114127,114232,114332,114462,114553,114676,114770,114882,114968,115072,115168,115256,115374,115478,115582,115708,115796,115904,116004,116094,116204,116288,116390,116474,116528,116592,116698,116784,116894,116978,117098,122242,122360,122475,122607,123322,124014,124531,126130,127663,128051,132786,153449,153709,155219,156252,158265,158527,158883,159713,166495,167629,167923,168146,168473,170523,171171,175022,176224,180303,181518,182927,183401" ++ }, ++ "to": { ++ "startLines": "73,141,143,361,403,404,406,407,408,409,410,411,412,415,416,417,418,419,420,421,422,423,424,425,426,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,661,662,666,667,668,669,670,671,672,933,934,935,936,937,938,939,940,978,979,980,981,986,1004,1005,1013,1042,1048,1049,1052,1053,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1183,1185,1186,1190,1191,1192,1201,1209,1210,1214,1218,1229,1234,1262,1269,1273,1277,1282,1286,1290,1294,1298,1302,1306,1312,1316,1322,1326,1332,1336,1341,1345,1348,1352,1358,1362,1368,1372,1378,1381,1385,1389,1393,1397,1401,1402,1403,1404,1407,1410,1413,1416,1420,1421,1422,1423,1461,1464,1466,1468,1470,1475,1476,1480,1486,1490,1491,1493,1505,1506,1510,1516,1520,1575,1576,1580,1607,1611,1612,1616,2267,2438,2464,2635,2661,2692,2700,2706,2722,2744,2749,2754,2764,2773,2782,2786,2793,2812,2819,2820,2829,2832,2835,2839,2843,2847,2850,2851,2856,2861,2871,2876,2883,2889,2890,2893,2897,2902,2904,2906,2909,2912,2914,2918,2921,2928,2931,2934,2938,2940,2944,2946,2948,2950,2954,2962,2970,2982,2988,2997,3000,3011,3014,3015,3020,3021,3254,3323,3397,3398,3408,3417,3418,3420,3424,3427,3430,3433,3436,3439,3442,3445,3449,3452,3455,3458,3462,3465,3469,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3611,3613,3614,3615,3616,3617,3618,3619,3620,3622,3623,3625,3626,3628,3630,3631,3633,3634,3635,3636,3637,3638,3640,3641,3642,3643,3644,3776,3778,3780,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3796,3797,3798,3799,3800,3801,3802,3804,3808,3931,3932,3933,3934,3935,3936,3940,3941,3942,4109,4111,4113,4115,4117,4119,4120,4121,4122,4124,4126,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4142,4143,4144,4145,4147,4149,4150,4152,4153,4155,4157,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4172,4173,4174,4175,4177,4178,4179,4180,4181,4183,4185,4187,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,5042,5117,5120,5123,5126,5140,5146,5251,5280,5307,5316,5378,5896,6214,6337,6562,6586,6624,6802,6823,6947,7093,7099,7115,7149,7317,7351,7516,7768,7851,7863,7892", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "3404,6375,6473,17464,19162,19217,19341,19405,19475,19536,19611,19687,19764,20002,20087,20169,20245,20321,20398,20476,20582,20688,20767,20847,20904,23634,23708,23783,23848,23914,23974,24035,24107,24180,24247,24315,24374,24433,24492,24551,24610,24664,24718,24771,24825,24879,24933,25684,25758,25837,25910,25984,26055,26127,26199,26272,26329,26387,26460,26534,26608,26683,26755,26828,26898,26969,27029,27090,27159,27228,27298,27372,27448,27512,27589,27665,27742,27807,27876,27953,28028,28097,28165,28242,28308,28369,28466,28531,28600,28699,28770,28829,28887,28944,29003,29067,29138,29210,29282,29354,29426,29493,29561,29629,29688,29751,29815,29905,29996,30056,30122,30189,30255,30325,30389,30442,30509,30570,30637,30750,30808,30871,30936,31001,31076,31149,31221,31265,31312,31358,31407,31468,31529,31590,31652,31716,31780,31844,31909,31972,32032,32093,32159,32218,32278,32340,32411,32471,36496,36582,36832,36922,37009,37097,37179,37262,37352,54625,54677,54735,54780,54846,54910,54967,55024,57478,57535,57583,57632,57905,58848,58895,59286,60804,61095,61159,61349,61409,63203,63277,63347,63425,63479,63549,63634,63682,63728,63789,63852,63918,63982,64053,64116,64181,64245,64306,64367,64419,64492,64566,64635,64710,64784,64858,64999,76982,77106,77184,77408,77496,77592,78244,78826,78915,79162,79443,80109,80394,82142,82619,82841,83063,83339,83566,83796,84026,84256,84486,84713,85132,85358,85783,86013,86441,86660,86943,87151,87282,87509,87935,88160,88587,88808,89233,89353,89629,89930,90254,90545,90859,90996,91127,91232,91474,91641,91845,92053,92324,92436,92548,92653,94598,94812,94958,95098,95184,95532,95620,95866,96284,96533,96615,96713,97370,97470,97722,98146,98401,102432,102521,102758,104782,105024,105126,105379,149735,160332,161848,172543,174071,175828,176454,176874,178135,179400,179656,179892,180439,180933,181538,181736,182316,183684,184059,184177,184715,184872,185068,185341,185597,185767,185908,185972,186337,186704,187380,187644,187982,188335,188429,188615,188921,189183,189308,189435,189674,189885,190004,190197,190374,190829,191010,191132,191391,191504,191691,191793,191900,192029,192304,192812,193308,194185,194479,195049,195198,195930,196102,196186,196522,196614,210568,215799,221514,221576,222154,222738,222829,222942,223171,223331,223483,223654,223820,223989,224156,224319,224562,224732,224905,225076,225350,225549,225754,232623,232707,232803,232899,232997,233097,233199,233301,233403,233505,233607,233707,233803,233915,234044,234167,234298,234429,234527,234641,234735,234875,235009,235105,235217,235317,235433,235529,235641,235741,235881,236017,236181,236311,236469,236619,236760,236904,237039,237151,237301,237429,237557,237693,237825,237955,238085,238197,246079,246225,246369,246507,246573,246663,246739,246843,246933,247035,247143,247251,247351,247431,247523,247621,247731,247783,247861,247967,248059,248163,248273,248395,248558,258007,258087,258187,258277,258387,258477,258718,258812,258918,270422,270522,270634,270748,270864,270980,271074,271188,271300,271402,271522,271644,271726,271830,271950,272076,272174,272268,272356,272468,272584,272706,272818,272993,273109,273195,273287,273399,273523,273590,273716,273784,273912,274056,274184,274253,274348,274463,274576,274675,274784,274895,275006,275107,275212,275312,275442,275533,275656,275750,275862,275948,276052,276148,276236,276354,276458,276562,276688,276776,276884,276984,277074,277184,277268,277370,277454,277508,277572,277678,277764,277874,277958,329001,331617,331735,331850,331930,332291,332524,336639,337983,339344,339732,342507,358308,368562,387423,400775,401526,403040,409116,409495,413773,420549,420778,421446,422784,427946,429029,435282,444274,448648,448988,450409", ++ "endLines": "73,141,143,361,403,404,406,407,408,409,410,411,412,415,416,417,418,419,420,421,422,423,424,425,426,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,661,662,666,667,668,669,670,671,672,933,934,935,936,937,938,939,940,978,979,980,981,986,1004,1005,1013,1042,1048,1049,1052,1053,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1183,1185,1186,1190,1191,1192,1208,1209,1213,1217,1221,1233,1239,1268,1272,1276,1281,1285,1289,1293,1297,1301,1305,1311,1315,1321,1325,1331,1335,1340,1344,1347,1351,1357,1361,1367,1371,1377,1380,1384,1388,1392,1396,1400,1401,1402,1403,1406,1409,1412,1415,1419,1420,1421,1422,1423,1463,1465,1467,1469,1474,1475,1479,1485,1489,1490,1492,1504,1505,1509,1515,1519,1520,1575,1579,1606,1610,1611,1615,1643,2437,2463,2634,2660,2691,2699,2705,2721,2743,2748,2753,2763,2772,2781,2785,2792,2811,2818,2819,2828,2831,2834,2838,2842,2846,2849,2850,2855,2860,2870,2875,2882,2888,2889,2892,2896,2901,2903,2905,2908,2911,2913,2917,2920,2927,2930,2933,2937,2939,2943,2945,2947,2949,2953,2961,2969,2981,2987,2996,2999,3010,3013,3014,3019,3020,3025,3322,3392,3397,3407,3416,3417,3419,3423,3426,3429,3432,3435,3438,3441,3444,3448,3451,3454,3457,3461,3464,3468,3472,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3610,3612,3613,3614,3615,3616,3617,3618,3619,3621,3622,3624,3625,3627,3629,3630,3632,3633,3634,3635,3636,3637,3639,3640,3641,3642,3643,3644,3777,3779,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3795,3796,3797,3798,3799,3800,3801,3803,3807,3811,3931,3932,3933,3934,3935,3939,3940,3941,3942,4110,4112,4114,4116,4118,4119,4120,4121,4123,4125,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4141,4142,4143,4144,4146,4148,4149,4151,4152,4154,4156,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4171,4172,4173,4174,4176,4177,4178,4179,4180,4182,4184,4186,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,5116,5119,5122,5125,5139,5145,5155,5279,5306,5315,5377,5740,5899,6241,6354,6585,6591,6629,6822,6946,6966,7098,7102,7120,7183,7328,7416,7535,7822,7862,7888,7898", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "3454,6415,6517,17500,19212,19274,19400,19470,19531,19606,19682,19759,19837,20082,20164,20240,20316,20393,20471,20577,20683,20762,20842,20899,20957,23703,23778,23843,23909,23969,24030,24102,24175,24242,24310,24369,24428,24487,24546,24605,24659,24713,24766,24820,24874,24928,24982,25753,25832,25905,25979,26050,26122,26194,26267,26324,26382,26455,26529,26603,26678,26750,26823,26893,26964,27024,27085,27154,27223,27293,27367,27443,27507,27584,27660,27737,27802,27871,27948,28023,28092,28160,28237,28303,28364,28461,28526,28595,28694,28765,28824,28882,28939,28998,29062,29133,29205,29277,29349,29421,29488,29556,29624,29683,29746,29810,29900,29991,30051,30117,30184,30250,30320,30384,30437,30504,30565,30632,30745,30803,30866,30931,30996,31071,31144,31216,31260,31307,31353,31402,31463,31524,31585,31647,31711,31775,31839,31904,31967,32027,32088,32154,32213,32273,32335,32406,32466,32534,36577,36664,36917,37004,37092,37174,37257,37347,37438,54672,54730,54775,54841,54905,54962,55019,55073,57530,57578,57627,57678,57934,58890,58939,59327,60831,61154,61216,61404,61461,63272,63342,63420,63474,63544,63629,63677,63723,63784,63847,63913,63977,64048,64111,64176,64240,64301,64362,64414,64487,64561,64630,64705,64779,64853,64994,65064,77030,77179,77269,77491,77587,77677,78821,78910,79157,79438,79690,80389,80782,82614,82836,83058,83334,83561,83791,84021,84251,84481,84708,85127,85353,85778,86008,86436,86655,86938,87146,87277,87504,87930,88155,88582,88803,89228,89348,89624,89925,90249,90540,90854,90991,91122,91227,91469,91636,91840,92048,92319,92431,92543,92648,92765,94807,94953,95093,95179,95527,95615,95861,96279,96528,96610,96708,97365,97465,97717,98141,98396,98490,102516,102753,104777,105019,105121,105374,107530,160327,161843,172538,174066,175823,176449,176869,178130,179395,179651,179887,180434,180928,181533,181731,182311,183679,184054,184172,184710,184867,185063,185336,185592,185762,185903,185967,186332,186699,187375,187639,187977,188330,188424,188610,188916,189178,189303,189430,189669,189880,189999,190192,190369,190824,191005,191127,191386,191499,191686,191788,191895,192024,192299,192807,193303,194180,194474,195044,195193,195925,196097,196181,196517,196609,196887,215794,221165,221571,222149,222733,222824,222937,223166,223326,223478,223649,223815,223984,224151,224314,224557,224727,224900,225071,225345,225544,225749,226079,232702,232798,232894,232992,233092,233194,233296,233398,233500,233602,233702,233798,233910,234039,234162,234293,234424,234522,234636,234730,234870,235004,235100,235212,235312,235428,235524,235636,235736,235876,236012,236176,236306,236464,236614,236755,236899,237034,237146,237296,237424,237552,237688,237820,237950,238080,238192,238332,246220,246364,246502,246568,246658,246734,246838,246928,247030,247138,247246,247346,247426,247518,247616,247726,247778,247856,247962,248054,248158,248268,248390,248553,248710,258082,258182,258272,258382,258472,258713,258807,258913,259005,270517,270629,270743,270859,270975,271069,271183,271295,271397,271517,271639,271721,271825,271945,272071,272169,272263,272351,272463,272579,272701,272813,272988,273104,273190,273282,273394,273518,273585,273711,273779,273907,274051,274179,274248,274343,274458,274571,274670,274779,274890,275001,275102,275207,275307,275437,275528,275651,275745,275857,275943,276047,276143,276231,276349,276453,276557,276683,276771,276879,276979,277069,277179,277263,277365,277449,277503,277567,277673,277759,277869,277953,278073,331612,331730,331845,331925,332286,332519,333036,337978,339339,339727,342502,352555,358438,369914,387990,401521,401783,403235,409490,413768,414374,420773,420924,421656,423862,428253,432050,436021,446400,448983,450294,450607" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a44dd8dae0f5566110296e3edaa8fb5a/transformed/transition-1.2.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,95,142,185,240,287,341,393,442,503", ++ "endColumns": "39,46,42,54,46,53,51,48,60,49", ++ "endOffsets": "90,137,180,235,282,336,388,437,498,548" ++ }, ++ "to": { ++ "startLines": "984,985,1003,1007,1008,1037,1038,1039,1040,1041", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "57818,57858,58805,58987,59042,60538,60592,60644,60693,60754", ++ "endColumns": "39,46,42,54,46,53,51,48,60,49", ++ "endOffsets": "57853,57900,58843,59037,59084,60587,60639,60688,60749,60799" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "4,11", ++ "startColumns": "0,0", ++ "startOffsets": "142,510", ++ "endLines": "10,17", ++ "endColumns": "8,8", ++ "endOffsets": "509,875" ++ }, ++ "to": { ++ "startLines": "4095,4102", ++ "startColumns": "4,4", ++ "startOffsets": "269680,270052", ++ "endLines": "4101,4108", ++ "endColumns": "8,8", ++ "endOffsets": "270047,270417" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,80,81,82,83,84,85,86,87,88,89,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,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,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,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,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,583,587,591,598,605,613,623,632,641,650,651,652,657,658,662,663,669,673,674,675,676,686,687,688,692,693,699,703,704,705,706,707,763,845,890,970,1025,1107,1171,1216,1296,1307,1311,1315,1327,1343,1359,1360,1408,1412,1416,1417,1418,1421,1435,1444,1459,1501,1502,1503,1515,1519,1524,1529,1534,1537,1540,1543,1547,1551,1552,1553,1554,1555,1558,1561,1564,1567,1571,1575,1576,1579,1582,1585,1588,1592,1595,1598,1601,1604,1607,1610,1614,1617,1620,1624,1627,1637,1645,1653,1656,1659,1662,1665,1668,1671,1674,1675,1678,1681,1682,1685,1686,1687,1691,1692,1697,1698,1706,1714,1715,1723,1727,1735,1743,1751,1759,1767,1768,1776,1784,1785,1788,1791,1793,1798,1800,1805,1809,1813,1814,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1843,1844,1845,1851,1852,1856,1858,1859,1862,1867,1868,1869,1870,1871,1872,1876,1877,1878,1884,1885,1889,1891,1894,1898,1902,1906,1910,1911,1912,1913,1921,1929,1932,1937,1942,1947,1952,1956,1960,1961,1969,1970,1971,1972,1973,1981,1986,1991,1992,1993,1994,2018,2022,2027,2030,2034,2037,2041,2048,2051,2055,2059,2062,2070,2079,2092,2096,2111,2119,2122,2133,2138,2142,2177,2181,2182,2189,2193,2194,2195,2198,2203,2208,2209,2213,2218,2233,2237,2238,2250,2260,2261,2273,2278,2302,2305,2311,2314,2323,2331,2335,2338,2341,2344,2348,2351,2368,2372,2375,2390,2393,2401,2406,2413,2418,2419,2424,2425,2431,2437,2443,2474,2485,2502,2509,2513,2516,2528,2537,2541,2546,2550,2554,2558,2561,2565,2569,2572,2581,2586,2595,2599,2606,2607,2611,2620,2626,2630,2631,2647,2653,2657,2661,2662,2684,2685,2686,2687,2688,2692,2695,2696,2703,2704,2716,2728,2735,2736,2741,2746,2747,2751,2765,2770,2776,2782,2788,2793,2799,2805,2806,2811,2825,2830,2839,2852,2863,2867,2876,2884,2885,2892,2900,2925,2937,2976,2996,3061,3095,3099,3161,3274,3300,3331,3337,3345,3452,3467,3481,3487,3533,3537,3543,3549,3557,3592,3598,3605,3608,3674,3686,3698,3710,3742,3751,3760,3766,3771,3776,3782,3795,3843,3859,3914,3920,3927,3930,3934,3972,3995,4046,4054,4077,4084,4092,4189,4194,4443,4459", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "150,206,255,311,371,432,487,537,587,640,698,746,815,863,930,967,1014,1063,1119,1170,1219,1273,1327,1376,1432,1479,1535,1595,1648,1709,1781,1845,1896,1949,2001,2059,2124,2172,2223,2290,2356,2414,2483,2541,2611,2684,2758,2826,2893,2963,3029,3102,3162,3238,3298,3358,3433,3493,3552,3609,3668,3730,3792,3849,3905,3961,4019,4077,4134,4191,4250,4309,4367,4421,4477,4606,4664,4722,4780,4826,4886,4940,5008,5077,5145,5198,5250,5300,5346,5396,5443,5501,5559,5618,5678,5740,5802,5864,5926,5988,6050,6118,6179,6241,6303,6356,6410,6461,6506,6570,6629,6691,6765,6836,6902,6976,7045,7116,7189,7260,7328,7401,7477,7547,7625,7693,7759,7820,7889,7953,8019,8087,8153,8216,8284,8355,8420,8493,8556,8637,8701,8767,8837,8907,8977,9047,9114,9179,9245,9298,9374,9440,9527,9603,9679,9726,9791,9846,9896,9950,10029,10107,10180,10245,10308,10374,10445,10516,10586,10648,10717,10783,10843,10910,10977,11033,11084,11137,11189,11243,11314,11377,11436,11498,11557,11630,11697,11757,11820,11895,11967,12063,12134,12190,12261,12318,12375,12441,12505,12576,12633,12686,12749,12801,12859,12926,12990,13052,13114,13182,13240,13303,13366,13433,13505,13571,13623,13683,13741,13793,13877,13962,14043,14123,14200,14279,14356,14430,14504,14575,14655,14727,14802,14870,14947,15012,15073,15133,15208,15282,15359,15432,15502,15574,15644,15717,15781,15851,15899,15968,16020,16105,16188,16246,16312,16379,16445,16526,16601,16657,16710,16771,16829,16879,16928,16977,17026,17088,17140,17185,17266,17317,17371,17424,17478,17529,17578,17644,17695,17756,17817,17879,17929,17970,18047,18106,18165,18224,18285,18341,18397,18464,18525,18590,18645,18710,18779,18847,18925,18994,19054,19125,19199,19264,19336,19406,19473,19557,19626,19693,19763,19826,19893,19961,20044,20123,20213,20290,20358,20425,20503,20560,20617,20685,20751,20807,20867,20926,20980,21030,21080,21128,21190,21241,21307,21380,21460,21540,21604,21667,21734,21805,21863,21924,21990,22049,22116,22176,22236,22299,22367,22428,22495,22573,22643,22692,22749,22818,22879,22967,23055,23143,23231,23287,23374,23461,23548,23635,23693,23767,23837,23893,23964,24029,24091,24166,24239,24329,24395,24461,24522,24586,24648,24706,24777,24860,24919,24990,25056,25121,25182,25241,25312,25378,25443,25526,25602,25677,25758,25818,25887,25957,26026,26081,26137,26193,26254,26312,26368,26423,26485,26538,26595,26689,26758,26859,26910,26980,27043,27101,27171,27240,27310,27380,27450,27517,27584,27659,27726,27785,27839,27893,27947,28000,28052,28126,28191,28265,28338,28406,28466,28524,28585,28651,28717,28782,28846,28907,29044,29184,29233,29283,29331,29387,29445,29507,29562,29620,29679,29741,29807,29873,29916,29960,30005,30048,30099,30146,30191,30242,30293,30344,30395,30443,30509,30571,30634,30706,30763,30829,30895,30963,31031,31097,31164,31238,31301,31358,31418,31483,31550,31615,31672,31733,31791,31861,31918,32238,32388,32519,32757,32855,32970,33055,33103,33182,33247,33336,33493,33650,33803,33957,34016,34098,34272,34420,34579,34734,34907,35024,35141,35309,35421,35535,35709,35887,36020,36132,36278,36430,36562,36705,36827,37005,37187,37504,37686,37868,38058,38248,38447,38620,38730,38913,39050,39270,39454,39614,39772,39956,40159,40330,40550,40772,40927,41127,41311,41414,41555,41720,41891,42091,42295,42497,42702,42903,43102,43306,43384,43685,43851,44006,44108,44242,44519,44804,45194,45650,46159,46701,47166,47628,48099,48192,48299,48642,48749,48994,49115,49524,49772,49872,49977,50096,50630,50777,50896,51147,51280,51695,51949,52061,52182,52315,52462,56647,62185,65549,70877,74963,80464,84531,87811,93102,93858,94110,94375,95435,96339,97438,97529,99723,100045,100255,100364,100483,100667,101639,102235,103164,105815,105910,105941,106811,107097,107500,107902,108245,108457,108658,108871,109160,109445,109518,109605,109690,109789,109909,110070,110233,110394,110559,110726,110779,110912,111032,111130,111243,111436,111562,111714,111856,112026,112182,112354,112645,112757,112886,113115,113333,114188,114775,115389,115557,115699,115860,116003,116171,116328,116523,116615,116788,116950,117045,117214,117308,117397,117640,117729,118022,118136,118545,118959,119075,119493,119734,120164,120599,121009,121431,121841,121963,122372,122788,122910,123128,123312,123380,123724,123804,124160,124310,124454,124538,124927,125025,125133,125227,125357,125465,125587,125723,125831,125951,126085,126207,126335,126477,126603,126743,126869,126987,127119,127217,127327,127627,127739,127857,128321,128437,128740,128866,128962,129092,129493,129603,129727,129865,129975,130097,130409,130533,130663,131139,131267,131582,131720,131866,132028,132244,132400,132604,132672,132756,132860,133422,134053,134211,134430,134661,134884,135119,135341,135607,135745,136344,136458,136596,136708,136832,137403,137898,138444,138589,138682,138774,140671,141059,141357,141546,141752,141945,142155,142760,142905,143122,143383,143514,143946,144470,145114,145311,146259,146816,146939,147712,147933,148133,150110,150345,150469,150977,151191,151294,151424,151599,151918,152204,152344,152538,152808,153689,153977,154107,154884,155541,155687,156393,156631,158171,158321,158738,158903,159589,160059,160255,160417,160572,160716,160950,161117,162045,162331,162491,163106,163265,163593,163820,164332,164694,164773,165112,165217,165582,165953,166314,168136,168765,169841,170361,170614,170766,171756,172493,172696,172942,173189,173431,173752,173951,174256,174479,174651,175192,175461,175955,176216,176656,176815,177099,177844,178209,178514,178672,179669,180067,180295,180515,180657,182357,182463,182593,182731,182855,183085,183254,183354,183813,183927,184810,185565,186004,186128,186441,186724,186858,187049,187828,188046,188337,188616,188933,189155,189450,189733,189837,190120,190852,191168,191794,192523,193184,193373,194020,194585,194705,195202,195736,197360,198071,200119,200961,203808,205732,205972,209959,215289,216567,217810,217994,218205,224846,225554,226331,226715,228885,229116,229420,229737,230259,231715,232022,232452,232611,236088,236706,237288,237783,239291,239782,240276,240649,240878,241086,241222,241908,244717,245580,249181,249402,249695,249832,250067,251921,252911,255466,255907,257137,257558,257874,263177,263442,277443,278512", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,79,80,81,82,83,84,85,86,87,88,89,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,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,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,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,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,582,586,590,597,604,612,622,631,640,649,650,651,656,657,661,662,668,672,673,674,675,685,686,687,691,692,698,702,703,704,705,706,762,844,889,969,1024,1106,1170,1215,1295,1306,1310,1314,1326,1342,1358,1359,1407,1411,1415,1416,1417,1420,1434,1443,1458,1500,1501,1502,1514,1518,1523,1528,1533,1536,1539,1542,1546,1550,1551,1552,1553,1554,1557,1560,1563,1566,1570,1574,1575,1578,1581,1584,1587,1591,1594,1597,1600,1603,1606,1609,1613,1616,1619,1623,1626,1636,1644,1652,1655,1658,1661,1664,1667,1670,1673,1674,1677,1680,1681,1684,1685,1686,1690,1691,1696,1697,1705,1713,1714,1722,1726,1734,1742,1750,1758,1766,1767,1775,1783,1784,1787,1790,1792,1797,1799,1804,1808,1812,1813,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1842,1843,1844,1850,1851,1855,1857,1858,1861,1866,1867,1868,1869,1870,1871,1875,1876,1877,1883,1884,1888,1890,1893,1897,1901,1905,1909,1910,1911,1912,1920,1928,1931,1936,1941,1946,1951,1955,1959,1960,1968,1969,1970,1971,1972,1980,1985,1990,1991,1992,1993,2017,2021,2026,2029,2033,2036,2040,2047,2050,2054,2058,2061,2069,2078,2091,2095,2110,2118,2121,2132,2137,2141,2176,2180,2181,2188,2192,2193,2194,2197,2202,2207,2208,2212,2217,2232,2236,2237,2249,2259,2260,2272,2277,2301,2304,2310,2313,2322,2330,2334,2337,2340,2343,2347,2350,2367,2371,2374,2389,2392,2400,2405,2412,2417,2418,2423,2424,2430,2436,2442,2473,2484,2501,2508,2512,2515,2527,2536,2540,2545,2549,2553,2557,2560,2564,2568,2571,2580,2585,2594,2598,2605,2606,2610,2619,2625,2629,2630,2646,2652,2656,2660,2661,2683,2684,2685,2686,2687,2691,2694,2695,2702,2703,2715,2727,2734,2735,2740,2745,2746,2750,2764,2769,2775,2781,2787,2792,2798,2804,2805,2810,2824,2829,2838,2851,2862,2866,2875,2883,2884,2891,2899,2924,2936,2975,2995,3060,3094,3098,3160,3273,3299,3330,3336,3344,3451,3466,3480,3486,3532,3536,3542,3548,3556,3591,3597,3604,3607,3673,3685,3697,3709,3741,3750,3759,3765,3770,3775,3781,3794,3842,3858,3913,3919,3926,3929,3933,3971,3994,4045,4053,4076,4083,4091,4188,4193,4442,4458,4467", ++ "endColumns": "55,48,55,59,60,54,49,49,52,57,47,68,47,66,36,46,48,55,50,48,53,53,48,55,46,55,59,52,60,71,63,50,52,51,57,64,47,50,66,65,57,68,57,69,72,73,67,66,69,65,72,59,75,59,59,74,59,58,56,58,61,61,56,55,55,57,57,56,56,58,58,57,53,55,9,57,57,57,45,59,53,67,68,67,52,51,49,45,49,46,57,57,58,59,61,61,61,61,61,61,67,60,61,61,52,53,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,64,65,52,75,65,86,75,75,46,64,54,49,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,63,61,61,67,57,62,62,66,71,65,51,59,57,51,83,84,80,79,76,78,76,73,73,70,79,71,74,67,76,64,60,59,74,73,76,72,69,71,69,72,63,69,47,68,51,84,82,57,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,65,72,79,79,63,62,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,55,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,54,61,52,56,93,68,100,50,69,62,57,69,68,69,69,69,66,66,74,66,58,53,53,53,52,51,73,64,73,72,67,59,57,60,65,65,64,63,60,136,139,48,49,47,55,57,61,54,57,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,69,56,12,149,130,237,97,114,84,47,78,64,88,156,156,152,153,58,81,173,147,158,154,172,116,116,167,111,113,173,177,132,111,145,151,131,142,121,177,181,316,181,181,189,189,198,172,109,182,136,219,183,159,157,183,202,170,219,221,154,199,183,102,140,164,170,199,203,201,204,200,198,203,77,300,165,154,101,10,10,10,10,10,10,10,10,10,10,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,90,10,10,10,108,118,10,10,10,10,10,94,30,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,10,10,10,10,10,52,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22", ++ "endOffsets": "201,250,306,366,427,482,532,582,635,693,741,810,858,925,962,1009,1058,1114,1165,1214,1268,1322,1371,1427,1474,1530,1590,1643,1704,1776,1840,1891,1944,1996,2054,2119,2167,2218,2285,2351,2409,2478,2536,2606,2679,2753,2821,2888,2958,3024,3097,3157,3233,3293,3353,3428,3488,3547,3604,3663,3725,3787,3844,3900,3956,4014,4072,4129,4186,4245,4304,4362,4416,4472,4601,4659,4717,4775,4821,4881,4935,5003,5072,5140,5193,5245,5295,5341,5391,5438,5496,5554,5613,5673,5735,5797,5859,5921,5983,6045,6113,6174,6236,6298,6351,6405,6456,6501,6565,6624,6686,6760,6831,6897,6971,7040,7111,7184,7255,7323,7396,7472,7542,7620,7688,7754,7815,7884,7948,8014,8082,8148,8211,8279,8350,8415,8488,8551,8632,8696,8762,8832,8902,8972,9042,9109,9174,9240,9293,9369,9435,9522,9598,9674,9721,9786,9841,9891,9945,10024,10102,10175,10240,10303,10369,10440,10511,10581,10643,10712,10778,10838,10905,10972,11028,11079,11132,11184,11238,11309,11372,11431,11493,11552,11625,11692,11752,11815,11890,11962,12058,12129,12185,12256,12313,12370,12436,12500,12571,12628,12681,12744,12796,12854,12921,12985,13047,13109,13177,13235,13298,13361,13428,13500,13566,13618,13678,13736,13788,13872,13957,14038,14118,14195,14274,14351,14425,14499,14570,14650,14722,14797,14865,14942,15007,15068,15128,15203,15277,15354,15427,15497,15569,15639,15712,15776,15846,15894,15963,16015,16100,16183,16241,16307,16374,16440,16521,16596,16652,16705,16766,16824,16874,16923,16972,17021,17083,17135,17180,17261,17312,17366,17419,17473,17524,17573,17639,17690,17751,17812,17874,17924,17965,18042,18101,18160,18219,18280,18336,18392,18459,18520,18585,18640,18705,18774,18842,18920,18989,19049,19120,19194,19259,19331,19401,19468,19552,19621,19688,19758,19821,19888,19956,20039,20118,20208,20285,20353,20420,20498,20555,20612,20680,20746,20802,20862,20921,20975,21025,21075,21123,21185,21236,21302,21375,21455,21535,21599,21662,21729,21800,21858,21919,21985,22044,22111,22171,22231,22294,22362,22423,22490,22568,22638,22687,22744,22813,22874,22962,23050,23138,23226,23282,23369,23456,23543,23630,23688,23762,23832,23888,23959,24024,24086,24161,24234,24324,24390,24456,24517,24581,24643,24701,24772,24855,24914,24985,25051,25116,25177,25236,25307,25373,25438,25521,25597,25672,25753,25813,25882,25952,26021,26076,26132,26188,26249,26307,26363,26418,26480,26533,26590,26684,26753,26854,26905,26975,27038,27096,27166,27235,27305,27375,27445,27512,27579,27654,27721,27780,27834,27888,27942,27995,28047,28121,28186,28260,28333,28401,28461,28519,28580,28646,28712,28777,28841,28902,29039,29179,29228,29278,29326,29382,29440,29502,29557,29615,29674,29736,29802,29868,29911,29955,30000,30043,30094,30141,30186,30237,30288,30339,30390,30438,30504,30566,30629,30701,30758,30824,30890,30958,31026,31092,31159,31233,31296,31353,31413,31478,31545,31610,31667,31728,31786,31856,31913,32233,32383,32514,32752,32850,32965,33050,33098,33177,33242,33331,33488,33645,33798,33952,34011,34093,34267,34415,34574,34729,34902,35019,35136,35304,35416,35530,35704,35882,36015,36127,36273,36425,36557,36700,36822,37000,37182,37499,37681,37863,38053,38243,38442,38615,38725,38908,39045,39265,39449,39609,39767,39951,40154,40325,40545,40767,40922,41122,41306,41409,41550,41715,41886,42086,42290,42492,42697,42898,43097,43301,43379,43680,43846,44001,44103,44237,44514,44799,45189,45645,46154,46696,47161,47623,48094,48187,48294,48637,48744,48989,49110,49519,49767,49867,49972,50091,50625,50772,50891,51142,51275,51690,51944,52056,52177,52310,52457,56642,62180,65544,70872,74958,80459,84526,87806,93097,93853,94105,94370,95430,96334,97433,97524,99718,100040,100250,100359,100478,100662,101634,102230,103159,105810,105905,105936,106806,107092,107495,107897,108240,108452,108653,108866,109155,109440,109513,109600,109685,109784,109904,110065,110228,110389,110554,110721,110774,110907,111027,111125,111238,111431,111557,111709,111851,112021,112177,112349,112640,112752,112881,113110,113328,114183,114770,115384,115552,115694,115855,115998,116166,116323,116518,116610,116783,116945,117040,117209,117303,117392,117635,117724,118017,118131,118540,118954,119070,119488,119729,120159,120594,121004,121426,121836,121958,122367,122783,122905,123123,123307,123375,123719,123799,124155,124305,124449,124533,124922,125020,125128,125222,125352,125460,125582,125718,125826,125946,126080,126202,126330,126472,126598,126738,126864,126982,127114,127212,127322,127622,127734,127852,128316,128432,128735,128861,128957,129087,129488,129598,129722,129860,129970,130092,130404,130528,130658,131134,131262,131577,131715,131861,132023,132239,132395,132599,132667,132751,132855,133417,134048,134206,134425,134656,134879,135114,135336,135602,135740,136339,136453,136591,136703,136827,137398,137893,138439,138584,138677,138769,140666,141054,141352,141541,141747,141940,142150,142755,142900,143117,143378,143509,143941,144465,145109,145306,146254,146811,146934,147707,147928,148128,150105,150340,150464,150972,151186,151289,151419,151594,151913,152199,152339,152533,152803,153684,153972,154102,154879,155536,155682,156388,156626,158166,158316,158733,158898,159584,160054,160250,160412,160567,160711,160945,161112,162040,162326,162486,163101,163260,163588,163815,164327,164689,164768,165107,165212,165577,165948,166309,168131,168760,169836,170356,170609,170761,171751,172488,172691,172937,173184,173426,173747,173946,174251,174474,174646,175187,175456,175950,176211,176651,176810,177094,177839,178204,178509,178667,179664,180062,180290,180510,180652,182352,182458,182588,182726,182850,183080,183249,183349,183808,183922,184805,185560,185999,186123,186436,186719,186853,187044,187823,188041,188332,188611,188928,189150,189445,189728,189832,190115,190847,191163,191789,192518,193179,193368,194015,194580,194700,195197,195731,197355,198066,200114,200956,203803,205727,205967,209954,215284,216562,217805,217989,218200,224841,225549,226326,226710,228880,229111,229415,229732,230254,231710,232017,232447,232606,236083,236701,237283,237778,239286,239777,240271,240644,240873,241081,241217,241903,244712,245575,249176,249397,249690,249827,250062,251916,252906,255461,255902,257132,257553,257869,263172,263437,277438,278507,278841" ++ }, ++ "to": { ++ "startLines": "3,9,20,21,22,23,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,77,78,79,80,81,82,140,142,144,145,146,147,148,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,310,311,329,331,332,333,334,335,336,337,338,340,341,342,343,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,373,381,382,405,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,488,489,490,491,492,493,494,495,599,600,604,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,921,922,923,924,925,926,927,928,929,930,931,932,941,942,990,991,993,994,995,996,997,998,999,1000,1001,1002,1006,1009,1010,1011,1029,1030,1031,1032,1033,1034,1035,1043,1050,1051,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1076,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1187,1193,1197,1240,1247,1254,1424,1434,1443,1452,1521,1522,1523,1528,1529,1533,1534,1540,1544,1545,1546,1547,1557,1558,1559,1563,1564,1570,1574,1644,1645,1646,1647,1703,1785,1830,1910,1965,2047,2111,2156,2236,2247,2251,2255,3026,3042,3057,3058,3106,3110,3114,3115,3116,3119,3133,3140,3154,3196,3205,3206,3218,3222,3227,3232,3237,3240,3243,3246,3250,3393,3394,3395,3396,3473,3476,3479,3482,3485,3489,3493,3494,3497,3500,3503,3506,3510,3513,3516,3519,3522,3525,3528,3532,3535,3538,3542,3545,3555,3563,3571,3574,3577,3580,3583,3586,3656,3659,3660,3663,3666,3667,3670,3671,3672,3676,3677,3682,3683,3691,3699,3700,3708,3712,3720,3728,3736,3744,3752,3753,3761,3769,3770,3773,3812,3814,3819,3821,3826,3830,3834,3835,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3864,3865,3866,3872,3873,3877,3879,3880,3883,3888,3889,3890,3891,3892,3893,3897,3898,3899,3905,3906,3910,3912,3915,3919,3923,3927,3943,3944,3945,3946,3954,3962,3965,3970,3975,3980,3985,3989,3993,3994,4002,4003,4004,4005,4006,4014,4019,4024,4025,4026,4027,4051,4055,4060,4063,4067,4070,4074,4081,4084,4088,4092,4206,4214,4223,4236,4240,4255,4263,4266,4277,4282,4286,4321,4325,4326,4333,4337,4338,4339,4342,4347,4352,4353,4357,4362,4377,4381,4382,4394,4404,4405,4417,4422,4446,4449,4455,4458,4467,4475,4479,4482,4485,4488,4492,4495,4512,4516,4519,4534,4537,4545,4550,4557,4562,4563,4568,4569,4575,4581,4587,4618,4629,4646,4653,4657,4660,4672,4681,4685,4690,4694,4698,4702,4705,4709,4713,4716,4725,4730,4739,4743,4750,4751,4755,4764,4770,4774,4775,4791,4797,4801,4805,4806,4824,4825,4826,4827,4828,4832,4835,4836,4842,4843,4855,4867,4874,4875,4880,4885,4886,4890,4904,4909,4915,4921,4927,4932,4938,4944,4945,4950,4964,4969,4978,4991,5002,5006,5015,5023,5024,5031,5188,5203,5213,5741,5761,5807,5841,5845,5934,6043,6063,6084,6090,6098,6190,6359,6373,6379,6423,6427,6487,6542,6592,6630,6636,6643,6646,6700,6709,6721,6733,6760,6766,6772,6778,6783,6788,6794,6983,7017,7033,7104,7109,7142,7145,7184,7222,7240,7289,7297,7417,7421,7429,7536,7540,7760,7823", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "207,449,902,958,1018,1079,1234,1284,1334,1387,1445,1544,1613,1661,1728,1765,1812,1861,1917,1968,2017,2071,2125,2174,2230,3608,3664,3724,3777,3838,3910,6324,6420,6522,6574,6632,6697,6745,12239,12306,12372,12430,12499,12557,12627,12700,12774,12842,12909,12979,13045,13118,13178,13254,13314,13374,13449,13509,13568,13625,13684,13746,13808,13865,13921,13977,14035,14093,14150,14207,14266,14325,14383,14437,14493,14828,14886,15627,15741,15787,15847,15901,15969,16038,16106,16159,16257,16307,16353,16403,16497,16555,16613,16672,16732,16794,16856,16918,16980,17042,17104,17172,17233,17295,17357,17410,17505,17938,18276,18340,19279,21211,21285,21356,21422,21496,21565,21636,21709,21780,21848,21921,21997,22067,22145,22213,22279,22340,22409,22473,22539,22607,22673,22736,22804,22875,22940,23013,23076,23157,23221,23287,23357,23427,23497,23567,24987,25052,25118,25171,25247,25313,25400,25476,32539,32586,32821,33416,33466,33520,33599,33677,33750,33815,33878,33944,34015,34086,34156,34218,34287,34353,34413,34480,34547,34603,34654,34707,34759,34813,34884,34947,35006,35068,35127,35200,35267,35327,35390,35465,35537,35633,35704,35760,35831,35888,35945,36011,36075,36146,36203,36256,36319,36371,36429,37666,37730,37792,37854,37922,37980,38043,38106,38173,38245,38311,38363,38423,38481,38533,38617,38702,38783,38863,38940,39019,39096,39170,39244,39315,39395,39467,39542,39610,39687,39752,39813,39873,39948,40022,40099,40172,40242,40314,40384,40457,40521,40591,40639,40708,40760,40845,40928,40986,41052,41119,41185,41266,41341,41397,41450,41511,41569,41619,41668,41717,41766,41828,41880,41925,42006,42057,42111,42164,42218,42269,42318,42384,42435,42496,42557,42619,42669,42710,42787,42846,42905,42964,43025,43081,43137,43204,43265,43330,43385,43450,43519,43587,43665,43734,43794,43865,43939,44004,44076,44146,44213,44297,44366,44433,44503,44566,44633,44701,44784,44863,44953,45030,45098,45165,45243,45300,45357,45425,45491,45547,45607,45666,45720,45770,45820,45868,45930,45981,46047,46120,46200,46280,46344,46407,46474,46545,46603,46664,46730,46789,46856,46916,46976,47039,47107,47168,47235,47313,47383,47432,47489,47558,47619,47707,47795,47883,47971,48027,48114,48201,48288,48375,48433,48507,48577,48633,48704,48769,48831,48906,48979,49069,49135,49201,49262,49326,49388,49446,49517,49600,49659,49730,49796,49861,49922,49981,50052,50118,50183,50266,50342,50417,50498,50558,50627,50697,50766,50821,50877,50933,50994,51052,51108,51163,51225,51278,51335,51429,51498,51599,51650,51720,51783,51841,51911,51980,52050,52120,52190,52257,52324,52399,52466,52525,52579,52633,52687,52740,52792,53844,53909,53983,54056,54124,54184,54242,54303,54369,54435,54500,54564,55078,55215,58075,58124,58215,58263,58319,58377,58439,58494,58552,58611,58673,58739,58944,59089,59133,59178,60156,60207,60254,60299,60350,60401,60452,60836,61221,61287,61466,61529,61601,61658,61724,61790,61858,61926,61992,62059,62133,62196,62253,62313,62378,62445,62510,62567,62628,62686,62756,62883,65112,65262,65393,65631,65729,65844,65929,65977,66056,66121,66210,66367,66524,66677,66831,66890,66972,67146,67294,67453,67608,67781,67898,68015,68183,68295,68409,68583,68761,68894,69006,69152,69304,69436,69579,69701,69879,70061,70378,70560,70742,70932,71122,71321,71494,71604,71787,71924,72144,72328,72488,72646,72830,73033,73204,73424,73646,73801,74001,74185,74288,74429,74594,74765,74965,75169,75371,75576,75777,75976,76180,76258,76559,76725,76880,77274,77682,77959,80787,81177,81633,92770,93284,93721,94155,98495,98588,98695,99038,99145,99390,99511,99920,100168,100268,100373,100492,101001,101148,101267,101518,101651,102066,102320,107535,107656,107789,107936,111957,117371,120642,125846,129768,135145,139129,142301,147468,148224,148454,148697,196892,197796,198721,198812,201006,201328,201538,201647,201766,201950,202922,203392,204143,206620,207033,207064,207934,208220,208623,209025,209368,209580,209781,209994,210283,221170,221243,221330,221415,226084,226204,226365,226528,226689,226854,227021,227074,227207,227327,227425,227538,227731,227857,228009,228151,228321,228477,228649,228940,229052,229181,229410,229628,230483,231070,231684,231852,231994,232155,232298,232466,239095,239290,239382,239555,239717,239812,239981,240075,240164,240407,240496,240789,240903,241312,241726,241842,242260,242501,242931,243366,243776,244198,244608,244730,245139,245555,245677,245895,248715,248783,249127,249207,249563,249713,249857,249941,250330,250428,250536,250630,250760,250868,250990,251126,251234,251354,251488,251610,251738,251880,252006,252146,252272,252390,252522,252620,252730,253030,253142,253260,253724,253840,254143,254269,254365,254495,254896,255006,255130,255268,255378,255500,255812,255936,256066,256542,256670,256985,257123,257269,257431,257647,257803,259010,259078,259162,259266,259753,260309,260467,260686,260917,261140,261375,261597,261863,262001,262600,262714,262852,262964,263088,263659,264154,264700,264845,264938,265030,266837,267225,267523,267712,267918,268111,268321,268926,269071,269288,269549,278217,278649,279173,279817,280014,280962,281519,281642,282415,282636,282836,284813,285048,285172,285584,285798,285901,286031,286206,286458,286654,286794,286988,287258,288139,288427,288557,289334,289991,290137,290843,291081,292621,292771,293188,293353,294039,294509,294705,294796,294880,295024,295258,295425,296353,296639,296799,297414,297573,297901,298128,298640,299002,299081,299420,299525,299890,300261,300622,302444,303073,304149,304573,304826,304978,305968,306705,306908,307154,307401,307643,307964,308163,308468,308691,308863,309404,309673,310167,310428,310868,311027,311311,312056,312421,312726,312884,313881,314279,314507,314727,314869,316159,316265,316395,316533,316657,316887,317056,317156,317441,317555,318438,319193,319632,319756,320002,320195,320329,320520,321299,321517,321808,322087,322404,322626,322921,323204,323308,323591,324323,324639,325200,325929,326590,326779,327330,327800,327920,328322,333928,334401,334700,352560,353337,354931,356035,356184,359570,361865,362305,363057,363241,363452,367678,388106,388478,388680,389815,389965,392552,394365,401788,403240,403547,403977,404136,405884,406104,406686,407181,407800,407953,408109,408302,408531,408739,408875,416159,417197,417894,421161,421277,422501,422638,423867,425005,425536,427015,427263,432055,432171,432346,436026,436173,444031,446405", ++ "endLines": "3,9,20,21,22,23,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,77,78,79,80,81,82,140,142,144,145,146,147,148,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,305,310,311,329,331,332,333,334,335,336,337,338,340,341,342,343,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,373,381,382,405,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,488,489,490,491,492,493,494,495,599,600,604,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,921,922,923,924,925,926,927,928,929,930,931,932,941,942,990,991,993,994,995,996,997,998,999,1000,1001,1002,1006,1009,1010,1011,1029,1030,1031,1032,1033,1034,1035,1043,1050,1051,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1079,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1189,1196,1200,1246,1253,1261,1433,1442,1451,1460,1521,1522,1527,1528,1532,1533,1539,1543,1544,1545,1546,1556,1557,1558,1562,1563,1569,1573,1574,1644,1645,1646,1702,1784,1829,1909,1964,2046,2110,2155,2235,2246,2250,2254,2266,3041,3056,3057,3105,3109,3113,3114,3115,3118,3132,3139,3153,3195,3196,3205,3217,3221,3226,3231,3236,3239,3242,3245,3249,3253,3393,3394,3395,3396,3475,3478,3481,3484,3488,3492,3493,3496,3499,3502,3505,3509,3512,3515,3518,3521,3524,3527,3531,3534,3537,3541,3544,3554,3562,3570,3573,3576,3579,3582,3585,3588,3658,3659,3662,3665,3666,3669,3670,3671,3675,3676,3681,3682,3690,3698,3699,3707,3711,3719,3727,3735,3743,3751,3752,3760,3768,3769,3772,3775,3813,3818,3820,3825,3829,3833,3834,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3863,3864,3865,3871,3872,3876,3878,3879,3882,3887,3888,3889,3890,3891,3892,3896,3897,3898,3904,3905,3909,3911,3914,3918,3922,3926,3930,3943,3944,3945,3953,3961,3964,3969,3974,3979,3984,3988,3992,3993,4001,4002,4003,4004,4005,4013,4018,4023,4024,4025,4026,4050,4054,4059,4062,4066,4069,4073,4080,4083,4087,4091,4094,4213,4222,4235,4239,4254,4262,4265,4276,4281,4285,4320,4324,4325,4332,4336,4337,4338,4341,4346,4351,4352,4356,4361,4376,4380,4381,4393,4403,4404,4416,4421,4445,4448,4454,4457,4466,4474,4478,4481,4484,4487,4491,4494,4511,4515,4518,4533,4536,4544,4549,4556,4561,4562,4567,4568,4574,4580,4586,4617,4628,4645,4652,4656,4659,4671,4680,4684,4689,4693,4697,4701,4704,4708,4712,4715,4724,4729,4738,4742,4749,4750,4754,4763,4769,4773,4774,4790,4796,4800,4804,4805,4823,4824,4825,4826,4827,4831,4834,4835,4841,4842,4854,4866,4873,4874,4879,4884,4885,4889,4903,4908,4914,4920,4926,4931,4937,4943,4944,4949,4963,4968,4977,4990,5001,5005,5014,5022,5023,5030,5038,5202,5212,5250,5760,5806,5840,5844,5895,6042,6062,6083,6089,6097,6189,6203,6372,6378,6422,6426,6432,6492,6548,6623,6635,6642,6645,6699,6708,6720,6732,6759,6765,6771,6777,6782,6787,6793,6801,7016,7032,7073,7108,7114,7144,7148,7221,7239,7288,7296,7316,7420,7428,7515,7539,7759,7767,7831", ++ "endColumns": "55,48,55,59,60,54,49,49,52,57,47,68,47,66,36,46,48,55,50,48,53,53,48,55,46,55,59,52,60,71,63,50,52,51,57,64,47,50,66,65,57,68,57,69,72,73,67,66,69,65,72,59,75,59,59,74,59,58,56,58,61,61,56,55,55,57,57,56,56,58,58,57,53,55,9,57,57,57,45,59,53,67,68,67,52,51,49,45,49,46,57,57,58,59,61,61,61,61,61,61,67,60,61,61,52,53,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,64,65,52,75,65,86,75,75,46,64,54,49,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,63,61,61,67,57,62,62,66,71,65,51,59,57,51,83,84,80,79,76,78,76,73,73,70,79,71,74,67,76,64,60,59,74,73,76,72,69,71,69,72,63,69,47,68,51,84,82,57,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,65,72,79,79,63,62,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,55,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,54,61,52,56,93,68,100,50,69,62,57,69,68,69,69,69,66,66,74,66,58,53,53,53,52,51,73,64,73,72,67,59,57,60,65,65,64,63,60,136,139,48,49,47,55,57,61,54,57,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,69,56,12,149,130,237,97,114,84,47,78,64,88,156,156,152,153,58,81,173,147,158,154,172,116,116,167,111,113,173,177,132,111,145,151,131,142,121,177,181,316,181,181,189,189,198,172,109,182,136,219,183,159,157,183,202,170,219,221,154,199,183,102,140,164,170,199,203,201,204,200,198,203,77,300,165,154,101,10,10,10,10,10,10,10,10,10,10,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,90,10,10,10,108,118,10,10,10,10,10,94,30,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,10,10,10,10,10,52,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22", ++ "endOffsets": "258,493,953,1013,1074,1129,1279,1329,1382,1440,1488,1608,1656,1723,1760,1807,1856,1912,1963,2012,2066,2120,2169,2225,2272,3659,3719,3772,3833,3905,3969,6370,6468,6569,6627,6692,6740,6791,12301,12367,12425,12494,12552,12622,12695,12769,12837,12904,12974,13040,13113,13173,13249,13309,13369,13444,13504,13563,13620,13679,13741,13803,13860,13916,13972,14030,14088,14145,14202,14261,14320,14378,14432,14488,14617,14881,14939,15680,15782,15842,15896,15964,16033,16101,16154,16206,16302,16348,16398,16445,16550,16608,16667,16727,16789,16851,16913,16975,17037,17099,17167,17228,17290,17352,17405,17459,17551,17978,18335,18394,19336,21280,21351,21417,21491,21560,21631,21704,21775,21843,21916,21992,22062,22140,22208,22274,22335,22404,22468,22534,22602,22668,22731,22799,22870,22935,23008,23071,23152,23216,23282,23352,23422,23492,23562,23629,25047,25113,25166,25242,25308,25395,25471,25547,32581,32646,32871,33461,33515,33594,33672,33745,33810,33873,33939,34010,34081,34151,34213,34282,34348,34408,34475,34542,34598,34649,34702,34754,34808,34879,34942,35001,35063,35122,35195,35262,35322,35385,35460,35532,35628,35699,35755,35826,35883,35940,36006,36070,36141,36198,36251,36314,36366,36424,36491,37725,37787,37849,37917,37975,38038,38101,38168,38240,38306,38358,38418,38476,38528,38612,38697,38778,38858,38935,39014,39091,39165,39239,39310,39390,39462,39537,39605,39682,39747,39808,39868,39943,40017,40094,40167,40237,40309,40379,40452,40516,40586,40634,40703,40755,40840,40923,40981,41047,41114,41180,41261,41336,41392,41445,41506,41564,41614,41663,41712,41761,41823,41875,41920,42001,42052,42106,42159,42213,42264,42313,42379,42430,42491,42552,42614,42664,42705,42782,42841,42900,42959,43020,43076,43132,43199,43260,43325,43380,43445,43514,43582,43660,43729,43789,43860,43934,43999,44071,44141,44208,44292,44361,44428,44498,44561,44628,44696,44779,44858,44948,45025,45093,45160,45238,45295,45352,45420,45486,45542,45602,45661,45715,45765,45815,45863,45925,45976,46042,46115,46195,46275,46339,46402,46469,46540,46598,46659,46725,46784,46851,46911,46971,47034,47102,47163,47230,47308,47378,47427,47484,47553,47614,47702,47790,47878,47966,48022,48109,48196,48283,48370,48428,48502,48572,48628,48699,48764,48826,48901,48974,49064,49130,49196,49257,49321,49383,49441,49512,49595,49654,49725,49791,49856,49917,49976,50047,50113,50178,50261,50337,50412,50493,50553,50622,50692,50761,50816,50872,50928,50989,51047,51103,51158,51220,51273,51330,51424,51493,51594,51645,51715,51778,51836,51906,51975,52045,52115,52185,52252,52319,52394,52461,52520,52574,52628,52682,52735,52787,52861,53904,53978,54051,54119,54179,54237,54298,54364,54430,54495,54559,54620,55210,55350,58119,58169,58258,58314,58372,58434,58489,58547,58606,58668,58734,58800,58982,59128,59173,59216,60202,60249,60294,60345,60396,60447,60498,60879,61282,61344,61524,61596,61653,61719,61785,61853,61921,61987,62054,62128,62191,62248,62308,62373,62440,62505,62562,62623,62681,62751,62808,63198,65257,65388,65626,65724,65839,65924,65972,66051,66116,66205,66362,66519,66672,66826,66885,66967,67141,67289,67448,67603,67776,67893,68010,68178,68290,68404,68578,68756,68889,69001,69147,69299,69431,69574,69696,69874,70056,70373,70555,70737,70927,71117,71316,71489,71599,71782,71919,72139,72323,72483,72641,72825,73028,73199,73419,73641,73796,73996,74180,74283,74424,74589,74760,74960,75164,75366,75571,75772,75971,76175,76253,76554,76720,76875,76977,77403,77954,78239,81172,81628,82137,93279,93716,94150,94593,98583,98690,99033,99140,99385,99506,99915,100163,100263,100368,100487,100996,101143,101262,101513,101646,102061,102315,102427,107651,107784,107931,111952,117366,120637,125841,129763,135140,139124,142296,147463,148219,148449,148692,149730,197791,198716,198807,201001,201323,201533,201642,201761,201945,202917,203387,204138,206615,206710,207059,207929,208215,208618,209020,209363,209575,209776,209989,210278,210563,221238,221325,221410,221509,226199,226360,226523,226684,226849,227016,227069,227202,227322,227420,227533,227726,227852,228004,228146,228316,228472,228644,228935,229047,229176,229405,229623,230478,231065,231679,231847,231989,232150,232293,232461,232618,239285,239377,239550,239712,239807,239976,240070,240159,240402,240491,240784,240898,241307,241721,241837,242255,242496,242926,243361,243771,244193,244603,244725,245134,245550,245672,245890,246074,248778,249122,249202,249558,249708,249852,249936,250325,250423,250531,250625,250755,250863,250985,251121,251229,251349,251483,251605,251733,251875,252001,252141,252267,252385,252517,252615,252725,253025,253137,253255,253719,253835,254138,254264,254360,254490,254891,255001,255125,255263,255373,255495,255807,255931,256061,256537,256665,256980,257118,257264,257426,257642,257798,258002,259073,259157,259261,259748,260304,260462,260681,260912,261135,261370,261592,261858,261996,262595,262709,262847,262959,263083,263654,264149,264695,264840,264933,265025,266832,267220,267518,267707,267913,268106,268316,268921,269066,269283,269544,269675,278644,279168,279812,280009,280957,281514,281637,282410,282631,282831,284808,285043,285167,285579,285793,285896,286026,286201,286453,286649,286789,286983,287253,288134,288422,288552,289329,289986,290132,290838,291076,292616,292766,293183,293348,294034,294504,294700,294791,294875,295019,295253,295420,296348,296634,296794,297409,297568,297896,298123,298635,298997,299076,299415,299520,299885,300256,300617,302439,303068,304144,304568,304821,304973,305963,306700,306903,307149,307396,307638,307959,308158,308463,308686,308858,309399,309668,310162,310423,310863,311022,311306,312051,312416,312721,312879,313876,314274,314502,314722,314864,316154,316260,316390,316528,316652,316882,317051,317151,317436,317550,318433,319188,319627,319751,319997,320190,320324,320515,321294,321512,321803,322082,322399,322621,322916,323199,323303,323586,324318,324634,325195,325924,326585,326774,327325,327795,327915,328317,328851,334396,334695,336634,353332,354926,356030,356179,358303,361860,362300,363052,363236,363447,367673,368256,388473,388675,389810,389960,390135,392772,394692,403035,403542,403972,404131,405879,406099,406681,407176,407795,407948,408104,408297,408526,408734,408870,409111,417192,417889,419117,421272,421441,422633,422779,425000,425531,427010,427258,427941,432166,432341,435277,436168,444026,444269,446734" ++ } ++ }, ++ { ++ "source": "/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/packaged_res/coreNativeDebug/packageCoreNativeDebugResources/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "42", ++ "endOffsets": "93" ++ }, ++ "to": { ++ "startLines": "1107", ++ "startColumns": "4", ++ "startOffsets": "65069", ++ "endColumns": "42", ++ "endOffsets": "65107" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7cf662db696d7c0bf4b24c08fd87c12c/transformed/viewpager2-1.0.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "4", ++ "endColumns": "24", ++ "endOffsets": "160" ++ }, ++ "to": { ++ "startLines": "7889", ++ "startColumns": "4", ++ "startOffsets": "450299", ++ "endLines": "7891", ++ "endColumns": "24", ++ "endOffsets": "450404" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ffe1920c397f0b305742d655a3e2f95/transformed/coordinatorlayout-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,6,16", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,116,261,869", ++ "endLines": "2,5,15,104", ++ "endColumns": "60,12,24,24", ++ "endOffsets": "111,256,864,6075" ++ }, ++ "to": { ++ "startLines": "49,5039,6246,6252", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "2436,328856,382193,382404", ++ "endLines": "49,5041,6251,6335", ++ "endColumns": "60,12,24,24", ++ "endOffsets": "2492,328996,382399,386915" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4dd5b2b5dff266b02e3d542070c12c10/transformed/lifecycle-runtime-2.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "42", ++ "endOffsets": "93" ++ }, ++ "to": { ++ "startLines": "1044", ++ "startColumns": "4", ++ "startOffsets": "60884", ++ "endColumns": "42", ++ "endOffsets": "60922" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/bc43dd7f4418060d7e97eafa583bae0e/transformed/savedstate-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "53", ++ "endOffsets": "104" ++ }, ++ "to": { ++ "startLines": "1045", ++ "startColumns": "4", ++ "startOffsets": "60927", ++ "endColumns": "53", ++ "endOffsets": "60976" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9db7760b0deff7e4ab8d80cd4aa38e52/transformed/drawerlayout-1.1.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,111,159,211", ++ "endLines": "2,3,4,8", ++ "endColumns": "55,47,51,24", ++ "endOffsets": "106,154,206,426" ++ }, ++ "to": { ++ "startLines": "74,76,612,6355", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "3459,3560,33364,387995", ++ "endLines": "74,76,612,6358", ++ "endColumns": "55,47,51,24", ++ "endOffsets": "3510,3603,33411,388101" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/fe7845793de81b169cc70f2cabd7542f/transformed/constraintlayout-2.0.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,8,9,17,18,19,20,21,22,23,27,28,29,30,38,46,47,48,53,54,59,64,65,66,71,72,77,78,83,84,85,91,92,93,98,103,104,105,109,110,111,112,115,116,119,122,123,124,125,126,129,132,133,134,135,140,143,146,147,148,153,154,155,158,161,162,165,168,171,174,175,176,179,182,183,188,189,194,197,200,201,202,203,204,205,206,207,208,209,221,222,223,224,225,231,232,233,236,241,242,243,244,253,259,260,264,265,266,267,276,356,280,281,282,283,284,285,286,287,288,289,290,291,296,297,298,299,300,301,302,308,309,315,322,334,335,336,337,338,355", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,112,298,359,650,702,750,801,853,914,960,1093,1145,1195,1246,1555,1867,1912,1971,2168,2225,2420,2602,2656,2713,2905,2963,3159,3215,3409,3466,3517,3739,3791,3846,4036,4212,4262,4318,4478,4539,4599,4669,4802,4870,4999,5125,5187,5252,5320,5387,5510,5635,5702,5767,5832,6013,6134,6255,6321,6388,6598,6667,6733,6858,6984,7051,7177,7304,7429,7556,7612,7677,7803,7926,7991,8199,8266,8446,8566,8686,8751,8813,8875,8937,8996,9056,9117,9178,9237,9738,9789,9838,9886,9944,10174,10221,10281,10387,10567,10613,10660,10712,11042,11280,11335,11474,11520,11575,11620,11961,36954,12098,16317,19922,20066,24372,24875,25295,25926,26578,26619,26673,26723,27345,27998,28496,31373,31719,31951,32091,32596,32726,33153,33548,34580,34812,34939,35045,35529,36651", ++ "endLines": "2,7,8,16,17,18,19,20,21,22,26,27,28,29,37,45,46,47,52,53,58,63,64,65,70,71,76,77,82,83,84,90,91,92,97,102,103,104,108,109,110,111,114,115,118,121,122,123,124,125,128,131,132,133,134,139,142,145,146,147,152,153,154,157,160,161,164,167,170,173,174,175,178,181,182,187,188,193,196,199,200,201,202,203,204,205,206,207,208,220,221,222,223,224,230,231,232,235,240,241,242,243,252,258,259,263,264,265,266,275,279,356,280,281,282,283,284,285,286,287,288,289,290,295,296,297,298,299,300,301,307,308,314,321,333,334,335,336,337,354,355", ++ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302", ++ "endOffsets": "107,293,354,645,697,745,796,848,909,955,1088,1140,1190,1241,1550,1862,1907,1966,2163,2220,2415,2597,2651,2708,2900,2958,3154,3210,3404,3461,3512,3734,3786,3841,4031,4207,4257,4313,4473,4534,4594,4664,4797,4865,4994,5120,5182,5247,5315,5382,5505,5630,5697,5762,5827,6008,6129,6250,6316,6383,6593,6662,6728,6853,6979,7046,7172,7299,7424,7551,7607,7672,7798,7921,7986,8194,8261,8441,8561,8681,8746,8808,8870,8932,8991,9051,9112,9173,9232,9733,9784,9833,9881,9939,10169,10216,10276,10382,10562,10608,10655,10707,11037,11275,11330,11469,11515,11570,11615,11956,12093,36990,16312,19917,20061,24367,24870,25290,25921,26573,26614,26668,26718,27340,27993,28491,31368,31714,31946,32086,32591,32721,33148,33543,34575,34807,34934,35040,35524,36646,36949" ++ }, ++ "to": { ++ "startLines": "2,4,10,11,19,25,31,46,47,48,50,54,55,56,57,65,75,83,84,89,90,95,100,101,102,107,108,113,114,119,120,121,127,128,129,134,139,149,150,154,155,156,157,160,161,164,167,168,169,170,171,174,177,178,179,180,185,188,191,192,193,198,199,200,203,206,207,210,213,216,219,220,221,224,227,228,233,234,239,242,245,246,247,248,249,250,251,252,253,254,306,307,308,309,313,319,320,321,324,339,344,363,364,374,380,383,387,388,389,390,399,992,6242,6243,6244,6245,6336,6541,6549,6550,6551,6552,6553,6554,6559,6560,6561,6967,6968,6969,6970,6976,6977,7074,7081,7103,7329,7350,7832,7833,7850", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "150,263,498,559,850,1186,1493,2277,2329,2390,2497,2630,2682,2732,2783,3092,3515,3974,4033,4230,4287,4482,4664,4718,4775,4967,5025,5221,5277,5471,5528,5579,5801,5853,5908,6098,6274,6796,6852,7012,7073,7133,7203,7336,7404,7533,7659,7721,7786,7854,7921,8044,8169,8236,8301,8366,8547,8668,8789,8855,8922,9132,9201,9267,9392,9518,9585,9711,9838,9963,10090,10146,10211,10337,10460,10525,10733,10800,10980,11100,11220,11285,11347,11409,11471,11530,11590,11651,11712,11771,14622,14673,14722,14770,15004,15234,15281,15341,15447,16211,16450,17556,17608,17983,18221,18399,18538,18584,18639,18684,19025,58174,369919,374138,377743,377887,386920,393945,394697,395328,395980,396021,396075,396125,396747,397400,397898,414379,414725,414957,415097,415602,415732,419122,419517,420929,428258,428923,446739,447223,448345", ++ "endLines": "2,8,10,18,19,25,31,46,47,48,53,54,55,56,64,72,75,83,88,89,94,99,100,101,106,107,112,113,118,119,120,126,127,128,133,138,139,149,153,154,155,156,159,160,163,166,167,168,169,170,173,176,177,178,179,184,187,190,191,192,197,198,199,202,205,206,209,212,215,218,219,220,223,226,227,232,233,238,241,244,245,246,247,248,249,250,251,252,253,265,306,307,308,309,318,319,320,323,328,339,344,363,372,379,380,386,387,388,389,398,402,992,6242,6243,6244,6245,6336,6541,6549,6550,6551,6552,6553,6558,6559,6560,6561,6967,6968,6969,6975,6976,6982,7080,7092,7103,7329,7350,7832,7849,7850", ++ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302", ++ "endOffsets": "202,444,554,845,897,1229,1539,2324,2385,2431,2625,2677,2727,2778,3087,3399,3555,4028,4225,4282,4477,4659,4713,4770,4962,5020,5216,5272,5466,5523,5574,5796,5848,5903,6093,6269,6319,6847,7007,7068,7128,7198,7331,7399,7528,7654,7716,7781,7849,7916,8039,8164,8231,8296,8361,8542,8663,8784,8850,8917,9127,9196,9262,9387,9513,9580,9706,9833,9958,10085,10141,10206,10332,10455,10520,10728,10795,10975,11095,11215,11280,11342,11404,11466,11525,11585,11646,11707,11766,12234,14668,14717,14765,14823,15229,15276,15336,15442,15622,16252,16492,17603,17933,18216,18271,18533,18579,18634,18679,19020,19157,58210,374133,377738,377882,382188,387418,394360,395323,395975,396016,396070,396120,396742,397395,397893,400770,414720,414952,415092,415597,415727,416154,419512,420544,421156,428380,429024,447218,448340,448643" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ac2b811be8f6b6e801e40541beb0df8/transformed/cardview-1.0.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356", ++ "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34", ++ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", ++ "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174" ++ }, ++ "to": { ++ "startLines": "24,427,428,429,430,601,602,603,1222,3197,3199,3202,5906", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "1134,20962,21023,21085,21147,32651,32710,32767,79695,206715,206779,206905,358646", ++ "endLines": "24,427,428,429,430,601,602,603,1228,3198,3201,3204,5933", ++ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", ++ "endOffsets": "1181,21018,21080,21142,21206,32705,32762,32816,80104,206774,206900,207028,359565" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/fef64e29f65a0374786979b4dd8facf7/transformed/lifecycle-viewmodel-2.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "49", ++ "endOffsets": "100" ++ }, ++ "to": { ++ "startLines": "1046", ++ "startColumns": "4", ++ "startOffsets": "60981", ++ "endColumns": "49", ++ "endOffsets": "61026" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ml_values-ml.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,313,407,517,609,674,773,839,899,1001,1077,1135,1213,1278,1332,1449,1513,1577,1631,1711,1845,1931,2020,2126,2211,2299,2394,2461,2527,2606,2688,2779,2855,2932,3009,3080,3187,3267,3364,3464,3538,3619,3724,3782,3849,3940,4032,4094,4158,4221,4324,4440,4545,4661", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,93,109,91,64,98,65,59,101,75,57,77,64,53,116,63,63,53,79,133,85,88,105,84,87,94,66,65,78,81,90,75,76,76,70,106,79,96,99,73,80,104,57,66,90,91,61,63,62,102,115,104,115,83", ++ "endOffsets": "221,308,402,512,604,669,768,834,894,996,1072,1130,1208,1273,1327,1444,1508,1572,1626,1706,1840,1926,2015,2121,2206,2294,2389,2456,2522,2601,2683,2774,2850,2927,3004,3075,3182,3262,3359,3459,3533,3614,3719,3777,3844,3935,4027,4089,4153,4216,4319,4435,4540,4656,4740" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3112,3206,3316,3408,3473,3572,3638,3698,3800,3876,3934,4012,4077,4131,4248,4312,4376,4430,4510,4644,4730,4819,4925,5010,5098,5193,5260,5326,5405,5487,5578,5654,5731,5808,5879,5986,6066,6163,6263,6337,6418,6523,6581,6648,6739,6831,6893,6957,7020,7123,7239,7344,7460", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,93,109,91,64,98,65,59,101,75,57,77,64,53,116,63,63,53,79,133,85,88,105,84,87,94,66,65,78,81,90,75,76,76,70,106,79,96,99,73,80,104,57,66,90,91,61,63,62,102,115,104,115,83", ++ "endOffsets": "271,3107,3201,3311,3403,3468,3567,3633,3693,3795,3871,3929,4007,4072,4126,4243,4307,4371,4425,4505,4639,4725,4814,4920,5005,5093,5188,5255,5321,5400,5482,5573,5649,5726,5803,5874,5981,6061,6158,6258,6332,6413,6518,6576,6643,6734,6826,6888,6952,7015,7118,7234,7339,7455,7539" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7627", ++ "endColumns": "100", ++ "endOffsets": "7723" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,2854", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,2932" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,383,489,600,691,796,918,996,1071,1162,1255,1356,1450,1550,1644,1739,1838,1929,2020,2102,2211,2315,2414,2526,2638,2759,2924,7544", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "378,484,595,686,791,913,991,1066,1157,1250,1351,1445,1545,1639,1734,1833,1924,2015,2097,2206,2310,2409,2521,2633,2754,2919,3020,7622" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-es_values-es.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7533", ++ "endColumns": "100", ++ "endOffsets": "7629" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,320,424,546,627,692,787,868,931,1020,1089,1152,1226,1290,1346,1464,1522,1584,1640,1720,1859,1948,2030,2141,2222,2302,2392,2459,2525,2604,2686,2774,2848,2925,2995,3074,3158,3242,3334,3434,3508,3589,3691,3744,3811,3904,3993,4055,4119,4182,4295,4388,4492,4586", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,103,121,80,64,94,80,62,88,68,62,73,63,55,117,57,61,55,79,138,88,81,110,80,79,89,66,65,78,81,87,73,76,69,78,83,83,91,99,73,80,101,52,66,92,88,61,63,62,112,92,103,93,82", ++ "endOffsets": "228,315,419,541,622,687,782,863,926,1015,1084,1147,1221,1285,1341,1459,1517,1579,1635,1715,1854,1943,2025,2136,2217,2297,2387,2454,2520,2599,2681,2769,2843,2920,2990,3069,3153,3237,3329,3429,3503,3584,3686,3739,3806,3899,3988,4050,4114,4177,4290,4383,4487,4581,4664" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3014,3101,3205,3327,3408,3473,3568,3649,3712,3801,3870,3933,4007,4071,4127,4245,4303,4365,4421,4501,4640,4729,4811,4922,5003,5083,5173,5240,5306,5385,5467,5555,5629,5706,5776,5855,5939,6023,6115,6215,6289,6370,6472,6525,6592,6685,6774,6836,6900,6963,7076,7169,7273,7367", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,103,121,80,64,94,80,62,88,68,62,73,63,55,117,57,61,55,79,138,88,81,110,80,79,89,66,65,78,81,87,73,76,69,78,83,83,91,99,73,80,101,52,66,92,88,61,63,62,112,92,103,93,82", ++ "endOffsets": "278,3096,3200,3322,3403,3468,3563,3644,3707,3796,3865,3928,4002,4066,4122,4240,4298,4360,4416,4496,4635,4724,4806,4917,4998,5078,5168,5235,5301,5380,5462,5550,5624,5701,5771,5850,5934,6018,6110,6210,6284,6365,6467,6520,6587,6680,6769,6831,6895,6958,7071,7164,7268,7362,7445" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,2836", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,2914" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "283,385,498,606,691,792,920,1006,1087,1179,1273,1370,1464,1564,1658,1754,1850,1942,2034,2116,2223,2334,2433,2541,2649,2756,2915,7450", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "380,493,601,686,787,915,1001,1082,1174,1268,1365,1459,1559,1653,1749,1845,1937,2029,2111,2218,2329,2428,2536,2644,2751,2910,3009,7528" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-large-v4_values-large-v4.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-large-v4/values-large-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,185,256,326,396,464,532,636", ++ "endColumns": "58,70,70,69,69,67,67,103,115", ++ "endOffsets": "109,180,251,321,391,459,527,631,747" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-large-v4/values-large-v4.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,177", ++ "endColumns": "121,133", ++ "endOffsets": "172,306" ++ }, ++ "to": { ++ "startLines": "11,12", ++ "startColumns": "4,4", ++ "startOffsets": "752,874", ++ "endColumns": "121,133", ++ "endOffsets": "869,1003" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-fr-rCA_values-fr-rCA.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,320,420,542,627,693,790,870,932,1024,1098,1159,1238,1302,1356,1472,1531,1593,1647,1729,1858,1950,2034,2148,2227,2308,2401,2468,2534,2613,2694,2785,2857,2935,3010,3082,3179,3256,3354,3452,3530,3611,3711,3768,3834,3917,4004,4066,4130,4193,4295,4402,4499,4608", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,99,121,84,65,96,79,61,91,73,60,78,63,53,115,58,61,53,81,128,91,83,113,78,80,92,66,65,78,80,90,71,77,74,71,96,76,97,97,77,80,99,56,65,82,86,61,63,62,101,106,96,108,88", ++ "endOffsets": "233,315,415,537,622,688,785,865,927,1019,1093,1154,1233,1297,1351,1467,1526,1588,1642,1724,1853,1945,2029,2143,2222,2303,2396,2463,2529,2608,2689,2780,2852,2930,3005,3077,3174,3251,3349,3447,3525,3606,3706,3763,3829,3912,3999,4061,4125,4188,4290,4397,4494,4603,4692" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3038,3120,3220,3342,3427,3493,3590,3670,3732,3824,3898,3959,4038,4102,4156,4272,4331,4393,4447,4529,4658,4750,4834,4948,5027,5108,5201,5268,5334,5413,5494,5585,5657,5735,5810,5882,5979,6056,6154,6252,6330,6411,6511,6568,6634,6717,6804,6866,6930,6993,7095,7202,7299,7408", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,99,121,84,65,96,79,61,91,73,60,78,63,53,115,58,61,53,81,128,91,83,113,78,80,92,66,65,78,80,90,71,77,74,71,96,76,97,97,77,80,99,56,65,82,86,61,63,62,101,106,96,108,88", ++ "endOffsets": "283,3115,3215,3337,3422,3488,3585,3665,3727,3819,3893,3954,4033,4097,4151,4267,4326,4388,4442,4524,4653,4745,4829,4943,5022,5103,5196,5263,5329,5408,5489,5580,5652,5730,5805,5877,5974,6051,6149,6247,6325,6406,6506,6563,6629,6712,6799,6861,6925,6988,7090,7197,7294,7403,7492" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,2855", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,2937" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,399,506,616,703,809,939,1024,1104,1195,1288,1386,1481,1581,1674,1767,1862,1953,2044,2130,2240,2351,2454,2565,2673,2780,2939,7497", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "394,501,611,698,804,934,1019,1099,1190,1283,1381,1476,1576,1669,1762,1857,1948,2039,2125,2235,2346,2449,2560,2668,2775,2934,3033,7579" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7584", ++ "endColumns": "100", ++ "endOffsets": "7680" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-pl_values-pl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,2817", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,2895" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "391,506,608,716,802,909,1028,1107,1183,1274,1367,1462,1556,1657,1750,1845,1940,2031,2122,2204,2313,2413,2512,2621,2733,2844,3007,7408", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "501,603,711,797,904,1023,1102,1178,1269,1362,1457,1551,1652,1745,1840,1935,2026,2117,2199,2308,2408,2507,2616,2728,2839,3002,3098,7486" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,341,420,505,622,704,768,849,913,974,1085,1153,1207,1276,1338,1392,1503,1564,1626,1680,1752,1881,1970,2052,2171,2253,2336,2423,2490,2556,2627,2703,2792,2869,2947,3025,3101,3191,3264,3359,3456,3528,3602,3702,3754,3820,3908,3998,4060,4124,4187,4294,4383,4482,4570", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,78,84,116,81,63,80,63,60,110,67,53,68,61,53,110,60,61,53,71,128,88,81,118,81,82,86,66,65,70,75,88,76,77,77,75,89,72,94,96,71,73,99,51,65,87,89,61,63,62,106,88,98,87,75", ++ "endOffsets": "336,415,500,617,699,763,844,908,969,1080,1148,1202,1271,1333,1387,1498,1559,1621,1675,1747,1876,1965,2047,2166,2248,2331,2418,2485,2551,2622,2698,2787,2864,2942,3020,3096,3186,3259,3354,3451,3523,3597,3697,3749,3815,3903,3993,4055,4119,4182,4289,4378,4477,4565,4641" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3182,3267,3384,3466,3530,3611,3675,3736,3847,3915,3969,4038,4100,4154,4265,4326,4388,4442,4514,4643,4732,4814,4933,5015,5098,5185,5252,5318,5389,5465,5554,5631,5709,5787,5863,5953,6026,6121,6218,6290,6364,6464,6516,6582,6670,6760,6822,6886,6949,7056,7145,7244,7332", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,84,116,81,63,80,63,60,110,67,53,68,61,53,110,60,61,53,71,128,88,81,118,81,82,86,66,65,70,75,88,76,77,77,75,89,72,94,96,71,73,99,51,65,87,89,61,63,62,106,88,98,87,75", ++ "endOffsets": "386,3177,3262,3379,3461,3525,3606,3670,3731,3842,3910,3964,4033,4095,4149,4260,4321,4383,4437,4509,4638,4727,4809,4928,5010,5093,5180,5247,5313,5384,5460,5549,5626,5704,5782,5858,5948,6021,6116,6213,6285,6359,6459,6511,6577,6665,6755,6817,6881,6944,7051,7140,7239,7327,7403" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7491", ++ "endColumns": "100", ++ "endOffsets": "7587" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-en-rXC_values-en-rXC.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,5528", ++ "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185", ++ "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,5709" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "203", ++ "endOffsets": "254" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "5714", ++ "endColumns": "203", ++ "endOffsets": "5913" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-en-rGB_values-en-rGB.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,402,517,596,661,751,818,877,967,1031,1094,1163,1227,1281,1393,1451,1513,1567,1639,1761,1848,1929,2039,2116,2197,2288,2355,2421,2491,2568,2655,2726,2803,2872,2941,3032,3104,3193,3282,3356,3428,3514,3564,3630,3710,3794,3856,3920,3983,4083,4180,4272,4371", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,97,114,78,64,89,66,58,89,63,62,68,63,53,111,57,61,53,71,121,86,80,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,77", ++ "endOffsets": "222,299,397,512,591,656,746,813,872,962,1026,1089,1158,1222,1276,1388,1446,1508,1562,1634,1756,1843,1924,2034,2111,2192,2283,2350,2416,2486,2563,2650,2721,2798,2867,2936,3027,3099,3188,3277,3351,3423,3509,3559,3625,3705,3789,3851,3915,3978,4078,4175,4267,4366,4444" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2934,3011,3109,3224,3303,3368,3458,3525,3584,3674,3738,3801,3870,3934,3988,4100,4158,4220,4274,4346,4468,4555,4636,4746,4823,4904,4995,5062,5128,5198,5275,5362,5433,5510,5579,5648,5739,5811,5900,5989,6063,6135,6221,6271,6337,6417,6501,6563,6627,6690,6790,6887,6979,7078", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,97,114,78,64,89,66,58,89,63,62,68,63,53,111,57,61,53,71,121,86,80,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,77", ++ "endOffsets": "272,3006,3104,3219,3298,3363,3453,3520,3579,3669,3733,3796,3865,3929,3983,4095,4153,4215,4269,4341,4463,4550,4631,4741,4818,4899,4990,5057,5123,5193,5270,5357,5428,5505,5574,5643,5734,5806,5895,5984,6058,6130,6216,6266,6332,6412,6496,6558,6622,6685,6785,6882,6974,7073,7151" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,381,481,589,673,773,888,966,1041,1132,1225,1320,1414,1514,1607,1702,1796,1887,1978,2060,2163,2266,2365,2470,2574,2678,2834,7156", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "376,476,584,668,768,883,961,1036,1127,1220,1315,1409,1509,1602,1697,1791,1882,1973,2055,2158,2261,2360,2465,2569,2673,2829,2929,7234" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7239", ++ "endColumns": "100", ++ "endOffsets": "7335" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-small-v4_values-small-v4.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-small-v4/values-small-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,128,198,270", ++ "endColumns": "72,69,71,69", ++ "endOffsets": "123,193,265,335" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-pt-rPT_values-pt-rPT.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,310,413,533,614,678,770,849,914,1004,1072,1134,1207,1271,1325,1451,1509,1571,1625,1701,1844,1931,2013,2122,2204,2286,2373,2440,2506,2581,2661,2748,2821,2898,2971,3045,3138,3215,3308,3406,3480,3561,3660,3713,3779,3868,3956,4018,4082,4145,4261,4364,4471,4575", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,102,119,80,63,91,78,64,89,67,61,72,63,53,125,57,61,53,75,142,86,81,108,81,81,86,66,65,74,79,86,72,76,72,73,92,76,92,97,73,80,98,52,65,88,87,61,63,62,115,102,106,103,85", ++ "endOffsets": "223,305,408,528,609,673,765,844,909,999,1067,1129,1202,1266,1320,1446,1504,1566,1620,1696,1839,1926,2008,2117,2199,2281,2368,2435,2501,2576,2656,2743,2816,2893,2966,3040,3133,3210,3303,3401,3475,3556,3655,3708,3774,3863,3951,4013,4077,4140,4256,4359,4466,4570,4656" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3009,3091,3194,3314,3395,3459,3551,3630,3695,3785,3853,3915,3988,4052,4106,4232,4290,4352,4406,4482,4625,4712,4794,4903,4985,5067,5154,5221,5287,5362,5442,5529,5602,5679,5752,5826,5919,5996,6089,6187,6261,6342,6441,6494,6560,6649,6737,6799,6863,6926,7042,7145,7252,7356", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,102,119,80,63,91,78,64,89,67,61,72,63,53,125,57,61,53,75,142,86,81,108,81,81,86,66,65,74,79,86,72,76,72,73,92,76,92,97,73,80,98,52,65,88,87,61,63,62,115,102,106,103,85", ++ "endOffsets": "273,3086,3189,3309,3390,3454,3546,3625,3690,3780,3848,3910,3983,4047,4101,4227,4285,4347,4401,4477,4620,4707,4789,4898,4980,5062,5149,5216,5282,5357,5437,5524,5597,5674,5747,5821,5914,5991,6084,6182,6256,6337,6436,6489,6555,6644,6732,6794,6858,6921,7037,7140,7247,7351,7437" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,2836", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,2917" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,492,599,688,789,907,992,1072,1164,1258,1355,1449,1548,1642,1738,1833,1925,2017,2102,2209,2320,2422,2530,2638,2745,2910,7442", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "381,487,594,683,784,902,987,1067,1159,1253,1350,1444,1543,1637,1733,1828,1920,2012,2097,2204,2315,2417,2525,2633,2740,2905,3004,7523" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7528", ++ "endColumns": "100", ++ "endOffsets": "7624" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w320dp-land-v13/values-w320dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,110", ++ "endColumns": "54,61", ++ "endOffsets": "105,167" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-sq_values-sq.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7455", ++ "endColumns": "100", ++ "endOffsets": "7551" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,2801", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,2878" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "272,386,486,598,684,790,913,995,1073,1164,1257,1352,1446,1547,1640,1735,1832,1923,2016,2097,2203,2307,2405,2511,2615,2717,2871,7373", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "381,481,593,679,785,908,990,1068,1159,1252,1347,1441,1542,1635,1730,1827,1918,2011,2092,2198,2302,2400,2506,2610,2712,2866,2963,7450" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,222,308,409,535,618,683,783,853,912,1010,1074,1133,1205,1268,1322,1439,1496,1558,1612,1684,1819,1902,1980,2091,2175,2257,2347,2414,2480,2551,2630,2718,2794,2872,2944,3017,3106,3178,3272,3371,3445,3517,3618,3668,3734,3824,3913,3975,4039,4102,4218,4326,4435,4544", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,100,125,82,64,99,69,58,97,63,58,71,62,53,116,56,61,53,71,134,82,77,110,83,81,89,66,65,70,78,87,75,77,71,72,88,71,93,98,73,71,100,49,65,89,88,61,63,62,115,107,108,108,82", ++ "endOffsets": "217,303,404,530,613,678,778,848,907,1005,1069,1128,1200,1263,1317,1434,1491,1553,1607,1679,1814,1897,1975,2086,2170,2252,2342,2409,2475,2546,2625,2713,2789,2867,2939,3012,3101,3173,3267,3366,3440,3512,3613,3663,3729,3819,3908,3970,4034,4097,4213,4321,4430,4539,4622" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2968,3054,3155,3281,3364,3429,3529,3599,3658,3756,3820,3879,3951,4014,4068,4185,4242,4304,4358,4430,4565,4648,4726,4837,4921,5003,5093,5160,5226,5297,5376,5464,5540,5618,5690,5763,5852,5924,6018,6117,6191,6263,6364,6414,6480,6570,6659,6721,6785,6848,6964,7072,7181,7290", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,100,125,82,64,99,69,58,97,63,58,71,62,53,116,56,61,53,71,134,82,77,110,83,81,89,66,65,70,78,87,75,77,71,72,88,71,93,98,73,71,100,49,65,89,88,61,63,62,115,107,108,108,82", ++ "endOffsets": "267,3049,3150,3276,3359,3424,3524,3594,3653,3751,3815,3874,3946,4009,4063,4180,4237,4299,4353,4425,4560,4643,4721,4832,4916,4998,5088,5155,5221,5292,5371,5459,5535,5613,5685,5758,5847,5919,6013,6112,6186,6258,6359,6409,6475,6565,6654,6716,6780,6843,6959,7067,7176,7285,7368" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-cs_values-cs.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7452", ++ "endColumns": "100", ++ "endOffsets": "7548" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,323,400,492,618,699,764,863,939,1000,1089,1156,1210,1278,1338,1392,1509,1569,1631,1685,1757,1879,1963,2055,2162,2240,2322,2410,2477,2543,2615,2692,2776,2848,2925,2999,3070,3158,3229,3322,3417,3491,3565,3661,3713,3780,3866,3954,4016,4080,4143,4253,4349,4448,4546", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,76,91,125,80,64,98,75,60,88,66,53,67,59,53,116,59,61,53,71,121,83,91,106,77,81,87,66,65,71,76,83,71,76,73,70,87,70,92,94,73,73,95,51,66,85,87,61,63,62,109,95,98,97,78", ++ "endOffsets": "318,395,487,613,694,759,858,934,995,1084,1151,1205,1273,1333,1387,1504,1564,1626,1680,1752,1874,1958,2050,2157,2235,2317,2405,2472,2538,2610,2687,2771,2843,2920,2994,3065,3153,3224,3317,3412,3486,3560,3656,3708,3775,3861,3949,4011,4075,4138,4248,4344,4443,4541,4620" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3067,3144,3236,3362,3443,3508,3607,3683,3744,3833,3900,3954,4022,4082,4136,4253,4313,4375,4429,4501,4623,4707,4799,4906,4984,5066,5154,5221,5287,5359,5436,5520,5592,5669,5743,5814,5902,5973,6066,6161,6235,6309,6405,6457,6524,6610,6698,6760,6824,6887,6997,7093,7192,7290", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,91,125,80,64,98,75,60,88,66,53,67,59,53,116,59,61,53,71,121,83,91,106,77,81,87,66,65,71,76,83,71,76,73,70,87,70,92,94,73,73,95,51,66,85,87,61,63,62,109,95,98,97,78", ++ "endOffsets": "368,3139,3231,3357,3438,3503,3602,3678,3739,3828,3895,3949,4017,4077,4131,4248,4308,4370,4424,4496,4618,4702,4794,4901,4979,5061,5149,5216,5282,5354,5431,5515,5587,5664,5738,5809,5897,5968,6061,6156,6230,6304,6400,6452,6519,6605,6693,6755,6819,6882,6992,7088,7187,7285,7364" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,2799", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,2877" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "373,480,582,692,778,883,1000,1078,1154,1245,1338,1433,1527,1621,1714,1809,1906,1997,2088,2172,2276,2388,2487,2593,2704,2806,2969,7369", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "475,577,687,773,878,995,1073,1149,1240,1333,1428,1522,1616,1709,1804,1901,1992,2083,2167,2271,2383,2482,2588,2699,2801,2964,3062,7447" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-hy_values-hy.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7447", ++ "endColumns": "100", ++ "endOffsets": "7543" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,300,395,525,606,670,767,852,914,1001,1065,1126,1193,1254,1308,1430,1487,1547,1601,1682,1817,1901,1986,2092,2167,2242,2337,2404,2470,2544,2624,2710,2781,2857,2933,3010,3098,3178,3274,3370,3444,3522,3622,3673,3742,3829,3920,3982,4046,4109,4214,4315,4415,4520", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,94,129,80,63,96,84,61,86,63,60,66,60,53,121,56,59,53,80,134,83,84,105,74,74,94,66,65,73,79,85,70,75,75,76,87,79,95,95,73,77,99,50,68,86,90,61,63,62,104,100,99,104,84", ++ "endOffsets": "215,295,390,520,601,665,762,847,909,996,1060,1121,1188,1249,1303,1425,1482,1542,1596,1677,1812,1896,1981,2087,2162,2237,2332,2399,2465,2539,2619,2705,2776,2852,2928,3005,3093,3173,3269,3365,3439,3517,3617,3668,3737,3824,3915,3977,4041,4104,4209,4310,4410,4515,4600" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2979,3059,3154,3284,3365,3429,3526,3611,3673,3760,3824,3885,3952,4013,4067,4189,4246,4306,4360,4441,4576,4660,4745,4851,4926,5001,5096,5163,5229,5303,5383,5469,5540,5616,5692,5769,5857,5937,6033,6129,6203,6281,6381,6432,6501,6588,6679,6741,6805,6868,6973,7074,7174,7279", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,94,129,80,63,96,84,61,86,63,60,66,60,53,121,56,59,53,80,134,83,84,105,74,74,94,66,65,73,79,85,70,75,75,76,87,79,95,95,73,77,99,50,68,86,90,61,63,62,104,100,99,104,84", ++ "endOffsets": "265,3054,3149,3279,3360,3424,3521,3606,3668,3755,3819,3880,3947,4008,4062,4184,4241,4301,4355,4436,4571,4655,4740,4846,4921,4996,5091,5158,5224,5298,5378,5464,5535,5611,5687,5764,5852,5932,6028,6124,6198,6276,6376,6427,6496,6583,6674,6736,6800,6863,6968,7069,7169,7274,7359" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,2814", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,2892" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,378,478,588,677,783,900,982,1062,1153,1246,1341,1435,1535,1628,1723,1817,1908,1999,2082,2188,2294,2393,2503,2611,2712,2882,7364", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "373,473,583,672,778,895,977,1057,1148,1241,1336,1430,1530,1623,1718,1812,1903,1994,2077,2183,2289,2388,2498,2606,2707,2877,2974,7442" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-sv_values-sv.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7280", ++ "endColumns": "100", ++ "endOffsets": "7376" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,221,302,400,522,601,664,756,820,880,972,1035,1097,1164,1228,1282,1387,1446,1507,1561,1630,1749,1832,1916,2022,2101,2185,2271,2338,2404,2473,2547,2636,2708,2785,2856,2930,3021,3100,3187,3275,3347,3421,3506,3557,3624,3705,3789,3851,3915,3978,4085,4192,4291,4399", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,97,121,78,62,91,63,59,91,62,61,66,63,53,104,58,60,53,68,118,82,83,105,78,83,85,66,65,68,73,88,71,76,70,73,90,78,86,87,71,73,84,50,66,80,83,61,63,62,106,106,98,107,77", ++ "endOffsets": "216,297,395,517,596,659,751,815,875,967,1030,1092,1159,1223,1277,1382,1441,1502,1556,1625,1744,1827,1911,2017,2096,2180,2266,2333,2399,2468,2542,2631,2703,2780,2851,2925,3016,3095,3182,3270,3342,3416,3501,3552,3619,3700,3784,3846,3910,3973,4080,4187,4286,4394,4472" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2944,3025,3123,3245,3324,3387,3479,3543,3603,3695,3758,3820,3887,3951,4005,4110,4169,4230,4284,4353,4472,4555,4639,4745,4824,4908,4994,5061,5127,5196,5270,5359,5431,5508,5579,5653,5744,5823,5910,5998,6070,6144,6229,6280,6347,6428,6512,6574,6638,6701,6808,6915,7014,7122", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,97,121,78,62,91,63,59,91,62,61,66,63,53,104,58,60,53,68,118,82,83,105,78,83,85,66,65,68,73,88,71,76,70,73,90,78,86,87,71,73,84,50,66,80,83,61,63,62,106,106,98,107,77", ++ "endOffsets": "266,3020,3118,3240,3319,3382,3474,3538,3598,3690,3753,3815,3882,3946,4000,4105,4164,4225,4279,4348,4467,4550,4634,4740,4819,4903,4989,5056,5122,5191,5265,5354,5426,5503,5574,5648,5739,5818,5905,5993,6065,6139,6224,6275,6342,6423,6507,6569,6633,6696,6803,6910,7009,7117,7195" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,2778", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,2853" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "271,374,477,588,672,774,887,964,1039,1132,1227,1322,1416,1518,1613,1710,1808,1904,1997,2077,2183,2282,2378,2483,2586,2688,2842,7200", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "369,472,583,667,769,882,959,1034,1127,1222,1317,1411,1513,1608,1705,1803,1899,1992,2072,2178,2277,2373,2478,2581,2683,2837,2939,7275" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-as_values-as.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,406,529,608,673,762,827,886,972,1036,1099,1169,1233,1287,1392,1450,1512,1566,1638,1755,1842,1925,2035,2112,2193,2284,2351,2417,2487,2564,2651,2722,2799,2868,2937,3028,3100,3189,3278,3352,3424,3510,3560,3626,3706,3790,3852,3916,3979,4079,4176,4268,4367", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,101,122,78,64,88,64,58,85,63,62,69,63,53,104,57,61,53,71,116,86,82,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,80", ++ "endOffsets": "222,299,401,524,603,668,757,822,881,967,1031,1094,1164,1228,1282,1387,1445,1507,1561,1633,1750,1837,1920,2030,2107,2188,2279,2346,2412,2482,2559,2646,2717,2794,2863,2932,3023,3095,3184,3273,3347,3419,3505,3555,3621,3701,3785,3847,3911,3974,4074,4171,4263,4362,4443" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3013,3090,3192,3315,3394,3459,3548,3613,3672,3758,3822,3885,3955,4019,4073,4178,4236,4298,4352,4424,4541,4628,4711,4821,4898,4979,5070,5137,5203,5273,5350,5437,5508,5585,5654,5723,5814,5886,5975,6064,6138,6210,6296,6346,6412,6492,6576,6638,6702,6765,6865,6962,7054,7153", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,101,122,78,64,88,64,58,85,63,62,69,63,53,104,57,61,53,71,116,86,82,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,80", ++ "endOffsets": "272,3085,3187,3310,3389,3454,3543,3608,3667,3753,3817,3880,3950,4014,4068,4173,4231,4293,4347,4419,4536,4623,4706,4816,4893,4974,5065,5132,5198,5268,5345,5432,5503,5580,5649,5718,5809,5881,5970,6059,6133,6205,6291,6341,6407,6487,6571,6633,6697,6760,6860,6957,7049,7148,7229" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,312,419,510,612,732,809,884,975,1068,1163,1257,1357,1450,1545,1639,1730,1821,1907,2020,2128,2227,2336,2452,2572,2739,2841", ++ "endColumns": "107,98,106,90,101,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,98,108,115,119,166,101,82", ++ "endOffsets": "208,307,414,505,607,727,804,879,970,1063,1158,1252,1352,1445,1540,1634,1725,1816,1902,2015,2123,2222,2331,2447,2567,2734,2836,2919" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,385,484,591,682,784,904,981,1056,1147,1240,1335,1429,1529,1622,1717,1811,1902,1993,2079,2192,2300,2399,2508,2624,2744,2911,7234", ++ "endColumns": "107,98,106,90,101,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,98,108,115,119,166,101,82", ++ "endOffsets": "380,479,586,677,779,899,976,1051,1142,1235,1330,1424,1524,1617,1712,1806,1897,1988,2074,2187,2295,2394,2503,2619,2739,2906,3008,7312" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7317", ++ "endColumns": "100", ++ "endOffsets": "7413" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-az_values-az.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,300,396,512,592,656,750,818,877,972,1036,1095,1162,1225,1279,1394,1452,1514,1568,1639,1771,1855,1935,2039,2115,2191,2275,2342,2408,2478,2556,2639,2709,2785,2863,2934,3020,3103,3196,3289,3362,3434,3528,3582,3649,3733,3821,3885,3950,4014,4116,4213,4309,4406", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,95,115,79,63,93,67,58,94,63,58,66,62,53,114,57,61,53,70,131,83,79,103,75,75,83,66,65,69,77,82,69,75,77,70,85,82,92,92,72,71,93,53,66,83,87,63,64,63,101,96,95,96,79", ++ "endOffsets": "215,295,391,507,587,651,745,813,872,967,1031,1090,1157,1220,1274,1389,1447,1509,1563,1634,1766,1850,1930,2034,2110,2186,2270,2337,2403,2473,2551,2634,2704,2780,2858,2929,3015,3098,3191,3284,3357,3429,3523,3577,3644,3728,3816,3880,3945,4009,4111,4208,4304,4401,4481" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2978,3058,3154,3270,3350,3414,3508,3576,3635,3730,3794,3853,3920,3983,4037,4152,4210,4272,4326,4397,4529,4613,4693,4797,4873,4949,5033,5100,5166,5236,5314,5397,5467,5543,5621,5692,5778,5861,5954,6047,6120,6192,6286,6340,6407,6491,6579,6643,6708,6772,6874,6971,7067,7164", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,95,115,79,63,93,67,58,94,63,58,66,62,53,114,57,61,53,70,131,83,79,103,75,75,83,66,65,69,77,82,69,75,77,70,85,82,92,92,72,71,93,53,66,83,87,63,64,63,101,96,95,96,79", ++ "endOffsets": "265,3053,3149,3265,3345,3409,3503,3571,3630,3725,3789,3848,3915,3978,4032,4147,4205,4267,4321,4392,4524,4608,4688,4792,4868,4944,5028,5095,5161,5231,5309,5392,5462,5538,5616,5687,5773,5856,5949,6042,6115,6187,6281,6335,6402,6486,6574,6638,6703,6767,6869,6966,7062,7159,7239" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,2813", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,2892" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,380,481,591,679,786,900,982,1060,1151,1244,1338,1437,1537,1630,1725,1819,1910,2002,2087,2192,2298,2398,2507,2612,2714,2872,7244", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "375,476,586,674,781,895,977,1055,1146,1239,1333,1432,1532,1625,1720,1814,1905,1997,2082,2187,2293,2393,2502,2607,2709,2867,2973,7323" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7328", ++ "endColumns": "100", ++ "endOffsets": "7424" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-bs_values-bs.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,282,364,460,586,667,733,825,902,965,1073,1139,1195,1266,1326,1380,1499,1556,1618,1672,1747,1871,1959,2042,2157,2242,2328,2416,2483,2549,2623,2701,2788,2860,2937,3010,3080,3173,3245,3337,3433,3507,3583,3679,3732,3799,3886,3973,4035,4099,4162,4270,4372,4473,4578", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,81,95,125,80,65,91,76,62,107,65,55,70,59,53,118,56,61,53,74,123,87,82,114,84,85,87,66,65,73,77,86,71,76,72,69,92,71,91,95,73,75,95,52,66,86,86,61,63,62,107,101,100,104,79", ++ "endOffsets": "277,359,455,581,662,728,820,897,960,1068,1134,1190,1261,1321,1375,1494,1551,1613,1667,1742,1866,1954,2037,2152,2237,2323,2411,2478,2544,2618,2696,2783,2855,2932,3005,3075,3168,3240,3332,3428,3502,3578,3674,3727,3794,3881,3968,4030,4094,4157,4265,4367,4468,4573,4653" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3057,3139,3235,3361,3442,3508,3600,3677,3740,3848,3914,3970,4041,4101,4155,4274,4331,4393,4447,4522,4646,4734,4817,4932,5017,5103,5191,5258,5324,5398,5476,5563,5635,5712,5785,5855,5948,6020,6112,6208,6282,6358,6454,6507,6574,6661,6748,6810,6874,6937,7045,7147,7248,7353", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,95,125,80,65,91,76,62,107,65,55,70,59,53,118,56,61,53,74,123,87,82,114,84,85,87,66,65,73,77,86,71,76,72,69,92,71,91,95,73,75,95,52,66,86,86,61,63,62,107,101,100,104,79", ++ "endOffsets": "327,3134,3230,3356,3437,3503,3595,3672,3735,3843,3909,3965,4036,4096,4150,4269,4326,4388,4442,4517,4641,4729,4812,4927,5012,5098,5186,5253,5319,5393,5471,5558,5630,5707,5780,5850,5943,6015,6107,6203,6277,6353,6449,6502,6569,6656,6743,6805,6869,6932,7040,7142,7243,7348,7428" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,323,430,516,620,742,827,909,1000,1093,1188,1282,1382,1475,1570,1665,1756,1847,1935,2038,2142,2243,2348,2462,2565,2734,2830", ++ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", ++ "endOffsets": "221,318,425,511,615,737,822,904,995,1088,1183,1277,1377,1470,1565,1660,1751,1842,1930,2033,2137,2238,2343,2457,2560,2729,2825,2912" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "332,453,550,657,743,847,969,1054,1136,1227,1320,1415,1509,1609,1702,1797,1892,1983,2074,2162,2265,2369,2470,2575,2689,2792,2961,7433", ++ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", ++ "endOffsets": "448,545,652,738,842,964,1049,1131,1222,1315,1410,1504,1604,1697,1792,1887,1978,2069,2157,2260,2364,2465,2570,2684,2787,2956,3052,7515" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7520", ++ "endColumns": "100", ++ "endOffsets": "7616" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-kk_values-kk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,2796", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,2873" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,491,601,686,792,911,991,1068,1159,1252,1347,1441,1541,1634,1729,1826,1917,2008,2089,2194,2297,2395,2502,2608,2708,2874,7266", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "381,486,596,681,787,906,986,1063,1154,1247,1342,1436,1536,1629,1724,1821,1912,2003,2084,2189,2292,2390,2497,2603,2703,2869,2964,7343" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,307,399,511,593,657,752,822,885,992,1059,1120,1187,1249,1303,1417,1476,1537,1591,1666,1792,1880,1969,2081,2153,2226,2315,2382,2448,2519,2596,2682,2754,2830,2911,2981,3068,3140,3231,3324,3398,3473,3565,3617,3683,3767,3853,3915,3979,4042,4146,4246,4340,4441", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,91,111,81,63,94,69,62,106,66,60,66,61,53,113,58,60,53,74,125,87,88,111,71,72,88,66,65,70,76,85,71,75,80,69,86,71,90,92,73,74,91,51,65,83,85,61,63,62,103,99,93,100,83", ++ "endOffsets": "223,302,394,506,588,652,747,817,880,987,1054,1115,1182,1244,1298,1412,1471,1532,1586,1661,1787,1875,1964,2076,2148,2221,2310,2377,2443,2514,2591,2677,2749,2825,2906,2976,3063,3135,3226,3319,3393,3468,3560,3612,3678,3762,3848,3910,3974,4037,4141,4241,4335,4436,4520" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2969,3048,3140,3252,3334,3398,3493,3563,3626,3733,3800,3861,3928,3990,4044,4158,4217,4278,4332,4407,4533,4621,4710,4822,4894,4967,5056,5123,5189,5260,5337,5423,5495,5571,5652,5722,5809,5881,5972,6065,6139,6214,6306,6358,6424,6508,6594,6656,6720,6783,6887,6987,7081,7182", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,91,111,81,63,94,69,62,106,66,60,66,61,53,113,58,60,53,74,125,87,88,111,71,72,88,66,65,70,76,85,71,75,80,69,86,71,90,92,73,74,91,51,65,83,85,61,63,62,103,99,93,100,83", ++ "endOffsets": "273,3043,3135,3247,3329,3393,3488,3558,3621,3728,3795,3856,3923,3985,4039,4153,4212,4273,4327,4402,4528,4616,4705,4817,4889,4962,5051,5118,5184,5255,5332,5418,5490,5566,5647,5717,5804,5876,5967,6060,6134,6209,6301,6353,6419,6503,6589,6651,6715,6778,6882,6982,7076,7177,7261" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7348", ++ "endColumns": "100", ++ "endOffsets": "7444" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-de_values-de.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,2832", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,2909" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,393,491,603,689,795,910,988,1063,1155,1249,1345,1446,1553,1653,1757,1855,1953,2050,2132,2243,2345,2443,2550,2653,2757,2913,7430", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "388,486,598,684,790,905,983,1058,1150,1244,1340,1441,1548,1648,1752,1850,1948,2045,2127,2238,2340,2438,2545,2648,2752,2908,3010,7507" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,322,423,545,626,692,786,856,915,1023,1092,1150,1222,1286,1340,1468,1528,1590,1644,1722,1859,1951,2035,2150,2234,2320,2410,2477,2543,2617,2699,2792,2866,2944,3016,3090,3182,3264,3353,3442,3516,3594,3680,3735,3802,3882,3966,4028,4092,4155,4262,4366,4465,4571", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,100,121,80,65,93,69,58,107,68,57,71,63,53,127,59,61,53,77,136,91,83,114,83,85,89,66,65,73,81,92,73,77,71,73,91,81,88,88,73,77,85,54,66,79,83,61,63,62,106,103,98,105,81", ++ "endOffsets": "233,317,418,540,621,687,781,851,910,1018,1087,1145,1217,1281,1335,1463,1523,1585,1639,1717,1854,1946,2030,2145,2229,2315,2405,2472,2538,2612,2694,2787,2861,2939,3011,3085,3177,3259,3348,3437,3511,3589,3675,3730,3797,3877,3961,4023,4087,4150,4257,4361,4460,4566,4648" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3015,3099,3200,3322,3403,3469,3563,3633,3692,3800,3869,3927,3999,4063,4117,4245,4305,4367,4421,4499,4636,4728,4812,4927,5011,5097,5187,5254,5320,5394,5476,5569,5643,5721,5793,5867,5959,6041,6130,6219,6293,6371,6457,6512,6579,6659,6743,6805,6869,6932,7039,7143,7242,7348", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,100,121,80,65,93,69,58,107,68,57,71,63,53,127,59,61,53,77,136,91,83,114,83,85,89,66,65,73,81,92,73,77,71,73,91,81,88,88,73,77,85,54,66,79,83,61,63,62,106,103,98,105,81", ++ "endOffsets": "283,3094,3195,3317,3398,3464,3558,3628,3687,3795,3864,3922,3994,4058,4112,4240,4300,4362,4416,4494,4631,4723,4807,4922,5006,5092,5182,5249,5315,5389,5471,5564,5638,5716,5788,5862,5954,6036,6125,6214,6288,6366,6452,6507,6574,6654,6738,6800,6864,6927,7034,7138,7237,7343,7425" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7512", ++ "endColumns": "100", ++ "endOffsets": "7608" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-or_values-or.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,398,503,582,647,736,801,860,946,1010,1073,1146,1210,1264,1376,1434,1496,1550,1622,1744,1831,1917,2027,2104,2185,2276,2343,2409,2479,2556,2643,2714,2791,2860,2929,3020,3092,3181,3270,3344,3416,3502,3552,3618,3698,3782,3844,3908,3971,4071,4168,4260,4359", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,93,104,78,64,88,64,58,85,63,62,72,63,53,111,57,61,53,71,121,86,85,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,83", ++ "endOffsets": "222,299,393,498,577,642,731,796,855,941,1005,1068,1141,1205,1259,1371,1429,1491,1545,1617,1739,1826,1912,2022,2099,2180,2271,2338,2404,2474,2551,2638,2709,2786,2855,2924,3015,3087,3176,3265,3339,3411,3497,3547,3613,3693,3777,3839,3903,3966,4066,4163,4255,4354,4438" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3022,3099,3193,3298,3377,3442,3531,3596,3655,3741,3805,3868,3941,4005,4059,4171,4229,4291,4345,4417,4539,4626,4712,4822,4899,4980,5071,5138,5204,5274,5351,5438,5509,5586,5655,5724,5815,5887,5976,6065,6139,6211,6297,6347,6413,6493,6577,6639,6703,6766,6866,6963,7055,7154", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,93,104,78,64,88,64,58,85,63,62,72,63,53,111,57,61,53,71,121,86,85,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,83", ++ "endOffsets": "272,3094,3188,3293,3372,3437,3526,3591,3650,3736,3800,3863,3936,4000,4054,4166,4224,4286,4340,4412,4534,4621,4707,4817,4894,4975,5066,5133,5199,5269,5346,5433,5504,5581,5650,5719,5810,5882,5971,6060,6134,6206,6292,6342,6408,6488,6572,6634,6698,6761,6861,6958,7050,7149,7233" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7321", ++ "endColumns": "100", ++ "endOffsets": "7417" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,224,334,441,527,631,751,830,906,997,1090,1186,1281,1381,1474,1569,1665,1756,1846,1935,2045,2149,2248,2359,2463,2581,2744,2850", ++ "endColumns": "118,109,106,85,103,119,78,75,90,92,95,94,99,92,94,95,90,89,88,109,103,98,110,103,117,162,105,82", ++ "endOffsets": "219,329,436,522,626,746,825,901,992,1085,1181,1276,1376,1469,1564,1660,1751,1841,1930,2040,2144,2243,2354,2458,2576,2739,2845,2928" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,396,506,613,699,803,923,1002,1078,1169,1262,1358,1453,1553,1646,1741,1837,1928,2018,2107,2217,2321,2420,2531,2635,2753,2916,7238", ++ "endColumns": "118,109,106,85,103,119,78,75,90,92,95,94,99,92,94,95,90,89,88,109,103,98,110,103,117,162,105,82", ++ "endOffsets": "391,501,608,694,798,918,997,1073,1164,1257,1353,1448,1548,1641,1736,1832,1923,2013,2102,2212,2316,2415,2526,2630,2748,2911,3017,7316" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-et_values-et.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,2827", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,2905" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "271,377,476,587,673,775,892,973,1050,1142,1236,1332,1434,1543,1637,1738,1832,1924,2017,2100,2211,2315,2414,2524,2626,2725,2891,7310", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "372,471,582,668,770,887,968,1045,1137,1231,1327,1429,1538,1632,1733,1827,1919,2012,2095,2206,2310,2409,2519,2621,2720,2886,2988,7388" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7393", ++ "endColumns": "100", ++ "endOffsets": "7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,221,306,405,522,604,668,753,821,885,972,1036,1095,1167,1231,1285,1404,1464,1525,1579,1652,1785,1869,1962,2070,2150,2229,2317,2384,2450,2523,2602,2688,2761,2836,2910,2982,3070,3147,3238,3330,3402,3476,3567,3621,3690,3773,3859,3921,3985,4048,4151,4255,4352,4457", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,98,116,81,63,84,67,63,86,63,58,71,63,53,118,59,60,53,72,132,83,92,107,79,78,87,66,65,72,78,85,72,74,73,71,87,76,90,91,71,73,90,53,68,82,85,61,63,62,102,103,96,104,80", ++ "endOffsets": "216,301,400,517,599,663,748,816,880,967,1031,1090,1162,1226,1280,1399,1459,1520,1574,1647,1780,1864,1957,2065,2145,2224,2312,2379,2445,2518,2597,2683,2756,2831,2905,2977,3065,3142,3233,3325,3397,3471,3562,3616,3685,3768,3854,3916,3980,4043,4146,4250,4347,4452,4533" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2993,3078,3177,3294,3376,3440,3525,3593,3657,3744,3808,3867,3939,4003,4057,4176,4236,4297,4351,4424,4557,4641,4734,4842,4922,5001,5089,5156,5222,5295,5374,5460,5533,5608,5682,5754,5842,5919,6010,6102,6174,6248,6339,6393,6462,6545,6631,6693,6757,6820,6923,7027,7124,7229", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,98,116,81,63,84,67,63,86,63,58,71,63,53,118,59,60,53,72,132,83,92,107,79,78,87,66,65,72,78,85,72,74,73,71,87,76,90,91,71,73,90,53,68,82,85,61,63,62,102,103,96,104,80", ++ "endOffsets": "266,3073,3172,3289,3371,3435,3520,3588,3652,3739,3803,3862,3934,3998,4052,4171,4231,4292,4346,4419,4552,4636,4729,4837,4917,4996,5084,5151,5217,5290,5369,5455,5528,5603,5677,5749,5837,5914,6005,6097,6169,6243,6334,6388,6457,6540,6626,6688,6752,6815,6918,7022,7119,7224,7305" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-lo_values-lo.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7265", ++ "endColumns": "100", ++ "endOffsets": "7361" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,305,420,539,622,688,777,846,905,1000,1065,1123,1188,1249,1309,1415,1476,1536,1594,1665,1784,1870,1952,2065,2140,2216,2306,2373,2439,2508,2582,2661,2734,2811,2880,2950,3035,3110,3203,3296,3370,3439,3533,3585,3652,3736,3820,3882,3946,4009,4108,4200,4295,4387", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,114,118,82,65,88,68,58,94,64,57,64,60,59,105,60,59,57,70,118,85,81,112,74,75,89,66,65,68,73,78,72,76,68,69,84,74,92,92,73,68,93,51,66,83,83,61,63,62,98,91,94,91,78", ++ "endOffsets": "219,300,415,534,617,683,772,841,900,995,1060,1118,1183,1244,1304,1410,1471,1531,1589,1660,1779,1865,1947,2060,2135,2211,2301,2368,2434,2503,2577,2656,2729,2806,2875,2945,3030,3105,3198,3291,3365,3434,3528,3580,3647,3731,3815,3877,3941,4004,4103,4195,4290,4382,4461" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2941,3022,3137,3256,3339,3405,3494,3563,3622,3717,3782,3840,3905,3966,4026,4132,4193,4253,4311,4382,4501,4587,4669,4782,4857,4933,5023,5090,5156,5225,5299,5378,5451,5528,5597,5667,5752,5827,5920,6013,6087,6156,6250,6302,6369,6453,6537,6599,6663,6726,6825,6917,7012,7104", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,114,118,82,65,88,68,58,94,64,57,64,60,59,105,60,59,57,70,118,85,81,112,74,75,89,66,65,68,73,78,72,76,68,69,84,74,92,92,73,68,93,51,66,83,83,61,63,62,98,91,94,91,78", ++ "endOffsets": "269,3017,3132,3251,3334,3400,3489,3558,3617,3712,3777,3835,3900,3961,4021,4127,4188,4248,4306,4377,4496,4582,4664,4777,4852,4928,5018,5085,5151,5220,5294,5373,5446,5523,5592,5662,5747,5822,5915,6008,6082,6151,6245,6297,6364,6448,6532,6594,6658,6721,6820,6912,7007,7099,7178" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,2772", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,2849" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,377,480,593,678,782,893,971,1048,1139,1232,1324,1418,1518,1611,1706,1802,1893,1984,2065,2172,2276,2374,2477,2581,2685,2842,7183", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "372,475,588,673,777,888,966,1043,1134,1227,1319,1413,1513,1606,1701,1797,1888,1979,2060,2167,2271,2369,2472,2576,2680,2837,2936,7260" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h550dp-port-v13/values-h550dp-port-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "76", ++ "endOffsets": "127" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-af_values-af.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,229,307,407,521,602,666,754,820,883,969,1030,1088,1154,1217,1272,1390,1447,1509,1564,1633,1752,1840,1923,2032,2115,2196,2283,2350,2416,2485,2561,2647,2721,2800,2873,2944,3031,3102,3191,3281,3353,3428,3515,3566,3633,3714,3798,3860,3924,3987,4091,4200,4296,4407", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,113,80,63,87,65,62,85,60,57,65,62,54,117,56,61,54,68,118,87,82,108,82,80,86,66,65,68,75,85,73,78,72,70,86,70,88,89,71,74,86,50,66,80,83,61,63,62,103,108,95,110,76", ++ "endOffsets": "224,302,402,516,597,661,749,815,878,964,1025,1083,1149,1212,1267,1385,1442,1504,1559,1628,1747,1835,1918,2027,2110,2191,2278,2345,2411,2480,2556,2642,2716,2795,2868,2939,3026,3097,3186,3276,3348,3423,3510,3561,3628,3709,3793,3855,3919,3982,4086,4195,4291,4402,4479" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2951,3029,3129,3243,3324,3388,3476,3542,3605,3691,3752,3810,3876,3939,3994,4112,4169,4231,4286,4355,4474,4562,4645,4754,4837,4918,5005,5072,5138,5207,5283,5369,5443,5522,5595,5666,5753,5824,5913,6003,6075,6150,6237,6288,6355,6436,6520,6582,6646,6709,6813,6922,7018,7129", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,113,80,63,87,65,62,85,60,57,65,62,54,117,56,61,54,68,118,87,82,108,82,80,86,66,65,68,75,85,73,78,72,70,86,70,88,89,71,74,86,50,66,80,83,61,63,62,103,108,95,110,76", ++ "endOffsets": "274,3024,3124,3238,3319,3383,3471,3537,3600,3686,3747,3805,3871,3934,3989,4107,4164,4226,4281,4350,4469,4557,4640,4749,4832,4913,5000,5067,5133,5202,5278,5364,5438,5517,5590,5661,5748,5819,5908,5998,6070,6145,6232,6283,6350,6431,6515,6577,6641,6704,6808,6917,7013,7124,7201" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,2777", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,2853" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "279,387,483,589,674,777,895,972,1048,1139,1232,1327,1421,1520,1613,1708,1807,1902,1996,2077,2184,2289,2386,2494,2597,2699,2853,7206", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "382,478,584,669,772,890,967,1043,1134,1227,1322,1416,1515,1608,1703,1802,1897,1991,2072,2179,2284,2381,2489,2592,2694,2848,2946,7282" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7287", ++ "endColumns": "100", ++ "endOffsets": "7383" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ja_values-ja.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,2691", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,2765" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "258,355,448,553,635,733,841,919,994,1085,1178,1273,1367,1467,1560,1655,1749,1840,1931,2009,2111,2209,2304,2407,2503,2599,2747,6692", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "350,443,548,630,728,836,914,989,1080,1173,1268,1362,1462,1555,1650,1744,1835,1926,2004,2106,2204,2299,2402,2498,2594,2742,2839,6766" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6771", ++ "endColumns": "100", ++ "endOffsets": "6867" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,208,277,362,466,542,605,689,753,811,892,956,1011,1070,1127,1181,1274,1330,1387,1441,1507,1607,1683,1764,1856,1918,1980,2059,2126,2192,2262,2332,2409,2473,2544,2612,2675,2754,2817,2897,2979,3051,3122,3194,3242,3306,3381,3458,3520,3584,3647,3733,3817,3898,3983", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,68,84,103,75,62,83,63,57,80,63,54,58,56,53,92,55,56,53,65,99,75,80,91,61,61,78,66,65,69,69,76,63,70,67,62,78,62,79,81,71,70,71,47,63,74,76,61,63,62,85,83,80,84,72", ++ "endOffsets": "203,272,357,461,537,600,684,748,806,887,951,1006,1065,1122,1176,1269,1325,1382,1436,1502,1602,1678,1759,1851,1913,1975,2054,2121,2187,2257,2327,2404,2468,2539,2607,2670,2749,2812,2892,2974,3046,3117,3189,3237,3301,3376,3453,3515,3579,3642,3728,3812,3893,3978,4051" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2844,2913,2998,3102,3178,3241,3325,3389,3447,3528,3592,3647,3706,3763,3817,3910,3966,4023,4077,4143,4243,4319,4400,4492,4554,4616,4695,4762,4828,4898,4968,5045,5109,5180,5248,5311,5390,5453,5533,5615,5687,5758,5830,5878,5942,6017,6094,6156,6220,6283,6369,6453,6534,6619", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,68,84,103,75,62,83,63,57,80,63,54,58,56,53,92,55,56,53,65,99,75,80,91,61,61,78,66,65,69,69,76,63,70,67,62,78,62,79,81,71,70,71,47,63,74,76,61,63,62,85,83,80,84,72", ++ "endOffsets": "253,2908,2993,3097,3173,3236,3320,3384,3442,3523,3587,3642,3701,3758,3812,3905,3961,4018,4072,4138,4238,4314,4395,4487,4549,4611,4690,4757,4823,4893,4963,5040,5104,5175,5243,5306,5385,5448,5528,5610,5682,5753,5825,5873,5937,6012,6089,6151,6215,6278,6364,6448,6529,6614,6687" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ru_values-ru.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,2822", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,2899" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "386,501,603,702,788,893,1014,1093,1169,1261,1355,1450,1543,1638,1732,1828,1923,2015,2107,2196,2302,2409,2507,2616,2723,2837,3003,7515", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "496,598,697,783,888,1009,1088,1164,1256,1350,1445,1538,1633,1727,1823,1918,2010,2102,2191,2297,2404,2502,2611,2718,2832,2998,3098,7592" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7597", ++ "endColumns": "100", ++ "endOffsets": "7693" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,336,420,517,654,746,812,911,988,1051,1169,1234,1291,1361,1422,1476,1592,1649,1711,1765,1839,1967,2055,2141,2248,2332,2417,2508,2575,2641,2713,2791,2887,2967,3043,3120,3197,3286,3359,3449,3544,3618,3699,3792,3847,3913,3999,4084,4146,4210,4273,4371,4471,4566,4668", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,83,96,136,91,65,98,76,62,117,64,56,69,60,53,115,56,61,53,73,127,87,85,106,83,84,90,66,65,71,77,95,79,75,76,76,88,72,89,94,73,80,92,54,65,85,84,61,63,62,97,99,94,101,79", ++ "endOffsets": "331,415,512,649,741,807,906,983,1046,1164,1229,1286,1356,1417,1471,1587,1644,1706,1760,1834,1962,2050,2136,2243,2327,2412,2503,2570,2636,2708,2786,2882,2962,3038,3115,3192,3281,3354,3444,3539,3613,3694,3787,3842,3908,3994,4079,4141,4205,4268,4366,4466,4561,4663,4743" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3187,3284,3421,3513,3579,3678,3755,3818,3936,4001,4058,4128,4189,4243,4359,4416,4478,4532,4606,4734,4822,4908,5015,5099,5184,5275,5342,5408,5480,5558,5654,5734,5810,5887,5964,6053,6126,6216,6311,6385,6466,6559,6614,6680,6766,6851,6913,6977,7040,7138,7238,7333,7435", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,96,136,91,65,98,76,62,117,64,56,69,60,53,115,56,61,53,73,127,87,85,106,83,84,90,66,65,71,77,95,79,75,76,76,88,72,89,94,73,80,92,54,65,85,84,61,63,62,97,99,94,101,79", ++ "endOffsets": "381,3182,3279,3416,3508,3574,3673,3750,3813,3931,3996,4053,4123,4184,4238,4354,4411,4473,4527,4601,4729,4817,4903,5010,5094,5179,5270,5337,5403,5475,5553,5649,5729,5805,5882,5959,6048,6121,6211,6306,6380,6461,6554,6609,6675,6761,6846,6908,6972,7035,7133,7233,7328,7430,7510" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ta_values-ta.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,311,420,538,622,686,794,862,923,1031,1117,1175,1259,1326,1380,1503,1565,1628,1682,1770,1898,1984,2066,2168,2248,2329,2418,2485,2551,2636,2724,2816,2885,2962,3042,3110,3209,3292,3384,3478,3552,3638,3732,3782,3848,3933,4020,4083,4148,4211,4319,4422,4520,4625", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,108,117,83,63,107,67,60,107,85,57,83,66,53,122,61,62,53,87,127,85,81,101,79,80,88,66,65,84,87,91,68,76,79,67,98,82,91,93,73,85,93,49,65,84,86,62,64,62,107,102,97,104,85", ++ "endOffsets": "222,306,415,533,617,681,789,857,918,1026,1112,1170,1254,1321,1375,1498,1560,1623,1677,1765,1893,1979,2061,2163,2243,2324,2413,2480,2546,2631,2719,2811,2880,2957,3037,3105,3204,3287,3379,3473,3547,3633,3727,3777,3843,3928,4015,4078,4143,4206,4314,4417,4515,4620,4706" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3043,3127,3236,3354,3438,3502,3610,3678,3739,3847,3933,3991,4075,4142,4196,4319,4381,4444,4498,4586,4714,4800,4882,4984,5064,5145,5234,5301,5367,5452,5540,5632,5701,5778,5858,5926,6025,6108,6200,6294,6368,6454,6548,6598,6664,6749,6836,6899,6964,7027,7135,7238,7336,7441", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,108,117,83,63,107,67,60,107,85,57,83,66,53,122,61,62,53,87,127,85,81,101,79,80,88,66,65,84,87,91,68,76,79,67,98,82,91,93,73,85,93,49,65,84,86,62,64,62,107,102,97,104,85", ++ "endOffsets": "272,3122,3231,3349,3433,3497,3605,3673,3734,3842,3928,3986,4070,4137,4191,4314,4376,4439,4493,4581,4709,4795,4877,4979,5059,5140,5229,5296,5362,5447,5535,5627,5696,5773,5853,5921,6020,6103,6195,6289,6363,6449,6543,6593,6659,6744,6831,6894,6959,7022,7130,7233,7331,7436,7522" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,2871", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,2948" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,390,492,607,696,807,928,1007,1083,1181,1281,1376,1470,1577,1677,1779,1873,1971,2069,2150,2258,2361,2460,2576,2679,2784,2941,7527", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "385,487,602,691,802,923,1002,1078,1176,1276,1371,1465,1572,1672,1774,1868,1966,2064,2145,2253,2356,2455,2571,2674,2779,2936,3038,7604" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7609", ++ "endColumns": "100", ++ "endOffsets": "7705" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-gl_values-gl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7632", ++ "endColumns": "100", ++ "endOffsets": "7728" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,230,315,420,553,633,711,807,886,949,1044,1113,1176,1250,1314,1370,1491,1549,1611,1667,1744,1883,1971,2051,2161,2241,2321,2411,2478,2544,2623,2704,2792,2871,2948,3030,3119,3203,3295,3388,3489,3563,3655,3757,3809,3875,3967,4055,4117,4181,4244,4355,4457,4563,4666", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,104,132,79,77,95,78,62,94,68,62,73,63,55,120,57,61,55,76,138,87,79,109,79,79,89,66,65,78,80,87,78,76,81,88,83,91,92,100,73,91,101,51,65,91,87,61,63,62,110,101,105,102,84", ++ "endOffsets": "225,310,415,548,628,706,802,881,944,1039,1108,1171,1245,1309,1365,1486,1544,1606,1662,1739,1878,1966,2046,2156,2236,2316,2406,2473,2539,2618,2699,2787,2866,2943,3025,3114,3198,3290,3383,3484,3558,3650,3752,3804,3870,3962,4050,4112,4176,4239,4350,4452,4558,4661,4746" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3028,3113,3218,3351,3431,3509,3605,3684,3747,3842,3911,3974,4048,4112,4168,4289,4347,4409,4465,4542,4681,4769,4849,4959,5039,5119,5209,5276,5342,5421,5502,5590,5669,5746,5828,5917,6001,6093,6186,6287,6361,6453,6555,6607,6673,6765,6853,6915,6979,7042,7153,7255,7361,7464", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,104,132,79,77,95,78,62,94,68,62,73,63,55,120,57,61,55,76,138,87,79,109,79,79,89,66,65,78,80,87,78,76,81,88,83,91,92,100,73,91,101,51,65,91,87,61,63,62,110,101,105,102,84", ++ "endOffsets": "275,3108,3213,3346,3426,3504,3600,3679,3742,3837,3906,3969,4043,4107,4163,4284,4342,4404,4460,4537,4676,4764,4844,4954,5034,5114,5204,5271,5337,5416,5497,5585,5664,5741,5823,5912,5996,6088,6181,6282,6356,6448,6550,6602,6668,6760,6848,6910,6974,7037,7148,7250,7356,7459,7544" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,313,421,506,607,735,820,900,992,1086,1183,1277,1377,1471,1567,1662,1754,1846,1927,2035,2142,2249,2358,2463,2577,2754,2853", ++ "endColumns": "103,103,107,84,100,127,84,79,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", ++ "endOffsets": "204,308,416,501,602,730,815,895,987,1081,1178,1272,1372,1466,1562,1657,1749,1841,1922,2030,2137,2244,2353,2458,2572,2749,2848,2931" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "280,384,488,596,681,782,910,995,1075,1167,1261,1358,1452,1552,1646,1742,1837,1929,2021,2102,2210,2317,2424,2533,2638,2752,2929,7549", ++ "endColumns": "103,103,107,84,100,127,84,79,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", ++ "endOffsets": "379,483,591,676,777,905,990,1070,1162,1256,1353,1447,1547,1641,1737,1832,1924,2016,2097,2205,2312,2419,2528,2633,2747,2924,3023,7627" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-tl_values-tl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,235,321,426,562,647,712,811,879,938,1027,1094,1157,1232,1300,1354,1474,1532,1594,1648,1723,1865,1955,2040,2155,2239,2322,2418,2485,2551,2625,2703,2794,2868,2947,3020,3092,3196,3269,3368,3468,3542,3617,3724,3776,3843,3934,4028,4090,4154,4217,4336,4438,4547,4650", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,104,135,84,64,98,67,58,88,66,62,74,67,53,119,57,61,53,74,141,89,84,114,83,82,95,66,65,73,77,90,73,78,72,71,103,72,98,99,73,74,106,51,66,90,93,61,63,62,118,101,108,102,84", ++ "endOffsets": "230,316,421,557,642,707,806,874,933,1022,1089,1152,1227,1295,1349,1469,1527,1589,1643,1718,1860,1950,2035,2150,2234,2317,2413,2480,2546,2620,2698,2789,2863,2942,3015,3087,3191,3264,3363,3463,3537,3612,3719,3771,3838,3929,4023,4085,4149,4212,4331,4433,4542,4645,4730" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3111,3216,3352,3437,3502,3601,3669,3728,3817,3884,3947,4022,4090,4144,4264,4322,4384,4438,4513,4655,4745,4830,4945,5029,5112,5208,5275,5341,5415,5493,5584,5658,5737,5810,5882,5986,6059,6158,6258,6332,6407,6514,6566,6633,6724,6818,6880,6944,7007,7126,7228,7337,7440", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,104,135,84,64,98,67,58,88,66,62,74,67,53,119,57,61,53,74,141,89,84,114,83,82,95,66,65,73,77,90,73,78,72,71,103,72,98,99,73,74,106,51,66,90,93,61,63,62,118,101,108,102,84", ++ "endOffsets": "280,3106,3211,3347,3432,3497,3596,3664,3723,3812,3879,3942,4017,4085,4139,4259,4317,4379,4433,4508,4650,4740,4825,4940,5024,5107,5203,5270,5336,5410,5488,5579,5653,5732,5805,5877,5981,6054,6153,6253,6327,6402,6509,6561,6628,6719,6813,6875,6939,7002,7121,7223,7332,7435,7520" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7610", ++ "endColumns": "100", ++ "endOffsets": "7706" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,324,437,525,631,746,826,903,994,1087,1182,1276,1376,1469,1564,1658,1749,1840,1924,2033,2143,2244,2354,2472,2580,2743,2845", ++ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", ++ "endOffsets": "211,319,432,520,626,741,821,898,989,1082,1177,1271,1371,1464,1559,1653,1744,1835,1919,2028,2138,2239,2349,2467,2575,2738,2840,2925" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "285,396,504,617,705,811,926,1006,1083,1174,1267,1362,1456,1556,1649,1744,1838,1929,2020,2104,2213,2323,2424,2534,2652,2760,2923,7525", ++ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", ++ "endOffsets": "391,499,612,700,806,921,1001,1078,1169,1262,1357,1451,1551,1644,1739,1833,1924,2015,2099,2208,2318,2419,2529,2647,2755,2918,3020,7605" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-fr_values-fr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7572", ++ "endColumns": "100", ++ "endOffsets": "7668" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,321,419,549,634,700,797,880,946,1048,1123,1179,1258,1318,1372,1494,1553,1615,1669,1751,1886,1978,2062,2176,2255,2336,2429,2496,2562,2642,2723,2826,2899,2977,3050,3122,3215,3290,3382,3474,3548,3632,3724,3781,3847,3930,4017,4079,4143,4206,4308,4406,4503,4604", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,97,129,84,65,96,82,65,101,74,55,78,59,53,121,58,61,53,81,134,91,83,113,78,80,92,66,65,79,80,102,72,77,72,71,92,74,91,91,73,83,91,56,65,82,86,61,63,62,101,97,96,100,88", ++ "endOffsets": "233,316,414,544,629,695,792,875,941,1043,1118,1174,1253,1313,1367,1489,1548,1610,1664,1746,1881,1973,2057,2171,2250,2331,2424,2491,2557,2637,2718,2821,2894,2972,3045,3117,3210,3285,3377,3469,3543,3627,3719,3776,3842,3925,4012,4074,4138,4201,4303,4401,4498,4599,4688" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3030,3113,3211,3341,3426,3492,3589,3672,3738,3840,3915,3971,4050,4110,4164,4286,4345,4407,4461,4543,4678,4770,4854,4968,5047,5128,5221,5288,5354,5434,5515,5618,5691,5769,5842,5914,6007,6082,6174,6266,6340,6424,6516,6573,6639,6722,6809,6871,6935,6998,7100,7198,7295,7396", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,97,129,84,65,96,82,65,101,74,55,78,59,53,121,58,61,53,81,134,91,83,113,78,80,92,66,65,79,80,102,72,77,72,71,92,74,91,91,73,83,91,56,65,82,86,61,63,62,101,97,96,100,88", ++ "endOffsets": "283,3108,3206,3336,3421,3487,3584,3667,3733,3835,3910,3966,4045,4105,4159,4281,4340,4402,4456,4538,4673,4765,4849,4963,5042,5123,5216,5283,5349,5429,5510,5613,5686,5764,5837,5909,6002,6077,6169,6261,6335,6419,6511,6568,6634,6717,6804,6866,6930,6993,7095,7193,7290,7391,7480" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,2847", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,2929" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,399,514,624,706,812,942,1020,1096,1187,1280,1378,1473,1573,1666,1759,1854,1945,2036,2122,2232,2343,2446,2557,2665,2772,2931,7485", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "394,509,619,701,807,937,1015,1091,1182,1275,1373,1468,1568,1661,1754,1849,1940,2031,2117,2227,2338,2441,2552,2660,2767,2926,3025,7567" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-mr_values-mr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,322,429,519,621,733,811,888,979,1072,1165,1262,1362,1455,1550,1644,1735,1826,1906,2013,2114,2213,2322,2424,2538,2695,2798", ++ "endColumns": "110,105,106,89,101,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,98,108,101,113,156,102,82", ++ "endOffsets": "211,317,424,514,616,728,806,883,974,1067,1160,1257,1357,1450,1545,1639,1730,1821,1901,2008,2109,2208,2317,2419,2533,2690,2793,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,375,481,588,678,780,892,970,1047,1138,1231,1324,1421,1521,1614,1709,1803,1894,1985,2065,2172,2273,2372,2481,2583,2697,2854,7231", ++ "endColumns": "110,105,106,89,101,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,98,108,101,113,156,102,82", ++ "endOffsets": "370,476,583,673,775,887,965,1042,1133,1226,1319,1416,1516,1609,1704,1798,1889,1980,2060,2167,2268,2367,2476,2578,2692,2849,2952,7309" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,297,397,513,595,658,749,814,873,961,1023,1083,1150,1213,1267,1381,1438,1499,1553,1623,1742,1823,1908,2013,2090,2167,2253,2320,2386,2456,2534,2621,2691,2767,2838,2907,3003,3077,3175,3271,3345,3415,3517,3572,3639,3726,3819,3882,3946,4009,4109,4212,4306,4410", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,99,115,81,62,90,64,58,87,61,59,66,62,53,113,56,60,53,69,118,80,84,104,76,76,85,66,65,69,77,86,69,75,70,68,95,73,97,95,73,69,101,54,66,86,92,62,63,62,99,102,93,103,77", ++ "endOffsets": "209,292,392,508,590,653,744,809,868,956,1018,1078,1145,1208,1262,1376,1433,1494,1548,1618,1737,1818,1903,2008,2085,2162,2248,2315,2381,2451,2529,2616,2686,2762,2833,2902,2998,3072,3170,3266,3340,3410,3512,3567,3634,3721,3814,3877,3941,4004,4104,4207,4301,4405,4483" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2957,3040,3140,3256,3338,3401,3492,3557,3616,3704,3766,3826,3893,3956,4010,4124,4181,4242,4296,4366,4485,4566,4651,4756,4833,4910,4996,5063,5129,5199,5277,5364,5434,5510,5581,5650,5746,5820,5918,6014,6088,6158,6260,6315,6382,6469,6562,6625,6689,6752,6852,6955,7049,7153", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,99,115,81,62,90,64,58,87,61,59,66,62,53,113,56,60,53,69,118,80,84,104,76,76,85,66,65,69,77,86,69,75,70,68,95,73,97,95,73,69,101,54,66,86,92,62,63,62,99,102,93,103,77", ++ "endOffsets": "259,3035,3135,3251,3333,3396,3487,3552,3611,3699,3761,3821,3888,3951,4005,4119,4176,4237,4291,4361,4480,4561,4646,4751,4828,4905,4991,5058,5124,5194,5272,5359,5429,5505,5576,5645,5741,5815,5913,6009,6083,6153,6255,6310,6377,6464,6557,6620,6684,6747,6847,6950,7044,7148,7226" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7314", ++ "endColumns": "100", ++ "endOffsets": "7410" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-lt_values-lt.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,2874", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,2953" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "380,496,600,713,800,902,1024,1107,1187,1281,1377,1474,1570,1673,1769,1867,1963,2057,2151,2234,2343,2451,2551,2661,2766,2872,3048,7603", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "491,595,708,795,897,1019,1102,1182,1276,1372,1469,1565,1668,1764,1862,1958,2052,2146,2229,2338,2446,2546,2656,2761,2867,3043,3144,7682" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7687", ++ "endColumns": "100", ++ "endOffsets": "7783" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,330,413,509,627,711,777,876,954,1019,1129,1201,1260,1334,1395,1449,1573,1634,1696,1750,1828,1962,2050,2134,2245,2324,2408,2505,2572,2638,2713,2792,2880,2956,3034,3107,3184,3271,3352,3442,3534,3606,3687,3779,3834,3900,3985,4072,4134,4198,4261,4372,4487,4588,4702", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,82,95,117,83,65,98,77,64,109,71,58,73,60,53,123,60,61,53,77,133,87,83,110,78,83,96,66,65,74,78,87,75,77,72,76,86,80,89,91,71,80,91,54,65,84,86,61,63,62,110,114,100,113,81", ++ "endOffsets": "325,408,504,622,706,772,871,949,1014,1124,1196,1255,1329,1390,1444,1568,1629,1691,1745,1823,1957,2045,2129,2240,2319,2403,2500,2567,2633,2708,2787,2875,2951,3029,3102,3179,3266,3347,3437,3529,3601,3682,3774,3829,3895,3980,4067,4129,4193,4256,4367,4482,4583,4697,4779" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3149,3232,3328,3446,3530,3596,3695,3773,3838,3948,4020,4079,4153,4214,4268,4392,4453,4515,4569,4647,4781,4869,4953,5064,5143,5227,5324,5391,5457,5532,5611,5699,5775,5853,5926,6003,6090,6171,6261,6353,6425,6506,6598,6653,6719,6804,6891,6953,7017,7080,7191,7306,7407,7521", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,95,117,83,65,98,77,64,109,71,58,73,60,53,123,60,61,53,77,133,87,83,110,78,83,96,66,65,74,78,87,75,77,72,76,86,80,89,91,71,80,91,54,65,84,86,61,63,62,110,114,100,113,81", ++ "endOffsets": "375,3227,3323,3441,3525,3591,3690,3768,3833,3943,4015,4074,4148,4209,4263,4387,4448,4510,4564,4642,4776,4864,4948,5059,5138,5222,5319,5386,5452,5527,5606,5694,5770,5848,5921,5998,6085,6166,6256,6348,6420,6501,6593,6648,6714,6799,6886,6948,7012,7075,7186,7301,7402,7516,7598" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-hdpi-v4_values-hdpi-v4.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hdpi-v4/values-hdpi-v4.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "6", ++ "endColumns": "13", ++ "endOffsets": "327" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-gu_values-gu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7355", ++ "endColumns": "100", ++ "endOffsets": "7451" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,305,404,524,608,671,762,829,888,978,1043,1107,1176,1238,1292,1407,1465,1526,1580,1653,1780,1866,1950,2053,2128,2204,2290,2357,2423,2496,2576,2661,2732,2808,2887,2956,3052,3130,3225,3321,3395,3470,3569,3620,3687,3774,3864,3926,3990,4053,4155,4260,4357,4463", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,98,119,83,62,90,66,58,89,64,63,68,61,53,114,57,60,53,72,126,85,83,102,74,75,85,66,65,72,79,84,70,75,78,68,95,77,94,95,73,74,98,50,66,86,89,61,63,62,101,104,96,105,77", ++ "endOffsets": "218,300,399,519,603,666,757,824,883,973,1038,1102,1171,1233,1287,1402,1460,1521,1575,1648,1775,1861,1945,2048,2123,2199,2285,2352,2418,2491,2571,2656,2727,2803,2882,2951,3047,3125,3220,3316,3390,3465,3564,3615,3682,3769,3859,3921,3985,4048,4150,4255,4352,4458,4536" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2956,3038,3137,3257,3341,3404,3495,3562,3621,3711,3776,3840,3909,3971,4025,4140,4198,4259,4313,4386,4513,4599,4683,4786,4861,4937,5023,5090,5156,5229,5309,5394,5465,5541,5620,5689,5785,5863,5958,6054,6128,6203,6302,6353,6420,6507,6597,6659,6723,6786,6888,6993,7090,7196", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,98,119,83,62,90,66,58,89,64,63,68,61,53,114,57,60,53,72,126,85,83,102,74,75,85,66,65,72,79,84,70,75,78,68,95,77,94,95,73,74,98,50,66,86,89,61,63,62,101,104,96,105,77", ++ "endOffsets": "268,3033,3132,3252,3336,3399,3490,3557,3616,3706,3771,3835,3904,3966,4020,4135,4193,4254,4308,4381,4508,4594,4678,4781,4856,4932,5018,5085,5151,5224,5304,5389,5460,5536,5615,5684,5780,5858,5953,6049,6123,6198,6297,6348,6415,6502,6592,6654,6718,6781,6883,6988,7085,7191,7269" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,2788", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,2864" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,380,484,591,678,778,898,976,1053,1144,1237,1332,1426,1526,1619,1714,1808,1899,1990,2070,2176,2277,2374,2483,2583,2693,2853,7274", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "375,479,586,673,773,893,971,1048,1139,1232,1327,1421,1521,1614,1709,1803,1894,1985,2065,2171,2272,2369,2478,2578,2688,2848,2951,7350" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-pa_values-pa.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7223", ++ "endColumns": "100", ++ "endOffsets": "7319" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,218,299,407,519,602,666,758,827,886,971,1033,1091,1155,1216,1270,1384,1442,1502,1556,1626,1753,1834,1913,2018,2094,2171,2255,2322,2388,2457,2534,2620,2688,2764,2834,2899,2994,3067,3161,3254,3328,3397,3491,3547,3614,3698,3786,3848,3912,3975,4072,4167,4258,4354", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,107,111,82,63,91,68,58,84,61,57,63,60,53,113,57,59,53,69,126,80,78,104,75,76,83,66,65,68,76,85,67,75,69,64,94,72,93,92,73,68,93,55,66,83,87,61,63,62,96,94,90,95,76", ++ "endOffsets": "213,294,402,514,597,661,753,822,881,966,1028,1086,1150,1211,1265,1379,1437,1497,1551,1621,1748,1829,1908,2013,2089,2166,2250,2317,2383,2452,2529,2615,2683,2759,2829,2894,2989,3062,3156,3249,3323,3392,3486,3542,3609,3693,3781,3843,3907,3970,4067,4162,4253,4349,4426" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2930,3011,3119,3231,3314,3378,3470,3539,3598,3683,3745,3803,3867,3928,3982,4096,4154,4214,4268,4338,4465,4546,4625,4730,4806,4883,4967,5034,5100,5169,5246,5332,5400,5476,5546,5611,5706,5779,5873,5966,6040,6109,6203,6259,6326,6410,6498,6560,6624,6687,6784,6879,6970,7066", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,107,111,82,63,91,68,58,84,61,57,63,60,53,113,57,59,53,69,126,80,78,104,75,76,83,66,65,68,76,85,67,75,69,64,94,72,93,92,73,68,93,55,66,83,87,61,63,62,96,94,90,95,76", ++ "endOffsets": "263,3006,3114,3226,3309,3373,3465,3534,3593,3678,3740,3798,3862,3923,3977,4091,4149,4209,4263,4333,4460,4541,4620,4725,4801,4878,4962,5029,5095,5164,5241,5327,5395,5471,5541,5606,5701,5774,5868,5961,6035,6104,6198,6254,6321,6405,6493,6555,6619,6682,6779,6874,6965,7061,7138" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,2767", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,2842" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "268,371,468,573,659,759,872,950,1027,1118,1211,1305,1399,1499,1592,1687,1781,1872,1963,2042,2152,2255,2351,2462,2564,2674,2833,7143", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "366,463,568,654,754,867,945,1022,1113,1206,1300,1394,1494,1587,1682,1776,1867,1958,2037,2147,2250,2346,2457,2559,2669,2828,2925,7218" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-pt_values-pt.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2929", ++ "endColumns": "100", ++ "endOffsets": "3025" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ca_values-ca.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,229,317,418,546,630,695,792,872,937,1032,1104,1166,1242,1305,1362,1483,1541,1602,1659,1739,1876,1963,2047,2156,2234,2313,2402,2469,2535,2613,2694,2782,2860,2937,3011,3090,3180,3272,3364,3465,3539,3621,3722,3772,3838,3930,4017,4079,4143,4206,4329,4432,4536,4642", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,87,100,127,83,64,96,79,64,94,71,61,75,62,56,120,57,60,56,79,136,86,83,108,77,78,88,66,65,77,80,87,77,76,73,78,89,91,91,100,73,81,100,49,65,91,86,61,63,62,122,102,103,105,85", ++ "endOffsets": "224,312,413,541,625,690,787,867,932,1027,1099,1161,1237,1300,1357,1478,1536,1597,1654,1734,1871,1958,2042,2151,2229,2308,2397,2464,2530,2608,2689,2777,2855,2932,3006,3085,3175,3267,3359,3460,3534,3616,3717,3767,3833,3925,4012,4074,4138,4201,4324,4427,4531,4637,4723" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3004,3092,3193,3321,3405,3470,3567,3647,3712,3807,3879,3941,4017,4080,4137,4258,4316,4377,4434,4514,4651,4738,4822,4931,5009,5088,5177,5244,5310,5388,5469,5557,5635,5712,5786,5865,5955,6047,6139,6240,6314,6396,6497,6547,6613,6705,6792,6854,6918,6981,7104,7207,7311,7417", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,100,127,83,64,96,79,64,94,71,61,75,62,56,120,57,60,56,79,136,86,83,108,77,78,88,66,65,77,80,87,77,76,73,78,89,91,91,100,73,81,100,49,65,91,86,61,63,62,122,102,103,105,85", ++ "endOffsets": "274,3087,3188,3316,3400,3465,3562,3642,3707,3802,3874,3936,4012,4075,4132,4253,4311,4372,4429,4509,4646,4733,4817,4926,5004,5083,5172,5239,5305,5383,5464,5552,5630,5707,5781,5860,5950,6042,6134,6235,6309,6391,6492,6542,6608,6700,6787,6849,6913,6976,7099,7202,7306,7412,7498" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,228,333,440,523,629,755,839,918,1009,1102,1195,1290,1388,1481,1574,1668,1759,1850,1931,2042,2150,2248,2358,2463,2571,2731,2830", ++ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", ++ "endOffsets": "223,328,435,518,624,750,834,913,1004,1097,1190,1285,1383,1476,1569,1663,1754,1845,1926,2037,2145,2243,2353,2458,2566,2726,2825,2907" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "279,402,507,614,697,803,929,1013,1092,1183,1276,1369,1464,1562,1655,1748,1842,1933,2024,2105,2216,2324,2422,2532,2637,2745,2905,7503", ++ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", ++ "endOffsets": "397,502,609,692,798,924,1008,1087,1178,1271,1364,1459,1557,1650,1743,1837,1928,2019,2100,2211,2319,2417,2527,2632,2740,2900,2999,7580" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7585", ++ "endColumns": "100", ++ "endOffsets": "7681" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-v17_values-v17.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v17/values-v17.xml", ++ "from": { ++ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", ++ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", ++ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", ++ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-hi_values-hi.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,2787", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,2864" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,370,468,578,664,766,887,965,1042,1133,1226,1321,1415,1515,1608,1703,1797,1888,1979,2060,2165,2267,2365,2475,2578,2687,2845,7289", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "365,463,573,659,761,882,960,1037,1128,1221,1316,1410,1510,1603,1698,1792,1883,1974,2055,2160,2262,2360,2470,2573,2682,2840,2941,7366" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,295,402,534,617,682,776,845,904,989,1052,1110,1175,1236,1297,1403,1461,1521,1580,1650,1766,1845,1925,2029,2104,2180,2277,2344,2410,2480,2557,2643,2711,2787,2868,2946,3032,3119,3216,3315,3389,3459,3563,3617,3684,3774,3866,3928,3992,4055,4160,4268,4369,4478", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,106,131,82,64,93,68,58,84,62,57,64,60,60,105,57,59,58,69,115,78,79,103,74,75,96,66,65,69,76,85,67,75,80,77,85,86,96,98,73,69,103,53,66,89,91,61,63,62,104,107,100,108,78", ++ "endOffsets": "209,290,397,529,612,677,771,840,899,984,1047,1105,1170,1231,1292,1398,1456,1516,1575,1645,1761,1840,1920,2024,2099,2175,2272,2339,2405,2475,2552,2638,2706,2782,2863,2941,3027,3114,3211,3310,3384,3454,3558,3612,3679,3769,3861,3923,3987,4050,4155,4263,4364,4473,4552" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2946,3027,3134,3266,3349,3414,3508,3577,3636,3721,3784,3842,3907,3968,4029,4135,4193,4253,4312,4382,4498,4577,4657,4761,4836,4912,5009,5076,5142,5212,5289,5375,5443,5519,5600,5678,5764,5851,5948,6047,6121,6191,6295,6349,6416,6506,6598,6660,6724,6787,6892,7000,7101,7210", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,106,131,82,64,93,68,58,84,62,57,64,60,60,105,57,59,58,69,115,78,79,103,74,75,96,66,65,69,76,85,67,75,80,77,85,86,96,98,73,69,103,53,66,89,91,61,63,62,104,107,100,108,78", ++ "endOffsets": "259,3022,3129,3261,3344,3409,3503,3572,3631,3716,3779,3837,3902,3963,4024,4130,4188,4248,4307,4377,4493,4572,4652,4756,4831,4907,5004,5071,5137,5207,5284,5370,5438,5514,5595,5673,5759,5846,5943,6042,6116,6186,6290,6344,6411,6501,6593,6655,6719,6782,6887,6995,7096,7205,7284" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7371", ++ "endColumns": "100", ++ "endOffsets": "7467" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-sw_values-sw.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,287,386,515,598,666,758,831,894,980,1043,1108,1176,1239,1293,1425,1482,1544,1598,1672,1810,1891,1971,2073,2158,2245,2333,2400,2466,2538,2620,2710,2782,2857,2928,3001,3098,3172,3267,3364,3438,3523,3623,3676,3744,3832,3922,3984,4048,4111,4228,4338,4449,4561", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,72,98,128,82,67,91,72,62,85,62,64,67,62,53,131,56,61,53,73,137,80,79,101,84,86,87,66,65,71,81,89,71,74,70,72,96,73,94,96,73,84,99,52,67,87,89,61,63,62,116,109,110,111,80", ++ "endOffsets": "209,282,381,510,593,661,753,826,889,975,1038,1103,1171,1234,1288,1420,1477,1539,1593,1667,1805,1886,1966,2068,2153,2240,2328,2395,2461,2533,2615,2705,2777,2852,2923,2996,3093,3167,3262,3359,3433,3518,3618,3671,3739,3827,3917,3979,4043,4106,4223,4333,4444,4556,4637" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2960,3033,3132,3261,3344,3412,3504,3577,3640,3726,3789,3854,3922,3985,4039,4171,4228,4290,4344,4418,4556,4637,4717,4819,4904,4991,5079,5146,5212,5284,5366,5456,5528,5603,5674,5747,5844,5918,6013,6110,6184,6269,6369,6422,6490,6578,6668,6730,6794,6857,6974,7084,7195,7307", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,72,98,128,82,67,91,72,62,85,62,64,67,62,53,131,56,61,53,73,137,80,79,101,84,86,87,66,65,71,81,89,71,74,70,72,96,73,94,96,73,84,99,52,67,87,89,61,63,62,116,109,110,111,80", ++ "endOffsets": "259,3028,3127,3256,3339,3407,3499,3572,3635,3721,3784,3849,3917,3980,4034,4166,4223,4285,4339,4413,4551,4632,4712,4814,4899,4986,5074,5141,5207,5279,5361,5451,5523,5598,5669,5742,5839,5913,6008,6105,6179,6264,6364,6417,6485,6573,6663,6725,6789,6852,6969,7079,7190,7302,7383" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7471", ++ "endColumns": "100", ++ "endOffsets": "7567" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,2801", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,2879" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,367,466,574,664,769,886,969,1051,1142,1235,1330,1424,1524,1617,1712,1806,1897,1988,2070,2171,2279,2378,2485,2597,2701,2863,7388", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "362,461,569,659,764,881,964,1046,1137,1230,1325,1419,1519,1612,1707,1801,1892,1983,2065,2166,2274,2373,2480,2592,2696,2858,2955,7466" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h360dp-land-v13/values-h360dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478,547", ++ "endColumns": "58,55,55,66,64,54,64,68,68", ++ "endOffsets": "109,165,221,288,353,408,473,542,611" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-zh-rCN_values-zh-rCN.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,272,363,469,542,604,681,740,799,877,934,990,1049,1107,1161,1246,1302,1360,1414,1479,1571,1645,1721,1813,1875,1937,2016,2083,2149,2213,2282,2360,2421,2492,2559,2619,2698,2765,2848,2933,3007,3072,3148,3196,3260,3336,3414,3476,3540,3603,3683,3759,3837,3914", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,69,90,105,72,61,76,58,58,77,56,55,58,57,53,84,55,57,53,64,91,73,75,91,61,61,78,66,65,63,68,77,60,70,66,59,78,66,82,84,73,64,75,47,63,75,77,61,63,62,79,75,77,76,68", ++ "endOffsets": "197,267,358,464,537,599,676,735,794,872,929,985,1044,1102,1156,1241,1297,1355,1409,1474,1566,1640,1716,1808,1870,1932,2011,2078,2144,2208,2277,2355,2416,2487,2554,2614,2693,2760,2843,2928,3002,3067,3143,3191,3255,3331,3409,3471,3535,3598,3678,3754,3832,3909,3978" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2809,2879,2970,3076,3149,3211,3288,3347,3406,3484,3541,3597,3656,3714,3768,3853,3909,3967,4021,4086,4178,4252,4328,4420,4482,4544,4623,4690,4756,4820,4889,4967,5028,5099,5166,5226,5305,5372,5455,5540,5614,5679,5755,5803,5867,5943,6021,6083,6147,6210,6290,6366,6444,6521", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,69,90,105,72,61,76,58,58,77,56,55,58,57,53,84,55,57,53,64,91,73,75,91,61,61,78,66,65,63,68,77,60,70,66,59,78,66,82,84,73,64,75,47,63,75,77,61,63,62,79,75,77,76,68", ++ "endOffsets": "247,2874,2965,3071,3144,3206,3283,3342,3401,3479,3536,3592,3651,3709,3763,3848,3904,3962,4016,4081,4173,4247,4323,4415,4477,4539,4618,4685,4751,4815,4884,4962,5023,5094,5161,5221,5300,5367,5450,5535,5609,5674,5750,5798,5862,5938,6016,6078,6142,6205,6285,6361,6439,6516,6585" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,2662", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,2736" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,442,542,624,721,827,904,979,1070,1163,1260,1356,1450,1543,1638,1730,1821,1912,1990,2086,2181,2276,2373,2469,2567,2715,6590", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "342,437,537,619,716,822,899,974,1065,1158,1255,1351,1445,1538,1633,1725,1816,1907,1985,2081,2176,2271,2368,2464,2562,2710,2804,6664" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6669", ++ "endColumns": "100", ++ "endOffsets": "6765" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-en-rAU_values-en-rAU.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-eu_values-eu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7453", ++ "endColumns": "100", ++ "endOffsets": "7549" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,312,422,508,614,738,824,905,997,1091,1187,1281,1382,1476,1572,1669,1761,1854,1936,2045,2154,2253,2362,2469,2580,2751,2850", ++ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", ++ "endOffsets": "209,307,417,503,609,733,819,900,992,1086,1182,1276,1377,1471,1567,1664,1756,1849,1931,2040,2149,2248,2357,2464,2575,2746,2845,2928" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "280,389,487,597,683,789,913,999,1080,1172,1266,1362,1456,1557,1651,1747,1844,1936,2029,2111,2220,2329,2428,2537,2644,2755,2926,7370", ++ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", ++ "endOffsets": "384,482,592,678,784,908,994,1075,1167,1261,1357,1451,1552,1646,1742,1839,1931,2024,2106,2215,2324,2423,2532,2639,2750,2921,3020,7448" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,230,310,408,523,606,673,772,840,901,989,1055,1119,1190,1253,1307,1416,1475,1538,1592,1666,1791,1881,1961,2076,2159,2241,2330,2397,2463,2534,2614,2700,2778,2856,2929,3004,3091,3178,3269,3362,3434,3510,3602,3653,3719,3803,3889,3951,4015,4078,4185,4290,4386,4492", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,97,114,82,66,98,67,60,87,65,63,70,62,53,108,58,62,53,73,124,89,79,114,82,81,88,66,65,70,79,85,77,77,72,74,86,86,90,92,71,75,91,50,65,83,85,61,63,62,106,104,95,105,82", ++ "endOffsets": "225,305,403,518,601,668,767,835,896,984,1050,1114,1185,1248,1302,1411,1470,1533,1587,1661,1786,1876,1956,2071,2154,2236,2325,2392,2458,2529,2609,2695,2773,2851,2924,2999,3086,3173,3264,3357,3429,3505,3597,3648,3714,3798,3884,3946,4010,4073,4180,4285,4381,4487,4570" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3105,3203,3318,3401,3468,3567,3635,3696,3784,3850,3914,3985,4048,4102,4211,4270,4333,4387,4461,4586,4676,4756,4871,4954,5036,5125,5192,5258,5329,5409,5495,5573,5651,5724,5799,5886,5973,6064,6157,6229,6305,6397,6448,6514,6598,6684,6746,6810,6873,6980,7085,7181,7287", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,97,114,82,66,98,67,60,87,65,63,70,62,53,108,58,62,53,73,124,89,79,114,82,81,88,66,65,70,79,85,77,77,72,74,86,86,90,92,71,75,91,50,65,83,85,61,63,62,106,104,95,105,82", ++ "endOffsets": "275,3100,3198,3313,3396,3463,3562,3630,3691,3779,3845,3909,3980,4043,4097,4206,4265,4328,4382,4456,4581,4671,4751,4866,4949,5031,5120,5187,5253,5324,5404,5490,5568,5646,5719,5794,5881,5968,6059,6152,6224,6300,6392,6443,6509,6593,6679,6741,6805,6868,6975,7080,7176,7282,7365" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-watch-v21_values-watch-v21.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-watch-v21/values-watch-v21.xml", ++ "from": { ++ "startLines": "2,6,10", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,271,499", ++ "endLines": "5,9,13", ++ "endColumns": "12,12,12", ++ "endOffsets": "266,494,724" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-si_values-si.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7331", ++ "endColumns": "100", ++ "endOffsets": "7427" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,302,404,519,602,666,755,822,882,976,1039,1095,1165,1232,1287,1406,1463,1527,1581,1654,1776,1859,1944,2046,2124,2204,2290,2357,2423,2493,2566,2648,2720,2797,2869,2939,3032,3105,3195,3288,3362,3434,3525,3579,3645,3729,3814,3876,3940,4003,4108,4208,4303,4403", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,101,114,82,63,88,66,59,93,62,55,69,66,54,118,56,63,53,72,121,82,84,101,77,79,85,66,65,69,72,81,71,76,71,69,92,72,89,92,73,71,90,53,65,83,84,61,63,62,104,99,94,99,79", ++ "endOffsets": "219,297,399,514,597,661,750,817,877,971,1034,1090,1160,1227,1282,1401,1458,1522,1576,1649,1771,1854,1939,2041,2119,2199,2285,2352,2418,2488,2561,2643,2715,2792,2864,2934,3027,3100,3190,3283,3357,3429,3520,3574,3640,3724,3809,3871,3935,3998,4103,4203,4298,4398,4478" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2990,3068,3170,3285,3368,3432,3521,3588,3648,3742,3805,3861,3931,3998,4053,4172,4229,4293,4347,4420,4542,4625,4710,4812,4890,4970,5056,5123,5189,5259,5332,5414,5486,5563,5635,5705,5798,5871,5961,6054,6128,6200,6291,6345,6411,6495,6580,6642,6706,6769,6874,6974,7069,7169", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,101,114,82,63,88,66,59,93,62,55,69,66,54,118,56,63,53,72,121,82,84,101,77,79,85,66,65,69,72,81,71,76,71,69,92,72,89,92,73,71,90,53,65,83,84,61,63,62,104,99,94,99,79", ++ "endOffsets": "269,3063,3165,3280,3363,3427,3516,3583,3643,3737,3800,3856,3926,3993,4048,4167,4224,4288,4342,4415,4537,4620,4705,4807,4885,4965,5051,5118,5184,5254,5327,5409,5481,5558,5630,5700,5793,5866,5956,6049,6123,6195,6286,6340,6406,6490,6575,6637,6701,6764,6869,6969,7064,7164,7244" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,2821", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,2898" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,390,497,604,687,792,908,998,1084,1175,1268,1362,1456,1556,1649,1744,1838,1929,2020,2104,2213,2317,2415,2525,2625,2732,2891,7249", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "385,492,599,682,787,903,993,1079,1170,1263,1357,1451,1551,1644,1739,1833,1924,2015,2099,2208,2312,2410,2520,2620,2727,2886,2985,7326" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h480dp-land-v13/values-h480dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478,547", ++ "endColumns": "58,55,55,66,64,54,64,68,68", ++ "endOffsets": "109,165,221,288,353,408,473,542,611" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-fi_values-fi.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,306,402,510,594,659,752,827,892,980,1046,1104,1175,1241,1295,1405,1465,1529,1583,1656,1772,1856,1937,2040,2125,2210,2300,2367,2433,2510,2592,2676,2750,2829,2906,2978,3067,3140,3231,3326,3400,3473,3567,3621,3693,3779,3865,3927,3991,4054,4155,4257,4352,4455", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,95,107,83,64,92,74,64,87,65,57,70,65,53,109,59,63,53,72,115,83,80,102,84,84,89,66,65,76,81,83,73,78,76,71,88,72,90,94,73,72,93,53,71,85,85,61,63,62,100,101,94,102,78", ++ "endOffsets": "218,301,397,505,589,654,747,822,887,975,1041,1099,1170,1236,1290,1400,1460,1524,1578,1651,1767,1851,1932,2035,2120,2205,2295,2362,2428,2505,2587,2671,2745,2824,2901,2973,3062,3135,3226,3321,3395,3468,3562,3616,3688,3774,3860,3922,3986,4049,4150,4252,4347,4450,4529" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2943,3026,3122,3230,3314,3379,3472,3547,3612,3700,3766,3824,3895,3961,4015,4125,4185,4249,4303,4376,4492,4576,4657,4760,4845,4930,5020,5087,5153,5230,5312,5396,5470,5549,5626,5698,5787,5860,5951,6046,6120,6193,6287,6341,6413,6499,6585,6647,6711,6774,6875,6977,7072,7175", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,95,107,83,64,92,74,64,87,65,57,70,65,53,109,59,63,53,72,115,83,80,102,84,84,89,66,65,76,81,83,73,78,76,71,88,72,90,94,73,72,93,53,71,85,85,61,63,62,100,101,94,102,78", ++ "endOffsets": "268,3021,3117,3225,3309,3374,3467,3542,3607,3695,3761,3819,3890,3956,4010,4120,4180,4244,4298,4371,4487,4571,4652,4755,4840,4925,5015,5082,5148,5225,5307,5391,5465,5544,5621,5693,5782,5855,5946,6041,6115,6188,6282,6336,6408,6494,6580,6642,6706,6769,6870,6972,7067,7170,7249" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,2775", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,2851" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,381,481,590,676,781,899,985,1064,1155,1248,1343,1437,1531,1624,1720,1819,1910,2004,2084,2191,2292,2389,2495,2595,2693,2843,7254", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "376,476,585,671,776,894,980,1059,1150,1243,1338,1432,1526,1619,1715,1814,1905,1999,2079,2186,2287,2384,2490,2590,2688,2838,2938,7330" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7335", ++ "endColumns": "100", ++ "endOffsets": "7431" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w600dp-land-v13/values-w600dp-land-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "54", ++ "endOffsets": "105" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h320dp-port-v13/values-h320dp-port-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "75", ++ "endOffsets": "126" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-mn_values-mn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,299,397,516,601,666,764,845,904,997,1060,1118,1189,1251,1305,1426,1483,1544,1598,1669,1802,1886,1969,2072,2154,2232,2322,2389,2455,2526,2604,2690,2765,2843,2923,3006,3094,3173,3263,3356,3430,3500,3591,3645,3712,3796,3881,3943,4007,4070,4174,4280,4377,4482", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,97,118,84,64,97,80,58,92,62,57,70,61,53,120,56,60,53,70,132,83,82,102,81,77,89,66,65,70,77,85,74,77,79,82,87,78,89,92,73,69,90,53,66,83,84,61,63,62,103,105,96,104,83", ++ "endOffsets": "215,294,392,511,596,661,759,840,899,992,1055,1113,1184,1246,1300,1421,1478,1539,1593,1664,1797,1881,1964,2067,2149,2227,2317,2384,2450,2521,2599,2685,2760,2838,2918,3001,3089,3168,3258,3351,3425,3495,3586,3640,3707,3791,3876,3938,4002,4065,4169,4275,4372,4477,4561" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3041,3139,3258,3343,3408,3506,3587,3646,3739,3802,3860,3931,3993,4047,4168,4225,4286,4340,4411,4544,4628,4711,4814,4896,4974,5064,5131,5197,5268,5346,5432,5507,5585,5665,5748,5836,5915,6005,6098,6172,6242,6333,6387,6454,6538,6623,6685,6749,6812,6916,7022,7119,7224", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,97,118,84,64,97,80,58,92,62,57,70,61,53,120,56,60,53,70,132,83,82,102,81,77,89,66,65,70,77,85,74,77,79,82,87,78,89,92,73,69,90,53,66,83,84,61,63,62,103,105,96,104,83", ++ "endOffsets": "265,3036,3134,3253,3338,3403,3501,3582,3641,3734,3797,3855,3926,3988,4042,4163,4220,4281,4335,4406,4539,4623,4706,4809,4891,4969,5059,5126,5192,5263,5341,5427,5502,5580,5660,5743,5831,5910,6000,6093,6167,6237,6328,6382,6449,6533,6618,6680,6744,6807,6911,7017,7114,7219,7303" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,2797", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,2873" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,384,484,593,679,785,899,982,1063,1154,1247,1342,1438,1535,1628,1722,1814,1905,1995,2075,2182,2285,2382,2489,2591,2704,2863,7308", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "379,479,588,674,780,894,977,1058,1149,1242,1337,1433,1530,1623,1717,1809,1900,1990,2070,2177,2280,2377,2484,2586,2699,2858,2957,7384" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7389", ++ "endColumns": "100", ++ "endOffsets": "7485" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-sk_values-sk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,2817", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,2895" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "383,490,591,702,788,896,1014,1093,1170,1261,1354,1452,1546,1646,1739,1834,1932,2023,2114,2198,2303,2411,2510,2616,2728,2831,2997,7399", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "485,586,697,783,891,1009,1088,1165,1256,1349,1447,1541,1641,1734,1829,1927,2018,2109,2193,2298,2406,2505,2611,2723,2826,2992,3090,7477" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,333,411,503,631,712,777,876,952,1017,1107,1173,1227,1296,1356,1410,1527,1587,1649,1703,1775,1905,1992,2084,2193,2262,2340,2428,2495,2561,2633,2710,2793,2865,2942,3015,3086,3174,3246,3338,3434,3508,3582,3678,3730,3797,3884,3971,4033,4097,4160,4266,4362,4460,4558", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,77,91,127,80,64,98,75,64,89,65,53,68,59,53,116,59,61,53,71,129,86,91,108,68,77,87,66,65,71,76,82,71,76,72,70,87,71,91,95,73,73,95,51,66,86,86,61,63,62,105,95,97,97,78", ++ "endOffsets": "328,406,498,626,707,772,871,947,1012,1102,1168,1222,1291,1351,1405,1522,1582,1644,1698,1770,1900,1987,2079,2188,2257,2335,2423,2490,2556,2628,2705,2788,2860,2937,3010,3081,3169,3241,3333,3429,3503,3577,3673,3725,3792,3879,3966,4028,4092,4155,4261,4357,4455,4553,4632" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3095,3173,3265,3393,3474,3539,3638,3714,3779,3869,3935,3989,4058,4118,4172,4289,4349,4411,4465,4537,4667,4754,4846,4955,5024,5102,5190,5257,5323,5395,5472,5555,5627,5704,5777,5848,5936,6008,6100,6196,6270,6344,6440,6492,6559,6646,6733,6795,6859,6922,7028,7124,7222,7320", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,91,127,80,64,98,75,64,89,65,53,68,59,53,116,59,61,53,71,129,86,91,108,68,77,87,66,65,71,76,82,71,76,72,70,87,71,91,95,73,73,95,51,66,86,86,61,63,62,105,95,97,97,78", ++ "endOffsets": "378,3168,3260,3388,3469,3534,3633,3709,3774,3864,3930,3984,4053,4113,4167,4284,4344,4406,4460,4532,4662,4749,4841,4950,5019,5097,5185,5252,5318,5390,5467,5550,5622,5699,5772,5843,5931,6003,6095,6191,6265,6339,6435,6487,6554,6641,6728,6790,6854,6917,7023,7119,7217,7315,7394" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7482", ++ "endColumns": "100", ++ "endOffsets": "7578" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-v25_values-v25.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v25/values-v25.xml", ++ "from": { ++ "startLines": "2,3,4,6", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,126,209,308", ++ "endLines": "2,3,5,7", ++ "endColumns": "70,82,12,12", ++ "endOffsets": "121,204,303,414" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-watch-v20_values-watch-v20.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-watch-v20/values-watch-v20.xml", ++ "from": { ++ "startLines": "2,5,8", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,214,385", ++ "endLines": "4,7,10", ++ "endColumns": "12,12,12", ++ "endOffsets": "209,380,553" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-el_values-el.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,225,310,412,529,615,681,781,863,926,1017,1082,1144,1213,1275,1329,1467,1524,1585,1639,1712,1865,1950,2034,2143,2224,2309,2399,2466,2532,2610,2695,2780,2852,2932,3012,3083,3175,3247,3344,3441,3515,3589,3691,3747,3819,3907,3999,4061,4125,4188,4304,4412,4521,4629", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,101,116,85,65,99,81,62,90,64,61,68,61,53,137,56,60,53,72,152,84,83,108,80,84,89,66,65,77,84,84,71,79,79,70,91,71,96,96,73,73,101,55,71,87,91,61,63,62,115,107,108,107,90", ++ "endOffsets": "220,305,407,524,610,676,776,858,921,1012,1077,1139,1208,1270,1324,1462,1519,1580,1634,1707,1860,1945,2029,2138,2219,2304,2394,2461,2527,2605,2690,2775,2847,2927,3007,3078,3170,3242,3339,3436,3510,3584,3686,3742,3814,3902,3994,4056,4120,4183,4299,4407,4516,4624,4715" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3056,3141,3243,3360,3446,3512,3612,3694,3757,3848,3913,3975,4044,4106,4160,4298,4355,4416,4470,4543,4696,4781,4865,4974,5055,5140,5230,5297,5363,5441,5526,5611,5683,5763,5843,5914,6006,6078,6175,6272,6346,6420,6522,6578,6650,6738,6830,6892,6956,7019,7135,7243,7352,7460", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,101,116,85,65,99,81,62,90,64,61,68,61,53,137,56,60,53,72,152,84,83,108,80,84,89,66,65,77,84,84,71,79,79,70,91,71,96,96,73,73,101,55,71,87,91,61,63,62,115,107,108,107,90", ++ "endOffsets": "270,3136,3238,3355,3441,3507,3607,3689,3752,3843,3908,3970,4039,4101,4155,4293,4350,4411,4465,4538,4691,4776,4860,4969,5050,5135,5225,5292,5358,5436,5521,5606,5678,5758,5838,5909,6001,6073,6170,6267,6341,6415,6517,6573,6645,6733,6825,6887,6951,7014,7130,7238,7347,7455,7546" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7637", ++ "endColumns": "100", ++ "endOffsets": "7733" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,2886", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,2967" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "275,393,504,621,706,812,935,1024,1109,1200,1293,1388,1482,1582,1675,1770,1867,1958,2049,2134,2245,2354,2456,2567,2677,2785,2956,7551", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "388,499,616,701,807,930,1019,1104,1195,1288,1383,1477,1577,1670,1765,1862,1953,2044,2129,2240,2349,2451,2562,2672,2780,2951,3051,7632" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-kn_values-kn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,2859", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,2937" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,388,500,613,701,808,934,1012,1088,1179,1272,1367,1461,1561,1654,1749,1843,1934,2025,2107,2223,2333,2432,2545,2650,2764,2928,7417", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "383,495,608,696,803,929,1007,1083,1174,1267,1362,1456,1556,1649,1744,1838,1929,2020,2102,2218,2328,2427,2540,2645,2759,2923,3023,7495" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7500", ++ "endColumns": "100", ++ "endOffsets": "7596" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,306,413,526,611,674,768,834,896,999,1070,1129,1205,1270,1324,1437,1495,1556,1610,1689,1805,1888,1979,2091,2170,2249,2337,2404,2470,2550,2640,2724,2801,2878,2955,3024,3123,3200,3293,3388,3462,3543,3639,3690,3758,3844,3932,3995,4060,4123,4228,4331,4426,4531", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,106,112,84,62,93,65,61,102,70,58,75,64,53,112,57,60,53,78,115,82,90,111,78,78,87,66,65,79,89,83,76,76,76,68,98,76,92,94,73,80,95,50,67,85,87,62,64,62,104,102,94,104,81", ++ "endOffsets": "219,301,408,521,606,669,763,829,891,994,1065,1124,1200,1265,1319,1432,1490,1551,1605,1684,1800,1883,1974,2086,2165,2244,2332,2399,2465,2545,2635,2719,2796,2873,2950,3019,3118,3195,3288,3383,3457,3538,3634,3685,3753,3839,3927,3990,4055,4118,4223,4326,4421,4526,4608" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3028,3110,3217,3330,3415,3478,3572,3638,3700,3803,3874,3933,4009,4074,4128,4241,4299,4360,4414,4493,4609,4692,4783,4895,4974,5053,5141,5208,5274,5354,5444,5528,5605,5682,5759,5828,5927,6004,6097,6192,6266,6347,6443,6494,6562,6648,6736,6799,6864,6927,7032,7135,7230,7335", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,106,112,84,62,93,65,61,102,70,58,75,64,53,112,57,60,53,78,115,82,90,111,78,78,87,66,65,79,89,83,76,76,76,68,98,76,92,94,73,80,95,50,67,85,87,62,64,62,104,102,94,104,81", ++ "endOffsets": "269,3105,3212,3325,3410,3473,3567,3633,3695,3798,3869,3928,4004,4069,4123,4236,4294,4355,4409,4488,4604,4687,4778,4890,4969,5048,5136,5203,5269,5349,5439,5523,5600,5677,5754,5823,5922,5999,6092,6187,6261,6342,6438,6489,6557,6643,6731,6794,6859,6922,7027,7130,7225,7330,7412" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ldrtl-v17_values-ldrtl-v17.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ldrtl-v17/values-ldrtl-v17.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,191", ++ "endColumns": "135,140", ++ "endOffsets": "186,327" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ne_values-ne.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,217,299,401,511,598,664,760,826,887,992,1064,1122,1196,1258,1312,1425,1485,1546,1605,1683,1807,1888,1973,2079,2160,2243,2326,2393,2459,2536,2615,2703,2772,2848,2929,2997,3088,3166,3259,3356,3430,3509,3607,3667,3733,3821,3909,3971,4039,4102,4207,4325,4420,4540", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,101,109,86,65,95,65,60,104,71,57,73,61,53,112,59,60,58,77,123,80,84,105,80,82,82,66,65,76,78,87,68,75,80,67,90,77,92,96,73,78,97,59,65,87,87,61,67,62,104,117,94,119,83", ++ "endOffsets": "212,294,396,506,593,659,755,821,882,987,1059,1117,1191,1253,1307,1420,1480,1541,1600,1678,1802,1883,1968,2074,2155,2238,2321,2388,2454,2531,2610,2698,2767,2843,2924,2992,3083,3161,3254,3351,3425,3504,3602,3662,3728,3816,3904,3966,4034,4097,4202,4320,4415,4535,4619" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3029,3111,3213,3323,3410,3476,3572,3638,3699,3804,3876,3934,4008,4070,4124,4237,4297,4358,4417,4495,4619,4700,4785,4891,4972,5055,5138,5205,5271,5348,5427,5515,5584,5660,5741,5809,5900,5978,6071,6168,6242,6321,6419,6479,6545,6633,6721,6783,6851,6914,7019,7137,7232,7352", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,101,109,86,65,95,65,60,104,71,57,73,61,53,112,59,60,58,77,123,80,84,105,80,82,82,66,65,76,78,87,68,75,80,67,90,77,92,96,73,78,97,59,65,87,87,61,67,62,104,117,94,119,83", ++ "endOffsets": "262,3106,3208,3318,3405,3471,3567,3633,3694,3799,3871,3929,4003,4065,4119,4232,4292,4353,4412,4490,4614,4695,4780,4886,4967,5050,5133,5200,5266,5343,5422,5510,5579,5655,5736,5804,5895,5973,6066,6163,6237,6316,6414,6474,6540,6628,6716,6778,6846,6909,7014,7132,7227,7347,7431" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7516", ++ "endColumns": "100", ++ "endOffsets": "7612" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,327,435,526,633,753,837,916,1007,1100,1195,1289,1389,1482,1577,1671,1762,1853,1939,2052,2153,2249,2362,2472,2589,2756,2867", ++ "endColumns": "110,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "211,322,430,521,628,748,832,911,1002,1095,1190,1284,1384,1477,1572,1666,1757,1848,1934,2047,2148,2244,2357,2467,2584,2751,2862,2942" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "267,378,489,597,688,795,915,999,1078,1169,1262,1357,1451,1551,1644,1739,1833,1924,2015,2101,2214,2315,2411,2524,2634,2751,2918,7436", ++ "endColumns": "110,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "373,484,592,683,790,910,994,1073,1164,1257,1352,1446,1546,1639,1734,1828,1919,2010,2096,2209,2310,2406,2519,2629,2746,2913,3024,7511" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-uk_values-uk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,2829", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,2906" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "379,488,590,698,784,889,1007,1088,1167,1258,1351,1446,1540,1640,1733,1828,1923,2014,2105,2204,2310,2416,2514,2621,2728,2833,3003,7426", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "483,585,693,779,884,1002,1083,1162,1253,1346,1441,1535,1635,1728,1823,1918,2009,2100,2199,2305,2411,2509,2616,2723,2828,2998,3098,7503" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,329,417,513,629,712,779,870,936,999,1087,1154,1212,1283,1342,1396,1510,1570,1633,1687,1760,1879,1965,2048,2157,2242,2329,2417,2484,2550,2622,2698,2788,2861,2938,3019,3093,3183,3262,3353,3449,3523,3604,3699,3753,3819,3906,3992,4054,4118,4181,4288,4380,4478,4570", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,87,95,115,82,66,90,65,62,87,66,57,70,58,53,113,59,62,53,72,118,85,82,108,84,86,87,66,65,71,75,89,72,76,80,73,89,78,90,95,73,80,94,53,65,86,85,61,63,62,106,91,97,91,81", ++ "endOffsets": "324,412,508,624,707,774,865,931,994,1082,1149,1207,1278,1337,1391,1505,1565,1628,1682,1755,1874,1960,2043,2152,2237,2324,2412,2479,2545,2617,2693,2783,2856,2933,3014,3088,3178,3257,3348,3444,3518,3599,3694,3748,3814,3901,3987,4049,4113,4176,4283,4375,4473,4565,4647" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3191,3287,3403,3486,3553,3644,3710,3773,3861,3928,3986,4057,4116,4170,4284,4344,4407,4461,4534,4653,4739,4822,4931,5016,5103,5191,5258,5324,5396,5472,5562,5635,5712,5793,5867,5957,6036,6127,6223,6297,6378,6473,6527,6593,6680,6766,6828,6892,6955,7062,7154,7252,7344", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,95,115,82,66,90,65,62,87,66,57,70,58,53,113,59,62,53,72,118,85,82,108,84,86,87,66,65,71,75,89,72,76,80,73,89,78,90,95,73,80,94,53,65,86,85,61,63,62,106,91,97,91,81", ++ "endOffsets": "374,3186,3282,3398,3481,3548,3639,3705,3768,3856,3923,3981,4052,4111,4165,4279,4339,4402,4456,4529,4648,4734,4817,4926,5011,5098,5186,5253,5319,5391,5467,5557,5630,5707,5788,5862,5952,6031,6122,6218,6292,6373,6468,6522,6588,6675,6761,6823,6887,6950,7057,7149,7247,7339,7421" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7508", ++ "endColumns": "100", ++ "endOffsets": "7604" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-hr_values-hr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7514", ++ "endColumns": "100", ++ "endOffsets": "7610" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,2816", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,2896" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "325,430,525,632,718,822,941,1026,1108,1199,1292,1387,1481,1581,1674,1769,1864,1955,2046,2132,2236,2348,2449,2554,2668,2770,2939,7429", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "425,520,627,713,817,936,1021,1103,1194,1287,1382,1476,1576,1669,1764,1859,1950,2041,2127,2231,2343,2444,2549,2663,2765,2934,3031,7509" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,275,360,456,586,670,738,834,902,965,1073,1139,1195,1266,1326,1380,1506,1563,1625,1679,1754,1888,1973,2054,2161,2245,2331,2422,2489,2555,2629,2707,2795,2867,2944,3024,3098,3191,3264,3356,3452,3526,3602,3698,3750,3817,3904,3991,4053,4117,4180,4286,4387,4484,4588", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,84,95,129,83,67,95,67,62,107,65,55,70,59,53,125,56,61,53,74,133,84,80,106,83,85,90,66,65,73,77,87,71,76,79,73,92,72,91,95,73,75,95,51,66,86,86,61,63,62,105,100,96,103,79", ++ "endOffsets": "270,355,451,581,665,733,829,897,960,1068,1134,1190,1261,1321,1375,1501,1558,1620,1674,1749,1883,1968,2049,2156,2240,2326,2417,2484,2550,2624,2702,2790,2862,2939,3019,3093,3186,3259,3351,3447,3521,3597,3693,3745,3812,3899,3986,4048,4112,4175,4281,4382,4479,4583,4663" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3036,3121,3217,3347,3431,3499,3595,3663,3726,3834,3900,3956,4027,4087,4141,4267,4324,4386,4440,4515,4649,4734,4815,4922,5006,5092,5183,5250,5316,5390,5468,5556,5628,5705,5785,5859,5952,6025,6117,6213,6287,6363,6459,6511,6578,6665,6752,6814,6878,6941,7047,7148,7245,7349", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,95,129,83,67,95,67,62,107,65,55,70,59,53,125,56,61,53,74,133,84,80,106,83,85,90,66,65,73,77,87,71,76,79,73,92,72,91,95,73,75,95,51,66,86,86,61,63,62,105,100,96,103,79", ++ "endOffsets": "320,3116,3212,3342,3426,3494,3590,3658,3721,3829,3895,3951,4022,4082,4136,4262,4319,4381,4435,4510,4644,4729,4810,4917,5001,5087,5178,5245,5311,5385,5463,5551,5623,5700,5780,5854,5947,6020,6112,6208,6282,6358,6454,6506,6573,6660,6747,6809,6873,6936,7042,7143,7240,7344,7424" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-zu_values-zu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,320,432,520,623,738,817,894,985,1078,1173,1267,1367,1460,1555,1649,1740,1833,1914,2018,2121,2219,2326,2433,2538,2695,2791", ++ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", ++ "endOffsets": "208,315,427,515,618,733,812,889,980,1073,1168,1262,1362,1455,1550,1644,1735,1828,1909,2013,2116,2214,2321,2428,2533,2690,2786,2868" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,491,603,691,794,909,988,1065,1156,1249,1344,1438,1538,1631,1726,1820,1911,2004,2085,2189,2292,2390,2497,2604,2709,2866,7425", ++ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", ++ "endOffsets": "379,486,598,686,789,904,983,1060,1151,1244,1339,1433,1533,1626,1721,1815,1906,1999,2080,2184,2287,2385,2492,2599,2704,2861,2957,7502" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7507", ++ "endColumns": "100", ++ "endOffsets": "7603" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,303,415,541,622,689,792,867,930,1022,1087,1154,1226,1298,1352,1473,1532,1596,1650,1727,1859,1944,2025,2144,2231,2314,2406,2473,2539,2611,2688,2779,2859,2938,3013,3092,3182,3255,3349,3446,3520,3593,3692,3747,3815,3903,3992,4054,4118,4181,4290,4395,4498,4607", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,111,125,80,66,102,74,62,91,64,66,71,71,53,120,58,63,53,76,131,84,80,118,86,82,91,66,65,71,76,90,79,78,74,78,89,72,93,96,73,72,98,54,67,87,88,61,63,62,108,104,102,108,81", ++ "endOffsets": "221,298,410,536,617,684,787,862,925,1017,1082,1149,1221,1293,1347,1468,1527,1591,1645,1722,1854,1939,2020,2139,2226,2309,2401,2468,2534,2606,2683,2774,2854,2933,3008,3087,3177,3250,3344,3441,3515,3588,3687,3742,3810,3898,3987,4049,4113,4176,4285,4390,4493,4602,4684" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3039,3151,3277,3358,3425,3528,3603,3666,3758,3823,3890,3962,4034,4088,4209,4268,4332,4386,4463,4595,4680,4761,4880,4967,5050,5142,5209,5275,5347,5424,5515,5595,5674,5749,5828,5918,5991,6085,6182,6256,6329,6428,6483,6551,6639,6728,6790,6854,6917,7026,7131,7234,7343", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,111,125,80,66,102,74,62,91,64,66,71,71,53,120,58,63,53,76,131,84,80,118,86,82,91,66,65,71,76,90,79,78,74,78,89,72,93,96,73,72,98,54,67,87,88,61,63,62,108,104,102,108,81", ++ "endOffsets": "271,3034,3146,3272,3353,3420,3523,3598,3661,3753,3818,3885,3957,4029,4083,4204,4263,4327,4381,4458,4590,4675,4756,4875,4962,5045,5137,5204,5270,5342,5419,5510,5590,5669,5744,5823,5913,5986,6080,6177,6251,6324,6423,6478,6546,6634,6723,6785,6849,6912,7021,7126,7229,7338,7420" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-km_values-km.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7393", ++ "endColumns": "100", ++ "endOffsets": "7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,304,404,516,596,661,755,825,887,974,1039,1098,1163,1224,1281,1400,1458,1519,1576,1647,1777,1863,1941,2049,2124,2195,2292,2359,2425,2505,2595,2681,2760,2837,2907,2982,3070,3140,3240,3339,3413,3489,3596,3650,3723,3814,3910,3972,4036,4099,4198,4296,4388,4488", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,99,111,79,64,93,69,61,86,64,58,64,60,56,118,57,60,56,70,129,85,77,107,74,70,96,66,65,79,89,85,78,76,69,74,87,69,99,98,73,75,106,53,72,90,95,61,63,62,98,97,91,99,82", ++ "endOffsets": "219,299,399,511,591,656,750,820,882,969,1034,1093,1158,1219,1276,1395,1453,1514,1571,1642,1772,1858,1936,2044,2119,2190,2287,2354,2420,2500,2590,2676,2755,2832,2902,2977,3065,3135,3235,3334,3408,3484,3591,3645,3718,3809,3905,3967,4031,4094,4193,4291,4383,4483,4566" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3042,3142,3254,3334,3399,3493,3563,3625,3712,3777,3836,3901,3962,4019,4138,4196,4257,4314,4385,4515,4601,4679,4787,4862,4933,5030,5097,5163,5243,5333,5419,5498,5575,5645,5720,5808,5878,5978,6077,6151,6227,6334,6388,6461,6552,6648,6710,6774,6837,6936,7034,7126,7226", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,99,111,79,64,93,69,61,86,64,58,64,60,56,118,57,60,56,70,129,85,77,107,74,70,96,66,65,79,89,85,78,76,69,74,87,69,99,98,73,75,106,53,72,90,95,61,63,62,98,97,91,99,82", ++ "endOffsets": "269,3037,3137,3249,3329,3394,3488,3558,3620,3707,3772,3831,3896,3957,4014,4133,4191,4252,4309,4380,4510,4596,4674,4782,4857,4928,5025,5092,5158,5238,5328,5414,5493,5570,5640,5715,5803,5873,5973,6072,6146,6222,6329,6383,6456,6547,6643,6705,6769,6832,6931,7029,7121,7221,7304" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,2793", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,376,475,585,672,775,896,974,1050,1141,1234,1326,1420,1520,1613,1708,1802,1893,1984,2067,2171,2275,2375,2484,2593,2702,2864,7309", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "371,470,580,667,770,891,969,1045,1136,1229,1321,1415,1515,1608,1703,1797,1888,1979,2062,2166,2270,2370,2479,2588,2697,2859,2957,7388" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ms_values-ms.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7369", ++ "endColumns": "100", ++ "endOffsets": "7465" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,2800", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "284,395,500,608,695,799,910,989,1067,1158,1251,1346,1440,1538,1631,1726,1820,1911,2002,2082,2194,2302,2399,2508,2612,2719,2878,7288", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "390,495,603,690,794,905,984,1062,1153,1246,1341,1435,1533,1626,1721,1815,1906,1997,2077,2189,2297,2394,2503,2607,2714,2873,2974,7364" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,234,321,424,540,623,688,781,846,905,992,1054,1114,1180,1242,1296,1404,1461,1522,1577,1648,1768,1859,1945,2063,2149,2235,2323,2390,2456,2527,2605,2688,2761,2837,2910,2981,3073,3146,3236,3329,3403,3474,3565,3617,3685,3769,3854,3916,3980,4043,4147,4253,4349,4457", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,102,115,82,64,92,64,58,86,61,59,65,61,53,107,56,60,54,70,119,90,85,117,85,85,87,66,65,70,77,82,72,75,72,70,91,72,89,92,73,70,90,51,67,83,84,61,63,62,103,105,95,107,85", ++ "endOffsets": "229,316,419,535,618,683,776,841,900,987,1049,1109,1175,1237,1291,1399,1456,1517,1572,1643,1763,1854,1940,2058,2144,2230,2318,2385,2451,2522,2600,2683,2756,2832,2905,2976,3068,3141,3231,3324,3398,3469,3560,3612,3680,3764,3849,3911,3975,4038,4142,4248,4344,4452,4538" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2979,3066,3169,3285,3368,3433,3526,3591,3650,3737,3799,3859,3925,3987,4041,4149,4206,4267,4322,4393,4513,4604,4690,4808,4894,4980,5068,5135,5201,5272,5350,5433,5506,5582,5655,5726,5818,5891,5981,6074,6148,6219,6310,6362,6430,6514,6599,6661,6725,6788,6892,6998,7094,7202", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,102,115,82,64,92,64,58,86,61,59,65,61,53,107,56,60,54,70,119,90,85,117,85,85,87,66,65,70,77,82,72,75,72,70,91,72,89,92,73,70,90,51,67,83,84,61,63,62,103,105,95,107,85", ++ "endOffsets": "279,3061,3164,3280,3363,3428,3521,3586,3645,3732,3794,3854,3920,3982,4036,4144,4201,4262,4317,4388,4508,4599,4685,4803,4889,4975,5063,5130,5196,5267,5345,5428,5501,5577,5650,5721,5813,5886,5976,6069,6143,6214,6305,6357,6425,6509,6594,6656,6720,6783,6887,6993,7089,7197,7283" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-land_values-land.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-land/values-land.xml", ++ "from": { ++ "startLines": "2,3,4", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,125,196", ++ "endColumns": "69,70,67", ++ "endOffsets": "120,191,259" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-land/values-land.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,26,32", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,204,277,347,419,489,554,621,691,763,832,901,983,1073,1149,1217,1284,1362,1427,1494,1666,2061", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,25,31,36", ++ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10", ++ "endOffsets": "125,199,272,342,414,484,549,616,686,758,827,896,978,1068,1144,1212,1279,1357,1422,1489,1661,2056,2325" ++ }, ++ "to": { ++ "startLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,29,35", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,339,413,486,556,628,698,763,830,900,972,1041,1110,1192,1282,1358,1426,1493,1571,1636,1703,1875,2270", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,28,34,39", ++ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10", ++ "endOffsets": "334,408,481,551,623,693,758,825,895,967,1036,1105,1187,1277,1353,1421,1488,1566,1631,1698,1870,2265,2534" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ro_values-ro.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,276,363,464,585,669,735,830,904,964,1048,1114,1172,1245,1308,1364,1483,1540,1601,1657,1731,1876,1962,2046,2149,2231,2314,2404,2471,2537,2610,2688,2776,2847,2924,2998,3070,3161,3235,3330,3428,3502,3582,3683,3736,3802,3891,3981,4043,4107,4170,4282,4395,4505,4617", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,86,100,120,83,65,94,73,59,83,65,57,72,62,55,118,56,60,55,73,144,85,83,102,81,82,89,66,65,72,77,87,70,76,73,71,90,73,94,97,73,79,100,52,65,88,89,61,63,62,111,112,109,111,78", ++ "endOffsets": "271,358,459,580,664,730,825,899,959,1043,1109,1167,1240,1303,1359,1478,1535,1596,1652,1726,1871,1957,2041,2144,2226,2309,2399,2466,2532,2605,2683,2771,2842,2919,2993,3065,3156,3230,3325,3423,3497,3577,3678,3731,3797,3886,3976,4038,4102,4165,4277,4390,4500,4612,4691" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3072,3159,3260,3381,3465,3531,3626,3700,3760,3844,3910,3968,4041,4104,4160,4279,4336,4397,4453,4527,4672,4758,4842,4945,5027,5110,5200,5267,5333,5406,5484,5572,5643,5720,5794,5866,5957,6031,6126,6224,6298,6378,6479,6532,6598,6687,6777,6839,6903,6966,7078,7191,7301,7413", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,100,120,83,65,94,73,59,83,65,57,72,62,55,118,56,60,55,73,144,85,83,102,81,82,89,66,65,72,77,87,70,76,73,71,90,73,94,97,73,79,100,52,65,88,89,61,63,62,111,112,109,111,78", ++ "endOffsets": "321,3154,3255,3376,3460,3526,3621,3695,3755,3839,3905,3963,4036,4099,4155,4274,4331,4392,4448,4522,4667,4753,4837,4940,5022,5105,5195,5262,5328,5401,5479,5567,5638,5715,5789,5861,5952,6026,6121,6219,6293,6373,6474,6527,6593,6682,6772,6834,6898,6961,7073,7186,7296,7408,7487" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,2851", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,2930" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "326,447,551,664,748,852,973,1058,1138,1229,1322,1417,1511,1611,1704,1799,1893,1984,2076,2159,2271,2379,2479,2593,2699,2805,2969,7492", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "442,546,659,743,847,968,1053,1133,1224,1317,1412,1506,1606,1699,1794,1888,1979,2071,2154,2266,2374,2474,2588,2694,2800,2964,3067,7571" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7576", ++ "endColumns": "100", ++ "endOffsets": "7672" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w480dp-port-v13/values-w480dp-port-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478", ++ "endColumns": "58,55,55,66,64,54,64,68", ++ "endOffsets": "109,165,221,288,353,408,473,542" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-bg_values-bg.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7565", ++ "endColumns": "100", ++ "endOffsets": "7661" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,303,398,531,620,686,783,863,925,1014,1079,1138,1211,1274,1328,1456,1513,1575,1629,1702,1845,1929,2017,2123,2211,2299,2384,2451,2517,2592,2668,2754,2831,2907,2984,3058,3149,3224,3315,3407,3481,3568,3659,3714,3780,3863,3949,4011,4075,4138,4255,4368,4479,4596", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,94,132,88,65,96,79,61,88,64,58,72,62,53,127,56,61,53,72,142,83,87,105,87,87,84,66,65,74,75,85,76,75,76,73,90,74,90,91,73,86,90,54,65,82,85,61,63,62,116,112,110,116,85", ++ "endOffsets": "215,298,393,526,615,681,778,858,920,1009,1074,1133,1206,1269,1323,1451,1508,1570,1624,1697,1840,1924,2012,2118,2206,2294,2379,2446,2512,2587,2663,2749,2826,2902,2979,3053,3144,3219,3310,3402,3476,3563,3654,3709,3775,3858,3944,4006,4070,4133,4250,4363,4474,4591,4677" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3019,3102,3197,3330,3419,3485,3582,3662,3724,3813,3878,3937,4010,4073,4127,4255,4312,4374,4428,4501,4644,4728,4816,4922,5010,5098,5183,5250,5316,5391,5467,5553,5630,5706,5783,5857,5948,6023,6114,6206,6280,6367,6458,6513,6579,6662,6748,6810,6874,6937,7054,7167,7278,7395", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,94,132,88,65,96,79,61,88,64,58,72,62,53,127,56,61,53,72,142,83,87,105,87,87,84,66,65,74,75,85,76,75,76,73,90,74,90,91,73,86,90,54,65,82,85,61,63,62,116,112,110,116,85", ++ "endOffsets": "265,3097,3192,3325,3414,3480,3577,3657,3719,3808,3873,3932,4005,4068,4122,4250,4307,4369,4423,4496,4639,4723,4811,4917,5005,5093,5178,5245,5311,5386,5462,5548,5625,5701,5778,5852,5943,6018,6109,6201,6275,6362,6453,6508,6574,6657,6743,6805,6869,6932,7049,7162,7273,7390,7476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,2854", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,2933" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,390,496,601,687,797,918,998,1075,1166,1259,1354,1448,1548,1641,1736,1844,1935,2026,2109,2223,2331,2431,2545,2652,2760,2920,7481", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "385,491,596,682,792,913,993,1070,1161,1254,1349,1443,1543,1636,1731,1839,1930,2021,2104,2218,2326,2426,2540,2647,2755,2915,3014,7560" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-zh-rHK_values-zh-rHK.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,2666", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,2740" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,440,540,622,719,827,904,979,1071,1165,1256,1352,1447,1541,1637,1729,1821,1913,1991,2087,2182,2277,2374,2470,2568,2719,6583", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "342,435,535,617,714,822,899,974,1066,1160,1251,1347,1442,1536,1632,1724,1816,1908,1986,2082,2177,2272,2369,2465,2563,2714,2808,6657" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6662", ++ "endColumns": "100", ++ "endOffsets": "6758" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,269,359,466,539,601,679,738,796,874,931,987,1046,1104,1158,1244,1300,1358,1412,1477,1570,1644,1722,1812,1875,1938,2015,2082,2148,2212,2281,2356,2417,2488,2555,2615,2695,2758,2841,2926,3000,3065,3141,3189,3253,3329,3407,3469,3533,3596,3676,3751,3827,3903", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,66,89,106,72,61,77,58,57,77,56,55,58,57,53,85,55,57,53,64,92,73,77,89,62,62,76,66,65,63,68,74,60,70,66,59,79,62,82,84,73,64,75,47,63,75,77,61,63,62,79,74,75,75,68", ++ "endOffsets": "197,264,354,461,534,596,674,733,791,869,926,982,1041,1099,1153,1239,1295,1353,1407,1472,1565,1639,1717,1807,1870,1933,2010,2077,2143,2207,2276,2351,2412,2483,2550,2610,2690,2753,2836,2921,2995,3060,3136,3184,3248,3324,3402,3464,3528,3591,3671,3746,3822,3898,3967" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2813,2880,2970,3077,3150,3212,3290,3349,3407,3485,3542,3598,3657,3715,3769,3855,3911,3969,4023,4088,4181,4255,4333,4423,4486,4549,4626,4693,4759,4823,4892,4967,5028,5099,5166,5226,5306,5369,5452,5537,5611,5676,5752,5800,5864,5940,6018,6080,6144,6207,6287,6362,6438,6514", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,66,89,106,72,61,77,58,57,77,56,55,58,57,53,85,55,57,53,64,92,73,77,89,62,62,76,66,65,63,68,74,60,70,66,59,79,62,82,84,73,64,75,47,63,75,77,61,63,62,79,74,75,75,68", ++ "endOffsets": "247,2875,2965,3072,3145,3207,3285,3344,3402,3480,3537,3593,3652,3710,3764,3850,3906,3964,4018,4083,4176,4250,4328,4418,4481,4544,4621,4688,4754,4818,4887,4962,5023,5094,5161,5221,5301,5364,5447,5532,5606,5671,5747,5795,5859,5935,6013,6075,6139,6202,6282,6357,6433,6509,6578" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-v21_values-v21.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,106,109,152,155,158,160,162,164,167,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,220,222,223,224,234,235,236,248", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4213,4362,4511,4623,4770,4923,5070,5145,5234,5321,5422,5525,8499,8684,11670,11867,12066,12189,12312,12425,12608,12863,13064,13153,13264,13497,13598,13693,13816,13945,14062,14239,14338,14473,14616,14751,14870,15071,15190,15283,15394,15450,15557,15752,15863,15996,16091,16182,16273,16366,16483,16622,16693,16776,17456,17513,17571,18265", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,105,108,151,154,157,159,161,163,166,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,219,221,222,223,233,234,235,247,259", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4208,4357,4506,4618,4765,4918,5065,5140,5229,5316,5417,5520,8494,8679,11665,11862,12061,12184,12307,12420,12603,12858,13059,13148,13259,13492,13593,13688,13811,13940,14057,14234,14333,14468,14611,14746,14865,15066,15185,15278,15389,15445,15552,15747,15858,15991,16086,16177,16268,16361,16478,16617,16688,16771,17451,17508,17566,18260,18966" ++ }, ++ "to": { ++ "startLines": "16,17,18,19,20,21,22,23,24,25,26,27,28,29,31,33,34,35,36,38,40,41,42,43,44,46,48,50,52,54,56,57,62,64,66,67,68,70,72,73,74,75,80,90,133,136,179,194,200,202,204,206,209,213,216,217,218,221,222,223,224,225,226,229,230,232,234,236,238,242,244,245,246,247,249,253,255,257,258,259,260,261,262,290,291,292,302,303,304,316", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "1215,1306,1409,1512,1617,1724,1833,1942,2051,2160,2269,2376,2479,2598,2753,2908,3013,3134,3235,3382,3523,3626,3745,3852,3955,4110,4281,4430,4595,4752,4903,5022,5373,5522,5671,5783,5930,6083,6230,6305,6394,6481,7006,7852,10610,10795,13565,14698,15128,15251,15374,15487,15670,15925,16126,16215,16326,16559,16660,16755,16878,17007,17124,17301,17400,17535,17678,17813,17932,18133,18252,18345,18456,18512,18619,18814,18925,19058,19153,19244,19335,19428,19545,21777,21848,21931,22554,22611,22669,23293", ++ "endLines": "16,17,18,19,20,21,22,23,24,25,26,27,28,30,32,33,34,35,37,39,40,41,42,43,45,47,49,51,53,55,56,61,63,65,66,67,69,71,72,73,74,75,80,132,135,178,181,196,201,203,205,208,212,215,216,217,220,221,222,223,224,225,228,229,231,233,235,237,241,243,244,245,246,248,252,254,256,257,258,259,260,261,263,290,291,301,302,303,315,327", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "1301,1404,1507,1612,1719,1828,1937,2046,2155,2264,2371,2474,2593,2748,2903,3008,3129,3230,3377,3518,3621,3740,3847,3950,4105,4276,4425,4590,4747,4898,5017,5368,5517,5666,5778,5925,6078,6225,6300,6389,6476,6577,7104,10605,10790,13560,13757,14892,15246,15369,15482,15665,15920,16121,16210,16321,16554,16655,16750,16873,17002,17119,17296,17395,17530,17673,17808,17927,18128,18247,18340,18451,18507,18614,18809,18920,19053,19148,19239,19330,19423,19540,19679,21843,21926,22549,22606,22664,23288,23924" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,13", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,173,237,304,368,484,610,736,864,1036", ++ "endLines": "2,3,4,5,6,7,8,9,12,17", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" ++ }, ++ "to": { ++ "startLines": "2,13,14,15,328,329,330,331,393,396", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,1020,1084,1151,23929,24045,24171,24297,28280,28452", ++ "endLines": "2,13,14,15,328,329,330,331,395,400", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,1079,1146,1210,24040,24166,24292,24420,28447,28799" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,22,25,28,31,34,37,40,41,44,49,60,66,72,78,84,90,91,92,93,97,100,103,106,109,113,117", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,123,202,290,378,466,554,641,728,815,902,995,1102,1207,1326,1539,1798,2069,2287,2519,2755,3005,3236,3352,3522,3843,4872,5329,5671,6015,6365,6715,6853,6997,7153,7546,7764,7986,8212,8428,8669,8928", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,21,24,27,30,33,36,39,40,43,48,59,65,71,77,83,89,90,91,92,96,99,102,105,108,112,116,119", ++ "endColumns": "67,78,87,87,87,87,86,86,86,86,92,106,104,118,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,137,143,155,10,10,10,10,10,10,10,10", ++ "endOffsets": "118,197,285,373,461,549,636,723,810,897,990,1097,1202,1321,1534,1793,2064,2282,2514,2750,3000,3231,3347,3517,3838,4867,5324,5666,6010,6360,6710,6848,6992,7148,7541,7759,7981,8207,8423,8664,8923,9100" ++ }, ++ "to": { ++ "startLines": "3,4,5,6,7,8,9,10,11,12,76,77,78,79,81,84,87,182,185,188,191,197,264,265,268,273,284,332,338,344,350,356,357,358,359,363,366,369,372,401,405,409", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "173,241,320,408,496,584,672,759,846,933,6582,6675,6782,6887,7109,7322,7581,13762,13980,14212,14448,14897,19684,19800,19970,20291,21320,24425,24717,25011,25311,25611,25749,25893,26049,26442,26660,26882,27108,28804,29045,29304", ++ "endLines": "3,4,5,6,7,8,9,10,11,12,76,77,78,79,83,86,89,184,187,190,193,199,264,267,272,283,289,337,343,349,355,356,357,358,362,365,368,371,374,404,408,411", ++ "endColumns": "67,78,87,87,87,87,86,86,86,86,92,106,104,118,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,137,143,155,10,10,10,10,10,10,10,10", ++ "endOffsets": "236,315,403,491,579,667,754,841,928,1015,6670,6777,6882,7001,7317,7576,7847,13975,14207,14443,14693,15123,19795,19965,20286,21315,21772,24712,25006,25306,25606,25744,25888,26044,26437,26655,26877,27103,27319,29040,29299,29476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v21/values.xml", ++ "from": { ++ "startLines": "4,13", ++ "startColumns": "0,0", ++ "startOffsets": "146,621", ++ "endLines": "12,21", ++ "endColumns": "8,8", ++ "endOffsets": "620,1093" ++ }, ++ "to": { ++ "startLines": "375,384", ++ "startColumns": "4,4", ++ "startOffsets": "27324,27803", ++ "endLines": "383,392", ++ "endColumns": "8,8", ++ "endOffsets": "27798,28275" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-nb_values-nb.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,303,417,503,603,716,793,868,959,1052,1146,1240,1340,1433,1528,1626,1717,1808,1886,1989,2087,2183,2287,2386,2487,2640,2737", ++ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", ++ "endOffsets": "203,298,412,498,598,711,788,863,954,1047,1141,1235,1335,1428,1523,1621,1712,1803,1881,1984,2082,2178,2282,2381,2482,2635,2732,2812" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "266,369,464,578,664,764,877,954,1029,1120,1213,1307,1401,1501,1594,1689,1787,1878,1969,2047,2150,2248,2344,2448,2547,2648,2801,7123", ++ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", ++ "endOffsets": "364,459,573,659,759,872,949,1024,1115,1208,1302,1396,1496,1589,1684,1782,1873,1964,2042,2145,2243,2339,2443,2542,2643,2796,2893,7198" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7203", ++ "endColumns": "100", ++ "endOffsets": "7299" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,216,303,402,521,603,667,759,827,887,974,1036,1100,1168,1233,1287,1396,1454,1516,1570,1645,1765,1847,1927,2031,2109,2189,2277,2344,2410,2478,2552,2642,2713,2791,2861,2931,3020,3098,3186,3276,3348,3420,3504,3555,3621,3702,3785,3847,3911,3974,4074,4172,4265,4363", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,98,118,81,63,91,67,59,86,61,63,67,64,53,108,57,61,53,74,119,81,79,103,77,79,87,66,65,67,73,89,70,77,69,69,88,77,87,89,71,71,83,50,65,80,82,61,63,62,99,97,92,97,77", ++ "endOffsets": "211,298,397,516,598,662,754,822,882,969,1031,1095,1163,1228,1282,1391,1449,1511,1565,1640,1760,1842,1922,2026,2104,2184,2272,2339,2405,2473,2547,2637,2708,2786,2856,2926,3015,3093,3181,3271,3343,3415,3499,3550,3616,3697,3780,3842,3906,3969,4069,4167,4260,4358,4436" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2898,2985,3084,3203,3285,3349,3441,3509,3569,3656,3718,3782,3850,3915,3969,4078,4136,4198,4252,4327,4447,4529,4609,4713,4791,4871,4959,5026,5092,5160,5234,5324,5395,5473,5543,5613,5702,5780,5868,5958,6030,6102,6186,6237,6303,6384,6467,6529,6593,6656,6756,6854,6947,7045", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,98,118,81,63,91,67,59,86,61,63,67,64,53,108,57,61,53,74,119,81,79,103,77,79,87,66,65,67,73,89,70,77,69,69,88,77,87,89,71,71,83,50,65,80,82,61,63,62,99,97,92,97,77", ++ "endOffsets": "261,2980,3079,3198,3280,3344,3436,3504,3564,3651,3713,3777,3845,3910,3964,4073,4131,4193,4247,4322,4442,4524,4604,4708,4786,4866,4954,5021,5087,5155,5229,5319,5390,5468,5538,5608,5697,5775,5863,5953,6025,6097,6181,6232,6298,6379,6462,6524,6588,6651,6751,6849,6942,7040,7118" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-es-rUS_values-es-rUS.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,334,442,527,629,745,830,910,1001,1094,1189,1283,1382,1475,1574,1670,1761,1852,1934,2041,2140,2239,2347,2455,2562,2721,2821", ++ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", ++ "endOffsets": "220,329,437,522,624,740,825,905,996,1089,1184,1278,1377,1470,1569,1665,1756,1847,1929,2036,2135,2234,2342,2450,2557,2716,2816,2899" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "283,403,512,620,705,807,923,1008,1088,1179,1272,1367,1461,1560,1653,1752,1848,1939,2030,2112,2219,2318,2417,2525,2633,2740,2899,7427", ++ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", ++ "endOffsets": "398,507,615,700,802,918,1003,1083,1174,1267,1362,1456,1555,1648,1747,1843,1934,2025,2107,2214,2313,2412,2520,2628,2735,2894,2994,7505" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7510", ++ "endColumns": "100", ++ "endOffsets": "7606" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,319,421,549,630,695,790,860,923,1016,1088,1151,1225,1289,1346,1464,1522,1584,1641,1721,1855,1944,2025,2136,2217,2297,2387,2454,2520,2596,2678,2766,2839,2916,2986,3063,3152,3226,3320,3422,3494,3575,3679,3732,3799,3892,3981,4043,4107,4170,4281,4378,4480,4578", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "228,314,416,544,625,690,785,855,918,1011,1083,1146,1220,1284,1341,1459,1517,1579,1636,1716,1850,1939,2020,2131,2212,2292,2382,2449,2515,2591,2673,2761,2834,2911,2981,3058,3147,3221,3315,3417,3489,3570,3674,3727,3794,3887,3976,4038,4102,4165,4276,4373,4475,4573,4656" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2999,3085,3187,3315,3396,3461,3556,3626,3689,3782,3854,3917,3991,4055,4112,4230,4288,4350,4407,4487,4621,4710,4791,4902,4983,5063,5153,5220,5286,5362,5444,5532,5605,5682,5752,5829,5918,5992,6086,6188,6260,6341,6445,6498,6565,6658,6747,6809,6873,6936,7047,7144,7246,7344", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "278,3080,3182,3310,3391,3456,3551,3621,3684,3777,3849,3912,3986,4050,4107,4225,4283,4345,4402,4482,4616,4705,4786,4897,4978,5058,5148,5215,5281,5357,5439,5527,5600,5677,5747,5824,5913,5987,6081,6183,6255,6336,6440,6493,6560,6653,6742,6804,6868,6931,7042,7139,7241,7339,7422" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-v22_values-v22.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v22/values-v22.xml", ++ "from": { ++ "startLines": "2,3,4,9", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,553", ++ "endLines": "2,3,8,13", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,548,896" ++ }, ++ "to": { ++ "startLines": "2,3,4,9", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,487", ++ "endLines": "2,3,8,13", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,482,764" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-xlarge-v4_values-xlarge-v4.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-xlarge-v4/values-xlarge-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,126,197,267,337,405", ++ "endColumns": "70,70,69,69,67,67", ++ "endOffsets": "121,192,262,332,400,468" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-zh-rTW_values-zh-rTW.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,269,363,470,543,605,683,743,803,881,939,995,1055,1113,1167,1252,1308,1366,1420,1485,1577,1651,1728,1818,1881,1944,2021,2088,2154,2217,2285,2363,2424,2495,2562,2624,2703,2768,2851,2936,3010,3074,3150,3198,3262,3338,3416,3478,3542,3605,3685,3762,3838,3915", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,66,93,106,72,61,77,59,59,77,57,55,59,57,53,84,55,57,53,64,91,73,76,89,62,62,76,66,65,62,67,77,60,70,66,61,78,64,82,84,73,63,75,47,63,75,77,61,63,62,79,76,75,76,68", ++ "endOffsets": "197,264,358,465,538,600,678,738,798,876,934,990,1050,1108,1162,1247,1303,1361,1415,1480,1572,1646,1723,1813,1876,1939,2016,2083,2149,2212,2280,2358,2419,2490,2557,2619,2698,2763,2846,2931,3005,3069,3145,3193,3257,3333,3411,3473,3537,3600,3680,3757,3833,3910,3979" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2818,2885,2979,3086,3159,3221,3299,3359,3419,3497,3555,3611,3671,3729,3783,3868,3924,3982,4036,4101,4193,4267,4344,4434,4497,4560,4637,4704,4770,4833,4901,4979,5040,5111,5178,5240,5319,5384,5467,5552,5626,5690,5766,5814,5878,5954,6032,6094,6158,6221,6301,6378,6454,6531", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,66,93,106,72,61,77,59,59,77,57,55,59,57,53,84,55,57,53,64,91,73,76,89,62,62,76,66,65,62,67,77,60,70,66,61,78,64,82,84,73,63,75,47,63,75,77,61,63,62,79,76,75,76,68", ++ "endOffsets": "247,2880,2974,3081,3154,3216,3294,3354,3414,3492,3550,3606,3666,3724,3778,3863,3919,3977,4031,4096,4188,4262,4339,4429,4492,4555,4632,4699,4765,4828,4896,4974,5035,5106,5173,5235,5314,5379,5462,5547,5621,5685,5761,5809,5873,5949,6027,6089,6153,6216,6296,6373,6449,6526,6595" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6679", ++ "endColumns": "100", ++ "endOffsets": "6775" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,2671", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,2745" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,440,540,622,719,827,904,979,1071,1165,1262,1358,1453,1547,1643,1735,1827,1919,1997,2093,2188,2283,2380,2476,2574,2724,6600", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "342,435,535,617,714,822,899,974,1066,1160,1257,1353,1448,1542,1638,1730,1822,1914,1992,2088,2183,2278,2375,2471,2569,2719,2813,6674" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-th_values-th.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7241", ++ "endColumns": "100", ++ "endOffsets": "7337" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,240,323,422,535,615,685,775,845,905,992,1057,1118,1182,1243,1297,1398,1459,1519,1573,1643,1754,1841,1922,2035,2114,2196,2288,2355,2421,2491,2569,2655,2727,2805,2874,2943,3025,3113,3206,3300,3374,3443,3538,3590,3658,3743,3831,3893,3957,4020,4120,4213,4310,4403", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,98,112,79,69,89,69,59,86,64,60,63,60,53,100,60,59,53,69,110,86,80,112,78,81,91,66,65,69,77,85,71,77,68,68,81,87,92,93,73,68,94,51,67,84,87,61,63,62,99,92,96,92,76", ++ "endOffsets": "235,318,417,530,610,680,770,840,900,987,1052,1113,1177,1238,1292,1393,1454,1514,1568,1638,1749,1836,1917,2030,2109,2191,2283,2350,2416,2486,2564,2650,2722,2800,2869,2938,3020,3108,3201,3295,3369,3438,3533,3585,3653,3738,3826,3888,3952,4015,4115,4208,4305,4398,4475" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2919,3002,3101,3214,3294,3364,3454,3524,3584,3671,3736,3797,3861,3922,3976,4077,4138,4198,4252,4322,4433,4520,4601,4714,4793,4875,4967,5034,5100,5170,5248,5334,5406,5484,5553,5622,5704,5792,5885,5979,6053,6122,6217,6269,6337,6422,6510,6572,6636,6699,6799,6892,6989,7082", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,98,112,79,69,89,69,59,86,64,60,63,60,53,100,60,59,53,69,110,86,80,112,78,81,91,66,65,69,77,85,71,77,68,68,81,87,92,93,73,68,94,51,67,84,87,61,63,62,99,92,96,92,76", ++ "endOffsets": "285,2997,3096,3209,3289,3359,3449,3519,3579,3666,3731,3792,3856,3917,3971,4072,4133,4193,4247,4317,4428,4515,4596,4709,4788,4870,4962,5029,5095,5165,5243,5329,5401,5479,5548,5617,5699,5787,5880,5974,6048,6117,6212,6264,6332,6417,6505,6567,6631,6694,6794,6887,6984,7077,7154" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,2734", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,2811" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "290,395,488,596,681,783,893,971,1048,1139,1232,1323,1417,1517,1610,1705,1799,1890,1981,2062,2165,2263,2361,2464,2570,2671,2824,7159", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "390,483,591,676,778,888,966,1043,1134,1227,1318,1412,1512,1605,1700,1794,1885,1976,2057,2160,2258,2356,2459,2565,2666,2819,2914,7236" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-b+sr+Latn_values-b+sr+Latn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,816,898,989,1082,1177,1271,1371,1464,1559,1664,1755,1846,1932,2037,2143,2246,2353,2462,2569,2739,2836", ++ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,811,893,984,1077,1172,1266,1366,1459,1554,1659,1750,1841,1927,2032,2138,2241,2348,2457,2564,2734,2831,2918" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "329,436,537,643,729,833,955,1040,1122,1213,1306,1401,1495,1595,1688,1783,1888,1979,2070,2156,2261,2367,2470,2577,2686,2793,2963,7407", ++ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", ++ "endOffsets": "431,532,638,724,828,950,1035,1117,1208,1301,1396,1490,1590,1683,1778,1883,1974,2065,2151,2256,2362,2465,2572,2681,2788,2958,3055,7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7494", ++ "endColumns": "100", ++ "endOffsets": "7590" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,279,359,453,585,666,732,825,893,956,1059,1125,1181,1252,1312,1366,1478,1535,1596,1650,1726,1851,1938,2021,2130,2212,2295,2383,2450,2516,2590,2668,2757,2833,2909,2984,3056,3146,3219,3311,3407,3479,3555,3651,3704,3771,3858,3945,4007,4071,4134,4239,4343,4439,4546", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,79,93,131,80,65,92,67,62,102,65,55,70,59,53,111,56,60,53,75,124,86,82,108,81,82,87,66,65,73,77,88,75,75,74,71,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "274,354,448,580,661,727,820,888,951,1054,1120,1176,1247,1307,1361,1473,1530,1591,1645,1721,1846,1933,2016,2125,2207,2290,2378,2445,2511,2585,2663,2752,2828,2904,2979,3051,3141,3214,3306,3402,3474,3550,3646,3699,3766,3853,3940,4002,4066,4129,4234,4338,4434,4541,4621" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3060,3140,3234,3366,3447,3513,3606,3674,3737,3840,3906,3962,4033,4093,4147,4259,4316,4377,4431,4507,4632,4719,4802,4911,4993,5076,5164,5231,5297,5371,5449,5538,5614,5690,5765,5837,5927,6000,6092,6188,6260,6336,6432,6485,6552,6639,6726,6788,6852,6915,7020,7124,7220,7327", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,93,131,80,65,92,67,62,102,65,55,70,59,53,111,56,60,53,75,124,86,82,108,81,82,87,66,65,73,77,88,75,75,74,71,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "324,3135,3229,3361,3442,3508,3601,3669,3732,3835,3901,3957,4028,4088,4142,4254,4311,4372,4426,4502,4627,4714,4797,4906,4988,5071,5159,5226,5292,5366,5444,5533,5609,5685,5760,5832,5922,5995,6087,6183,6255,6331,6427,6480,6547,6634,6721,6783,6847,6910,7015,7119,7215,7322,7402" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-v24_values-v24.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v24/values-v24.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,212", ++ "endColumns": "156,134", ++ "endOffsets": "207,342" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-hu_values-hu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,218,295,394,514,597,661,760,835,894,1004,1073,1131,1203,1264,1319,1422,1479,1539,1594,1675,1795,1878,1966,2071,2154,2234,2328,2395,2461,2537,2619,2705,2782,2857,2936,3013,3109,3186,3278,3375,3449,3534,3631,3683,3750,3838,3925,3987,4051,4114,4212,4309,4403,4501", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,98,119,82,63,98,74,58,109,68,57,71,60,54,102,56,59,54,80,119,82,87,104,82,79,93,66,65,75,81,85,76,74,78,76,95,76,91,96,73,84,96,51,66,87,86,61,63,62,97,96,93,97,84", ++ "endOffsets": "213,290,389,509,592,656,755,830,889,999,1068,1126,1198,1259,1314,1417,1474,1534,1589,1670,1790,1873,1961,2066,2149,2229,2323,2390,2456,2532,2614,2700,2777,2852,2931,3008,3104,3181,3273,3370,3444,3529,3626,3678,3745,3833,3920,3982,4046,4109,4207,4304,4398,4496,4581" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3022,3099,3198,3318,3401,3465,3564,3639,3698,3808,3877,3935,4007,4068,4123,4226,4283,4343,4398,4479,4599,4682,4770,4875,4958,5038,5132,5199,5265,5341,5423,5509,5586,5661,5740,5817,5913,5990,6082,6179,6253,6338,6435,6487,6554,6642,6729,6791,6855,6918,7016,7113,7207,7305", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,98,119,82,63,98,74,58,109,68,57,71,60,54,102,56,59,54,80,119,82,87,104,82,79,93,66,65,75,81,85,76,74,78,76,95,76,91,96,73,84,96,51,66,87,86,61,63,62,97,96,93,97,84", ++ "endOffsets": "263,3094,3193,3313,3396,3460,3559,3634,3693,3803,3872,3930,4002,4063,4118,4221,4278,4338,4393,4474,4594,4677,4765,4870,4953,5033,5127,5194,5260,5336,5418,5504,5581,5656,5735,5812,5908,5985,6077,6174,6248,6333,6430,6482,6549,6637,6724,6786,6850,6913,7011,7108,7202,7300,7385" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7474", ++ "endColumns": "100", ++ "endOffsets": "7570" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,2859", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,2938" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "268,376,468,583,667,782,905,982,1057,1148,1241,1336,1430,1530,1623,1718,1813,1904,1995,2078,2188,2298,2398,2509,2618,2737,2919,7390", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "371,463,578,662,777,900,977,1052,1143,1236,1331,1425,1525,1618,1713,1808,1899,1990,2073,2183,2293,2393,2504,2613,2732,2914,3017,7469" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-v26_values-v26.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v26/values-v26.xml", ++ "from": { ++ "startLines": "2,3,4,8,12,16", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,130,217,431,657,896", ++ "endLines": "2,3,7,11,15,16", ++ "endColumns": "74,86,12,12,12,92", ++ "endOffsets": "125,212,426,652,891,984" ++ }, ++ "to": { ++ "startLines": "2,3,4,8,12,16", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,130,217,381,557,796", ++ "endLines": "2,3,7,11,15,16", ++ "endColumns": "74,86,12,12,12,92", ++ "endOffsets": "125,212,376,552,791,884" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ko_values-ko.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6761", ++ "endColumns": "100", ++ "endOffsets": "6857" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,2685", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,2759" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "254,351,445,546,628,726,832,912,987,1078,1171,1266,1360,1460,1553,1648,1742,1833,1924,2004,2102,2196,2291,2391,2488,2588,2740,6682", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "346,440,541,623,721,827,907,982,1073,1166,1261,1355,1455,1548,1643,1737,1828,1919,1999,2097,2191,2286,2386,2483,2583,2735,2829,6756" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,204,273,356,462,537,599,680,742,799,886,944,1002,1061,1118,1172,1267,1323,1380,1434,1500,1604,1679,1756,1847,1912,1977,2056,2123,2189,2253,2323,2400,2468,2539,2606,2676,2756,2833,2913,2995,3067,3132,3204,3252,3316,3391,3468,3530,3594,3657,3741,3820,3900,3980", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,68,82,105,74,61,80,61,56,86,57,57,58,56,53,94,55,56,53,65,103,74,76,90,64,64,78,66,65,63,69,76,67,70,66,69,79,76,79,81,71,64,71,47,63,74,76,61,63,62,83,78,79,79,71", ++ "endOffsets": "199,268,351,457,532,594,675,737,794,881,939,997,1056,1113,1167,1262,1318,1375,1429,1495,1599,1674,1751,1842,1907,1972,2051,2118,2184,2248,2318,2395,2463,2534,2601,2671,2751,2828,2908,2990,3062,3127,3199,3247,3311,3386,3463,3525,3589,3652,3736,3815,3895,3975,4047" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2834,2903,2986,3092,3167,3229,3310,3372,3429,3516,3574,3632,3691,3748,3802,3897,3953,4010,4064,4130,4234,4309,4386,4477,4542,4607,4686,4753,4819,4883,4953,5030,5098,5169,5236,5306,5386,5463,5543,5625,5697,5762,5834,5882,5946,6021,6098,6160,6224,6287,6371,6450,6530,6610", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,68,82,105,74,61,80,61,56,86,57,57,58,56,53,94,55,56,53,65,103,74,76,90,64,64,78,66,65,63,69,76,67,70,66,69,79,76,79,81,71,64,71,47,63,74,76,61,63,62,83,78,79,79,71", ++ "endOffsets": "249,2898,2981,3087,3162,3224,3305,3367,3424,3511,3569,3627,3686,3743,3797,3892,3948,4005,4059,4125,4229,4304,4381,4472,4537,4602,4681,4748,4814,4878,4948,5025,5093,5164,5231,5301,5381,5458,5538,5620,5692,5757,5829,5877,5941,6016,6093,6155,6219,6282,6366,6445,6525,6605,6677" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-iw_values-iw.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,2761", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,2838" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "369,474,574,682,766,868,984,1063,1141,1232,1326,1420,1514,1614,1707,1802,1895,1986,2078,2159,2264,2367,2465,2570,2672,2774,2928,7179", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "469,569,677,761,863,979,1058,1136,1227,1321,1415,1509,1609,1702,1797,1890,1981,2073,2154,2259,2362,2460,2565,2667,2769,2923,3020,7256" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,319,396,489,602,682,747,835,905,968,1060,1120,1179,1242,1303,1362,1464,1521,1580,1638,1706,1817,1898,1980,2082,2153,2226,2314,2381,2447,2520,2596,2682,2752,2827,2909,2977,3062,3132,3222,3313,3387,3460,3549,3600,3667,3749,3834,3896,3960,4023,4117,4212,4302,4398", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,76,92,112,79,64,87,69,62,91,59,58,62,60,58,101,56,58,57,67,110,80,81,101,70,72,87,66,65,72,75,85,69,74,81,67,84,69,89,90,73,72,88,50,66,81,84,61,63,62,93,94,89,95,74", ++ "endOffsets": "314,391,484,597,677,742,830,900,963,1055,1115,1174,1237,1298,1357,1459,1516,1575,1633,1701,1812,1893,1975,2077,2148,2221,2309,2376,2442,2515,2591,2677,2747,2822,2904,2972,3057,3127,3217,3308,3382,3455,3544,3595,3662,3744,3829,3891,3955,4018,4112,4207,4297,4393,4468" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3102,3195,3308,3388,3453,3541,3611,3674,3766,3826,3885,3948,4009,4068,4170,4227,4286,4344,4412,4523,4604,4686,4788,4859,4932,5020,5087,5153,5226,5302,5388,5458,5533,5615,5683,5768,5838,5928,6019,6093,6166,6255,6306,6373,6455,6540,6602,6666,6729,6823,6918,7008,7104", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,92,112,79,64,87,69,62,91,59,58,62,60,58,101,56,58,57,67,110,80,81,101,70,72,87,66,65,72,75,85,69,74,81,67,84,69,89,90,73,72,88,50,66,81,84,61,63,62,93,94,89,95,74", ++ "endOffsets": "364,3097,3190,3303,3383,3448,3536,3606,3669,3761,3821,3880,3943,4004,4063,4165,4222,4281,4339,4407,4518,4599,4681,4783,4854,4927,5015,5082,5148,5221,5297,5383,5453,5528,5610,5678,5763,5833,5923,6014,6088,6161,6250,6301,6368,6450,6535,6597,6661,6724,6818,6913,7003,7099,7174" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7261", ++ "endColumns": "100", ++ "endOffsets": "7357" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ldltr-v21_values-ldltr-v21.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ldltr-v21/values-ldltr-v21.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "112", ++ "endOffsets": "163" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-v28_values-v28.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v28/values-v28.xml", ++ "from": { ++ "startLines": "2,3,4,8", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,447", ++ "endLines": "2,3,7,11", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,442,684" ++ }, ++ "to": { ++ "startLines": "10,11,12,16", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "755,830,917,1097", ++ "endLines": "10,11,15,19", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "825,912,1092,1284" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v28/values.xml", ++ "from": { ++ "startLines": "4,13", ++ "startColumns": "0,0", ++ "startOffsets": "146,625", ++ "endLines": "12,21", ++ "endColumns": "8,8", ++ "endOffsets": "624,1101" ++ }, ++ "to": { ++ "startLines": "20,29", ++ "startColumns": "4,4", ++ "startOffsets": "1289,1772", ++ "endLines": "28,37", ++ "endColumns": "8,8", ++ "endOffsets": "1767,2248" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v28/values-v28.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,143,231,319,407,494,581,668", ++ "endColumns": "87,87,87,87,86,86,86,86", ++ "endOffsets": "138,226,314,402,489,576,663,750" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-mk_values-mk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,2820", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,2900" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,488,596,682,790,909,993,1074,1165,1258,1354,1448,1548,1641,1736,1832,1923,2014,2101,2207,2313,2414,2521,2633,2737,2893,7379", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "379,483,591,677,785,904,988,1069,1160,1253,1349,1443,1543,1636,1731,1827,1918,2009,2096,2202,2308,2409,2516,2628,2732,2888,2986,7459" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,308,404,528,615,681,772,842,906,1009,1074,1134,1202,1265,1320,1448,1505,1567,1622,1697,1837,1924,2007,2110,2192,2277,2364,2431,2497,2570,2646,2735,2808,2884,2959,3029,3117,3192,3284,3376,3450,3524,3616,3669,3736,3819,3906,3968,4032,4095,4209,4316,4418,4529", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,95,123,86,65,90,69,63,102,64,59,67,62,54,127,56,61,54,74,139,86,82,102,81,84,86,66,65,72,75,88,72,75,74,69,87,74,91,91,73,73,91,52,66,82,86,61,63,62,113,106,101,110,84", ++ "endOffsets": "221,303,399,523,610,676,767,837,901,1004,1069,1129,1197,1260,1315,1443,1500,1562,1617,1692,1832,1919,2002,2105,2187,2272,2359,2426,2492,2565,2641,2730,2803,2879,2954,3024,3112,3187,3279,3371,3445,3519,3611,3664,3731,3814,3901,3963,4027,4090,4204,4311,4413,4524,4609" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2991,3073,3169,3293,3380,3446,3537,3607,3671,3774,3839,3899,3967,4030,4085,4213,4270,4332,4387,4462,4602,4689,4772,4875,4957,5042,5129,5196,5262,5335,5411,5500,5573,5649,5724,5794,5882,5957,6049,6141,6215,6289,6381,6434,6501,6584,6671,6733,6797,6860,6974,7081,7183,7294", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,95,123,86,65,90,69,63,102,64,59,67,62,54,127,56,61,54,74,139,86,82,102,81,84,86,66,65,72,75,88,72,75,74,69,87,74,91,91,73,73,91,52,66,82,86,61,63,62,113,106,101,110,84", ++ "endOffsets": "271,3068,3164,3288,3375,3441,3532,3602,3666,3769,3834,3894,3962,4025,4080,4208,4265,4327,4382,4457,4597,4684,4767,4870,4952,5037,5124,5191,5257,5330,5406,5495,5568,5644,5719,5789,5877,5952,6044,6136,6210,6284,6376,6429,6496,6579,6666,6728,6792,6855,6969,7076,7178,7289,7374" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7464", ++ "endColumns": "100", ++ "endOffsets": "7560" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-sl_values-sl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2568,2751,2851", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,107,182,99,83", ++ "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2563,2746,2846,2930" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "372,484,586,694,781,884,1003,1084,1162,1254,1348,1443,1537,1632,1726,1822,1922,2014,2106,2190,2298,2406,2506,2619,2727,2835,3018,7466", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,107,182,99,83", ++ "endOffsets": "479,581,689,776,879,998,1079,1157,1249,1343,1438,1532,1627,1721,1817,1917,2009,2101,2185,2293,2401,2501,2614,2722,2830,3013,3113,7545" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,322,410,516,642,726,792,886,962,1025,1137,1202,1256,1326,1386,1442,1554,1611,1673,1729,1802,1936,2021,2106,2219,2303,2386,2475,2542,2608,2681,2758,2842,2916,2992,3067,3140,3228,3301,3391,3482,3554,3628,3719,3771,3838,3922,4009,4071,4135,4198,4301,4398,4496,4593", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,87,105,125,83,65,93,75,62,111,64,53,69,59,55,111,56,61,55,72,133,84,84,112,83,82,88,66,65,72,76,83,73,75,74,72,87,72,89,90,71,73,90,51,66,83,86,61,63,62,102,96,97,96,76", ++ "endOffsets": "317,405,511,637,721,787,881,957,1020,1132,1197,1251,1321,1381,1437,1549,1606,1668,1724,1797,1931,2016,2101,2214,2298,2381,2470,2537,2603,2676,2753,2837,2911,2987,3062,3135,3223,3296,3386,3477,3549,3623,3714,3766,3833,3917,4004,4066,4130,4193,4296,4393,4491,4588,4665" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3118,3206,3312,3438,3522,3588,3682,3758,3821,3933,3998,4052,4122,4182,4238,4350,4407,4469,4525,4598,4732,4817,4902,5015,5099,5182,5271,5338,5404,5477,5554,5638,5712,5788,5863,5936,6024,6097,6187,6278,6350,6424,6515,6567,6634,6718,6805,6867,6931,6994,7097,7194,7292,7389", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,105,125,83,65,93,75,62,111,64,53,69,59,55,111,56,61,55,72,133,84,84,112,83,82,88,66,65,72,76,83,73,75,74,72,87,72,89,90,71,73,90,51,66,83,86,61,63,62,102,96,97,96,76", ++ "endOffsets": "367,3201,3307,3433,3517,3583,3677,3753,3816,3928,3993,4047,4117,4177,4233,4345,4402,4464,4520,4593,4727,4812,4897,5010,5094,5177,5266,5333,5399,5472,5549,5633,5707,5783,5858,5931,6019,6092,6182,6273,6345,6419,6510,6562,6629,6713,6800,6862,6926,6989,7092,7189,7287,7384,7461" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7550", ++ "endColumns": "100", ++ "endOffsets": "7646" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-ka_values-ka.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,312,411,536,624,691,788,857,920,1007,1073,1133,1202,1263,1317,1432,1491,1551,1605,1677,1807,1895,1979,2087,2165,2241,2335,2402,2468,2541,2619,2705,2778,2856,2934,3009,3099,3174,3268,3366,3440,3517,3617,3670,3738,3827,3916,3978,4043,4106,4213,4311,4411,4510", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,98,124,87,66,96,68,62,86,65,59,68,60,53,114,58,59,53,71,129,87,83,107,77,75,93,66,65,72,77,85,72,77,77,74,89,74,93,97,73,76,99,52,67,88,88,61,64,62,106,97,99,98,79", ++ "endOffsets": "223,307,406,531,619,686,783,852,915,1002,1068,1128,1197,1258,1312,1427,1486,1546,1600,1672,1802,1890,1974,2082,2160,2236,2330,2397,2463,2536,2614,2700,2773,2851,2929,3004,3094,3169,3263,3361,3435,3512,3612,3665,3733,3822,3911,3973,4038,4101,4208,4306,4406,4505,4585" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2981,3065,3164,3289,3377,3444,3541,3610,3673,3760,3826,3886,3955,4016,4070,4185,4244,4304,4358,4430,4560,4648,4732,4840,4918,4994,5088,5155,5221,5294,5372,5458,5531,5609,5687,5762,5852,5927,6021,6119,6193,6270,6370,6423,6491,6580,6669,6731,6796,6859,6966,7064,7164,7263", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,98,124,87,66,96,68,62,86,65,59,68,60,53,114,58,59,53,71,129,87,83,107,77,75,93,66,65,72,77,85,72,77,77,74,89,74,93,97,73,76,99,52,67,88,88,61,64,62,106,97,99,98,79", ++ "endOffsets": "273,3060,3159,3284,3372,3439,3536,3605,3668,3755,3821,3881,3950,4011,4065,4180,4239,4299,4353,4425,4555,4643,4727,4835,4913,4989,5083,5150,5216,5289,5367,5453,5526,5604,5682,5757,5847,5922,6016,6114,6188,6265,6365,6418,6486,6575,6664,6726,6791,6854,6961,7059,7159,7258,7338" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,2808", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,2885" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,489,600,686,791,904,987,1066,1157,1250,1345,1439,1539,1632,1727,1822,1913,2004,2085,2198,2304,2402,2515,2620,2724,2882,7343", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "381,484,595,681,786,899,982,1061,1152,1245,1340,1434,1534,1627,1722,1817,1908,1999,2080,2193,2299,2397,2510,2615,2719,2877,2976,7420" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7425", ++ "endColumns": "100", ++ "endOffsets": "7521" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w360dp-port-v13/values-w360dp-port-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478", ++ "endColumns": "58,55,55,66,64,54,64,68", ++ "endOffsets": "109,165,221,288,353,408,473,542" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-night-v8_values-night-v8.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-night-v8/values-night-v8.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,293,389,491,593,687", ++ "endColumns": "69,83,83,95,101,101,93,88", ++ "endOffsets": "120,204,288,384,486,588,682,771" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,25", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,293,389,491,593,2549", ++ "endColumns": "69,83,83,95,101,101,93,88", ++ "endOffsets": "120,204,288,384,486,588,682,2633" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-night-v8/values-night-v8.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,143,267,369,471,587,689,803,931,1047,1169,1305,1425,1559,1679,1791,1917,2041,2171,2293,2431,2565,2681", ++ "endColumns": "87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,123,129,121,137,133,115,119", ++ "endOffsets": "138,262,364,466,582,684,798,926,1042,1164,1300,1420,1554,1674,1786,1912,2036,2166,2288,2426,2560,2676,2796" ++ }, ++ "to": { ++ "startLines": "9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,26,27,28,29,30,31,32", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "687,775,899,1001,1103,1219,1321,1435,1563,1679,1801,1937,2057,2191,2311,2423,2638,2762,2892,3014,3152,3286,3402", ++ "endColumns": "87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,123,129,121,137,133,115,119", ++ "endOffsets": "770,894,996,1098,1214,1316,1430,1558,1674,1796,1932,2052,2186,2306,2418,2544,2757,2887,3009,3147,3281,3397,3517" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-am_values-am.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6978", ++ "endColumns": "100", ++ "endOffsets": "7074" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,216,291,380,482,559,623,708,770,828,913,975,1033,1099,1161,1216,1312,1369,1428,1484,1551,1656,1736,1817,1916,1989,2060,2142,2209,2275,2341,2414,2495,2563,2636,2707,2774,2859,2926,3013,3101,3175,3243,3328,3379,3443,3523,3605,3667,3731,3794,3889,3978,4063,4154", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,74,88,101,76,63,84,61,57,84,61,57,65,61,54,95,56,58,55,66,104,79,80,98,72,70,81,66,65,65,72,80,67,72,70,66,84,66,86,87,73,67,84,50,63,79,81,61,63,62,94,88,84,90,75", ++ "endOffsets": "211,286,375,477,554,618,703,765,823,908,970,1028,1094,1156,1211,1307,1364,1423,1479,1546,1651,1731,1812,1911,1984,2055,2137,2204,2270,2336,2409,2490,2558,2631,2702,2769,2854,2921,3008,3096,3170,3238,3323,3374,3438,3518,3600,3662,3726,3789,3884,3973,4058,4149,4225" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2884,2959,3048,3150,3227,3291,3376,3438,3496,3581,3643,3701,3767,3829,3884,3980,4037,4096,4152,4219,4324,4404,4485,4584,4657,4728,4810,4877,4943,5009,5082,5163,5231,5304,5375,5442,5527,5594,5681,5769,5843,5911,5996,6047,6111,6191,6273,6335,6399,6462,6557,6646,6731,6822", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,74,88,101,76,63,84,61,57,84,61,57,65,61,54,95,56,58,55,66,104,79,80,98,72,70,81,66,65,65,72,80,67,72,70,66,84,66,86,87,73,67,84,50,63,79,81,61,63,62,94,88,84,90,75", ++ "endOffsets": "261,2954,3043,3145,3222,3286,3371,3433,3491,3576,3638,3696,3762,3824,3879,3975,4032,4091,4147,4214,4319,4399,4480,4579,4652,4723,4805,4872,4938,5004,5077,5158,5226,5299,5370,5437,5522,5589,5676,5764,5838,5906,5991,6042,6106,6186,6268,6330,6394,6457,6552,6641,6726,6817,6893" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,203,301,407,493,596,713,791,867,958,1051,1143,1237,1337,1430,1525,1618,1709,1800,1880,1980,2080,2176,2278,2378,2477,2627,2723", ++ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", ++ "endOffsets": "198,296,402,488,591,708,786,862,953,1046,1138,1232,1332,1425,1520,1613,1704,1795,1875,1975,2075,2171,2273,2373,2472,2622,2718,2798" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "266,364,462,568,654,757,874,952,1028,1119,1212,1304,1398,1498,1591,1686,1779,1870,1961,2041,2141,2241,2337,2439,2539,2638,2788,6898", ++ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", ++ "endOffsets": "359,457,563,649,752,869,947,1023,1114,1207,1299,1393,1493,1586,1681,1774,1865,1956,2036,2136,2236,2332,2434,2534,2633,2783,2879,6973" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-vi_values-vi.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,2798", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,2878" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,377,479,588,672,775,894,972,1048,1139,1232,1327,1421,1521,1614,1709,1803,1894,1985,2069,2173,2281,2382,2487,2602,2707,2864,7226", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "372,474,583,667,770,889,967,1043,1134,1227,1322,1416,1516,1609,1704,1798,1889,1980,2064,2168,2276,2377,2482,2597,2702,2859,2958,7306" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7311", ++ "endColumns": "100", ++ "endOffsets": "7407" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,298,397,511,591,654,748,822,881,967,1028,1086,1150,1211,1265,1382,1439,1499,1553,1628,1755,1839,1917,2017,2101,2179,2270,2337,2403,2471,2547,2628,2707,2782,2855,2931,3020,3097,3188,3282,3356,3426,3519,3568,3634,3719,3805,3867,3931,3994,4093,4198,4296,4401", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,98,113,79,62,93,73,58,85,60,57,63,60,53,116,56,59,53,74,126,83,77,99,83,77,90,66,65,67,75,80,78,74,72,75,88,76,90,93,73,69,92,48,65,84,85,61,63,62,98,104,97,104,81", ++ "endOffsets": "215,293,392,506,586,649,743,817,876,962,1023,1081,1145,1206,1260,1377,1434,1494,1548,1623,1750,1834,1912,2012,2096,2174,2265,2332,2398,2466,2542,2623,2702,2777,2850,2926,3015,3092,3183,3277,3351,3421,3514,3563,3629,3714,3800,3862,3926,3989,4088,4193,4291,4396,4478" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2963,3041,3140,3254,3334,3397,3491,3565,3624,3710,3771,3829,3893,3954,4008,4125,4182,4242,4296,4371,4498,4582,4660,4760,4844,4922,5013,5080,5146,5214,5290,5371,5450,5525,5598,5674,5763,5840,5931,6025,6099,6169,6262,6311,6377,6462,6548,6610,6674,6737,6836,6941,7039,7144", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,98,113,79,62,93,73,58,85,60,57,63,60,53,116,56,59,53,74,126,83,77,99,83,77,90,66,65,67,75,80,78,74,72,75,88,76,90,93,73,69,92,48,65,84,85,61,63,62,98,104,97,104,81", ++ "endOffsets": "265,3036,3135,3249,3329,3392,3486,3560,3619,3705,3766,3824,3888,3949,4003,4120,4177,4237,4291,4366,4493,4577,4655,4755,4839,4917,5008,5075,5141,5209,5285,5366,5445,5520,5593,5669,5758,5835,5926,6020,6094,6164,6257,6306,6372,6457,6543,6605,6669,6732,6831,6936,7034,7139,7221" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-v16_values-v16.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "5", ++ "endColumns": "12", ++ "endOffsets": "223" ++ }, ++ "to": { ++ "startLines": "3", ++ "startColumns": "4", ++ "startOffsets": "121", ++ "endLines": "6", ++ "endColumns": "12", ++ "endOffsets": "289" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "65", ++ "endOffsets": "116" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-sw600dp-v13_values-sw600dp-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,10,11,12,13,14", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,115,185,256,328,386,444,553,617,673,732,795", ++ "endLines": "2,3,4,5,6,7,9,10,11,12,13,17", ++ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10", ++ "endOffsets": "110,180,251,323,381,439,548,612,668,727,790,962" ++ }, ++ "to": { ++ "startLines": "10,11,12,13,14,15,16,18,19,20,21,22", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1229,1288,1351", ++ "endLines": "10,11,12,13,14,15,17,18,19,20,21,25", ++ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10", ++ "endOffsets": "666,736,807,879,937,995,1104,1168,1224,1283,1346,1518" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,193,263,337,413,472,543", ++ "endColumns": "68,68,69,73,75,58,70,67", ++ "endOffsets": "119,188,258,332,408,467,538,606" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-en-rIN_values-en-rIN.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-in_values-in.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7354", ++ "endColumns": "100", ++ "endOffsets": "7450" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,303,409,525,608,673,767,832,891,978,1040,1100,1166,1228,1282,1394,1451,1512,1566,1638,1764,1850,1934,2043,2124,2205,2295,2362,2428,2500,2584,2667,2742,2818,2891,2966,3051,3126,3218,3312,3386,3459,3553,3605,3674,3759,3846,3908,3972,4035,4138,4238,4333,4435", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,105,115,82,64,93,64,58,86,61,59,65,61,53,111,56,60,53,71,125,85,83,108,80,80,89,66,65,71,83,82,74,75,72,74,84,74,91,93,73,72,93,51,68,84,86,61,63,62,102,99,94,101,79", ++ "endOffsets": "219,298,404,520,603,668,762,827,886,973,1035,1095,1161,1223,1277,1389,1446,1507,1561,1633,1759,1845,1929,2038,2119,2200,2290,2357,2423,2495,2579,2662,2737,2813,2886,2961,3046,3121,3213,3307,3381,3454,3548,3600,3669,3754,3841,3903,3967,4030,4133,4233,4328,4430,4510" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2978,3057,3163,3279,3362,3427,3521,3586,3645,3732,3794,3854,3920,3982,4036,4148,4205,4266,4320,4392,4518,4604,4688,4797,4878,4959,5049,5116,5182,5254,5338,5421,5496,5572,5645,5720,5805,5880,5972,6066,6140,6213,6307,6359,6428,6513,6600,6662,6726,6789,6892,6992,7087,7189", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,105,115,82,64,93,64,58,86,61,59,65,61,53,111,56,60,53,71,125,85,83,108,80,80,89,66,65,71,83,82,74,75,72,74,84,74,91,93,73,72,93,51,68,84,86,61,63,62,102,99,94,101,79", ++ "endOffsets": "269,3052,3158,3274,3357,3422,3516,3581,3640,3727,3789,3849,3915,3977,4031,4143,4200,4261,4315,4387,4513,4599,4683,4792,4873,4954,5044,5111,5177,5249,5333,5416,5491,5567,5640,5715,5800,5875,5967,6061,6135,6208,6302,6354,6423,6508,6595,6657,6721,6784,6887,6987,7082,7184,7264" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,324,429,516,620,736,819,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1920,2023,2128,2229,2333,2442,2550,2710,2809", ++ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", ++ "endOffsets": "215,319,424,511,615,731,814,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1915,2018,2123,2224,2328,2437,2545,2705,2804,2889" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,389,493,598,685,789,905,988,1066,1157,1250,1345,1439,1539,1632,1727,1821,1912,2003,2089,2192,2297,2398,2502,2611,2719,2879,7269", ++ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", ++ "endOffsets": "384,488,593,680,784,900,983,1061,1152,1245,1340,1434,1534,1627,1722,1816,1907,1998,2084,2187,2292,2393,2497,2606,2714,2874,2973,7349" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-lv_values-lv.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7727", ++ "endColumns": "100", ++ "endOffsets": "7823" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,279,360,461,595,678,743,837,910,971,1096,1164,1225,1297,1357,1411,1531,1591,1653,1707,1784,1914,2001,2083,2194,2274,2359,2450,2517,2583,2657,2738,2822,2895,2972,3049,3123,3216,3291,3381,3472,3544,3622,3713,3767,3835,3919,4006,4068,4132,4195,4305,4418,4521,4633", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,80,100,133,82,64,93,72,60,124,67,60,71,59,53,119,59,61,53,76,129,86,81,110,79,84,90,66,65,73,80,83,72,76,76,73,92,74,89,90,71,77,90,53,67,83,86,61,63,62,109,112,102,111,76", ++ "endOffsets": "274,355,456,590,673,738,832,905,966,1091,1159,1220,1292,1352,1406,1526,1586,1648,1702,1779,1909,1996,2078,2189,2269,2354,2445,2512,2578,2652,2733,2817,2890,2967,3044,3118,3211,3286,3376,3467,3539,3617,3708,3762,3830,3914,4001,4063,4127,4190,4300,4413,4516,4628,4705" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3213,3294,3395,3529,3612,3677,3771,3844,3905,4030,4098,4159,4231,4291,4345,4465,4525,4587,4641,4718,4848,4935,5017,5128,5208,5293,5384,5451,5517,5591,5672,5756,5829,5906,5983,6057,6150,6225,6315,6406,6478,6556,6647,6701,6769,6853,6940,7002,7066,7129,7239,7352,7455,7567", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,100,133,82,64,93,72,60,124,67,60,71,59,53,119,59,61,53,76,129,86,81,110,79,84,90,66,65,73,80,83,72,76,76,73,92,74,89,90,71,77,90,53,67,83,86,61,63,62,109,112,102,111,76", ++ "endOffsets": "324,3289,3390,3524,3607,3672,3766,3839,3900,4025,4093,4154,4226,4286,4340,4460,4520,4582,4636,4713,4843,4930,5012,5123,5203,5288,5379,5446,5512,5586,5667,5751,5824,5901,5978,6052,6145,6220,6310,6401,6473,6551,6642,6696,6764,6848,6935,6997,7061,7124,7234,7347,7450,7562,7639" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,2989", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,3067" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "329,449,559,668,754,858,980,1062,1142,1252,1360,1466,1575,1686,1789,1901,2008,2113,2213,2298,2407,2518,2617,2728,2835,2940,3114,7644", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "444,554,663,749,853,975,1057,1137,1247,1355,1461,1570,1681,1784,1896,2003,2108,2208,2293,2402,2513,2612,2723,2830,2935,3109,3208,7722" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-v18_values-v18.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v18/values-v18.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "48", ++ "endOffsets": "99" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v18/values.xml", ++ "from": { ++ "startLines": "4,12", ++ "startColumns": "0,0", ++ "startOffsets": "146,562", ++ "endLines": "11,19", ++ "endColumns": "8,8", ++ "endOffsets": "561,975" ++ }, ++ "to": { ++ "startLines": "3,11", ++ "startColumns": "4,4", ++ "startOffsets": "104,524", ++ "endLines": "10,18", ++ "endColumns": "8,8", ++ "endOffsets": "519,937" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-en-rCA_values-en-rCA.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-pt-rBR_values-pt-rBR.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,398,504,611,700,801,920,1005,1085,1176,1269,1364,1458,1558,1651,1746,1841,1932,2023,2108,2215,2326,2428,2536,2644,2754,2916,7436", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "393,499,606,695,796,915,1000,1080,1171,1264,1359,1453,1553,1646,1741,1836,1927,2018,2103,2210,2321,2423,2531,2639,2749,2911,3011,7517" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7522", ++ "endColumns": "100", ++ "endOffsets": "7618" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,312,413,533,614,678,770,849,909,999,1070,1133,1208,1272,1326,1453,1511,1573,1627,1706,1847,1934,2016,2125,2208,2292,2379,2446,2512,2586,2666,2753,2826,2903,2972,3046,3134,3211,3304,3400,3474,3554,3651,3703,3769,3856,3944,4006,4070,4133,4245,4354,4461,4571", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,100,119,80,63,91,78,59,89,70,62,74,63,53,126,57,61,53,78,140,86,81,108,82,83,86,66,65,73,79,86,72,76,68,73,87,76,92,95,73,79,96,51,65,86,87,61,63,62,111,108,106,109,76", ++ "endOffsets": "223,307,408,528,609,673,765,844,904,994,1065,1128,1203,1267,1321,1448,1506,1568,1622,1701,1842,1929,2011,2120,2203,2287,2374,2441,2507,2581,2661,2748,2821,2898,2967,3041,3129,3206,3299,3395,3469,3549,3646,3698,3764,3851,3939,4001,4065,4128,4240,4349,4456,4566,4643" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3016,3100,3201,3321,3402,3466,3558,3637,3697,3787,3858,3921,3996,4060,4114,4241,4299,4361,4415,4494,4635,4722,4804,4913,4996,5080,5167,5234,5300,5374,5454,5541,5614,5691,5760,5834,5922,5999,6092,6188,6262,6342,6439,6491,6557,6644,6732,6794,6858,6921,7033,7142,7249,7359", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,100,119,80,63,91,78,59,89,70,62,74,63,53,126,57,61,53,78,140,86,81,108,82,83,86,66,65,73,79,86,72,76,68,73,87,76,92,95,73,79,96,51,65,86,87,61,63,62,111,108,106,109,76", ++ "endOffsets": "273,3095,3196,3316,3397,3461,3553,3632,3692,3782,3853,3916,3991,4055,4109,4236,4294,4356,4410,4489,4630,4717,4799,4908,4991,5075,5162,5229,5295,5369,5449,5536,5609,5686,5755,5829,5917,5994,6087,6183,6257,6337,6434,6486,6552,6639,6727,6789,6853,6916,7028,7137,7244,7354,7431" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-is_values-is.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,225,304,401,516,598,663,751,815,876,966,1029,1091,1159,1223,1279,1402,1467,1529,1585,1656,1783,1867,1951,2057,2134,2211,2298,2365,2431,2507,2587,2676,2743,2817,2887,2953,3039,3109,3200,3290,3364,3437,3526,3577,3649,3730,3816,3878,3942,4005,4119,4222,4330,4433", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,96,114,81,64,87,63,60,89,62,61,67,63,55,122,64,61,55,70,126,83,83,105,76,76,86,66,65,75,79,88,66,73,69,65,85,69,90,89,73,72,88,50,71,80,85,61,63,62,113,102,107,102,79", ++ "endOffsets": "220,299,396,511,593,658,746,810,871,961,1024,1086,1154,1218,1274,1397,1462,1524,1580,1651,1778,1862,1946,2052,2129,2206,2293,2360,2426,2502,2582,2671,2738,2812,2882,2948,3034,3104,3195,3285,3359,3432,3521,3572,3644,3725,3811,3873,3937,4000,4114,4217,4325,4428,4508" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2949,3028,3125,3240,3322,3387,3475,3539,3600,3690,3753,3815,3883,3947,4003,4126,4191,4253,4309,4380,4507,4591,4675,4781,4858,4935,5022,5089,5155,5231,5311,5400,5467,5541,5611,5677,5763,5833,5924,6014,6088,6161,6250,6301,6373,6454,6540,6602,6666,6729,6843,6946,7054,7157", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,96,114,81,64,87,63,60,89,62,61,67,63,55,122,64,61,55,70,126,83,83,105,76,76,86,66,65,75,79,88,66,73,69,65,85,69,90,89,73,72,88,50,71,80,85,61,63,62,113,102,107,102,79", ++ "endOffsets": "270,3023,3120,3235,3317,3382,3470,3534,3595,3685,3748,3810,3878,3942,3998,4121,4186,4248,4304,4375,4502,4586,4670,4776,4853,4930,5017,5084,5150,5226,5306,5395,5462,5536,5606,5672,5758,5828,5919,6009,6083,6156,6245,6296,6368,6449,6535,6597,6661,6724,6838,6941,7049,7152,7232" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,302,414,499,600,714,795,874,965,1058,1151,1245,1351,1444,1539,1634,1725,1819,1900,2010,2117,2214,2323,2423,2526,2681,2779", ++ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", ++ "endOffsets": "200,297,409,494,595,709,790,869,960,1053,1146,1240,1346,1439,1534,1629,1720,1814,1895,2005,2112,2209,2318,2418,2521,2676,2774,2855" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "275,375,472,584,669,770,884,965,1044,1135,1228,1321,1415,1521,1614,1709,1804,1895,1989,2070,2180,2287,2384,2493,2593,2696,2851,7237", ++ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", ++ "endOffsets": "370,467,579,664,765,879,960,1039,1130,1223,1316,1410,1516,1609,1704,1799,1890,1984,2065,2175,2282,2379,2488,2588,2691,2846,2944,7313" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7318", ++ "endColumns": "100", ++ "endOffsets": "7414" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-coreNativeDebugAndroidTest-22:/values-uz_values-uz.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7407", ++ "endColumns": "100", ++ "endOffsets": "7503" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,321,416,543,627,691,794,864,931,1040,1107,1166,1240,1303,1357,1472,1530,1592,1646,1721,1850,1940,2029,2140,2222,2304,2390,2457,2523,2596,2674,2760,2832,2909,2984,3055,3149,3228,3324,3418,3492,3568,3654,3707,3773,3858,3949,4011,4075,4138,4240,4331,4427,4519", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,94,126,83,63,102,69,66,108,66,58,73,62,53,114,57,61,53,74,128,89,88,110,81,81,85,66,65,72,77,85,71,76,74,70,93,78,95,93,73,75,85,52,65,84,90,61,63,62,101,90,95,91,82", ++ "endOffsets": "233,316,411,538,622,686,789,859,926,1035,1102,1161,1235,1298,1352,1467,1525,1587,1641,1716,1845,1935,2024,2135,2217,2299,2385,2452,2518,2591,2669,2755,2827,2904,2979,3050,3144,3223,3319,3413,3487,3563,3649,3702,3768,3853,3944,4006,4070,4133,4235,4326,4422,4514,4597" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2959,3042,3137,3264,3348,3412,3515,3585,3652,3761,3828,3887,3961,4024,4078,4193,4251,4313,4367,4442,4571,4661,4750,4861,4943,5025,5111,5178,5244,5317,5395,5481,5553,5630,5705,5776,5870,5949,6045,6139,6213,6289,6375,6428,6494,6579,6670,6732,6796,6859,6961,7052,7148,7240", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,94,126,83,63,102,69,66,108,66,58,73,62,53,114,57,61,53,74,128,89,88,110,81,81,85,66,65,72,77,85,71,76,74,70,93,78,95,93,73,75,85,52,65,84,90,61,63,62,101,90,95,91,82", ++ "endOffsets": "283,3037,3132,3259,3343,3407,3510,3580,3647,3756,3823,3882,3956,4019,4073,4188,4246,4308,4362,4437,4566,4656,4745,4856,4938,5020,5106,5173,5239,5312,5390,5476,5548,5625,5700,5771,5865,5944,6040,6134,6208,6284,6370,6423,6489,6574,6665,6727,6791,6854,6956,7047,7143,7235,7318" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,405,487,587,704,789,867,958,1051,1146,1240,1334,1427,1522,1617,1708,1800,1884,1994,2100,2200,2308,2414,2516,2677,2776", ++ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", ++ "endOffsets": "205,300,400,482,582,699,784,862,953,1046,1141,1235,1329,1422,1517,1612,1703,1795,1879,1989,2095,2195,2303,2409,2511,2672,2771,2855" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,393,488,588,670,770,887,972,1050,1141,1234,1329,1423,1517,1610,1705,1800,1891,1983,2067,2177,2283,2383,2491,2597,2699,2860,7323", ++ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", ++ "endOffsets": "388,483,583,665,765,882,967,1045,1136,1229,1324,1418,1512,1605,1700,1795,1886,1978,2062,2172,2278,2378,2486,2592,2694,2855,2954,7402" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-af.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-af.json +new file mode 100644 +index 0000000..3872e32 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-af.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-af/values-af.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,229,307,407,521,602,666,754,820,883,969,1030,1088,1154,1217,1272,1390,1447,1509,1564,1633,1752,1840,1923,2032,2115,2196,2283,2350,2416,2485,2561,2647,2721,2800,2873,2944,3031,3102,3191,3281,3353,3428,3515,3566,3633,3714,3798,3860,3924,3987,4091,4200,4296,4407", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,113,80,63,87,65,62,85,60,57,65,62,54,117,56,61,54,68,118,87,82,108,82,80,86,66,65,68,75,85,73,78,72,70,86,70,88,89,71,74,86,50,66,80,83,61,63,62,103,108,95,110,76", ++ "endOffsets": "224,302,402,516,597,661,749,815,878,964,1025,1083,1149,1212,1267,1385,1442,1504,1559,1628,1747,1835,1918,2027,2110,2191,2278,2345,2411,2480,2556,2642,2716,2795,2868,2939,3026,3097,3186,3276,3348,3423,3510,3561,3628,3709,3793,3855,3919,3982,4086,4195,4291,4402,4479" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2951,3029,3129,3243,3324,3388,3476,3542,3605,3691,3752,3810,3876,3939,3994,4112,4169,4231,4286,4355,4474,4562,4645,4754,4837,4918,5005,5072,5138,5207,5283,5369,5443,5522,5595,5666,5753,5824,5913,6003,6075,6150,6237,6288,6355,6436,6520,6582,6646,6709,6813,6922,7018,7129", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,113,80,63,87,65,62,85,60,57,65,62,54,117,56,61,54,68,118,87,82,108,82,80,86,66,65,68,75,85,73,78,72,70,86,70,88,89,71,74,86,50,66,80,83,61,63,62,103,108,95,110,76", ++ "endOffsets": "274,3024,3124,3238,3319,3383,3471,3537,3600,3686,3747,3805,3871,3934,3989,4107,4164,4226,4281,4350,4469,4557,4640,4749,4832,4913,5000,5067,5133,5202,5278,5364,5438,5517,5590,5661,5748,5819,5908,5998,6070,6145,6232,6283,6350,6431,6515,6577,6641,6704,6808,6917,7013,7124,7201" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,2777", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,2853" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "279,387,483,589,674,777,895,972,1048,1139,1232,1327,1421,1520,1613,1708,1807,1902,1996,2077,2184,2289,2386,2494,2597,2699,2853,7206", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "382,478,584,669,772,890,967,1043,1134,1227,1322,1416,1515,1608,1703,1802,1897,1991,2072,2179,2284,2381,2489,2592,2694,2848,2946,7282" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7287", ++ "endColumns": "100", ++ "endOffsets": "7383" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-am.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-am.json +new file mode 100644 +index 0000000..cd1f525 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-am.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-am/values-am.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6978", ++ "endColumns": "100", ++ "endOffsets": "7074" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,216,291,380,482,559,623,708,770,828,913,975,1033,1099,1161,1216,1312,1369,1428,1484,1551,1656,1736,1817,1916,1989,2060,2142,2209,2275,2341,2414,2495,2563,2636,2707,2774,2859,2926,3013,3101,3175,3243,3328,3379,3443,3523,3605,3667,3731,3794,3889,3978,4063,4154", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,74,88,101,76,63,84,61,57,84,61,57,65,61,54,95,56,58,55,66,104,79,80,98,72,70,81,66,65,65,72,80,67,72,70,66,84,66,86,87,73,67,84,50,63,79,81,61,63,62,94,88,84,90,75", ++ "endOffsets": "211,286,375,477,554,618,703,765,823,908,970,1028,1094,1156,1211,1307,1364,1423,1479,1546,1651,1731,1812,1911,1984,2055,2137,2204,2270,2336,2409,2490,2558,2631,2702,2769,2854,2921,3008,3096,3170,3238,3323,3374,3438,3518,3600,3662,3726,3789,3884,3973,4058,4149,4225" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2884,2959,3048,3150,3227,3291,3376,3438,3496,3581,3643,3701,3767,3829,3884,3980,4037,4096,4152,4219,4324,4404,4485,4584,4657,4728,4810,4877,4943,5009,5082,5163,5231,5304,5375,5442,5527,5594,5681,5769,5843,5911,5996,6047,6111,6191,6273,6335,6399,6462,6557,6646,6731,6822", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,74,88,101,76,63,84,61,57,84,61,57,65,61,54,95,56,58,55,66,104,79,80,98,72,70,81,66,65,65,72,80,67,72,70,66,84,66,86,87,73,67,84,50,63,79,81,61,63,62,94,88,84,90,75", ++ "endOffsets": "261,2954,3043,3145,3222,3286,3371,3433,3491,3576,3638,3696,3762,3824,3879,3975,4032,4091,4147,4214,4319,4399,4480,4579,4652,4723,4805,4872,4938,5004,5077,5158,5226,5299,5370,5437,5522,5589,5676,5764,5838,5906,5991,6042,6106,6186,6268,6330,6394,6457,6552,6641,6726,6817,6893" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,203,301,407,493,596,713,791,867,958,1051,1143,1237,1337,1430,1525,1618,1709,1800,1880,1980,2080,2176,2278,2378,2477,2627,2723", ++ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", ++ "endOffsets": "198,296,402,488,591,708,786,862,953,1046,1138,1232,1332,1425,1520,1613,1704,1795,1875,1975,2075,2171,2273,2373,2472,2622,2718,2798" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "266,364,462,568,654,757,874,952,1028,1119,1212,1304,1398,1498,1591,1686,1779,1870,1961,2041,2141,2241,2337,2439,2539,2638,2788,6898", ++ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", ++ "endOffsets": "359,457,563,649,752,869,947,1023,1114,1207,1299,1393,1493,1586,1681,1774,1865,1956,2036,2136,2236,2332,2434,2534,2633,2783,2879,6973" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ar.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ar.json +new file mode 100644 +index 0000000..39d0f65 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ar.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ar/values-ar.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "92", ++ "startColumns": "4", ++ "startOffsets": "7518", ++ "endColumns": "100", ++ "endOffsets": "7614" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,420,504,605,724,801,864,955,1024,1091,1191,1256,1317,1385,1447,1505,1619,1679,1740,1797,1870,1993,2074,2154,2272,2353,2434,2523,2590,2656,2734,2814,2898,2970,3044,3117,3187,3278,3349,3439,3534,3608,3691,3784,3833,3902,3988,4073,4135,4199,4262,4371,4463,4560,4653", ++ "endLines": "9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63", ++ "endColumns": "12,83,100,118,76,62,90,68,66,99,64,60,67,61,57,113,59,60,56,72,122,80,79,117,80,80,88,66,65,77,79,83,71,73,72,69,90,70,89,94,73,82,92,48,68,85,84,61,63,62,108,91,96,92,79", ++ "endOffsets": "415,499,600,719,796,859,950,1019,1086,1186,1251,1312,1380,1442,1500,1614,1674,1735,1792,1865,1988,2069,2149,2267,2348,2429,2518,2585,2651,2729,2809,2893,2965,3039,3112,3182,3273,3344,3434,3529,3603,3686,3779,3828,3897,3983,4068,4130,4194,4257,4366,4458,4555,4648,4728" ++ }, ++ "to": { ++ "startLines": "2,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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,90", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3123,3207,3308,3427,3504,3567,3658,3727,3794,3894,3959,4020,4088,4150,4208,4322,4382,4443,4500,4573,4696,4777,4857,4975,5056,5137,5226,5293,5359,5437,5517,5601,5673,5747,5820,5890,5981,6052,6142,6237,6311,6394,6487,6536,6605,6691,6776,6838,6902,6965,7074,7166,7263,7356", ++ "endLines": "9,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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,90", ++ "endColumns": "12,83,100,118,76,62,90,68,66,99,64,60,67,61,57,113,59,60,56,72,122,80,79,117,80,80,88,66,65,77,79,83,71,73,72,69,90,70,89,94,73,82,92,48,68,85,84,61,63,62,108,91,96,92,79", ++ "endOffsets": "465,3202,3303,3422,3499,3562,3653,3722,3789,3889,3954,4015,4083,4145,4203,4317,4377,4438,4495,4568,4691,4772,4852,4970,5051,5132,5221,5288,5354,5432,5512,5596,5668,5742,5815,5885,5976,6047,6137,6232,6306,6389,6482,6531,6600,6686,6771,6833,6897,6960,7069,7161,7258,7351,7431" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,424,506,607,721,801,879,970,1063,1155,1249,1349,1442,1537,1630,1721,1815,1894,1999,2097,2195,2303,2403,2506,2661,2758", ++ "endColumns": "107,103,106,81,100,113,79,77,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "208,312,419,501,602,716,796,874,965,1058,1150,1244,1344,1437,1532,1625,1716,1810,1889,1994,2092,2190,2298,2398,2501,2656,2753,2835" ++ }, ++ "to": { ++ "startLines": "10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,91", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "470,578,682,789,871,972,1086,1166,1244,1335,1428,1520,1614,1714,1807,1902,1995,2086,2180,2259,2364,2462,2560,2668,2768,2871,3026,7436", ++ "endColumns": "107,103,106,81,100,113,79,77,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "573,677,784,866,967,1081,1161,1239,1330,1423,1515,1609,1709,1802,1897,1990,2081,2175,2254,2359,2457,2555,2663,2763,2866,3021,3118,7513" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-as.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-as.json +new file mode 100644 +index 0000000..7359415 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-as.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-as/values-as.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,406,529,608,673,762,827,886,972,1036,1099,1169,1233,1287,1392,1450,1512,1566,1638,1755,1842,1925,2035,2112,2193,2284,2351,2417,2487,2564,2651,2722,2799,2868,2937,3028,3100,3189,3278,3352,3424,3510,3560,3626,3706,3790,3852,3916,3979,4079,4176,4268,4367", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,101,122,78,64,88,64,58,85,63,62,69,63,53,104,57,61,53,71,116,86,82,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,80", ++ "endOffsets": "222,299,401,524,603,668,757,822,881,967,1031,1094,1164,1228,1282,1387,1445,1507,1561,1633,1750,1837,1920,2030,2107,2188,2279,2346,2412,2482,2559,2646,2717,2794,2863,2932,3023,3095,3184,3273,3347,3419,3505,3555,3621,3701,3785,3847,3911,3974,4074,4171,4263,4362,4443" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3013,3090,3192,3315,3394,3459,3548,3613,3672,3758,3822,3885,3955,4019,4073,4178,4236,4298,4352,4424,4541,4628,4711,4821,4898,4979,5070,5137,5203,5273,5350,5437,5508,5585,5654,5723,5814,5886,5975,6064,6138,6210,6296,6346,6412,6492,6576,6638,6702,6765,6865,6962,7054,7153", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,101,122,78,64,88,64,58,85,63,62,69,63,53,104,57,61,53,71,116,86,82,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,80", ++ "endOffsets": "272,3085,3187,3310,3389,3454,3543,3608,3667,3753,3817,3880,3950,4014,4068,4173,4231,4293,4347,4419,4536,4623,4706,4816,4893,4974,5065,5132,5198,5268,5345,5432,5503,5580,5649,5718,5809,5881,5970,6059,6133,6205,6291,6341,6407,6487,6571,6633,6697,6760,6860,6957,7049,7148,7229" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,312,419,510,612,732,809,884,975,1068,1163,1257,1357,1450,1545,1639,1730,1821,1907,2020,2128,2227,2336,2452,2572,2739,2841", ++ "endColumns": "107,98,106,90,101,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,98,108,115,119,166,101,82", ++ "endOffsets": "208,307,414,505,607,727,804,879,970,1063,1158,1252,1352,1445,1540,1634,1725,1816,1902,2015,2123,2222,2331,2447,2567,2734,2836,2919" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,385,484,591,682,784,904,981,1056,1147,1240,1335,1429,1529,1622,1717,1811,1902,1993,2079,2192,2300,2399,2508,2624,2744,2911,7234", ++ "endColumns": "107,98,106,90,101,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,98,108,115,119,166,101,82", ++ "endOffsets": "380,479,586,677,779,899,976,1051,1142,1235,1330,1424,1524,1617,1712,1806,1897,1988,2074,2187,2295,2394,2503,2619,2739,2906,3008,7312" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7317", ++ "endColumns": "100", ++ "endOffsets": "7413" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-az.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-az.json +new file mode 100644 +index 0000000..8fc1520 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-az.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-az/values-az.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,300,396,512,592,656,750,818,877,972,1036,1095,1162,1225,1279,1394,1452,1514,1568,1639,1771,1855,1935,2039,2115,2191,2275,2342,2408,2478,2556,2639,2709,2785,2863,2934,3020,3103,3196,3289,3362,3434,3528,3582,3649,3733,3821,3885,3950,4014,4116,4213,4309,4406", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,95,115,79,63,93,67,58,94,63,58,66,62,53,114,57,61,53,70,131,83,79,103,75,75,83,66,65,69,77,82,69,75,77,70,85,82,92,92,72,71,93,53,66,83,87,63,64,63,101,96,95,96,79", ++ "endOffsets": "215,295,391,507,587,651,745,813,872,967,1031,1090,1157,1220,1274,1389,1447,1509,1563,1634,1766,1850,1930,2034,2110,2186,2270,2337,2403,2473,2551,2634,2704,2780,2858,2929,3015,3098,3191,3284,3357,3429,3523,3577,3644,3728,3816,3880,3945,4009,4111,4208,4304,4401,4481" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2978,3058,3154,3270,3350,3414,3508,3576,3635,3730,3794,3853,3920,3983,4037,4152,4210,4272,4326,4397,4529,4613,4693,4797,4873,4949,5033,5100,5166,5236,5314,5397,5467,5543,5621,5692,5778,5861,5954,6047,6120,6192,6286,6340,6407,6491,6579,6643,6708,6772,6874,6971,7067,7164", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,95,115,79,63,93,67,58,94,63,58,66,62,53,114,57,61,53,70,131,83,79,103,75,75,83,66,65,69,77,82,69,75,77,70,85,82,92,92,72,71,93,53,66,83,87,63,64,63,101,96,95,96,79", ++ "endOffsets": "265,3053,3149,3265,3345,3409,3503,3571,3630,3725,3789,3848,3915,3978,4032,4147,4205,4267,4321,4392,4524,4608,4688,4792,4868,4944,5028,5095,5161,5231,5309,5392,5462,5538,5616,5687,5773,5856,5949,6042,6115,6187,6281,6335,6402,6486,6574,6638,6703,6767,6869,6966,7062,7159,7239" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,2813", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,2892" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,380,481,591,679,786,900,982,1060,1151,1244,1338,1437,1537,1630,1725,1819,1910,2002,2087,2192,2298,2398,2507,2612,2714,2872,7244", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "375,476,586,674,781,895,977,1055,1146,1239,1333,1432,1532,1625,1720,1814,1905,1997,2082,2187,2293,2393,2502,2607,2709,2867,2973,7323" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7328", ++ "endColumns": "100", ++ "endOffsets": "7424" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-b+es+419.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-b+es+419.json +new file mode 100644 +index 0000000..af69bca +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-b+es+419.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-b+es+419/values-b+es+419.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-b+es+419/values-b+es+419.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,319,421,549,630,695,790,860,923,1016,1088,1151,1225,1289,1346,1464,1522,1584,1641,1721,1855,1944,2025,2136,2217,2297,2387,2454,2520,2596,2678,2766,2839,2916,2986,3063,3152,3226,3320,3422,3494,3575,3679,3732,3799,3892,3981,4043,4107,4170,4281,4378,4480,4578", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "228,314,416,544,625,690,785,855,918,1011,1083,1146,1220,1284,1341,1459,1517,1579,1636,1716,1850,1939,2020,2131,2212,2292,2382,2449,2515,2591,2673,2761,2834,2911,2981,3058,3147,3221,3315,3417,3489,3570,3674,3727,3794,3887,3976,4038,4102,4165,4276,4373,4475,4573,4656" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-b+sr+Latn.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-b+sr+Latn.json +new file mode 100644 +index 0000000..bdbf180 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-b+sr+Latn.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,816,898,989,1082,1177,1271,1371,1464,1559,1664,1755,1846,1932,2037,2143,2246,2353,2462,2569,2739,2836", ++ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,811,893,984,1077,1172,1266,1366,1459,1554,1659,1750,1841,1927,2032,2138,2241,2348,2457,2564,2734,2831,2918" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "329,436,537,643,729,833,955,1040,1122,1213,1306,1401,1495,1595,1688,1783,1888,1979,2070,2156,2261,2367,2470,2577,2686,2793,2963,7407", ++ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", ++ "endOffsets": "431,532,638,724,828,950,1035,1117,1208,1301,1396,1490,1590,1683,1778,1883,1974,2065,2151,2256,2362,2465,2572,2681,2788,2958,3055,7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7494", ++ "endColumns": "100", ++ "endOffsets": "7590" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,279,359,453,585,666,732,825,893,956,1059,1125,1181,1252,1312,1366,1478,1535,1596,1650,1726,1851,1938,2021,2130,2212,2295,2383,2450,2516,2590,2668,2757,2833,2909,2984,3056,3146,3219,3311,3407,3479,3555,3651,3704,3771,3858,3945,4007,4071,4134,4239,4343,4439,4546", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,79,93,131,80,65,92,67,62,102,65,55,70,59,53,111,56,60,53,75,124,86,82,108,81,82,87,66,65,73,77,88,75,75,74,71,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "274,354,448,580,661,727,820,888,951,1054,1120,1176,1247,1307,1361,1473,1530,1591,1645,1721,1846,1933,2016,2125,2207,2290,2378,2445,2511,2585,2663,2752,2828,2904,2979,3051,3141,3214,3306,3402,3474,3550,3646,3699,3766,3853,3940,4002,4066,4129,4234,4338,4434,4541,4621" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3060,3140,3234,3366,3447,3513,3606,3674,3737,3840,3906,3962,4033,4093,4147,4259,4316,4377,4431,4507,4632,4719,4802,4911,4993,5076,5164,5231,5297,5371,5449,5538,5614,5690,5765,5837,5927,6000,6092,6188,6260,6336,6432,6485,6552,6639,6726,6788,6852,6915,7020,7124,7220,7327", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,93,131,80,65,92,67,62,102,65,55,70,59,53,111,56,60,53,75,124,86,82,108,81,82,87,66,65,73,77,88,75,75,74,71,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "324,3135,3229,3361,3442,3508,3601,3669,3732,3835,3901,3957,4028,4088,4142,4254,4311,4372,4426,4502,4627,4714,4797,4906,4988,5071,5159,5226,5292,5366,5444,5533,5609,5685,5760,5832,5922,5995,6087,6183,6255,6331,6427,6480,6547,6634,6721,6783,6847,6910,7015,7119,7215,7322,7402" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-be.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-be.json +new file mode 100644 +index 0000000..d5d5045 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-be.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-be/values-be.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,2835", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,2912" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "387,507,610,726,812,917,1036,1116,1193,1285,1379,1474,1568,1663,1757,1853,1948,2040,2132,2213,2319,2424,2522,2630,2736,2844,3017,7549", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "502,605,721,807,912,1031,1111,1188,1280,1374,1469,1563,1658,1752,1848,1943,2035,2127,2208,2314,2419,2517,2625,2731,2839,3012,3112,7626" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,337,419,516,632,715,782,875,952,1015,1131,1200,1259,1330,1389,1443,1564,1625,1688,1742,1815,1937,2025,2108,2230,2316,2403,2494,2561,2627,2699,2776,2860,2935,3012,3094,3170,3259,3341,3432,3528,3602,3683,3778,3832,3898,3985,4071,4133,4197,4260,4370,4477,4580,4689", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,81,96,115,82,66,92,76,62,115,68,58,70,58,53,120,60,62,53,72,121,87,82,121,85,86,90,66,65,71,76,83,74,76,81,75,88,81,90,95,73,80,94,53,65,86,85,61,63,62,109,106,102,108,79", ++ "endOffsets": "332,414,511,627,710,777,870,947,1010,1126,1195,1254,1325,1384,1438,1559,1620,1683,1737,1810,1932,2020,2103,2225,2311,2398,2489,2556,2622,2694,2771,2855,2930,3007,3089,3165,3254,3336,3427,3523,3597,3678,3773,3827,3893,3980,4066,4128,4192,4255,4365,4472,4575,4684,4764" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3117,3199,3296,3412,3495,3562,3655,3732,3795,3911,3980,4039,4110,4169,4223,4344,4405,4468,4522,4595,4717,4805,4888,5010,5096,5183,5274,5341,5407,5479,5556,5640,5715,5792,5874,5950,6039,6121,6212,6308,6382,6463,6558,6612,6678,6765,6851,6913,6977,7040,7150,7257,7360,7469", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,96,115,82,66,92,76,62,115,68,58,70,58,53,120,60,62,53,72,121,87,82,121,85,86,90,66,65,71,76,83,74,76,81,75,88,81,90,95,73,80,94,53,65,86,85,61,63,62,109,106,102,108,79", ++ "endOffsets": "382,3194,3291,3407,3490,3557,3650,3727,3790,3906,3975,4034,4105,4164,4218,4339,4400,4463,4517,4590,4712,4800,4883,5005,5091,5178,5269,5336,5402,5474,5551,5635,5710,5787,5869,5945,6034,6116,6207,6303,6377,6458,6553,6607,6673,6760,6846,6908,6972,7035,7145,7252,7355,7464,7544" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7631", ++ "endColumns": "100", ++ "endOffsets": "7727" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-bg.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-bg.json +new file mode 100644 +index 0000000..d778efb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-bg.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-bg/values-bg.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7565", ++ "endColumns": "100", ++ "endOffsets": "7661" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,303,398,531,620,686,783,863,925,1014,1079,1138,1211,1274,1328,1456,1513,1575,1629,1702,1845,1929,2017,2123,2211,2299,2384,2451,2517,2592,2668,2754,2831,2907,2984,3058,3149,3224,3315,3407,3481,3568,3659,3714,3780,3863,3949,4011,4075,4138,4255,4368,4479,4596", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,94,132,88,65,96,79,61,88,64,58,72,62,53,127,56,61,53,72,142,83,87,105,87,87,84,66,65,74,75,85,76,75,76,73,90,74,90,91,73,86,90,54,65,82,85,61,63,62,116,112,110,116,85", ++ "endOffsets": "215,298,393,526,615,681,778,858,920,1009,1074,1133,1206,1269,1323,1451,1508,1570,1624,1697,1840,1924,2012,2118,2206,2294,2379,2446,2512,2587,2663,2749,2826,2902,2979,3053,3144,3219,3310,3402,3476,3563,3654,3709,3775,3858,3944,4006,4070,4133,4250,4363,4474,4591,4677" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3019,3102,3197,3330,3419,3485,3582,3662,3724,3813,3878,3937,4010,4073,4127,4255,4312,4374,4428,4501,4644,4728,4816,4922,5010,5098,5183,5250,5316,5391,5467,5553,5630,5706,5783,5857,5948,6023,6114,6206,6280,6367,6458,6513,6579,6662,6748,6810,6874,6937,7054,7167,7278,7395", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,94,132,88,65,96,79,61,88,64,58,72,62,53,127,56,61,53,72,142,83,87,105,87,87,84,66,65,74,75,85,76,75,76,73,90,74,90,91,73,86,90,54,65,82,85,61,63,62,116,112,110,116,85", ++ "endOffsets": "265,3097,3192,3325,3414,3480,3577,3657,3719,3808,3873,3932,4005,4068,4122,4250,4307,4369,4423,4496,4639,4723,4811,4917,5005,5093,5178,5245,5311,5386,5462,5548,5625,5701,5778,5852,5943,6018,6109,6201,6275,6362,6453,6508,6574,6657,6743,6805,6869,6932,7049,7162,7273,7390,7476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,2854", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,2933" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,390,496,601,687,797,918,998,1075,1166,1259,1354,1448,1548,1641,1736,1844,1935,2026,2109,2223,2331,2431,2545,2652,2760,2920,7481", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "385,491,596,682,792,913,993,1070,1161,1254,1349,1443,1543,1636,1731,1839,1930,2021,2104,2218,2326,2426,2540,2647,2755,2915,3014,7560" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-bn.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-bn.json +new file mode 100644 +index 0000000..f8a4e99 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-bn.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-bn/values-bn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,2835", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,2917" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,490,596,685,790,911,994,1076,1167,1260,1354,1448,1548,1641,1736,1830,1921,2012,2098,2208,2312,2415,2523,2631,2736,2901,7301", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "379,485,591,680,785,906,989,1071,1162,1255,1349,1443,1543,1636,1731,1825,1916,2007,2093,2203,2307,2410,2518,2626,2731,2896,3001,7383" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7388", ++ "endColumns": "100", ++ "endOffsets": "7484" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,309,413,530,611,677,768,834,895,985,1052,1113,1182,1244,1298,1405,1464,1525,1579,1653,1773,1858,1942,2047,2118,2188,2275,2342,2408,2481,2561,2656,2725,2801,2881,2950,3045,3128,3218,3313,3387,3461,3554,3608,3675,3761,3846,3908,3972,4035,4137,4242,4335,4441", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,103,116,80,65,90,65,60,89,66,60,68,61,53,106,58,60,53,73,119,84,83,104,70,69,86,66,65,72,79,94,68,75,79,68,94,82,89,94,73,73,92,53,66,85,84,61,63,62,101,104,92,105,79", ++ "endOffsets": "221,304,408,525,606,672,763,829,890,980,1047,1108,1177,1239,1293,1400,1459,1520,1574,1648,1768,1853,1937,2042,2113,2183,2270,2337,2403,2476,2556,2651,2720,2796,2876,2945,3040,3123,3213,3308,3382,3456,3549,3603,3670,3756,3841,3903,3967,4030,4132,4237,4330,4436,4516" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3006,3089,3193,3310,3391,3457,3548,3614,3675,3765,3832,3893,3962,4024,4078,4185,4244,4305,4359,4433,4553,4638,4722,4827,4898,4968,5055,5122,5188,5261,5341,5436,5505,5581,5661,5730,5825,5908,5998,6093,6167,6241,6334,6388,6455,6541,6626,6688,6752,6815,6917,7022,7115,7221", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,103,116,80,65,90,65,60,89,66,60,68,61,53,106,58,60,53,73,119,84,83,104,70,69,86,66,65,72,79,94,68,75,79,68,94,82,89,94,73,73,92,53,66,85,84,61,63,62,101,104,92,105,79", ++ "endOffsets": "271,3084,3188,3305,3386,3452,3543,3609,3670,3760,3827,3888,3957,4019,4073,4180,4239,4300,4354,4428,4548,4633,4717,4822,4893,4963,5050,5117,5183,5256,5336,5431,5500,5576,5656,5725,5820,5903,5993,6088,6162,6236,6329,6383,6450,6536,6621,6683,6747,6810,6912,7017,7110,7216,7296" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-bs.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-bs.json +new file mode 100644 +index 0000000..4702781 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-bs.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-bs/values-bs.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,282,364,460,586,667,733,825,902,965,1073,1139,1195,1266,1326,1380,1499,1556,1618,1672,1747,1871,1959,2042,2157,2242,2328,2416,2483,2549,2623,2701,2788,2860,2937,3010,3080,3173,3245,3337,3433,3507,3583,3679,3732,3799,3886,3973,4035,4099,4162,4270,4372,4473,4578", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,81,95,125,80,65,91,76,62,107,65,55,70,59,53,118,56,61,53,74,123,87,82,114,84,85,87,66,65,73,77,86,71,76,72,69,92,71,91,95,73,75,95,52,66,86,86,61,63,62,107,101,100,104,79", ++ "endOffsets": "277,359,455,581,662,728,820,897,960,1068,1134,1190,1261,1321,1375,1494,1551,1613,1667,1742,1866,1954,2037,2152,2237,2323,2411,2478,2544,2618,2696,2783,2855,2932,3005,3075,3168,3240,3332,3428,3502,3578,3674,3727,3794,3881,3968,4030,4094,4157,4265,4367,4468,4573,4653" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3057,3139,3235,3361,3442,3508,3600,3677,3740,3848,3914,3970,4041,4101,4155,4274,4331,4393,4447,4522,4646,4734,4817,4932,5017,5103,5191,5258,5324,5398,5476,5563,5635,5712,5785,5855,5948,6020,6112,6208,6282,6358,6454,6507,6574,6661,6748,6810,6874,6937,7045,7147,7248,7353", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,95,125,80,65,91,76,62,107,65,55,70,59,53,118,56,61,53,74,123,87,82,114,84,85,87,66,65,73,77,86,71,76,72,69,92,71,91,95,73,75,95,52,66,86,86,61,63,62,107,101,100,104,79", ++ "endOffsets": "327,3134,3230,3356,3437,3503,3595,3672,3735,3843,3909,3965,4036,4096,4150,4269,4326,4388,4442,4517,4641,4729,4812,4927,5012,5098,5186,5253,5319,5393,5471,5558,5630,5707,5780,5850,5943,6015,6107,6203,6277,6353,6449,6502,6569,6656,6743,6805,6869,6932,7040,7142,7243,7348,7428" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,323,430,516,620,742,827,909,1000,1093,1188,1282,1382,1475,1570,1665,1756,1847,1935,2038,2142,2243,2348,2462,2565,2734,2830", ++ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", ++ "endOffsets": "221,318,425,511,615,737,822,904,995,1088,1183,1277,1377,1470,1565,1660,1751,1842,1930,2033,2137,2238,2343,2457,2560,2729,2825,2912" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "332,453,550,657,743,847,969,1054,1136,1227,1320,1415,1509,1609,1702,1797,1892,1983,2074,2162,2265,2369,2470,2575,2689,2792,2961,7433", ++ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", ++ "endOffsets": "448,545,652,738,842,964,1049,1131,1222,1315,1410,1504,1604,1697,1792,1887,1978,2069,2157,2260,2364,2465,2570,2684,2787,2956,3052,7515" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7520", ++ "endColumns": "100", ++ "endOffsets": "7616" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ca.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ca.json +new file mode 100644 +index 0000000..bb128d9 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ca.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ca/values-ca.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,229,317,418,546,630,695,792,872,937,1032,1104,1166,1242,1305,1362,1483,1541,1602,1659,1739,1876,1963,2047,2156,2234,2313,2402,2469,2535,2613,2694,2782,2860,2937,3011,3090,3180,3272,3364,3465,3539,3621,3722,3772,3838,3930,4017,4079,4143,4206,4329,4432,4536,4642", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,87,100,127,83,64,96,79,64,94,71,61,75,62,56,120,57,60,56,79,136,86,83,108,77,78,88,66,65,77,80,87,77,76,73,78,89,91,91,100,73,81,100,49,65,91,86,61,63,62,122,102,103,105,85", ++ "endOffsets": "224,312,413,541,625,690,787,867,932,1027,1099,1161,1237,1300,1357,1478,1536,1597,1654,1734,1871,1958,2042,2151,2229,2308,2397,2464,2530,2608,2689,2777,2855,2932,3006,3085,3175,3267,3359,3460,3534,3616,3717,3767,3833,3925,4012,4074,4138,4201,4324,4427,4531,4637,4723" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3004,3092,3193,3321,3405,3470,3567,3647,3712,3807,3879,3941,4017,4080,4137,4258,4316,4377,4434,4514,4651,4738,4822,4931,5009,5088,5177,5244,5310,5388,5469,5557,5635,5712,5786,5865,5955,6047,6139,6240,6314,6396,6497,6547,6613,6705,6792,6854,6918,6981,7104,7207,7311,7417", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,100,127,83,64,96,79,64,94,71,61,75,62,56,120,57,60,56,79,136,86,83,108,77,78,88,66,65,77,80,87,77,76,73,78,89,91,91,100,73,81,100,49,65,91,86,61,63,62,122,102,103,105,85", ++ "endOffsets": "274,3087,3188,3316,3400,3465,3562,3642,3707,3802,3874,3936,4012,4075,4132,4253,4311,4372,4429,4509,4646,4733,4817,4926,5004,5083,5172,5239,5305,5383,5464,5552,5630,5707,5781,5860,5950,6042,6134,6235,6309,6391,6492,6542,6608,6700,6787,6849,6913,6976,7099,7202,7306,7412,7498" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,228,333,440,523,629,755,839,918,1009,1102,1195,1290,1388,1481,1574,1668,1759,1850,1931,2042,2150,2248,2358,2463,2571,2731,2830", ++ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", ++ "endOffsets": "223,328,435,518,624,750,834,913,1004,1097,1190,1285,1383,1476,1569,1663,1754,1845,1926,2037,2145,2243,2353,2458,2566,2726,2825,2907" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "279,402,507,614,697,803,929,1013,1092,1183,1276,1369,1464,1562,1655,1748,1842,1933,2024,2105,2216,2324,2422,2532,2637,2745,2905,7503", ++ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", ++ "endOffsets": "397,502,609,692,798,924,1008,1087,1178,1271,1364,1459,1557,1650,1743,1837,1928,2019,2100,2211,2319,2417,2527,2632,2740,2900,2999,7580" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7585", ++ "endColumns": "100", ++ "endOffsets": "7681" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-cs.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-cs.json +new file mode 100644 +index 0000000..44db7a6 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-cs.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-cs/values-cs.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7452", ++ "endColumns": "100", ++ "endOffsets": "7548" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,323,400,492,618,699,764,863,939,1000,1089,1156,1210,1278,1338,1392,1509,1569,1631,1685,1757,1879,1963,2055,2162,2240,2322,2410,2477,2543,2615,2692,2776,2848,2925,2999,3070,3158,3229,3322,3417,3491,3565,3661,3713,3780,3866,3954,4016,4080,4143,4253,4349,4448,4546", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,76,91,125,80,64,98,75,60,88,66,53,67,59,53,116,59,61,53,71,121,83,91,106,77,81,87,66,65,71,76,83,71,76,73,70,87,70,92,94,73,73,95,51,66,85,87,61,63,62,109,95,98,97,78", ++ "endOffsets": "318,395,487,613,694,759,858,934,995,1084,1151,1205,1273,1333,1387,1504,1564,1626,1680,1752,1874,1958,2050,2157,2235,2317,2405,2472,2538,2610,2687,2771,2843,2920,2994,3065,3153,3224,3317,3412,3486,3560,3656,3708,3775,3861,3949,4011,4075,4138,4248,4344,4443,4541,4620" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3067,3144,3236,3362,3443,3508,3607,3683,3744,3833,3900,3954,4022,4082,4136,4253,4313,4375,4429,4501,4623,4707,4799,4906,4984,5066,5154,5221,5287,5359,5436,5520,5592,5669,5743,5814,5902,5973,6066,6161,6235,6309,6405,6457,6524,6610,6698,6760,6824,6887,6997,7093,7192,7290", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,91,125,80,64,98,75,60,88,66,53,67,59,53,116,59,61,53,71,121,83,91,106,77,81,87,66,65,71,76,83,71,76,73,70,87,70,92,94,73,73,95,51,66,85,87,61,63,62,109,95,98,97,78", ++ "endOffsets": "368,3139,3231,3357,3438,3503,3602,3678,3739,3828,3895,3949,4017,4077,4131,4248,4308,4370,4424,4496,4618,4702,4794,4901,4979,5061,5149,5216,5282,5354,5431,5515,5587,5664,5738,5809,5897,5968,6061,6156,6230,6304,6400,6452,6519,6605,6693,6755,6819,6882,6992,7088,7187,7285,7364" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,2799", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,2877" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "373,480,582,692,778,883,1000,1078,1154,1245,1338,1433,1527,1621,1714,1809,1906,1997,2088,2172,2276,2388,2487,2593,2704,2806,2969,7369", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "475,577,687,773,878,995,1073,1149,1240,1333,1428,1522,1616,1709,1804,1901,1992,2083,2167,2271,2383,2482,2588,2699,2801,2964,3062,7447" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-da.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-da.json +new file mode 100644 +index 0000000..816881c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-da.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-da/values-da.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,305,405,554,632,696,782,855,915,1002,1064,1126,1194,1259,1315,1433,1491,1552,1608,1683,1809,1895,1975,2086,2164,2244,2330,2397,2463,2531,2605,2694,2766,2844,2914,2987,3071,3148,3236,3325,3399,3472,3557,3606,3672,3752,3835,3897,3961,4024,4132,4227,4328,4423", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,148,77,63,85,72,59,86,61,61,67,64,55,117,57,60,55,74,125,85,79,110,77,79,85,66,65,67,73,88,71,77,69,72,83,76,87,88,73,72,84,48,65,79,82,61,63,62,107,94,100,94,79", ++ "endOffsets": "222,300,400,549,627,691,777,850,910,997,1059,1121,1189,1254,1310,1428,1486,1547,1603,1678,1804,1890,1970,2081,2159,2239,2325,2392,2458,2526,2600,2689,2761,2839,2909,2982,3066,3143,3231,3320,3394,3467,3552,3601,3667,3747,3830,3892,3956,4019,4127,4222,4323,4418,4498" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2929,3007,3107,3256,3334,3398,3484,3557,3617,3704,3766,3828,3896,3961,4017,4135,4193,4254,4310,4385,4511,4597,4677,4788,4866,4946,5032,5099,5165,5233,5307,5396,5468,5546,5616,5689,5773,5850,5938,6027,6101,6174,6259,6308,6374,6454,6537,6599,6663,6726,6834,6929,7030,7125", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,148,77,63,85,72,59,86,61,61,67,64,55,117,57,60,55,74,125,85,79,110,77,79,85,66,65,67,73,88,71,77,69,72,83,76,87,88,73,72,84,48,65,79,82,61,63,62,107,94,100,94,79", ++ "endOffsets": "272,3002,3102,3251,3329,3393,3479,3552,3612,3699,3761,3823,3891,3956,4012,4130,4188,4249,4305,4380,4506,4592,4672,4783,4861,4941,5027,5094,5160,5228,5302,5391,5463,5541,5611,5684,5768,5845,5933,6022,6096,6169,6254,6303,6369,6449,6532,6594,6658,6721,6829,6924,7025,7120,7200" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,2757", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,2832" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,377,471,587,672,772,885,963,1039,1130,1223,1316,1410,1504,1597,1692,1790,1881,1972,2051,2159,2266,2362,2475,2578,2679,2832,7205", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "372,466,582,667,767,880,958,1034,1125,1218,1311,1405,1499,1592,1687,1785,1876,1967,2046,2154,2261,2357,2470,2573,2674,2827,2924,7280" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7285", ++ "endColumns": "100", ++ "endOffsets": "7381" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-de.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-de.json +new file mode 100644 +index 0000000..0baf60c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-de.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-de/values-de.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,2832", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,2909" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,393,491,603,689,795,910,988,1063,1155,1249,1345,1446,1553,1653,1757,1855,1953,2050,2132,2243,2345,2443,2550,2653,2757,2913,7430", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "388,486,598,684,790,905,983,1058,1150,1244,1340,1441,1548,1648,1752,1850,1948,2045,2127,2238,2340,2438,2545,2648,2752,2908,3010,7507" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,322,423,545,626,692,786,856,915,1023,1092,1150,1222,1286,1340,1468,1528,1590,1644,1722,1859,1951,2035,2150,2234,2320,2410,2477,2543,2617,2699,2792,2866,2944,3016,3090,3182,3264,3353,3442,3516,3594,3680,3735,3802,3882,3966,4028,4092,4155,4262,4366,4465,4571", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,100,121,80,65,93,69,58,107,68,57,71,63,53,127,59,61,53,77,136,91,83,114,83,85,89,66,65,73,81,92,73,77,71,73,91,81,88,88,73,77,85,54,66,79,83,61,63,62,106,103,98,105,81", ++ "endOffsets": "233,317,418,540,621,687,781,851,910,1018,1087,1145,1217,1281,1335,1463,1523,1585,1639,1717,1854,1946,2030,2145,2229,2315,2405,2472,2538,2612,2694,2787,2861,2939,3011,3085,3177,3259,3348,3437,3511,3589,3675,3730,3797,3877,3961,4023,4087,4150,4257,4361,4460,4566,4648" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3015,3099,3200,3322,3403,3469,3563,3633,3692,3800,3869,3927,3999,4063,4117,4245,4305,4367,4421,4499,4636,4728,4812,4927,5011,5097,5187,5254,5320,5394,5476,5569,5643,5721,5793,5867,5959,6041,6130,6219,6293,6371,6457,6512,6579,6659,6743,6805,6869,6932,7039,7143,7242,7348", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,100,121,80,65,93,69,58,107,68,57,71,63,53,127,59,61,53,77,136,91,83,114,83,85,89,66,65,73,81,92,73,77,71,73,91,81,88,88,73,77,85,54,66,79,83,61,63,62,106,103,98,105,81", ++ "endOffsets": "283,3094,3195,3317,3398,3464,3558,3628,3687,3795,3864,3922,3994,4058,4112,4240,4300,4362,4416,4494,4631,4723,4807,4922,5006,5092,5182,5249,5315,5389,5471,5564,5638,5716,5788,5862,5954,6036,6125,6214,6288,6366,6452,6507,6574,6654,6738,6800,6864,6927,7034,7138,7237,7343,7425" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7512", ++ "endColumns": "100", ++ "endOffsets": "7608" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-el.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-el.json +new file mode 100644 +index 0000000..57de5e2 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-el.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-el/values-el.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,225,310,412,529,615,681,781,863,926,1017,1082,1144,1213,1275,1329,1467,1524,1585,1639,1712,1865,1950,2034,2143,2224,2309,2399,2466,2532,2610,2695,2780,2852,2932,3012,3083,3175,3247,3344,3441,3515,3589,3691,3747,3819,3907,3999,4061,4125,4188,4304,4412,4521,4629", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,101,116,85,65,99,81,62,90,64,61,68,61,53,137,56,60,53,72,152,84,83,108,80,84,89,66,65,77,84,84,71,79,79,70,91,71,96,96,73,73,101,55,71,87,91,61,63,62,115,107,108,107,90", ++ "endOffsets": "220,305,407,524,610,676,776,858,921,1012,1077,1139,1208,1270,1324,1462,1519,1580,1634,1707,1860,1945,2029,2138,2219,2304,2394,2461,2527,2605,2690,2775,2847,2927,3007,3078,3170,3242,3339,3436,3510,3584,3686,3742,3814,3902,3994,4056,4120,4183,4299,4407,4516,4624,4715" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3056,3141,3243,3360,3446,3512,3612,3694,3757,3848,3913,3975,4044,4106,4160,4298,4355,4416,4470,4543,4696,4781,4865,4974,5055,5140,5230,5297,5363,5441,5526,5611,5683,5763,5843,5914,6006,6078,6175,6272,6346,6420,6522,6578,6650,6738,6830,6892,6956,7019,7135,7243,7352,7460", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,101,116,85,65,99,81,62,90,64,61,68,61,53,137,56,60,53,72,152,84,83,108,80,84,89,66,65,77,84,84,71,79,79,70,91,71,96,96,73,73,101,55,71,87,91,61,63,62,115,107,108,107,90", ++ "endOffsets": "270,3136,3238,3355,3441,3507,3607,3689,3752,3843,3908,3970,4039,4101,4155,4293,4350,4411,4465,4538,4691,4776,4860,4969,5050,5135,5225,5292,5358,5436,5521,5606,5678,5758,5838,5909,6001,6073,6170,6267,6341,6415,6517,6573,6645,6733,6825,6887,6951,7014,7130,7238,7347,7455,7546" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7637", ++ "endColumns": "100", ++ "endOffsets": "7733" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,2886", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,2967" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "275,393,504,621,706,812,935,1024,1109,1200,1293,1388,1482,1582,1675,1770,1867,1958,2049,2134,2245,2354,2456,2567,2677,2785,2956,7551", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "388,499,616,701,807,930,1019,1104,1195,1288,1383,1477,1577,1670,1765,1862,1953,2044,2129,2240,2349,2451,2562,2672,2780,2951,3051,7632" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rAU.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rAU.json +new file mode 100644 +index 0000000..c4c05e4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rAU.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-en-rAU/values-en-rAU.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rCA.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rCA.json +new file mode 100644 +index 0000000..48b8bc0 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rCA.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-en-rCA/values-en-rCA.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rGB.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rGB.json +new file mode 100644 +index 0000000..3fcd2f2 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rGB.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-en-rGB/values-en-rGB.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,402,517,596,661,751,818,877,967,1031,1094,1163,1227,1281,1393,1451,1513,1567,1639,1761,1848,1929,2039,2116,2197,2288,2355,2421,2491,2568,2655,2726,2803,2872,2941,3032,3104,3193,3282,3356,3428,3514,3564,3630,3710,3794,3856,3920,3983,4083,4180,4272,4371", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,97,114,78,64,89,66,58,89,63,62,68,63,53,111,57,61,53,71,121,86,80,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,77", ++ "endOffsets": "222,299,397,512,591,656,746,813,872,962,1026,1089,1158,1222,1276,1388,1446,1508,1562,1634,1756,1843,1924,2034,2111,2192,2283,2350,2416,2486,2563,2650,2721,2798,2867,2936,3027,3099,3188,3277,3351,3423,3509,3559,3625,3705,3789,3851,3915,3978,4078,4175,4267,4366,4444" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2934,3011,3109,3224,3303,3368,3458,3525,3584,3674,3738,3801,3870,3934,3988,4100,4158,4220,4274,4346,4468,4555,4636,4746,4823,4904,4995,5062,5128,5198,5275,5362,5433,5510,5579,5648,5739,5811,5900,5989,6063,6135,6221,6271,6337,6417,6501,6563,6627,6690,6790,6887,6979,7078", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,97,114,78,64,89,66,58,89,63,62,68,63,53,111,57,61,53,71,121,86,80,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,77", ++ "endOffsets": "272,3006,3104,3219,3298,3363,3453,3520,3579,3669,3733,3796,3865,3929,3983,4095,4153,4215,4269,4341,4463,4550,4631,4741,4818,4899,4990,5057,5123,5193,5270,5357,5428,5505,5574,5643,5734,5806,5895,5984,6058,6130,6216,6266,6332,6412,6496,6558,6622,6685,6785,6882,6974,7073,7151" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,381,481,589,673,773,888,966,1041,1132,1225,1320,1414,1514,1607,1702,1796,1887,1978,2060,2163,2266,2365,2470,2574,2678,2834,7156", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "376,476,584,668,768,883,961,1036,1127,1220,1315,1409,1509,1602,1697,1791,1882,1973,2055,2158,2261,2360,2465,2569,2673,2829,2929,7234" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7239", ++ "endColumns": "100", ++ "endOffsets": "7335" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rIN.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rIN.json +new file mode 100644 +index 0000000..3bceb5b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rIN.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-en-rIN/values-en-rIN.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rXC.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rXC.json +new file mode 100644 +index 0000000..1b06761 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-en-rXC.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-en-rXC/values-en-rXC.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,5528", ++ "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185", ++ "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,5709" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "203", ++ "endOffsets": "254" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "5714", ++ "endColumns": "203", ++ "endOffsets": "5913" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-es-rUS.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-es-rUS.json +new file mode 100644 +index 0000000..04e237c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-es-rUS.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-es-rUS/values-es-rUS.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,334,442,527,629,745,830,910,1001,1094,1189,1283,1382,1475,1574,1670,1761,1852,1934,2041,2140,2239,2347,2455,2562,2721,2821", ++ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", ++ "endOffsets": "220,329,437,522,624,740,825,905,996,1089,1184,1278,1377,1470,1569,1665,1756,1847,1929,2036,2135,2234,2342,2450,2557,2716,2816,2899" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "283,403,512,620,705,807,923,1008,1088,1179,1272,1367,1461,1560,1653,1752,1848,1939,2030,2112,2219,2318,2417,2525,2633,2740,2899,7427", ++ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", ++ "endOffsets": "398,507,615,700,802,918,1003,1083,1174,1267,1362,1456,1555,1648,1747,1843,1934,2025,2107,2214,2313,2412,2520,2628,2735,2894,2994,7505" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7510", ++ "endColumns": "100", ++ "endOffsets": "7606" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,319,421,549,630,695,790,860,923,1016,1088,1151,1225,1289,1346,1464,1522,1584,1641,1721,1855,1944,2025,2136,2217,2297,2387,2454,2520,2596,2678,2766,2839,2916,2986,3063,3152,3226,3320,3422,3494,3575,3679,3732,3799,3892,3981,4043,4107,4170,4281,4378,4480,4578", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "228,314,416,544,625,690,785,855,918,1011,1083,1146,1220,1284,1341,1459,1517,1579,1636,1716,1850,1939,2020,2131,2212,2292,2382,2449,2515,2591,2673,2761,2834,2911,2981,3058,3147,3221,3315,3417,3489,3570,3674,3727,3794,3887,3976,4038,4102,4165,4276,4373,4475,4573,4656" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2999,3085,3187,3315,3396,3461,3556,3626,3689,3782,3854,3917,3991,4055,4112,4230,4288,4350,4407,4487,4621,4710,4791,4902,4983,5063,5153,5220,5286,5362,5444,5532,5605,5682,5752,5829,5918,5992,6086,6188,6260,6341,6445,6498,6565,6658,6747,6809,6873,6936,7047,7144,7246,7344", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "278,3080,3182,3310,3391,3456,3551,3621,3684,3777,3849,3912,3986,4050,4107,4225,4283,4345,4402,4482,4616,4705,4786,4897,4978,5058,5148,5215,5281,5357,5439,5527,5600,5677,5747,5824,5913,5987,6081,6183,6255,6336,6440,6493,6560,6653,6742,6804,6868,6931,7042,7139,7241,7339,7422" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-es.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-es.json +new file mode 100644 +index 0000000..6347390 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-es.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-es/values-es.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7533", ++ "endColumns": "100", ++ "endOffsets": "7629" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,320,424,546,627,692,787,868,931,1020,1089,1152,1226,1290,1346,1464,1522,1584,1640,1720,1859,1948,2030,2141,2222,2302,2392,2459,2525,2604,2686,2774,2848,2925,2995,3074,3158,3242,3334,3434,3508,3589,3691,3744,3811,3904,3993,4055,4119,4182,4295,4388,4492,4586", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,103,121,80,64,94,80,62,88,68,62,73,63,55,117,57,61,55,79,138,88,81,110,80,79,89,66,65,78,81,87,73,76,69,78,83,83,91,99,73,80,101,52,66,92,88,61,63,62,112,92,103,93,82", ++ "endOffsets": "228,315,419,541,622,687,782,863,926,1015,1084,1147,1221,1285,1341,1459,1517,1579,1635,1715,1854,1943,2025,2136,2217,2297,2387,2454,2520,2599,2681,2769,2843,2920,2990,3069,3153,3237,3329,3429,3503,3584,3686,3739,3806,3899,3988,4050,4114,4177,4290,4383,4487,4581,4664" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3014,3101,3205,3327,3408,3473,3568,3649,3712,3801,3870,3933,4007,4071,4127,4245,4303,4365,4421,4501,4640,4729,4811,4922,5003,5083,5173,5240,5306,5385,5467,5555,5629,5706,5776,5855,5939,6023,6115,6215,6289,6370,6472,6525,6592,6685,6774,6836,6900,6963,7076,7169,7273,7367", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,103,121,80,64,94,80,62,88,68,62,73,63,55,117,57,61,55,79,138,88,81,110,80,79,89,66,65,78,81,87,73,76,69,78,83,83,91,99,73,80,101,52,66,92,88,61,63,62,112,92,103,93,82", ++ "endOffsets": "278,3096,3200,3322,3403,3468,3563,3644,3707,3796,3865,3928,4002,4066,4122,4240,4298,4360,4416,4496,4635,4724,4806,4917,4998,5078,5168,5235,5301,5380,5462,5550,5624,5701,5771,5850,5934,6018,6110,6210,6284,6365,6467,6520,6587,6680,6769,6831,6895,6958,7071,7164,7268,7362,7445" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,2836", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,2914" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "283,385,498,606,691,792,920,1006,1087,1179,1273,1370,1464,1564,1658,1754,1850,1942,2034,2116,2223,2334,2433,2541,2649,2756,2915,7450", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "380,493,601,686,787,915,1001,1082,1174,1268,1365,1459,1559,1653,1749,1845,1937,2029,2111,2218,2329,2428,2536,2644,2751,2910,3009,7528" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-et.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-et.json +new file mode 100644 +index 0000000..373cb75 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-et.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-et/values-et.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,2827", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,2905" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "271,377,476,587,673,775,892,973,1050,1142,1236,1332,1434,1543,1637,1738,1832,1924,2017,2100,2211,2315,2414,2524,2626,2725,2891,7310", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "372,471,582,668,770,887,968,1045,1137,1231,1327,1429,1538,1632,1733,1827,1919,2012,2095,2206,2310,2409,2519,2621,2720,2886,2988,7388" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7393", ++ "endColumns": "100", ++ "endOffsets": "7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,221,306,405,522,604,668,753,821,885,972,1036,1095,1167,1231,1285,1404,1464,1525,1579,1652,1785,1869,1962,2070,2150,2229,2317,2384,2450,2523,2602,2688,2761,2836,2910,2982,3070,3147,3238,3330,3402,3476,3567,3621,3690,3773,3859,3921,3985,4048,4151,4255,4352,4457", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,98,116,81,63,84,67,63,86,63,58,71,63,53,118,59,60,53,72,132,83,92,107,79,78,87,66,65,72,78,85,72,74,73,71,87,76,90,91,71,73,90,53,68,82,85,61,63,62,102,103,96,104,80", ++ "endOffsets": "216,301,400,517,599,663,748,816,880,967,1031,1090,1162,1226,1280,1399,1459,1520,1574,1647,1780,1864,1957,2065,2145,2224,2312,2379,2445,2518,2597,2683,2756,2831,2905,2977,3065,3142,3233,3325,3397,3471,3562,3616,3685,3768,3854,3916,3980,4043,4146,4250,4347,4452,4533" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2993,3078,3177,3294,3376,3440,3525,3593,3657,3744,3808,3867,3939,4003,4057,4176,4236,4297,4351,4424,4557,4641,4734,4842,4922,5001,5089,5156,5222,5295,5374,5460,5533,5608,5682,5754,5842,5919,6010,6102,6174,6248,6339,6393,6462,6545,6631,6693,6757,6820,6923,7027,7124,7229", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,98,116,81,63,84,67,63,86,63,58,71,63,53,118,59,60,53,72,132,83,92,107,79,78,87,66,65,72,78,85,72,74,73,71,87,76,90,91,71,73,90,53,68,82,85,61,63,62,102,103,96,104,80", ++ "endOffsets": "266,3073,3172,3289,3371,3435,3520,3588,3652,3739,3803,3862,3934,3998,4052,4171,4231,4292,4346,4419,4552,4636,4729,4837,4917,4996,5084,5151,5217,5290,5369,5455,5528,5603,5677,5749,5837,5914,6005,6097,6169,6243,6334,6388,6457,6540,6626,6688,6752,6815,6918,7022,7119,7224,7305" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-eu.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-eu.json +new file mode 100644 +index 0000000..f7b2d7c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-eu.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-eu/values-eu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7453", ++ "endColumns": "100", ++ "endOffsets": "7549" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,312,422,508,614,738,824,905,997,1091,1187,1281,1382,1476,1572,1669,1761,1854,1936,2045,2154,2253,2362,2469,2580,2751,2850", ++ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", ++ "endOffsets": "209,307,417,503,609,733,819,900,992,1086,1182,1276,1377,1471,1567,1664,1756,1849,1931,2040,2149,2248,2357,2464,2575,2746,2845,2928" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "280,389,487,597,683,789,913,999,1080,1172,1266,1362,1456,1557,1651,1747,1844,1936,2029,2111,2220,2329,2428,2537,2644,2755,2926,7370", ++ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", ++ "endOffsets": "384,482,592,678,784,908,994,1075,1167,1261,1357,1451,1552,1646,1742,1839,1931,2024,2106,2215,2324,2423,2532,2639,2750,2921,3020,7448" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,230,310,408,523,606,673,772,840,901,989,1055,1119,1190,1253,1307,1416,1475,1538,1592,1666,1791,1881,1961,2076,2159,2241,2330,2397,2463,2534,2614,2700,2778,2856,2929,3004,3091,3178,3269,3362,3434,3510,3602,3653,3719,3803,3889,3951,4015,4078,4185,4290,4386,4492", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,97,114,82,66,98,67,60,87,65,63,70,62,53,108,58,62,53,73,124,89,79,114,82,81,88,66,65,70,79,85,77,77,72,74,86,86,90,92,71,75,91,50,65,83,85,61,63,62,106,104,95,105,82", ++ "endOffsets": "225,305,403,518,601,668,767,835,896,984,1050,1114,1185,1248,1302,1411,1470,1533,1587,1661,1786,1876,1956,2071,2154,2236,2325,2392,2458,2529,2609,2695,2773,2851,2924,2999,3086,3173,3264,3357,3429,3505,3597,3648,3714,3798,3884,3946,4010,4073,4180,4285,4381,4487,4570" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3105,3203,3318,3401,3468,3567,3635,3696,3784,3850,3914,3985,4048,4102,4211,4270,4333,4387,4461,4586,4676,4756,4871,4954,5036,5125,5192,5258,5329,5409,5495,5573,5651,5724,5799,5886,5973,6064,6157,6229,6305,6397,6448,6514,6598,6684,6746,6810,6873,6980,7085,7181,7287", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,97,114,82,66,98,67,60,87,65,63,70,62,53,108,58,62,53,73,124,89,79,114,82,81,88,66,65,70,79,85,77,77,72,74,86,86,90,92,71,75,91,50,65,83,85,61,63,62,106,104,95,105,82", ++ "endOffsets": "275,3100,3198,3313,3396,3463,3562,3630,3691,3779,3845,3909,3980,4043,4097,4206,4265,4328,4382,4456,4581,4671,4751,4866,4949,5031,5120,5187,5253,5324,5404,5490,5568,5646,5719,5794,5881,5968,6059,6152,6224,6300,6392,6443,6509,6593,6679,6741,6805,6868,6975,7080,7176,7282,7365" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fa.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fa.json +new file mode 100644 +index 0000000..d39d841 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fa.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-fa/values-fa.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7292", ++ "endColumns": "100", ++ "endOffsets": "7388" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,296,393,522,606,669,759,828,888,979,1043,1102,1169,1231,1286,1409,1467,1528,1583,1655,1792,1873,1955,2055,2129,2203,2289,2356,2422,2493,2570,2651,2724,2798,2868,2942,3028,3102,3191,3283,3357,3430,3519,3570,3637,3720,3804,3866,3930,3993,4087,4194,4287,4392", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,96,128,83,62,89,68,59,90,63,58,66,61,54,122,57,60,54,71,136,80,81,99,73,73,85,66,65,70,76,80,72,73,69,73,85,73,88,91,73,72,88,50,66,82,83,61,63,62,93,106,92,104,77", ++ "endOffsets": "209,291,388,517,601,664,754,823,883,974,1038,1097,1164,1226,1281,1404,1462,1523,1578,1650,1787,1868,1950,2050,2124,2198,2284,2351,2417,2488,2565,2646,2719,2793,2863,2937,3023,3097,3186,3278,3352,3425,3514,3565,3632,3715,3799,3861,3925,3988,4082,4189,4282,4387,4465" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2954,3036,3133,3262,3346,3409,3499,3568,3628,3719,3783,3842,3909,3971,4026,4149,4207,4268,4323,4395,4532,4613,4695,4795,4869,4943,5029,5096,5162,5233,5310,5391,5464,5538,5608,5682,5768,5842,5931,6023,6097,6170,6259,6310,6377,6460,6544,6606,6670,6733,6827,6934,7027,7132", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,96,128,83,62,89,68,59,90,63,58,66,61,54,122,57,60,54,71,136,80,81,99,73,73,85,66,65,70,76,80,72,73,69,73,85,73,88,91,73,72,88,50,66,82,83,61,63,62,93,106,92,104,77", ++ "endOffsets": "259,3031,3128,3257,3341,3404,3494,3563,3623,3714,3778,3837,3904,3966,4021,4144,4202,4263,4318,4390,4527,4608,4690,4790,4864,4938,5024,5091,5157,5228,5305,5386,5459,5533,5603,5677,5763,5837,5926,6018,6092,6165,6254,6305,6372,6455,6539,6601,6665,6728,6822,6929,7022,7127,7205" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,2795", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,374,475,586,670,771,886,966,1043,1136,1231,1323,1417,1519,1614,1711,1805,1898,1988,2070,2178,2282,2380,2486,2591,2696,2853,7210", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "369,470,581,665,766,881,961,1038,1131,1226,1318,1412,1514,1609,1706,1800,1893,1983,2065,2173,2277,2375,2481,2586,2691,2848,2949,7287" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fi.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fi.json +new file mode 100644 +index 0000000..a0f8553 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fi.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-fi/values-fi.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,306,402,510,594,659,752,827,892,980,1046,1104,1175,1241,1295,1405,1465,1529,1583,1656,1772,1856,1937,2040,2125,2210,2300,2367,2433,2510,2592,2676,2750,2829,2906,2978,3067,3140,3231,3326,3400,3473,3567,3621,3693,3779,3865,3927,3991,4054,4155,4257,4352,4455", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,95,107,83,64,92,74,64,87,65,57,70,65,53,109,59,63,53,72,115,83,80,102,84,84,89,66,65,76,81,83,73,78,76,71,88,72,90,94,73,72,93,53,71,85,85,61,63,62,100,101,94,102,78", ++ "endOffsets": "218,301,397,505,589,654,747,822,887,975,1041,1099,1170,1236,1290,1400,1460,1524,1578,1651,1767,1851,1932,2035,2120,2205,2295,2362,2428,2505,2587,2671,2745,2824,2901,2973,3062,3135,3226,3321,3395,3468,3562,3616,3688,3774,3860,3922,3986,4049,4150,4252,4347,4450,4529" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2943,3026,3122,3230,3314,3379,3472,3547,3612,3700,3766,3824,3895,3961,4015,4125,4185,4249,4303,4376,4492,4576,4657,4760,4845,4930,5020,5087,5153,5230,5312,5396,5470,5549,5626,5698,5787,5860,5951,6046,6120,6193,6287,6341,6413,6499,6585,6647,6711,6774,6875,6977,7072,7175", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,95,107,83,64,92,74,64,87,65,57,70,65,53,109,59,63,53,72,115,83,80,102,84,84,89,66,65,76,81,83,73,78,76,71,88,72,90,94,73,72,93,53,71,85,85,61,63,62,100,101,94,102,78", ++ "endOffsets": "268,3021,3117,3225,3309,3374,3467,3542,3607,3695,3761,3819,3890,3956,4010,4120,4180,4244,4298,4371,4487,4571,4652,4755,4840,4925,5015,5082,5148,5225,5307,5391,5465,5544,5621,5693,5782,5855,5946,6041,6115,6188,6282,6336,6408,6494,6580,6642,6706,6769,6870,6972,7067,7170,7249" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,2775", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,2851" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,381,481,590,676,781,899,985,1064,1155,1248,1343,1437,1531,1624,1720,1819,1910,2004,2084,2191,2292,2389,2495,2595,2693,2843,7254", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "376,476,585,671,776,894,980,1059,1150,1243,1338,1432,1526,1619,1715,1814,1905,1999,2079,2186,2287,2384,2490,2590,2688,2838,2938,7330" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7335", ++ "endColumns": "100", ++ "endOffsets": "7431" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fr-rCA.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fr-rCA.json +new file mode 100644 +index 0000000..0721f68 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fr-rCA.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-fr-rCA/values-fr-rCA.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,320,420,542,627,693,790,870,932,1024,1098,1159,1238,1302,1356,1472,1531,1593,1647,1729,1858,1950,2034,2148,2227,2308,2401,2468,2534,2613,2694,2785,2857,2935,3010,3082,3179,3256,3354,3452,3530,3611,3711,3768,3834,3917,4004,4066,4130,4193,4295,4402,4499,4608", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,99,121,84,65,96,79,61,91,73,60,78,63,53,115,58,61,53,81,128,91,83,113,78,80,92,66,65,78,80,90,71,77,74,71,96,76,97,97,77,80,99,56,65,82,86,61,63,62,101,106,96,108,88", ++ "endOffsets": "233,315,415,537,622,688,785,865,927,1019,1093,1154,1233,1297,1351,1467,1526,1588,1642,1724,1853,1945,2029,2143,2222,2303,2396,2463,2529,2608,2689,2780,2852,2930,3005,3077,3174,3251,3349,3447,3525,3606,3706,3763,3829,3912,3999,4061,4125,4188,4290,4397,4494,4603,4692" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3038,3120,3220,3342,3427,3493,3590,3670,3732,3824,3898,3959,4038,4102,4156,4272,4331,4393,4447,4529,4658,4750,4834,4948,5027,5108,5201,5268,5334,5413,5494,5585,5657,5735,5810,5882,5979,6056,6154,6252,6330,6411,6511,6568,6634,6717,6804,6866,6930,6993,7095,7202,7299,7408", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,99,121,84,65,96,79,61,91,73,60,78,63,53,115,58,61,53,81,128,91,83,113,78,80,92,66,65,78,80,90,71,77,74,71,96,76,97,97,77,80,99,56,65,82,86,61,63,62,101,106,96,108,88", ++ "endOffsets": "283,3115,3215,3337,3422,3488,3585,3665,3727,3819,3893,3954,4033,4097,4151,4267,4326,4388,4442,4524,4653,4745,4829,4943,5022,5103,5196,5263,5329,5408,5489,5580,5652,5730,5805,5877,5974,6051,6149,6247,6325,6406,6506,6563,6629,6712,6799,6861,6925,6988,7090,7197,7294,7403,7492" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,2855", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,2937" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,399,506,616,703,809,939,1024,1104,1195,1288,1386,1481,1581,1674,1767,1862,1953,2044,2130,2240,2351,2454,2565,2673,2780,2939,7497", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "394,501,611,698,804,934,1019,1099,1190,1283,1381,1476,1576,1669,1762,1857,1948,2039,2125,2235,2346,2449,2560,2668,2775,2934,3033,7579" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7584", ++ "endColumns": "100", ++ "endOffsets": "7680" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fr.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fr.json +new file mode 100644 +index 0000000..b44441e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-fr.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-fr/values-fr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7572", ++ "endColumns": "100", ++ "endOffsets": "7668" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,321,419,549,634,700,797,880,946,1048,1123,1179,1258,1318,1372,1494,1553,1615,1669,1751,1886,1978,2062,2176,2255,2336,2429,2496,2562,2642,2723,2826,2899,2977,3050,3122,3215,3290,3382,3474,3548,3632,3724,3781,3847,3930,4017,4079,4143,4206,4308,4406,4503,4604", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,97,129,84,65,96,82,65,101,74,55,78,59,53,121,58,61,53,81,134,91,83,113,78,80,92,66,65,79,80,102,72,77,72,71,92,74,91,91,73,83,91,56,65,82,86,61,63,62,101,97,96,100,88", ++ "endOffsets": "233,316,414,544,629,695,792,875,941,1043,1118,1174,1253,1313,1367,1489,1548,1610,1664,1746,1881,1973,2057,2171,2250,2331,2424,2491,2557,2637,2718,2821,2894,2972,3045,3117,3210,3285,3377,3469,3543,3627,3719,3776,3842,3925,4012,4074,4138,4201,4303,4401,4498,4599,4688" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3030,3113,3211,3341,3426,3492,3589,3672,3738,3840,3915,3971,4050,4110,4164,4286,4345,4407,4461,4543,4678,4770,4854,4968,5047,5128,5221,5288,5354,5434,5515,5618,5691,5769,5842,5914,6007,6082,6174,6266,6340,6424,6516,6573,6639,6722,6809,6871,6935,6998,7100,7198,7295,7396", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,97,129,84,65,96,82,65,101,74,55,78,59,53,121,58,61,53,81,134,91,83,113,78,80,92,66,65,79,80,102,72,77,72,71,92,74,91,91,73,83,91,56,65,82,86,61,63,62,101,97,96,100,88", ++ "endOffsets": "283,3108,3206,3336,3421,3487,3584,3667,3733,3835,3910,3966,4045,4105,4159,4281,4340,4402,4456,4538,4673,4765,4849,4963,5042,5123,5216,5283,5349,5429,5510,5613,5686,5764,5837,5909,6002,6077,6169,6261,6335,6419,6511,6568,6634,6717,6804,6866,6930,6993,7095,7193,7290,7391,7480" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,2847", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,2929" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,399,514,624,706,812,942,1020,1096,1187,1280,1378,1473,1573,1666,1759,1854,1945,2036,2122,2232,2343,2446,2557,2665,2772,2931,7485", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "394,509,619,701,807,937,1015,1091,1182,1275,1373,1468,1568,1661,1754,1849,1940,2031,2117,2227,2338,2441,2552,2660,2767,2926,3025,7567" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-gl.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-gl.json +new file mode 100644 +index 0000000..14f5d2b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-gl.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-gl/values-gl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7632", ++ "endColumns": "100", ++ "endOffsets": "7728" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,230,315,420,553,633,711,807,886,949,1044,1113,1176,1250,1314,1370,1491,1549,1611,1667,1744,1883,1971,2051,2161,2241,2321,2411,2478,2544,2623,2704,2792,2871,2948,3030,3119,3203,3295,3388,3489,3563,3655,3757,3809,3875,3967,4055,4117,4181,4244,4355,4457,4563,4666", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,104,132,79,77,95,78,62,94,68,62,73,63,55,120,57,61,55,76,138,87,79,109,79,79,89,66,65,78,80,87,78,76,81,88,83,91,92,100,73,91,101,51,65,91,87,61,63,62,110,101,105,102,84", ++ "endOffsets": "225,310,415,548,628,706,802,881,944,1039,1108,1171,1245,1309,1365,1486,1544,1606,1662,1739,1878,1966,2046,2156,2236,2316,2406,2473,2539,2618,2699,2787,2866,2943,3025,3114,3198,3290,3383,3484,3558,3650,3752,3804,3870,3962,4050,4112,4176,4239,4350,4452,4558,4661,4746" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3028,3113,3218,3351,3431,3509,3605,3684,3747,3842,3911,3974,4048,4112,4168,4289,4347,4409,4465,4542,4681,4769,4849,4959,5039,5119,5209,5276,5342,5421,5502,5590,5669,5746,5828,5917,6001,6093,6186,6287,6361,6453,6555,6607,6673,6765,6853,6915,6979,7042,7153,7255,7361,7464", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,104,132,79,77,95,78,62,94,68,62,73,63,55,120,57,61,55,76,138,87,79,109,79,79,89,66,65,78,80,87,78,76,81,88,83,91,92,100,73,91,101,51,65,91,87,61,63,62,110,101,105,102,84", ++ "endOffsets": "275,3108,3213,3346,3426,3504,3600,3679,3742,3837,3906,3969,4043,4107,4163,4284,4342,4404,4460,4537,4676,4764,4844,4954,5034,5114,5204,5271,5337,5416,5497,5585,5664,5741,5823,5912,5996,6088,6181,6282,6356,6448,6550,6602,6668,6760,6848,6910,6974,7037,7148,7250,7356,7459,7544" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,313,421,506,607,735,820,900,992,1086,1183,1277,1377,1471,1567,1662,1754,1846,1927,2035,2142,2249,2358,2463,2577,2754,2853", ++ "endColumns": "103,103,107,84,100,127,84,79,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", ++ "endOffsets": "204,308,416,501,602,730,815,895,987,1081,1178,1272,1372,1466,1562,1657,1749,1841,1922,2030,2137,2244,2353,2458,2572,2749,2848,2931" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "280,384,488,596,681,782,910,995,1075,1167,1261,1358,1452,1552,1646,1742,1837,1929,2021,2102,2210,2317,2424,2533,2638,2752,2929,7549", ++ "endColumns": "103,103,107,84,100,127,84,79,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", ++ "endOffsets": "379,483,591,676,777,905,990,1070,1162,1256,1353,1447,1547,1641,1737,1832,1924,2016,2097,2205,2312,2419,2528,2633,2747,2924,3023,7627" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-gu.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-gu.json +new file mode 100644 +index 0000000..0642dbc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-gu.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-gu/values-gu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7355", ++ "endColumns": "100", ++ "endOffsets": "7451" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,305,404,524,608,671,762,829,888,978,1043,1107,1176,1238,1292,1407,1465,1526,1580,1653,1780,1866,1950,2053,2128,2204,2290,2357,2423,2496,2576,2661,2732,2808,2887,2956,3052,3130,3225,3321,3395,3470,3569,3620,3687,3774,3864,3926,3990,4053,4155,4260,4357,4463", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,98,119,83,62,90,66,58,89,64,63,68,61,53,114,57,60,53,72,126,85,83,102,74,75,85,66,65,72,79,84,70,75,78,68,95,77,94,95,73,74,98,50,66,86,89,61,63,62,101,104,96,105,77", ++ "endOffsets": "218,300,399,519,603,666,757,824,883,973,1038,1102,1171,1233,1287,1402,1460,1521,1575,1648,1775,1861,1945,2048,2123,2199,2285,2352,2418,2491,2571,2656,2727,2803,2882,2951,3047,3125,3220,3316,3390,3465,3564,3615,3682,3769,3859,3921,3985,4048,4150,4255,4352,4458,4536" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2956,3038,3137,3257,3341,3404,3495,3562,3621,3711,3776,3840,3909,3971,4025,4140,4198,4259,4313,4386,4513,4599,4683,4786,4861,4937,5023,5090,5156,5229,5309,5394,5465,5541,5620,5689,5785,5863,5958,6054,6128,6203,6302,6353,6420,6507,6597,6659,6723,6786,6888,6993,7090,7196", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,98,119,83,62,90,66,58,89,64,63,68,61,53,114,57,60,53,72,126,85,83,102,74,75,85,66,65,72,79,84,70,75,78,68,95,77,94,95,73,74,98,50,66,86,89,61,63,62,101,104,96,105,77", ++ "endOffsets": "268,3033,3132,3252,3336,3399,3490,3557,3616,3706,3771,3835,3904,3966,4020,4135,4193,4254,4308,4381,4508,4594,4678,4781,4856,4932,5018,5085,5151,5224,5304,5389,5460,5536,5615,5684,5780,5858,5953,6049,6123,6198,6297,6348,6415,6502,6592,6654,6718,6781,6883,6988,7085,7191,7269" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,2788", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,2864" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,380,484,591,678,778,898,976,1053,1144,1237,1332,1426,1526,1619,1714,1808,1899,1990,2070,2176,2277,2374,2483,2583,2693,2853,7274", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "375,479,586,673,773,893,971,1048,1139,1232,1327,1421,1521,1614,1709,1803,1894,1985,2065,2171,2272,2369,2478,2578,2688,2848,2951,7350" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h320dp-port-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h320dp-port-v13.json +new file mode 100644 +index 0000000..0a85b86 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h320dp-port-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-h320dp-port-v13/values-h320dp-port-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h320dp-port-v13/values-h320dp-port-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "75", ++ "endOffsets": "126" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h360dp-land-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h360dp-land-v13.json +new file mode 100644 +index 0000000..07555c2 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h360dp-land-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-h360dp-land-v13/values-h360dp-land-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h360dp-land-v13/values-h360dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478,547", ++ "endColumns": "58,55,55,66,64,54,64,68,68", ++ "endOffsets": "109,165,221,288,353,408,473,542,611" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h480dp-land-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h480dp-land-v13.json +new file mode 100644 +index 0000000..71821dc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h480dp-land-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-h480dp-land-v13/values-h480dp-land-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h480dp-land-v13/values-h480dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478,547", ++ "endColumns": "58,55,55,66,64,54,64,68,68", ++ "endOffsets": "109,165,221,288,353,408,473,542,611" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h550dp-port-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h550dp-port-v13.json +new file mode 100644 +index 0000000..b52535f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h550dp-port-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-h550dp-port-v13/values-h550dp-port-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h550dp-port-v13/values-h550dp-port-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "76", ++ "endOffsets": "127" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h720dp-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h720dp-v13.json +new file mode 100644 +index 0000000..741679f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-h720dp-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-h720dp-v13/values-h720dp-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-h720dp-v13/values-h720dp-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "66", ++ "endOffsets": "117" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hdpi-v4.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hdpi-v4.json +new file mode 100644 +index 0000000..cecb0f8 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hdpi-v4.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-hdpi-v4/values-hdpi-v4.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hdpi-v4/values-hdpi-v4.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "6", ++ "endColumns": "13", ++ "endOffsets": "327" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hi.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hi.json +new file mode 100644 +index 0000000..5aabe38 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hi.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-hi/values-hi.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,2787", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,2864" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,370,468,578,664,766,887,965,1042,1133,1226,1321,1415,1515,1608,1703,1797,1888,1979,2060,2165,2267,2365,2475,2578,2687,2845,7289", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "365,463,573,659,761,882,960,1037,1128,1221,1316,1410,1510,1603,1698,1792,1883,1974,2055,2160,2262,2360,2470,2573,2682,2840,2941,7366" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,295,402,534,617,682,776,845,904,989,1052,1110,1175,1236,1297,1403,1461,1521,1580,1650,1766,1845,1925,2029,2104,2180,2277,2344,2410,2480,2557,2643,2711,2787,2868,2946,3032,3119,3216,3315,3389,3459,3563,3617,3684,3774,3866,3928,3992,4055,4160,4268,4369,4478", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,106,131,82,64,93,68,58,84,62,57,64,60,60,105,57,59,58,69,115,78,79,103,74,75,96,66,65,69,76,85,67,75,80,77,85,86,96,98,73,69,103,53,66,89,91,61,63,62,104,107,100,108,78", ++ "endOffsets": "209,290,397,529,612,677,771,840,899,984,1047,1105,1170,1231,1292,1398,1456,1516,1575,1645,1761,1840,1920,2024,2099,2175,2272,2339,2405,2475,2552,2638,2706,2782,2863,2941,3027,3114,3211,3310,3384,3454,3558,3612,3679,3769,3861,3923,3987,4050,4155,4263,4364,4473,4552" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2946,3027,3134,3266,3349,3414,3508,3577,3636,3721,3784,3842,3907,3968,4029,4135,4193,4253,4312,4382,4498,4577,4657,4761,4836,4912,5009,5076,5142,5212,5289,5375,5443,5519,5600,5678,5764,5851,5948,6047,6121,6191,6295,6349,6416,6506,6598,6660,6724,6787,6892,7000,7101,7210", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,106,131,82,64,93,68,58,84,62,57,64,60,60,105,57,59,58,69,115,78,79,103,74,75,96,66,65,69,76,85,67,75,80,77,85,86,96,98,73,69,103,53,66,89,91,61,63,62,104,107,100,108,78", ++ "endOffsets": "259,3022,3129,3261,3344,3409,3503,3572,3631,3716,3779,3837,3902,3963,4024,4130,4188,4248,4307,4377,4493,4572,4652,4756,4831,4907,5004,5071,5137,5207,5284,5370,5438,5514,5595,5673,5759,5846,5943,6042,6116,6186,6290,6344,6411,6501,6593,6655,6719,6782,6887,6995,7096,7205,7284" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7371", ++ "endColumns": "100", ++ "endOffsets": "7467" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hr.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hr.json +new file mode 100644 +index 0000000..c0f5dbd +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hr.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-hr/values-hr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7514", ++ "endColumns": "100", ++ "endOffsets": "7610" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,2816", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,2896" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "325,430,525,632,718,822,941,1026,1108,1199,1292,1387,1481,1581,1674,1769,1864,1955,2046,2132,2236,2348,2449,2554,2668,2770,2939,7429", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "425,520,627,713,817,936,1021,1103,1194,1287,1382,1476,1576,1669,1764,1859,1950,2041,2127,2231,2343,2444,2549,2663,2765,2934,3031,7509" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,275,360,456,586,670,738,834,902,965,1073,1139,1195,1266,1326,1380,1506,1563,1625,1679,1754,1888,1973,2054,2161,2245,2331,2422,2489,2555,2629,2707,2795,2867,2944,3024,3098,3191,3264,3356,3452,3526,3602,3698,3750,3817,3904,3991,4053,4117,4180,4286,4387,4484,4588", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,84,95,129,83,67,95,67,62,107,65,55,70,59,53,125,56,61,53,74,133,84,80,106,83,85,90,66,65,73,77,87,71,76,79,73,92,72,91,95,73,75,95,51,66,86,86,61,63,62,105,100,96,103,79", ++ "endOffsets": "270,355,451,581,665,733,829,897,960,1068,1134,1190,1261,1321,1375,1501,1558,1620,1674,1749,1883,1968,2049,2156,2240,2326,2417,2484,2550,2624,2702,2790,2862,2939,3019,3093,3186,3259,3351,3447,3521,3597,3693,3745,3812,3899,3986,4048,4112,4175,4281,4382,4479,4583,4663" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3036,3121,3217,3347,3431,3499,3595,3663,3726,3834,3900,3956,4027,4087,4141,4267,4324,4386,4440,4515,4649,4734,4815,4922,5006,5092,5183,5250,5316,5390,5468,5556,5628,5705,5785,5859,5952,6025,6117,6213,6287,6363,6459,6511,6578,6665,6752,6814,6878,6941,7047,7148,7245,7349", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,95,129,83,67,95,67,62,107,65,55,70,59,53,125,56,61,53,74,133,84,80,106,83,85,90,66,65,73,77,87,71,76,79,73,92,72,91,95,73,75,95,51,66,86,86,61,63,62,105,100,96,103,79", ++ "endOffsets": "320,3116,3212,3342,3426,3494,3590,3658,3721,3829,3895,3951,4022,4082,4136,4262,4319,4381,4435,4510,4644,4729,4810,4917,5001,5087,5178,5245,5311,5385,5463,5551,5623,5700,5780,5854,5947,6020,6112,6208,6282,6358,6454,6506,6573,6660,6747,6809,6873,6936,7042,7143,7240,7344,7424" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hu.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hu.json +new file mode 100644 +index 0000000..ba09e94 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hu.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-hu/values-hu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,218,295,394,514,597,661,760,835,894,1004,1073,1131,1203,1264,1319,1422,1479,1539,1594,1675,1795,1878,1966,2071,2154,2234,2328,2395,2461,2537,2619,2705,2782,2857,2936,3013,3109,3186,3278,3375,3449,3534,3631,3683,3750,3838,3925,3987,4051,4114,4212,4309,4403,4501", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,98,119,82,63,98,74,58,109,68,57,71,60,54,102,56,59,54,80,119,82,87,104,82,79,93,66,65,75,81,85,76,74,78,76,95,76,91,96,73,84,96,51,66,87,86,61,63,62,97,96,93,97,84", ++ "endOffsets": "213,290,389,509,592,656,755,830,889,999,1068,1126,1198,1259,1314,1417,1474,1534,1589,1670,1790,1873,1961,2066,2149,2229,2323,2390,2456,2532,2614,2700,2777,2852,2931,3008,3104,3181,3273,3370,3444,3529,3626,3678,3745,3833,3920,3982,4046,4109,4207,4304,4398,4496,4581" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3022,3099,3198,3318,3401,3465,3564,3639,3698,3808,3877,3935,4007,4068,4123,4226,4283,4343,4398,4479,4599,4682,4770,4875,4958,5038,5132,5199,5265,5341,5423,5509,5586,5661,5740,5817,5913,5990,6082,6179,6253,6338,6435,6487,6554,6642,6729,6791,6855,6918,7016,7113,7207,7305", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,98,119,82,63,98,74,58,109,68,57,71,60,54,102,56,59,54,80,119,82,87,104,82,79,93,66,65,75,81,85,76,74,78,76,95,76,91,96,73,84,96,51,66,87,86,61,63,62,97,96,93,97,84", ++ "endOffsets": "263,3094,3193,3313,3396,3460,3559,3634,3693,3803,3872,3930,4002,4063,4118,4221,4278,4338,4393,4474,4594,4677,4765,4870,4953,5033,5127,5194,5260,5336,5418,5504,5581,5656,5735,5812,5908,5985,6077,6174,6248,6333,6430,6482,6549,6637,6724,6786,6850,6913,7011,7108,7202,7300,7385" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7474", ++ "endColumns": "100", ++ "endOffsets": "7570" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,2859", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,2938" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "268,376,468,583,667,782,905,982,1057,1148,1241,1336,1430,1530,1623,1718,1813,1904,1995,2078,2188,2298,2398,2509,2618,2737,2919,7390", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "371,463,578,662,777,900,977,1052,1143,1236,1331,1425,1525,1618,1713,1808,1899,1990,2073,2183,2293,2393,2504,2613,2732,2914,3017,7469" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hy.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hy.json +new file mode 100644 +index 0000000..707c638 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-hy.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-hy/values-hy.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7447", ++ "endColumns": "100", ++ "endOffsets": "7543" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,300,395,525,606,670,767,852,914,1001,1065,1126,1193,1254,1308,1430,1487,1547,1601,1682,1817,1901,1986,2092,2167,2242,2337,2404,2470,2544,2624,2710,2781,2857,2933,3010,3098,3178,3274,3370,3444,3522,3622,3673,3742,3829,3920,3982,4046,4109,4214,4315,4415,4520", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,94,129,80,63,96,84,61,86,63,60,66,60,53,121,56,59,53,80,134,83,84,105,74,74,94,66,65,73,79,85,70,75,75,76,87,79,95,95,73,77,99,50,68,86,90,61,63,62,104,100,99,104,84", ++ "endOffsets": "215,295,390,520,601,665,762,847,909,996,1060,1121,1188,1249,1303,1425,1482,1542,1596,1677,1812,1896,1981,2087,2162,2237,2332,2399,2465,2539,2619,2705,2776,2852,2928,3005,3093,3173,3269,3365,3439,3517,3617,3668,3737,3824,3915,3977,4041,4104,4209,4310,4410,4515,4600" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2979,3059,3154,3284,3365,3429,3526,3611,3673,3760,3824,3885,3952,4013,4067,4189,4246,4306,4360,4441,4576,4660,4745,4851,4926,5001,5096,5163,5229,5303,5383,5469,5540,5616,5692,5769,5857,5937,6033,6129,6203,6281,6381,6432,6501,6588,6679,6741,6805,6868,6973,7074,7174,7279", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,94,129,80,63,96,84,61,86,63,60,66,60,53,121,56,59,53,80,134,83,84,105,74,74,94,66,65,73,79,85,70,75,75,76,87,79,95,95,73,77,99,50,68,86,90,61,63,62,104,100,99,104,84", ++ "endOffsets": "265,3054,3149,3279,3360,3424,3521,3606,3668,3755,3819,3880,3947,4008,4062,4184,4241,4301,4355,4436,4571,4655,4740,4846,4921,4996,5091,5158,5224,5298,5378,5464,5535,5611,5687,5764,5852,5932,6028,6124,6198,6276,6376,6427,6496,6583,6674,6736,6800,6863,6968,7069,7169,7274,7359" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,2814", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,2892" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,378,478,588,677,783,900,982,1062,1153,1246,1341,1435,1535,1628,1723,1817,1908,1999,2082,2188,2294,2393,2503,2611,2712,2882,7364", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "373,473,583,672,778,895,977,1057,1148,1241,1336,1430,1530,1623,1718,1812,1903,1994,2077,2183,2289,2388,2498,2606,2707,2877,2974,7442" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-in.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-in.json +new file mode 100644 +index 0000000..44806db +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-in.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-in/values-in.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7354", ++ "endColumns": "100", ++ "endOffsets": "7450" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,303,409,525,608,673,767,832,891,978,1040,1100,1166,1228,1282,1394,1451,1512,1566,1638,1764,1850,1934,2043,2124,2205,2295,2362,2428,2500,2584,2667,2742,2818,2891,2966,3051,3126,3218,3312,3386,3459,3553,3605,3674,3759,3846,3908,3972,4035,4138,4238,4333,4435", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,105,115,82,64,93,64,58,86,61,59,65,61,53,111,56,60,53,71,125,85,83,108,80,80,89,66,65,71,83,82,74,75,72,74,84,74,91,93,73,72,93,51,68,84,86,61,63,62,102,99,94,101,79", ++ "endOffsets": "219,298,404,520,603,668,762,827,886,973,1035,1095,1161,1223,1277,1389,1446,1507,1561,1633,1759,1845,1929,2038,2119,2200,2290,2357,2423,2495,2579,2662,2737,2813,2886,2961,3046,3121,3213,3307,3381,3454,3548,3600,3669,3754,3841,3903,3967,4030,4133,4233,4328,4430,4510" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2978,3057,3163,3279,3362,3427,3521,3586,3645,3732,3794,3854,3920,3982,4036,4148,4205,4266,4320,4392,4518,4604,4688,4797,4878,4959,5049,5116,5182,5254,5338,5421,5496,5572,5645,5720,5805,5880,5972,6066,6140,6213,6307,6359,6428,6513,6600,6662,6726,6789,6892,6992,7087,7189", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,105,115,82,64,93,64,58,86,61,59,65,61,53,111,56,60,53,71,125,85,83,108,80,80,89,66,65,71,83,82,74,75,72,74,84,74,91,93,73,72,93,51,68,84,86,61,63,62,102,99,94,101,79", ++ "endOffsets": "269,3052,3158,3274,3357,3422,3516,3581,3640,3727,3789,3849,3915,3977,4031,4143,4200,4261,4315,4387,4513,4599,4683,4792,4873,4954,5044,5111,5177,5249,5333,5416,5491,5567,5640,5715,5800,5875,5967,6061,6135,6208,6302,6354,6423,6508,6595,6657,6721,6784,6887,6987,7082,7184,7264" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,324,429,516,620,736,819,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1920,2023,2128,2229,2333,2442,2550,2710,2809", ++ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", ++ "endOffsets": "215,319,424,511,615,731,814,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1915,2018,2123,2224,2328,2437,2545,2705,2804,2889" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,389,493,598,685,789,905,988,1066,1157,1250,1345,1439,1539,1632,1727,1821,1912,2003,2089,2192,2297,2398,2502,2611,2719,2879,7269", ++ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", ++ "endOffsets": "384,488,593,680,784,900,983,1061,1152,1245,1340,1434,1534,1627,1722,1816,1907,1998,2084,2187,2292,2393,2497,2606,2714,2874,2973,7349" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-is.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-is.json +new file mode 100644 +index 0000000..9e12f0f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-is.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-is/values-is.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,225,304,401,516,598,663,751,815,876,966,1029,1091,1159,1223,1279,1402,1467,1529,1585,1656,1783,1867,1951,2057,2134,2211,2298,2365,2431,2507,2587,2676,2743,2817,2887,2953,3039,3109,3200,3290,3364,3437,3526,3577,3649,3730,3816,3878,3942,4005,4119,4222,4330,4433", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,96,114,81,64,87,63,60,89,62,61,67,63,55,122,64,61,55,70,126,83,83,105,76,76,86,66,65,75,79,88,66,73,69,65,85,69,90,89,73,72,88,50,71,80,85,61,63,62,113,102,107,102,79", ++ "endOffsets": "220,299,396,511,593,658,746,810,871,961,1024,1086,1154,1218,1274,1397,1462,1524,1580,1651,1778,1862,1946,2052,2129,2206,2293,2360,2426,2502,2582,2671,2738,2812,2882,2948,3034,3104,3195,3285,3359,3432,3521,3572,3644,3725,3811,3873,3937,4000,4114,4217,4325,4428,4508" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2949,3028,3125,3240,3322,3387,3475,3539,3600,3690,3753,3815,3883,3947,4003,4126,4191,4253,4309,4380,4507,4591,4675,4781,4858,4935,5022,5089,5155,5231,5311,5400,5467,5541,5611,5677,5763,5833,5924,6014,6088,6161,6250,6301,6373,6454,6540,6602,6666,6729,6843,6946,7054,7157", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,96,114,81,64,87,63,60,89,62,61,67,63,55,122,64,61,55,70,126,83,83,105,76,76,86,66,65,75,79,88,66,73,69,65,85,69,90,89,73,72,88,50,71,80,85,61,63,62,113,102,107,102,79", ++ "endOffsets": "270,3023,3120,3235,3317,3382,3470,3534,3595,3685,3748,3810,3878,3942,3998,4121,4186,4248,4304,4375,4502,4586,4670,4776,4853,4930,5017,5084,5150,5226,5306,5395,5462,5536,5606,5672,5758,5828,5919,6009,6083,6156,6245,6296,6368,6449,6535,6597,6661,6724,6838,6941,7049,7152,7232" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,302,414,499,600,714,795,874,965,1058,1151,1245,1351,1444,1539,1634,1725,1819,1900,2010,2117,2214,2323,2423,2526,2681,2779", ++ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", ++ "endOffsets": "200,297,409,494,595,709,790,869,960,1053,1146,1240,1346,1439,1534,1629,1720,1814,1895,2005,2112,2209,2318,2418,2521,2676,2774,2855" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "275,375,472,584,669,770,884,965,1044,1135,1228,1321,1415,1521,1614,1709,1804,1895,1989,2070,2180,2287,2384,2493,2593,2696,2851,7237", ++ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", ++ "endOffsets": "370,467,579,664,765,879,960,1039,1130,1223,1316,1410,1516,1609,1704,1799,1890,1984,2065,2175,2282,2379,2488,2588,2691,2846,2944,7313" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7318", ++ "endColumns": "100", ++ "endOffsets": "7414" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-it.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-it.json +new file mode 100644 +index 0000000..0c3cbac +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-it.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-it/values-it.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7483", ++ "endColumns": "100", ++ "endOffsets": "7579" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,300,399,539,622,688,783,868,930,1018,1087,1150,1223,1286,1340,1461,1518,1580,1634,1711,1848,1933,2015,2120,2201,2282,2373,2440,2506,2579,2659,2750,2825,2902,2971,3048,3136,3225,3318,3411,3485,3565,3659,3710,3776,3860,3948,4010,4074,4137,4252,4362,4468,4577", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,98,139,82,65,94,84,61,87,68,62,72,62,53,120,56,61,53,76,136,84,81,104,80,80,90,66,65,72,79,90,74,76,68,76,87,88,92,92,73,79,93,50,65,83,87,61,63,62,114,109,105,108,79", ++ "endOffsets": "218,295,394,534,617,683,778,863,925,1013,1082,1145,1218,1281,1335,1456,1513,1575,1629,1706,1843,1928,2010,2115,2196,2277,2368,2435,2501,2574,2654,2745,2820,2897,2966,3043,3131,3220,3313,3406,3480,3560,3654,3705,3771,3855,3943,4005,4069,4132,4247,4357,4463,4572,4652" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2967,3044,3143,3283,3366,3432,3527,3612,3674,3762,3831,3894,3967,4030,4084,4205,4262,4324,4378,4455,4592,4677,4759,4864,4945,5026,5117,5184,5250,5323,5403,5494,5569,5646,5715,5792,5880,5969,6062,6155,6229,6309,6403,6454,6520,6604,6692,6754,6818,6881,6996,7106,7212,7321", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,98,139,82,65,94,84,61,87,68,62,72,62,53,120,56,61,53,76,136,84,81,104,80,80,90,66,65,72,79,90,74,76,68,76,87,88,92,92,73,79,93,50,65,83,87,61,63,62,114,109,105,108,79", ++ "endOffsets": "268,3039,3138,3278,3361,3427,3522,3607,3669,3757,3826,3889,3962,4025,4079,4200,4257,4319,4373,4450,4587,4672,4754,4859,4940,5021,5112,5179,5245,5318,5398,5489,5564,5641,5710,5787,5875,5964,6057,6150,6224,6304,6398,6449,6515,6599,6687,6749,6813,6876,6991,7101,7207,7316,7396" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,2799", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,378,481,590,674,779,898,976,1051,1143,1237,1330,1424,1525,1619,1716,1811,1903,1995,2076,2182,2289,2387,2491,2597,2704,2867,7401", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "373,476,585,669,774,893,971,1046,1138,1232,1325,1419,1520,1614,1711,1806,1898,1990,2071,2177,2284,2382,2486,2592,2699,2862,2962,7478" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-iw.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-iw.json +new file mode 100644 +index 0000000..68ec01e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-iw.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-iw/values-iw.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,2761", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,2838" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "369,474,574,682,766,868,984,1063,1141,1232,1326,1420,1514,1614,1707,1802,1895,1986,2078,2159,2264,2367,2465,2570,2672,2774,2928,7179", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "469,569,677,761,863,979,1058,1136,1227,1321,1415,1509,1609,1702,1797,1890,1981,2073,2154,2259,2362,2460,2565,2667,2769,2923,3020,7256" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,319,396,489,602,682,747,835,905,968,1060,1120,1179,1242,1303,1362,1464,1521,1580,1638,1706,1817,1898,1980,2082,2153,2226,2314,2381,2447,2520,2596,2682,2752,2827,2909,2977,3062,3132,3222,3313,3387,3460,3549,3600,3667,3749,3834,3896,3960,4023,4117,4212,4302,4398", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,76,92,112,79,64,87,69,62,91,59,58,62,60,58,101,56,58,57,67,110,80,81,101,70,72,87,66,65,72,75,85,69,74,81,67,84,69,89,90,73,72,88,50,66,81,84,61,63,62,93,94,89,95,74", ++ "endOffsets": "314,391,484,597,677,742,830,900,963,1055,1115,1174,1237,1298,1357,1459,1516,1575,1633,1701,1812,1893,1975,2077,2148,2221,2309,2376,2442,2515,2591,2677,2747,2822,2904,2972,3057,3127,3217,3308,3382,3455,3544,3595,3662,3744,3829,3891,3955,4018,4112,4207,4297,4393,4468" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3102,3195,3308,3388,3453,3541,3611,3674,3766,3826,3885,3948,4009,4068,4170,4227,4286,4344,4412,4523,4604,4686,4788,4859,4932,5020,5087,5153,5226,5302,5388,5458,5533,5615,5683,5768,5838,5928,6019,6093,6166,6255,6306,6373,6455,6540,6602,6666,6729,6823,6918,7008,7104", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,92,112,79,64,87,69,62,91,59,58,62,60,58,101,56,58,57,67,110,80,81,101,70,72,87,66,65,72,75,85,69,74,81,67,84,69,89,90,73,72,88,50,66,81,84,61,63,62,93,94,89,95,74", ++ "endOffsets": "364,3097,3190,3303,3383,3448,3536,3606,3669,3761,3821,3880,3943,4004,4063,4165,4222,4281,4339,4407,4518,4599,4681,4783,4854,4927,5015,5082,5148,5221,5297,5383,5453,5528,5610,5678,5763,5833,5923,6014,6088,6161,6250,6301,6368,6450,6535,6597,6661,6724,6818,6913,7003,7099,7174" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7261", ++ "endColumns": "100", ++ "endOffsets": "7357" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ja.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ja.json +new file mode 100644 +index 0000000..0846e32 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ja.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ja/values-ja.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,2691", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,2765" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "258,355,448,553,635,733,841,919,994,1085,1178,1273,1367,1467,1560,1655,1749,1840,1931,2009,2111,2209,2304,2407,2503,2599,2747,6692", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "350,443,548,630,728,836,914,989,1080,1173,1268,1362,1462,1555,1650,1744,1835,1926,2004,2106,2204,2299,2402,2498,2594,2742,2839,6766" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6771", ++ "endColumns": "100", ++ "endOffsets": "6867" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,208,277,362,466,542,605,689,753,811,892,956,1011,1070,1127,1181,1274,1330,1387,1441,1507,1607,1683,1764,1856,1918,1980,2059,2126,2192,2262,2332,2409,2473,2544,2612,2675,2754,2817,2897,2979,3051,3122,3194,3242,3306,3381,3458,3520,3584,3647,3733,3817,3898,3983", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,68,84,103,75,62,83,63,57,80,63,54,58,56,53,92,55,56,53,65,99,75,80,91,61,61,78,66,65,69,69,76,63,70,67,62,78,62,79,81,71,70,71,47,63,74,76,61,63,62,85,83,80,84,72", ++ "endOffsets": "203,272,357,461,537,600,684,748,806,887,951,1006,1065,1122,1176,1269,1325,1382,1436,1502,1602,1678,1759,1851,1913,1975,2054,2121,2187,2257,2327,2404,2468,2539,2607,2670,2749,2812,2892,2974,3046,3117,3189,3237,3301,3376,3453,3515,3579,3642,3728,3812,3893,3978,4051" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2844,2913,2998,3102,3178,3241,3325,3389,3447,3528,3592,3647,3706,3763,3817,3910,3966,4023,4077,4143,4243,4319,4400,4492,4554,4616,4695,4762,4828,4898,4968,5045,5109,5180,5248,5311,5390,5453,5533,5615,5687,5758,5830,5878,5942,6017,6094,6156,6220,6283,6369,6453,6534,6619", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,68,84,103,75,62,83,63,57,80,63,54,58,56,53,92,55,56,53,65,99,75,80,91,61,61,78,66,65,69,69,76,63,70,67,62,78,62,79,81,71,70,71,47,63,74,76,61,63,62,85,83,80,84,72", ++ "endOffsets": "253,2908,2993,3097,3173,3236,3320,3384,3442,3523,3587,3642,3701,3758,3812,3905,3961,4018,4072,4138,4238,4314,4395,4487,4549,4611,4690,4757,4823,4893,4963,5040,5104,5175,5243,5306,5385,5448,5528,5610,5682,5753,5825,5873,5937,6012,6089,6151,6215,6278,6364,6448,6529,6614,6687" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ka.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ka.json +new file mode 100644 +index 0000000..ee69414 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ka.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ka/values-ka.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,312,411,536,624,691,788,857,920,1007,1073,1133,1202,1263,1317,1432,1491,1551,1605,1677,1807,1895,1979,2087,2165,2241,2335,2402,2468,2541,2619,2705,2778,2856,2934,3009,3099,3174,3268,3366,3440,3517,3617,3670,3738,3827,3916,3978,4043,4106,4213,4311,4411,4510", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,98,124,87,66,96,68,62,86,65,59,68,60,53,114,58,59,53,71,129,87,83,107,77,75,93,66,65,72,77,85,72,77,77,74,89,74,93,97,73,76,99,52,67,88,88,61,64,62,106,97,99,98,79", ++ "endOffsets": "223,307,406,531,619,686,783,852,915,1002,1068,1128,1197,1258,1312,1427,1486,1546,1600,1672,1802,1890,1974,2082,2160,2236,2330,2397,2463,2536,2614,2700,2773,2851,2929,3004,3094,3169,3263,3361,3435,3512,3612,3665,3733,3822,3911,3973,4038,4101,4208,4306,4406,4505,4585" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2981,3065,3164,3289,3377,3444,3541,3610,3673,3760,3826,3886,3955,4016,4070,4185,4244,4304,4358,4430,4560,4648,4732,4840,4918,4994,5088,5155,5221,5294,5372,5458,5531,5609,5687,5762,5852,5927,6021,6119,6193,6270,6370,6423,6491,6580,6669,6731,6796,6859,6966,7064,7164,7263", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,98,124,87,66,96,68,62,86,65,59,68,60,53,114,58,59,53,71,129,87,83,107,77,75,93,66,65,72,77,85,72,77,77,74,89,74,93,97,73,76,99,52,67,88,88,61,64,62,106,97,99,98,79", ++ "endOffsets": "273,3060,3159,3284,3372,3439,3536,3605,3668,3755,3821,3881,3950,4011,4065,4180,4239,4299,4353,4425,4555,4643,4727,4835,4913,4989,5083,5150,5216,5289,5367,5453,5526,5604,5682,5757,5847,5922,6016,6114,6188,6265,6365,6418,6486,6575,6664,6726,6791,6854,6961,7059,7159,7258,7338" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,2808", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,2885" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,489,600,686,791,904,987,1066,1157,1250,1345,1439,1539,1632,1727,1822,1913,2004,2085,2198,2304,2402,2515,2620,2724,2882,7343", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "381,484,595,681,786,899,982,1061,1152,1245,1340,1434,1534,1627,1722,1817,1908,1999,2080,2193,2299,2397,2510,2615,2719,2877,2976,7420" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7425", ++ "endColumns": "100", ++ "endOffsets": "7521" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-kk.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-kk.json +new file mode 100644 +index 0000000..312f22c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-kk.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-kk/values-kk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,2796", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,2873" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,491,601,686,792,911,991,1068,1159,1252,1347,1441,1541,1634,1729,1826,1917,2008,2089,2194,2297,2395,2502,2608,2708,2874,7266", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "381,486,596,681,787,906,986,1063,1154,1247,1342,1436,1536,1629,1724,1821,1912,2003,2084,2189,2292,2390,2497,2603,2703,2869,2964,7343" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,307,399,511,593,657,752,822,885,992,1059,1120,1187,1249,1303,1417,1476,1537,1591,1666,1792,1880,1969,2081,2153,2226,2315,2382,2448,2519,2596,2682,2754,2830,2911,2981,3068,3140,3231,3324,3398,3473,3565,3617,3683,3767,3853,3915,3979,4042,4146,4246,4340,4441", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,91,111,81,63,94,69,62,106,66,60,66,61,53,113,58,60,53,74,125,87,88,111,71,72,88,66,65,70,76,85,71,75,80,69,86,71,90,92,73,74,91,51,65,83,85,61,63,62,103,99,93,100,83", ++ "endOffsets": "223,302,394,506,588,652,747,817,880,987,1054,1115,1182,1244,1298,1412,1471,1532,1586,1661,1787,1875,1964,2076,2148,2221,2310,2377,2443,2514,2591,2677,2749,2825,2906,2976,3063,3135,3226,3319,3393,3468,3560,3612,3678,3762,3848,3910,3974,4037,4141,4241,4335,4436,4520" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2969,3048,3140,3252,3334,3398,3493,3563,3626,3733,3800,3861,3928,3990,4044,4158,4217,4278,4332,4407,4533,4621,4710,4822,4894,4967,5056,5123,5189,5260,5337,5423,5495,5571,5652,5722,5809,5881,5972,6065,6139,6214,6306,6358,6424,6508,6594,6656,6720,6783,6887,6987,7081,7182", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,91,111,81,63,94,69,62,106,66,60,66,61,53,113,58,60,53,74,125,87,88,111,71,72,88,66,65,70,76,85,71,75,80,69,86,71,90,92,73,74,91,51,65,83,85,61,63,62,103,99,93,100,83", ++ "endOffsets": "273,3043,3135,3247,3329,3393,3488,3558,3621,3728,3795,3856,3923,3985,4039,4153,4212,4273,4327,4402,4528,4616,4705,4817,4889,4962,5051,5118,5184,5255,5332,5418,5490,5566,5647,5717,5804,5876,5967,6060,6134,6209,6301,6353,6419,6503,6589,6651,6715,6778,6882,6982,7076,7177,7261" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7348", ++ "endColumns": "100", ++ "endOffsets": "7444" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-km.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-km.json +new file mode 100644 +index 0000000..9a77f54 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-km.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-km/values-km.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7393", ++ "endColumns": "100", ++ "endOffsets": "7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,304,404,516,596,661,755,825,887,974,1039,1098,1163,1224,1281,1400,1458,1519,1576,1647,1777,1863,1941,2049,2124,2195,2292,2359,2425,2505,2595,2681,2760,2837,2907,2982,3070,3140,3240,3339,3413,3489,3596,3650,3723,3814,3910,3972,4036,4099,4198,4296,4388,4488", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,99,111,79,64,93,69,61,86,64,58,64,60,56,118,57,60,56,70,129,85,77,107,74,70,96,66,65,79,89,85,78,76,69,74,87,69,99,98,73,75,106,53,72,90,95,61,63,62,98,97,91,99,82", ++ "endOffsets": "219,299,399,511,591,656,750,820,882,969,1034,1093,1158,1219,1276,1395,1453,1514,1571,1642,1772,1858,1936,2044,2119,2190,2287,2354,2420,2500,2590,2676,2755,2832,2902,2977,3065,3135,3235,3334,3408,3484,3591,3645,3718,3809,3905,3967,4031,4094,4193,4291,4383,4483,4566" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3042,3142,3254,3334,3399,3493,3563,3625,3712,3777,3836,3901,3962,4019,4138,4196,4257,4314,4385,4515,4601,4679,4787,4862,4933,5030,5097,5163,5243,5333,5419,5498,5575,5645,5720,5808,5878,5978,6077,6151,6227,6334,6388,6461,6552,6648,6710,6774,6837,6936,7034,7126,7226", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,99,111,79,64,93,69,61,86,64,58,64,60,56,118,57,60,56,70,129,85,77,107,74,70,96,66,65,79,89,85,78,76,69,74,87,69,99,98,73,75,106,53,72,90,95,61,63,62,98,97,91,99,82", ++ "endOffsets": "269,3037,3137,3249,3329,3394,3488,3558,3620,3707,3772,3831,3896,3957,4014,4133,4191,4252,4309,4380,4510,4596,4674,4782,4857,4928,5025,5092,5158,5238,5328,5414,5493,5570,5640,5715,5803,5873,5973,6072,6146,6222,6329,6383,6456,6547,6643,6705,6769,6832,6931,7029,7121,7221,7304" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,2793", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,376,475,585,672,775,896,974,1050,1141,1234,1326,1420,1520,1613,1708,1802,1893,1984,2067,2171,2275,2375,2484,2593,2702,2864,7309", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "371,470,580,667,770,891,969,1045,1136,1229,1321,1415,1515,1608,1703,1797,1888,1979,2062,2166,2270,2370,2479,2588,2697,2859,2957,7388" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-kn.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-kn.json +new file mode 100644 +index 0000000..1422aa4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-kn.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-kn/values-kn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,2859", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,2937" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,388,500,613,701,808,934,1012,1088,1179,1272,1367,1461,1561,1654,1749,1843,1934,2025,2107,2223,2333,2432,2545,2650,2764,2928,7417", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "383,495,608,696,803,929,1007,1083,1174,1267,1362,1456,1556,1649,1744,1838,1929,2020,2102,2218,2328,2427,2540,2645,2759,2923,3023,7495" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7500", ++ "endColumns": "100", ++ "endOffsets": "7596" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,306,413,526,611,674,768,834,896,999,1070,1129,1205,1270,1324,1437,1495,1556,1610,1689,1805,1888,1979,2091,2170,2249,2337,2404,2470,2550,2640,2724,2801,2878,2955,3024,3123,3200,3293,3388,3462,3543,3639,3690,3758,3844,3932,3995,4060,4123,4228,4331,4426,4531", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,106,112,84,62,93,65,61,102,70,58,75,64,53,112,57,60,53,78,115,82,90,111,78,78,87,66,65,79,89,83,76,76,76,68,98,76,92,94,73,80,95,50,67,85,87,62,64,62,104,102,94,104,81", ++ "endOffsets": "219,301,408,521,606,669,763,829,891,994,1065,1124,1200,1265,1319,1432,1490,1551,1605,1684,1800,1883,1974,2086,2165,2244,2332,2399,2465,2545,2635,2719,2796,2873,2950,3019,3118,3195,3288,3383,3457,3538,3634,3685,3753,3839,3927,3990,4055,4118,4223,4326,4421,4526,4608" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3028,3110,3217,3330,3415,3478,3572,3638,3700,3803,3874,3933,4009,4074,4128,4241,4299,4360,4414,4493,4609,4692,4783,4895,4974,5053,5141,5208,5274,5354,5444,5528,5605,5682,5759,5828,5927,6004,6097,6192,6266,6347,6443,6494,6562,6648,6736,6799,6864,6927,7032,7135,7230,7335", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,106,112,84,62,93,65,61,102,70,58,75,64,53,112,57,60,53,78,115,82,90,111,78,78,87,66,65,79,89,83,76,76,76,68,98,76,92,94,73,80,95,50,67,85,87,62,64,62,104,102,94,104,81", ++ "endOffsets": "269,3105,3212,3325,3410,3473,3567,3633,3695,3798,3869,3928,4004,4069,4123,4236,4294,4355,4409,4488,4604,4687,4778,4890,4969,5048,5136,5203,5269,5349,5439,5523,5600,5677,5754,5823,5922,5999,6092,6187,6261,6342,6438,6489,6557,6643,6731,6794,6859,6922,7027,7130,7225,7330,7412" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ko.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ko.json +new file mode 100644 +index 0000000..2ede7c4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ko.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ko/values-ko.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6761", ++ "endColumns": "100", ++ "endOffsets": "6857" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,2685", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,2759" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "254,351,445,546,628,726,832,912,987,1078,1171,1266,1360,1460,1553,1648,1742,1833,1924,2004,2102,2196,2291,2391,2488,2588,2740,6682", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "346,440,541,623,721,827,907,982,1073,1166,1261,1355,1455,1548,1643,1737,1828,1919,1999,2097,2191,2286,2386,2483,2583,2735,2829,6756" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,204,273,356,462,537,599,680,742,799,886,944,1002,1061,1118,1172,1267,1323,1380,1434,1500,1604,1679,1756,1847,1912,1977,2056,2123,2189,2253,2323,2400,2468,2539,2606,2676,2756,2833,2913,2995,3067,3132,3204,3252,3316,3391,3468,3530,3594,3657,3741,3820,3900,3980", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,68,82,105,74,61,80,61,56,86,57,57,58,56,53,94,55,56,53,65,103,74,76,90,64,64,78,66,65,63,69,76,67,70,66,69,79,76,79,81,71,64,71,47,63,74,76,61,63,62,83,78,79,79,71", ++ "endOffsets": "199,268,351,457,532,594,675,737,794,881,939,997,1056,1113,1167,1262,1318,1375,1429,1495,1599,1674,1751,1842,1907,1972,2051,2118,2184,2248,2318,2395,2463,2534,2601,2671,2751,2828,2908,2990,3062,3127,3199,3247,3311,3386,3463,3525,3589,3652,3736,3815,3895,3975,4047" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2834,2903,2986,3092,3167,3229,3310,3372,3429,3516,3574,3632,3691,3748,3802,3897,3953,4010,4064,4130,4234,4309,4386,4477,4542,4607,4686,4753,4819,4883,4953,5030,5098,5169,5236,5306,5386,5463,5543,5625,5697,5762,5834,5882,5946,6021,6098,6160,6224,6287,6371,6450,6530,6610", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,68,82,105,74,61,80,61,56,86,57,57,58,56,53,94,55,56,53,65,103,74,76,90,64,64,78,66,65,63,69,76,67,70,66,69,79,76,79,81,71,64,71,47,63,74,76,61,63,62,83,78,79,79,71", ++ "endOffsets": "249,2898,2981,3087,3162,3224,3305,3367,3424,3511,3569,3627,3686,3743,3797,3892,3948,4005,4059,4125,4229,4304,4381,4472,4537,4602,4681,4748,4814,4878,4948,5025,5093,5164,5231,5301,5381,5458,5538,5620,5692,5757,5829,5877,5941,6016,6093,6155,6219,6282,6366,6445,6525,6605,6677" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ky.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ky.json +new file mode 100644 +index 0000000..78343b5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ky.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ky/values-ky.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,2817", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,2894" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,381,490,602,687,792,909,988,1066,1157,1250,1345,1439,1539,1632,1727,1822,1913,2004,2085,2191,2296,2394,2501,2604,2719,2880,7321", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "376,485,597,682,787,904,983,1061,1152,1245,1340,1434,1534,1627,1722,1817,1908,1999,2080,2186,2291,2389,2496,2599,2714,2875,2977,7398" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,305,406,547,631,695,789,859,920,1007,1071,1130,1204,1266,1320,1437,1495,1556,1610,1684,1806,1890,1986,2088,2166,2244,2333,2400,2466,2535,2612,2699,2771,2847,2929,3002,3087,3166,3256,3348,3422,3507,3597,3649,3714,3797,3882,3944,4008,4071,4188,4282,4382,4477", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,100,140,83,63,93,69,60,86,63,58,73,61,53,116,57,60,53,73,121,83,95,101,77,77,88,66,65,68,76,86,71,75,81,72,84,78,89,91,73,84,89,51,64,82,84,61,63,62,116,93,99,94,81", ++ "endOffsets": "215,300,401,542,626,690,784,854,915,1002,1066,1125,1199,1261,1315,1432,1490,1551,1605,1679,1801,1885,1981,2083,2161,2239,2328,2395,2461,2530,2607,2694,2766,2842,2924,2997,3082,3161,3251,3343,3417,3502,3592,3644,3709,3792,3877,3939,4003,4066,4183,4277,4377,4472,4554" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2982,3067,3168,3309,3393,3457,3551,3621,3682,3769,3833,3892,3966,4028,4082,4199,4257,4318,4372,4446,4568,4652,4748,4850,4928,5006,5095,5162,5228,5297,5374,5461,5533,5609,5691,5764,5849,5928,6018,6110,6184,6269,6359,6411,6476,6559,6644,6706,6770,6833,6950,7044,7144,7239", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,100,140,83,63,93,69,60,86,63,58,73,61,53,116,57,60,53,73,121,83,95,101,77,77,88,66,65,68,76,86,71,75,81,72,84,78,89,91,73,84,89,51,64,82,84,61,63,62,116,93,99,94,81", ++ "endOffsets": "265,3062,3163,3304,3388,3452,3546,3616,3677,3764,3828,3887,3961,4023,4077,4194,4252,4313,4367,4441,4563,4647,4743,4845,4923,5001,5090,5157,5223,5292,5369,5456,5528,5604,5686,5759,5844,5923,6013,6105,6179,6264,6354,6406,6471,6554,6639,6701,6765,6828,6945,7039,7139,7234,7316" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7403", ++ "endColumns": "100", ++ "endOffsets": "7499" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-land.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-land.json +new file mode 100644 +index 0000000..ba747b9 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-land.json +@@ -0,0 +1,38 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-land/values-land.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-land/values-land.xml", ++ "from": { ++ "startLines": "2,3,4", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,125,196", ++ "endColumns": "69,70,67", ++ "endOffsets": "120,191,259" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-land/values-land.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,26,32", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,204,277,347,419,489,554,621,691,763,832,901,983,1073,1149,1217,1284,1362,1427,1494,1666,2061", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,25,31,36", ++ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10", ++ "endOffsets": "125,199,272,342,414,484,549,616,686,758,827,896,978,1068,1144,1212,1279,1357,1422,1489,1661,2056,2325" ++ }, ++ "to": { ++ "startLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,29,35", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,339,413,486,556,628,698,763,830,900,972,1041,1110,1192,1282,1358,1426,1493,1571,1636,1703,1875,2270", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,28,34,39", ++ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10", ++ "endOffsets": "334,408,481,551,623,693,758,825,895,967,1036,1105,1187,1277,1353,1421,1488,1566,1631,1698,1870,2265,2534" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-large-v4.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-large-v4.json +new file mode 100644 +index 0000000..705814a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-large-v4.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-large-v4/values-large-v4.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-large-v4/values-large-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,185,256,326,396,464,532,636", ++ "endColumns": "58,70,70,69,69,67,67,103,115", ++ "endOffsets": "109,180,251,321,391,459,527,631,747" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-large-v4/values-large-v4.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,177", ++ "endColumns": "121,133", ++ "endOffsets": "172,306" ++ }, ++ "to": { ++ "startLines": "11,12", ++ "startColumns": "4,4", ++ "startOffsets": "752,874", ++ "endColumns": "121,133", ++ "endOffsets": "869,1003" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ldltr-v21.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ldltr-v21.json +new file mode 100644 +index 0000000..d4e2387 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ldltr-v21.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ldltr-v21/values-ldltr-v21.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ldltr-v21/values-ldltr-v21.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "112", ++ "endOffsets": "163" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ldrtl-v17.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ldrtl-v17.json +new file mode 100644 +index 0000000..8144393 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ldrtl-v17.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ldrtl-v17/values-ldrtl-v17.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ldrtl-v17/values-ldrtl-v17.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,191", ++ "endColumns": "135,140", ++ "endOffsets": "186,327" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-lo.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-lo.json +new file mode 100644 +index 0000000..07ecf67 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-lo.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-lo/values-lo.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7265", ++ "endColumns": "100", ++ "endOffsets": "7361" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,305,420,539,622,688,777,846,905,1000,1065,1123,1188,1249,1309,1415,1476,1536,1594,1665,1784,1870,1952,2065,2140,2216,2306,2373,2439,2508,2582,2661,2734,2811,2880,2950,3035,3110,3203,3296,3370,3439,3533,3585,3652,3736,3820,3882,3946,4009,4108,4200,4295,4387", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,114,118,82,65,88,68,58,94,64,57,64,60,59,105,60,59,57,70,118,85,81,112,74,75,89,66,65,68,73,78,72,76,68,69,84,74,92,92,73,68,93,51,66,83,83,61,63,62,98,91,94,91,78", ++ "endOffsets": "219,300,415,534,617,683,772,841,900,995,1060,1118,1183,1244,1304,1410,1471,1531,1589,1660,1779,1865,1947,2060,2135,2211,2301,2368,2434,2503,2577,2656,2729,2806,2875,2945,3030,3105,3198,3291,3365,3434,3528,3580,3647,3731,3815,3877,3941,4004,4103,4195,4290,4382,4461" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2941,3022,3137,3256,3339,3405,3494,3563,3622,3717,3782,3840,3905,3966,4026,4132,4193,4253,4311,4382,4501,4587,4669,4782,4857,4933,5023,5090,5156,5225,5299,5378,5451,5528,5597,5667,5752,5827,5920,6013,6087,6156,6250,6302,6369,6453,6537,6599,6663,6726,6825,6917,7012,7104", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,114,118,82,65,88,68,58,94,64,57,64,60,59,105,60,59,57,70,118,85,81,112,74,75,89,66,65,68,73,78,72,76,68,69,84,74,92,92,73,68,93,51,66,83,83,61,63,62,98,91,94,91,78", ++ "endOffsets": "269,3017,3132,3251,3334,3400,3489,3558,3617,3712,3777,3835,3900,3961,4021,4127,4188,4248,4306,4377,4496,4582,4664,4777,4852,4928,5018,5085,5151,5220,5294,5373,5446,5523,5592,5662,5747,5822,5915,6008,6082,6151,6245,6297,6364,6448,6532,6594,6658,6721,6820,6912,7007,7099,7178" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,2772", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,2849" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,377,480,593,678,782,893,971,1048,1139,1232,1324,1418,1518,1611,1706,1802,1893,1984,2065,2172,2276,2374,2477,2581,2685,2842,7183", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "372,475,588,673,777,888,966,1043,1134,1227,1319,1413,1513,1606,1701,1797,1888,1979,2060,2167,2271,2369,2472,2576,2680,2837,2936,7260" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-lt.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-lt.json +new file mode 100644 +index 0000000..5baedca +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-lt.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-lt/values-lt.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,2874", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,2953" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "380,496,600,713,800,902,1024,1107,1187,1281,1377,1474,1570,1673,1769,1867,1963,2057,2151,2234,2343,2451,2551,2661,2766,2872,3048,7603", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "491,595,708,795,897,1019,1102,1182,1276,1372,1469,1565,1668,1764,1862,1958,2052,2146,2229,2338,2446,2546,2656,2761,2867,3043,3144,7682" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7687", ++ "endColumns": "100", ++ "endOffsets": "7783" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,330,413,509,627,711,777,876,954,1019,1129,1201,1260,1334,1395,1449,1573,1634,1696,1750,1828,1962,2050,2134,2245,2324,2408,2505,2572,2638,2713,2792,2880,2956,3034,3107,3184,3271,3352,3442,3534,3606,3687,3779,3834,3900,3985,4072,4134,4198,4261,4372,4487,4588,4702", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,82,95,117,83,65,98,77,64,109,71,58,73,60,53,123,60,61,53,77,133,87,83,110,78,83,96,66,65,74,78,87,75,77,72,76,86,80,89,91,71,80,91,54,65,84,86,61,63,62,110,114,100,113,81", ++ "endOffsets": "325,408,504,622,706,772,871,949,1014,1124,1196,1255,1329,1390,1444,1568,1629,1691,1745,1823,1957,2045,2129,2240,2319,2403,2500,2567,2633,2708,2787,2875,2951,3029,3102,3179,3266,3347,3437,3529,3601,3682,3774,3829,3895,3980,4067,4129,4193,4256,4367,4482,4583,4697,4779" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3149,3232,3328,3446,3530,3596,3695,3773,3838,3948,4020,4079,4153,4214,4268,4392,4453,4515,4569,4647,4781,4869,4953,5064,5143,5227,5324,5391,5457,5532,5611,5699,5775,5853,5926,6003,6090,6171,6261,6353,6425,6506,6598,6653,6719,6804,6891,6953,7017,7080,7191,7306,7407,7521", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,95,117,83,65,98,77,64,109,71,58,73,60,53,123,60,61,53,77,133,87,83,110,78,83,96,66,65,74,78,87,75,77,72,76,86,80,89,91,71,80,91,54,65,84,86,61,63,62,110,114,100,113,81", ++ "endOffsets": "375,3227,3323,3441,3525,3591,3690,3768,3833,3943,4015,4074,4148,4209,4263,4387,4448,4510,4564,4642,4776,4864,4948,5059,5138,5222,5319,5386,5452,5527,5606,5694,5770,5848,5921,5998,6085,6166,6256,6348,6420,6501,6593,6648,6714,6799,6886,6948,7012,7075,7186,7301,7402,7516,7598" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-lv.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-lv.json +new file mode 100644 +index 0000000..5a0d9ff +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-lv.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-lv/values-lv.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7727", ++ "endColumns": "100", ++ "endOffsets": "7823" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,279,360,461,595,678,743,837,910,971,1096,1164,1225,1297,1357,1411,1531,1591,1653,1707,1784,1914,2001,2083,2194,2274,2359,2450,2517,2583,2657,2738,2822,2895,2972,3049,3123,3216,3291,3381,3472,3544,3622,3713,3767,3835,3919,4006,4068,4132,4195,4305,4418,4521,4633", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,80,100,133,82,64,93,72,60,124,67,60,71,59,53,119,59,61,53,76,129,86,81,110,79,84,90,66,65,73,80,83,72,76,76,73,92,74,89,90,71,77,90,53,67,83,86,61,63,62,109,112,102,111,76", ++ "endOffsets": "274,355,456,590,673,738,832,905,966,1091,1159,1220,1292,1352,1406,1526,1586,1648,1702,1779,1909,1996,2078,2189,2269,2354,2445,2512,2578,2652,2733,2817,2890,2967,3044,3118,3211,3286,3376,3467,3539,3617,3708,3762,3830,3914,4001,4063,4127,4190,4300,4413,4516,4628,4705" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3213,3294,3395,3529,3612,3677,3771,3844,3905,4030,4098,4159,4231,4291,4345,4465,4525,4587,4641,4718,4848,4935,5017,5128,5208,5293,5384,5451,5517,5591,5672,5756,5829,5906,5983,6057,6150,6225,6315,6406,6478,6556,6647,6701,6769,6853,6940,7002,7066,7129,7239,7352,7455,7567", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,100,133,82,64,93,72,60,124,67,60,71,59,53,119,59,61,53,76,129,86,81,110,79,84,90,66,65,73,80,83,72,76,76,73,92,74,89,90,71,77,90,53,67,83,86,61,63,62,109,112,102,111,76", ++ "endOffsets": "324,3289,3390,3524,3607,3672,3766,3839,3900,4025,4093,4154,4226,4286,4340,4460,4520,4582,4636,4713,4843,4930,5012,5123,5203,5288,5379,5446,5512,5586,5667,5751,5824,5901,5978,6052,6145,6220,6310,6401,6473,6551,6642,6696,6764,6848,6935,6997,7061,7124,7234,7347,7450,7562,7639" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,2989", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,3067" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "329,449,559,668,754,858,980,1062,1142,1252,1360,1466,1575,1686,1789,1901,2008,2113,2213,2298,2407,2518,2617,2728,2835,2940,3114,7644", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "444,554,663,749,853,975,1057,1137,1247,1355,1461,1570,1681,1784,1896,2003,2108,2208,2293,2402,2513,2612,2723,2830,2935,3109,3208,7722" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-mk.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-mk.json +new file mode 100644 +index 0000000..132f9ea +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-mk.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-mk/values-mk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,2820", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,2900" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,488,596,682,790,909,993,1074,1165,1258,1354,1448,1548,1641,1736,1832,1923,2014,2101,2207,2313,2414,2521,2633,2737,2893,7379", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "379,483,591,677,785,904,988,1069,1160,1253,1349,1443,1543,1636,1731,1827,1918,2009,2096,2202,2308,2409,2516,2628,2732,2888,2986,7459" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,308,404,528,615,681,772,842,906,1009,1074,1134,1202,1265,1320,1448,1505,1567,1622,1697,1837,1924,2007,2110,2192,2277,2364,2431,2497,2570,2646,2735,2808,2884,2959,3029,3117,3192,3284,3376,3450,3524,3616,3669,3736,3819,3906,3968,4032,4095,4209,4316,4418,4529", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,95,123,86,65,90,69,63,102,64,59,67,62,54,127,56,61,54,74,139,86,82,102,81,84,86,66,65,72,75,88,72,75,74,69,87,74,91,91,73,73,91,52,66,82,86,61,63,62,113,106,101,110,84", ++ "endOffsets": "221,303,399,523,610,676,767,837,901,1004,1069,1129,1197,1260,1315,1443,1500,1562,1617,1692,1832,1919,2002,2105,2187,2272,2359,2426,2492,2565,2641,2730,2803,2879,2954,3024,3112,3187,3279,3371,3445,3519,3611,3664,3731,3814,3901,3963,4027,4090,4204,4311,4413,4524,4609" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2991,3073,3169,3293,3380,3446,3537,3607,3671,3774,3839,3899,3967,4030,4085,4213,4270,4332,4387,4462,4602,4689,4772,4875,4957,5042,5129,5196,5262,5335,5411,5500,5573,5649,5724,5794,5882,5957,6049,6141,6215,6289,6381,6434,6501,6584,6671,6733,6797,6860,6974,7081,7183,7294", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,95,123,86,65,90,69,63,102,64,59,67,62,54,127,56,61,54,74,139,86,82,102,81,84,86,66,65,72,75,88,72,75,74,69,87,74,91,91,73,73,91,52,66,82,86,61,63,62,113,106,101,110,84", ++ "endOffsets": "271,3068,3164,3288,3375,3441,3532,3602,3666,3769,3834,3894,3962,4025,4080,4208,4265,4327,4382,4457,4597,4684,4767,4870,4952,5037,5124,5191,5257,5330,5406,5495,5568,5644,5719,5789,5877,5952,6044,6136,6210,6284,6376,6429,6496,6579,6666,6728,6792,6855,6969,7076,7178,7289,7374" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7464", ++ "endColumns": "100", ++ "endOffsets": "7560" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ml.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ml.json +new file mode 100644 +index 0000000..3525253 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ml.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ml/values-ml.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,313,407,517,609,674,773,839,899,1001,1077,1135,1213,1278,1332,1449,1513,1577,1631,1711,1845,1931,2020,2126,2211,2299,2394,2461,2527,2606,2688,2779,2855,2932,3009,3080,3187,3267,3364,3464,3538,3619,3724,3782,3849,3940,4032,4094,4158,4221,4324,4440,4545,4661", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,93,109,91,64,98,65,59,101,75,57,77,64,53,116,63,63,53,79,133,85,88,105,84,87,94,66,65,78,81,90,75,76,76,70,106,79,96,99,73,80,104,57,66,90,91,61,63,62,102,115,104,115,83", ++ "endOffsets": "221,308,402,512,604,669,768,834,894,996,1072,1130,1208,1273,1327,1444,1508,1572,1626,1706,1840,1926,2015,2121,2206,2294,2389,2456,2522,2601,2683,2774,2850,2927,3004,3075,3182,3262,3359,3459,3533,3614,3719,3777,3844,3935,4027,4089,4153,4216,4319,4435,4540,4656,4740" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3112,3206,3316,3408,3473,3572,3638,3698,3800,3876,3934,4012,4077,4131,4248,4312,4376,4430,4510,4644,4730,4819,4925,5010,5098,5193,5260,5326,5405,5487,5578,5654,5731,5808,5879,5986,6066,6163,6263,6337,6418,6523,6581,6648,6739,6831,6893,6957,7020,7123,7239,7344,7460", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,93,109,91,64,98,65,59,101,75,57,77,64,53,116,63,63,53,79,133,85,88,105,84,87,94,66,65,78,81,90,75,76,76,70,106,79,96,99,73,80,104,57,66,90,91,61,63,62,102,115,104,115,83", ++ "endOffsets": "271,3107,3201,3311,3403,3468,3567,3633,3693,3795,3871,3929,4007,4072,4126,4243,4307,4371,4425,4505,4639,4725,4814,4920,5005,5093,5188,5255,5321,5400,5482,5573,5649,5726,5803,5874,5981,6061,6158,6258,6332,6413,6518,6576,6643,6734,6826,6888,6952,7015,7118,7234,7339,7455,7539" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7627", ++ "endColumns": "100", ++ "endOffsets": "7723" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,2854", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,2932" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,383,489,600,691,796,918,996,1071,1162,1255,1356,1450,1550,1644,1739,1838,1929,2020,2102,2211,2315,2414,2526,2638,2759,2924,7544", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "378,484,595,686,791,913,991,1066,1157,1250,1351,1445,1545,1639,1734,1833,1924,2015,2097,2206,2310,2409,2521,2633,2754,2919,3020,7622" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-mn.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-mn.json +new file mode 100644 +index 0000000..4f0578f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-mn.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-mn/values-mn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,299,397,516,601,666,764,845,904,997,1060,1118,1189,1251,1305,1426,1483,1544,1598,1669,1802,1886,1969,2072,2154,2232,2322,2389,2455,2526,2604,2690,2765,2843,2923,3006,3094,3173,3263,3356,3430,3500,3591,3645,3712,3796,3881,3943,4007,4070,4174,4280,4377,4482", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,97,118,84,64,97,80,58,92,62,57,70,61,53,120,56,60,53,70,132,83,82,102,81,77,89,66,65,70,77,85,74,77,79,82,87,78,89,92,73,69,90,53,66,83,84,61,63,62,103,105,96,104,83", ++ "endOffsets": "215,294,392,511,596,661,759,840,899,992,1055,1113,1184,1246,1300,1421,1478,1539,1593,1664,1797,1881,1964,2067,2149,2227,2317,2384,2450,2521,2599,2685,2760,2838,2918,3001,3089,3168,3258,3351,3425,3495,3586,3640,3707,3791,3876,3938,4002,4065,4169,4275,4372,4477,4561" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3041,3139,3258,3343,3408,3506,3587,3646,3739,3802,3860,3931,3993,4047,4168,4225,4286,4340,4411,4544,4628,4711,4814,4896,4974,5064,5131,5197,5268,5346,5432,5507,5585,5665,5748,5836,5915,6005,6098,6172,6242,6333,6387,6454,6538,6623,6685,6749,6812,6916,7022,7119,7224", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,97,118,84,64,97,80,58,92,62,57,70,61,53,120,56,60,53,70,132,83,82,102,81,77,89,66,65,70,77,85,74,77,79,82,87,78,89,92,73,69,90,53,66,83,84,61,63,62,103,105,96,104,83", ++ "endOffsets": "265,3036,3134,3253,3338,3403,3501,3582,3641,3734,3797,3855,3926,3988,4042,4163,4220,4281,4335,4406,4539,4623,4706,4809,4891,4969,5059,5126,5192,5263,5341,5427,5502,5580,5660,5743,5831,5910,6000,6093,6167,6237,6328,6382,6449,6533,6618,6680,6744,6807,6911,7017,7114,7219,7303" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,2797", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,2873" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,384,484,593,679,785,899,982,1063,1154,1247,1342,1438,1535,1628,1722,1814,1905,1995,2075,2182,2285,2382,2489,2591,2704,2863,7308", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "379,479,588,674,780,894,977,1058,1149,1242,1337,1433,1530,1623,1717,1809,1900,1990,2070,2177,2280,2377,2484,2586,2699,2858,2957,7384" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7389", ++ "endColumns": "100", ++ "endOffsets": "7485" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-mr.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-mr.json +new file mode 100644 +index 0000000..ab78a77 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-mr.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-mr/values-mr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,322,429,519,621,733,811,888,979,1072,1165,1262,1362,1455,1550,1644,1735,1826,1906,2013,2114,2213,2322,2424,2538,2695,2798", ++ "endColumns": "110,105,106,89,101,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,98,108,101,113,156,102,82", ++ "endOffsets": "211,317,424,514,616,728,806,883,974,1067,1160,1257,1357,1450,1545,1639,1730,1821,1901,2008,2109,2208,2317,2419,2533,2690,2793,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,375,481,588,678,780,892,970,1047,1138,1231,1324,1421,1521,1614,1709,1803,1894,1985,2065,2172,2273,2372,2481,2583,2697,2854,7231", ++ "endColumns": "110,105,106,89,101,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,98,108,101,113,156,102,82", ++ "endOffsets": "370,476,583,673,775,887,965,1042,1133,1226,1319,1416,1516,1609,1704,1798,1889,1980,2060,2167,2268,2367,2476,2578,2692,2849,2952,7309" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,297,397,513,595,658,749,814,873,961,1023,1083,1150,1213,1267,1381,1438,1499,1553,1623,1742,1823,1908,2013,2090,2167,2253,2320,2386,2456,2534,2621,2691,2767,2838,2907,3003,3077,3175,3271,3345,3415,3517,3572,3639,3726,3819,3882,3946,4009,4109,4212,4306,4410", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,99,115,81,62,90,64,58,87,61,59,66,62,53,113,56,60,53,69,118,80,84,104,76,76,85,66,65,69,77,86,69,75,70,68,95,73,97,95,73,69,101,54,66,86,92,62,63,62,99,102,93,103,77", ++ "endOffsets": "209,292,392,508,590,653,744,809,868,956,1018,1078,1145,1208,1262,1376,1433,1494,1548,1618,1737,1818,1903,2008,2085,2162,2248,2315,2381,2451,2529,2616,2686,2762,2833,2902,2998,3072,3170,3266,3340,3410,3512,3567,3634,3721,3814,3877,3941,4004,4104,4207,4301,4405,4483" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2957,3040,3140,3256,3338,3401,3492,3557,3616,3704,3766,3826,3893,3956,4010,4124,4181,4242,4296,4366,4485,4566,4651,4756,4833,4910,4996,5063,5129,5199,5277,5364,5434,5510,5581,5650,5746,5820,5918,6014,6088,6158,6260,6315,6382,6469,6562,6625,6689,6752,6852,6955,7049,7153", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,99,115,81,62,90,64,58,87,61,59,66,62,53,113,56,60,53,69,118,80,84,104,76,76,85,66,65,69,77,86,69,75,70,68,95,73,97,95,73,69,101,54,66,86,92,62,63,62,99,102,93,103,77", ++ "endOffsets": "259,3035,3135,3251,3333,3396,3487,3552,3611,3699,3761,3821,3888,3951,4005,4119,4176,4237,4291,4361,4480,4561,4646,4751,4828,4905,4991,5058,5124,5194,5272,5359,5429,5505,5576,5645,5741,5815,5913,6009,6083,6153,6255,6310,6377,6464,6557,6620,6684,6747,6847,6950,7044,7148,7226" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7314", ++ "endColumns": "100", ++ "endOffsets": "7410" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ms.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ms.json +new file mode 100644 +index 0000000..f7e7f4a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ms.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ms/values-ms.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7369", ++ "endColumns": "100", ++ "endOffsets": "7465" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,2800", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "284,395,500,608,695,799,910,989,1067,1158,1251,1346,1440,1538,1631,1726,1820,1911,2002,2082,2194,2302,2399,2508,2612,2719,2878,7288", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "390,495,603,690,794,905,984,1062,1153,1246,1341,1435,1533,1626,1721,1815,1906,1997,2077,2189,2297,2394,2503,2607,2714,2873,2974,7364" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,234,321,424,540,623,688,781,846,905,992,1054,1114,1180,1242,1296,1404,1461,1522,1577,1648,1768,1859,1945,2063,2149,2235,2323,2390,2456,2527,2605,2688,2761,2837,2910,2981,3073,3146,3236,3329,3403,3474,3565,3617,3685,3769,3854,3916,3980,4043,4147,4253,4349,4457", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,102,115,82,64,92,64,58,86,61,59,65,61,53,107,56,60,54,70,119,90,85,117,85,85,87,66,65,70,77,82,72,75,72,70,91,72,89,92,73,70,90,51,67,83,84,61,63,62,103,105,95,107,85", ++ "endOffsets": "229,316,419,535,618,683,776,841,900,987,1049,1109,1175,1237,1291,1399,1456,1517,1572,1643,1763,1854,1940,2058,2144,2230,2318,2385,2451,2522,2600,2683,2756,2832,2905,2976,3068,3141,3231,3324,3398,3469,3560,3612,3680,3764,3849,3911,3975,4038,4142,4248,4344,4452,4538" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2979,3066,3169,3285,3368,3433,3526,3591,3650,3737,3799,3859,3925,3987,4041,4149,4206,4267,4322,4393,4513,4604,4690,4808,4894,4980,5068,5135,5201,5272,5350,5433,5506,5582,5655,5726,5818,5891,5981,6074,6148,6219,6310,6362,6430,6514,6599,6661,6725,6788,6892,6998,7094,7202", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,102,115,82,64,92,64,58,86,61,59,65,61,53,107,56,60,54,70,119,90,85,117,85,85,87,66,65,70,77,82,72,75,72,70,91,72,89,92,73,70,90,51,67,83,84,61,63,62,103,105,95,107,85", ++ "endOffsets": "279,3061,3164,3280,3363,3428,3521,3586,3645,3732,3794,3854,3920,3982,4036,4144,4201,4262,4317,4388,4508,4599,4685,4803,4889,4975,5063,5130,5196,5267,5345,5428,5501,5577,5650,5721,5813,5886,5976,6069,6143,6214,6305,6357,6425,6509,6594,6656,6720,6783,6887,6993,7089,7197,7283" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-my.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-my.json +new file mode 100644 +index 0000000..3e58154 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-my.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-my/values-my.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7514", ++ "endColumns": "100", ++ "endOffsets": "7610" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,240,316,422,551,636,701,791,866,925,1016,1081,1140,1211,1273,1330,1449,1507,1568,1623,1696,1828,1919,2008,2119,2197,2274,2366,2433,2499,2571,2653,2735,2810,2884,2956,3035,3132,3213,3299,3391,3465,3544,3630,3684,3752,3835,3916,3978,4042,4105,4217,4320,4424,4529", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,75,105,128,84,64,89,74,58,90,64,58,70,61,56,118,57,60,54,72,131,90,88,110,77,76,91,66,65,71,81,81,74,73,71,78,96,80,85,91,73,78,85,53,67,82,80,61,63,62,111,102,103,104,81", ++ "endOffsets": "235,311,417,546,631,696,786,861,920,1011,1076,1135,1206,1268,1325,1444,1502,1563,1618,1691,1823,1914,2003,2114,2192,2269,2361,2428,2494,2566,2648,2730,2805,2879,2951,3030,3127,3208,3294,3386,3460,3539,3625,3679,3747,3830,3911,3973,4037,4100,4212,4315,4419,4524,4606" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3057,3133,3239,3368,3453,3518,3608,3683,3742,3833,3898,3957,4028,4090,4147,4266,4324,4385,4440,4513,4645,4736,4825,4936,5014,5091,5183,5250,5316,5388,5470,5552,5627,5701,5773,5852,5949,6030,6116,6208,6282,6361,6447,6501,6569,6652,6733,6795,6859,6922,7034,7137,7241,7346", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,75,105,128,84,64,89,74,58,90,64,58,70,61,56,118,57,60,54,72,131,90,88,110,77,76,91,66,65,71,81,81,74,73,71,78,96,80,85,91,73,78,85,53,67,82,80,61,63,62,111,102,103,104,81", ++ "endOffsets": "285,3128,3234,3363,3448,3513,3603,3678,3737,3828,3893,3952,4023,4085,4142,4261,4319,4380,4435,4508,4640,4731,4820,4931,5009,5086,5178,5245,5311,5383,5465,5547,5622,5696,5768,5847,5944,6025,6111,6203,6277,6356,6442,6496,6564,6647,6728,6790,6854,6917,7029,7132,7236,7341,7423" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,325,441,528,637,760,842,923,1014,1107,1202,1296,1396,1489,1584,1678,1769,1860,1945,2060,2169,2268,2394,2501,2609,2769,2872", ++ "endColumns": "112,106,115,86,108,122,81,80,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "213,320,436,523,632,755,837,918,1009,1102,1197,1291,1391,1484,1579,1673,1764,1855,1940,2055,2164,2263,2389,2496,2604,2764,2867,2953" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "290,403,510,626,713,822,945,1027,1108,1199,1292,1387,1481,1581,1674,1769,1863,1954,2045,2130,2245,2354,2453,2579,2686,2794,2954,7428", ++ "endColumns": "112,106,115,86,108,122,81,80,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "398,505,621,708,817,940,1022,1103,1194,1287,1382,1476,1576,1669,1764,1858,1949,2040,2125,2240,2349,2448,2574,2681,2789,2949,3052,7509" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-nb.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-nb.json +new file mode 100644 +index 0000000..829f408 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-nb.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-nb/values-nb.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,303,417,503,603,716,793,868,959,1052,1146,1240,1340,1433,1528,1626,1717,1808,1886,1989,2087,2183,2287,2386,2487,2640,2737", ++ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", ++ "endOffsets": "203,298,412,498,598,711,788,863,954,1047,1141,1235,1335,1428,1523,1621,1712,1803,1881,1984,2082,2178,2282,2381,2482,2635,2732,2812" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "266,369,464,578,664,764,877,954,1029,1120,1213,1307,1401,1501,1594,1689,1787,1878,1969,2047,2150,2248,2344,2448,2547,2648,2801,7123", ++ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", ++ "endOffsets": "364,459,573,659,759,872,949,1024,1115,1208,1302,1396,1496,1589,1684,1782,1873,1964,2042,2145,2243,2339,2443,2542,2643,2796,2893,7198" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7203", ++ "endColumns": "100", ++ "endOffsets": "7299" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,216,303,402,521,603,667,759,827,887,974,1036,1100,1168,1233,1287,1396,1454,1516,1570,1645,1765,1847,1927,2031,2109,2189,2277,2344,2410,2478,2552,2642,2713,2791,2861,2931,3020,3098,3186,3276,3348,3420,3504,3555,3621,3702,3785,3847,3911,3974,4074,4172,4265,4363", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,98,118,81,63,91,67,59,86,61,63,67,64,53,108,57,61,53,74,119,81,79,103,77,79,87,66,65,67,73,89,70,77,69,69,88,77,87,89,71,71,83,50,65,80,82,61,63,62,99,97,92,97,77", ++ "endOffsets": "211,298,397,516,598,662,754,822,882,969,1031,1095,1163,1228,1282,1391,1449,1511,1565,1640,1760,1842,1922,2026,2104,2184,2272,2339,2405,2473,2547,2637,2708,2786,2856,2926,3015,3093,3181,3271,3343,3415,3499,3550,3616,3697,3780,3842,3906,3969,4069,4167,4260,4358,4436" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2898,2985,3084,3203,3285,3349,3441,3509,3569,3656,3718,3782,3850,3915,3969,4078,4136,4198,4252,4327,4447,4529,4609,4713,4791,4871,4959,5026,5092,5160,5234,5324,5395,5473,5543,5613,5702,5780,5868,5958,6030,6102,6186,6237,6303,6384,6467,6529,6593,6656,6756,6854,6947,7045", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,98,118,81,63,91,67,59,86,61,63,67,64,53,108,57,61,53,74,119,81,79,103,77,79,87,66,65,67,73,89,70,77,69,69,88,77,87,89,71,71,83,50,65,80,82,61,63,62,99,97,92,97,77", ++ "endOffsets": "261,2980,3079,3198,3280,3344,3436,3504,3564,3651,3713,3777,3845,3910,3964,4073,4131,4193,4247,4322,4442,4524,4604,4708,4786,4866,4954,5021,5087,5155,5229,5319,5390,5468,5538,5608,5697,5775,5863,5953,6025,6097,6181,6232,6298,6379,6462,6524,6588,6651,6751,6849,6942,7040,7118" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ne.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ne.json +new file mode 100644 +index 0000000..43ece2b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ne.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ne/values-ne.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,217,299,401,511,598,664,760,826,887,992,1064,1122,1196,1258,1312,1425,1485,1546,1605,1683,1807,1888,1973,2079,2160,2243,2326,2393,2459,2536,2615,2703,2772,2848,2929,2997,3088,3166,3259,3356,3430,3509,3607,3667,3733,3821,3909,3971,4039,4102,4207,4325,4420,4540", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,101,109,86,65,95,65,60,104,71,57,73,61,53,112,59,60,58,77,123,80,84,105,80,82,82,66,65,76,78,87,68,75,80,67,90,77,92,96,73,78,97,59,65,87,87,61,67,62,104,117,94,119,83", ++ "endOffsets": "212,294,396,506,593,659,755,821,882,987,1059,1117,1191,1253,1307,1420,1480,1541,1600,1678,1802,1883,1968,2074,2155,2238,2321,2388,2454,2531,2610,2698,2767,2843,2924,2992,3083,3161,3254,3351,3425,3504,3602,3662,3728,3816,3904,3966,4034,4097,4202,4320,4415,4535,4619" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3029,3111,3213,3323,3410,3476,3572,3638,3699,3804,3876,3934,4008,4070,4124,4237,4297,4358,4417,4495,4619,4700,4785,4891,4972,5055,5138,5205,5271,5348,5427,5515,5584,5660,5741,5809,5900,5978,6071,6168,6242,6321,6419,6479,6545,6633,6721,6783,6851,6914,7019,7137,7232,7352", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,101,109,86,65,95,65,60,104,71,57,73,61,53,112,59,60,58,77,123,80,84,105,80,82,82,66,65,76,78,87,68,75,80,67,90,77,92,96,73,78,97,59,65,87,87,61,67,62,104,117,94,119,83", ++ "endOffsets": "262,3106,3208,3318,3405,3471,3567,3633,3694,3799,3871,3929,4003,4065,4119,4232,4292,4353,4412,4490,4614,4695,4780,4886,4967,5050,5133,5200,5266,5343,5422,5510,5579,5655,5736,5804,5895,5973,6066,6163,6237,6316,6414,6474,6540,6628,6716,6778,6846,6909,7014,7132,7227,7347,7431" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7516", ++ "endColumns": "100", ++ "endOffsets": "7612" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,327,435,526,633,753,837,916,1007,1100,1195,1289,1389,1482,1577,1671,1762,1853,1939,2052,2153,2249,2362,2472,2589,2756,2867", ++ "endColumns": "110,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "211,322,430,521,628,748,832,911,1002,1095,1190,1284,1384,1477,1572,1666,1757,1848,1934,2047,2148,2244,2357,2467,2584,2751,2862,2942" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "267,378,489,597,688,795,915,999,1078,1169,1262,1357,1451,1551,1644,1739,1833,1924,2015,2101,2214,2315,2411,2524,2634,2751,2918,7436", ++ "endColumns": "110,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "373,484,592,683,790,910,994,1073,1164,1257,1352,1446,1546,1639,1734,1828,1919,2010,2096,2209,2310,2406,2519,2629,2746,2913,3024,7511" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-night-v8.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-night-v8.json +new file mode 100644 +index 0000000..18b6a74 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-night-v8.json +@@ -0,0 +1,43 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-night-v8/values-night-v8.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-night-v8/values-night-v8.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,293,389,491,593,687", ++ "endColumns": "69,83,83,95,101,101,93,88", ++ "endOffsets": "120,204,288,384,486,588,682,771" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,25", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,293,389,491,593,2549", ++ "endColumns": "69,83,83,95,101,101,93,88", ++ "endOffsets": "120,204,288,384,486,588,682,2633" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-night-v8/values-night-v8.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,143,267,369,471,587,689,803,931,1047,1169,1305,1425,1559,1679,1791,1917,2041,2171,2293,2431,2565,2681", ++ "endColumns": "87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,123,129,121,137,133,115,119", ++ "endOffsets": "138,262,364,466,582,684,798,926,1042,1164,1300,1420,1554,1674,1786,1912,2036,2166,2288,2426,2560,2676,2796" ++ }, ++ "to": { ++ "startLines": "9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,26,27,28,29,30,31,32", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "687,775,899,1001,1103,1219,1321,1435,1563,1679,1801,1937,2057,2191,2311,2423,2638,2762,2892,3014,3152,3286,3402", ++ "endColumns": "87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,123,129,121,137,133,115,119", ++ "endOffsets": "770,894,996,1098,1214,1316,1430,1558,1674,1796,1932,2052,2186,2306,2418,2544,2757,2887,3009,3147,3281,3397,3517" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-nl.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-nl.json +new file mode 100644 +index 0000000..bbe118b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-nl.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-nl/values-nl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7451", ++ "endColumns": "100", ++ "endOffsets": "7547" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,328,435,520,628,748,826,902,994,1088,1183,1277,1377,1471,1567,1662,1754,1846,1928,2039,2142,2241,2356,2470,2573,2728,2831", ++ "endColumns": "117,104,106,84,107,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "218,323,430,515,623,743,821,897,989,1083,1178,1272,1372,1466,1562,1657,1749,1841,1923,2034,2137,2236,2351,2465,2568,2723,2826,2909" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,392,497,604,689,797,917,995,1071,1163,1257,1352,1446,1546,1640,1736,1831,1923,2015,2097,2208,2311,2410,2525,2639,2742,2897,7368", ++ "endColumns": "117,104,106,84,107,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "387,492,599,684,792,912,990,1066,1158,1252,1347,1441,1541,1635,1731,1826,1918,2010,2092,2203,2306,2405,2520,2634,2737,2892,2995,7446" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,301,398,520,601,665,758,837,900,993,1059,1117,1190,1254,1310,1432,1489,1551,1607,1683,1817,1902,1988,2096,2177,2256,2346,2413,2479,2557,2640,2728,2803,2882,2955,3026,3120,3198,3287,3377,3451,3532,3619,3672,3739,3820,3904,3966,4030,4093,4201,4302,4404,4507", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,96,121,80,63,92,78,62,92,65,57,72,63,55,121,56,61,55,75,133,84,85,107,80,78,89,66,65,77,82,87,74,78,72,70,93,77,88,89,73,80,86,52,66,80,83,61,63,62,107,100,101,102,84", ++ "endOffsets": "219,296,393,515,596,660,753,832,895,988,1054,1112,1185,1249,1305,1427,1484,1546,1602,1678,1812,1897,1983,2091,2172,2251,2341,2408,2474,2552,2635,2723,2798,2877,2950,3021,3115,3193,3282,3372,3446,3527,3614,3667,3734,3815,3899,3961,4025,4088,4196,4297,4399,4502,4587" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3000,3077,3174,3296,3377,3441,3534,3613,3676,3769,3835,3893,3966,4030,4086,4208,4265,4327,4383,4459,4593,4678,4764,4872,4953,5032,5122,5189,5255,5333,5416,5504,5579,5658,5731,5802,5896,5974,6063,6153,6227,6308,6395,6448,6515,6596,6680,6742,6806,6869,6977,7078,7180,7283", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,96,121,80,63,92,78,62,92,65,57,72,63,55,121,56,61,55,75,133,84,85,107,80,78,89,66,65,77,82,87,74,78,72,70,93,77,88,89,73,80,86,52,66,80,83,61,63,62,107,100,101,102,84", ++ "endOffsets": "269,3072,3169,3291,3372,3436,3529,3608,3671,3764,3830,3888,3961,4025,4081,4203,4260,4322,4378,4454,4588,4673,4759,4867,4948,5027,5117,5184,5250,5328,5411,5499,5574,5653,5726,5797,5891,5969,6058,6148,6222,6303,6390,6443,6510,6591,6675,6737,6801,6864,6972,7073,7175,7278,7363" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-or.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-or.json +new file mode 100644 +index 0000000..136c1f1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-or.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-or/values-or.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,398,503,582,647,736,801,860,946,1010,1073,1146,1210,1264,1376,1434,1496,1550,1622,1744,1831,1917,2027,2104,2185,2276,2343,2409,2479,2556,2643,2714,2791,2860,2929,3020,3092,3181,3270,3344,3416,3502,3552,3618,3698,3782,3844,3908,3971,4071,4168,4260,4359", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,93,104,78,64,88,64,58,85,63,62,72,63,53,111,57,61,53,71,121,86,85,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,83", ++ "endOffsets": "222,299,393,498,577,642,731,796,855,941,1005,1068,1141,1205,1259,1371,1429,1491,1545,1617,1739,1826,1912,2022,2099,2180,2271,2338,2404,2474,2551,2638,2709,2786,2855,2924,3015,3087,3176,3265,3339,3411,3497,3547,3613,3693,3777,3839,3903,3966,4066,4163,4255,4354,4438" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3022,3099,3193,3298,3377,3442,3531,3596,3655,3741,3805,3868,3941,4005,4059,4171,4229,4291,4345,4417,4539,4626,4712,4822,4899,4980,5071,5138,5204,5274,5351,5438,5509,5586,5655,5724,5815,5887,5976,6065,6139,6211,6297,6347,6413,6493,6577,6639,6703,6766,6866,6963,7055,7154", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,93,104,78,64,88,64,58,85,63,62,72,63,53,111,57,61,53,71,121,86,85,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,83", ++ "endOffsets": "272,3094,3188,3293,3372,3437,3526,3591,3650,3736,3800,3863,3936,4000,4054,4166,4224,4286,4340,4412,4534,4621,4707,4817,4894,4975,5066,5133,5199,5269,5346,5433,5504,5581,5650,5719,5810,5882,5971,6060,6134,6206,6292,6342,6408,6488,6572,6634,6698,6761,6861,6958,7050,7149,7233" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7321", ++ "endColumns": "100", ++ "endOffsets": "7417" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,224,334,441,527,631,751,830,906,997,1090,1186,1281,1381,1474,1569,1665,1756,1846,1935,2045,2149,2248,2359,2463,2581,2744,2850", ++ "endColumns": "118,109,106,85,103,119,78,75,90,92,95,94,99,92,94,95,90,89,88,109,103,98,110,103,117,162,105,82", ++ "endOffsets": "219,329,436,522,626,746,825,901,992,1085,1181,1276,1376,1469,1564,1660,1751,1841,1930,2040,2144,2243,2354,2458,2576,2739,2845,2928" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,396,506,613,699,803,923,1002,1078,1169,1262,1358,1453,1553,1646,1741,1837,1928,2018,2107,2217,2321,2420,2531,2635,2753,2916,7238", ++ "endColumns": "118,109,106,85,103,119,78,75,90,92,95,94,99,92,94,95,90,89,88,109,103,98,110,103,117,162,105,82", ++ "endOffsets": "391,501,608,694,798,918,997,1073,1164,1257,1353,1448,1548,1641,1736,1832,1923,2013,2102,2212,2316,2415,2526,2630,2748,2911,3017,7316" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pa.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pa.json +new file mode 100644 +index 0000000..08ffc9f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pa.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-pa/values-pa.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7223", ++ "endColumns": "100", ++ "endOffsets": "7319" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,218,299,407,519,602,666,758,827,886,971,1033,1091,1155,1216,1270,1384,1442,1502,1556,1626,1753,1834,1913,2018,2094,2171,2255,2322,2388,2457,2534,2620,2688,2764,2834,2899,2994,3067,3161,3254,3328,3397,3491,3547,3614,3698,3786,3848,3912,3975,4072,4167,4258,4354", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,107,111,82,63,91,68,58,84,61,57,63,60,53,113,57,59,53,69,126,80,78,104,75,76,83,66,65,68,76,85,67,75,69,64,94,72,93,92,73,68,93,55,66,83,87,61,63,62,96,94,90,95,76", ++ "endOffsets": "213,294,402,514,597,661,753,822,881,966,1028,1086,1150,1211,1265,1379,1437,1497,1551,1621,1748,1829,1908,2013,2089,2166,2250,2317,2383,2452,2529,2615,2683,2759,2829,2894,2989,3062,3156,3249,3323,3392,3486,3542,3609,3693,3781,3843,3907,3970,4067,4162,4253,4349,4426" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2930,3011,3119,3231,3314,3378,3470,3539,3598,3683,3745,3803,3867,3928,3982,4096,4154,4214,4268,4338,4465,4546,4625,4730,4806,4883,4967,5034,5100,5169,5246,5332,5400,5476,5546,5611,5706,5779,5873,5966,6040,6109,6203,6259,6326,6410,6498,6560,6624,6687,6784,6879,6970,7066", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,107,111,82,63,91,68,58,84,61,57,63,60,53,113,57,59,53,69,126,80,78,104,75,76,83,66,65,68,76,85,67,75,69,64,94,72,93,92,73,68,93,55,66,83,87,61,63,62,96,94,90,95,76", ++ "endOffsets": "263,3006,3114,3226,3309,3373,3465,3534,3593,3678,3740,3798,3862,3923,3977,4091,4149,4209,4263,4333,4460,4541,4620,4725,4801,4878,4962,5029,5095,5164,5241,5327,5395,5471,5541,5606,5701,5774,5868,5961,6035,6104,6198,6254,6321,6405,6493,6555,6619,6682,6779,6874,6965,7061,7138" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,2767", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,2842" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "268,371,468,573,659,759,872,950,1027,1118,1211,1305,1399,1499,1592,1687,1781,1872,1963,2042,2152,2255,2351,2462,2564,2674,2833,7143", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "366,463,568,654,754,867,945,1022,1113,1206,1300,1394,1494,1587,1682,1776,1867,1958,2037,2147,2250,2346,2457,2559,2669,2828,2925,7218" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pl.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pl.json +new file mode 100644 +index 0000000..03080c7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pl.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-pl/values-pl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,2817", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,2895" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "391,506,608,716,802,909,1028,1107,1183,1274,1367,1462,1556,1657,1750,1845,1940,2031,2122,2204,2313,2413,2512,2621,2733,2844,3007,7408", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "501,603,711,797,904,1023,1102,1178,1269,1362,1457,1551,1652,1745,1840,1935,2026,2117,2199,2308,2408,2507,2616,2728,2839,3002,3098,7486" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,341,420,505,622,704,768,849,913,974,1085,1153,1207,1276,1338,1392,1503,1564,1626,1680,1752,1881,1970,2052,2171,2253,2336,2423,2490,2556,2627,2703,2792,2869,2947,3025,3101,3191,3264,3359,3456,3528,3602,3702,3754,3820,3908,3998,4060,4124,4187,4294,4383,4482,4570", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,78,84,116,81,63,80,63,60,110,67,53,68,61,53,110,60,61,53,71,128,88,81,118,81,82,86,66,65,70,75,88,76,77,77,75,89,72,94,96,71,73,99,51,65,87,89,61,63,62,106,88,98,87,75", ++ "endOffsets": "336,415,500,617,699,763,844,908,969,1080,1148,1202,1271,1333,1387,1498,1559,1621,1675,1747,1876,1965,2047,2166,2248,2331,2418,2485,2551,2622,2698,2787,2864,2942,3020,3096,3186,3259,3354,3451,3523,3597,3697,3749,3815,3903,3993,4055,4119,4182,4289,4378,4477,4565,4641" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3182,3267,3384,3466,3530,3611,3675,3736,3847,3915,3969,4038,4100,4154,4265,4326,4388,4442,4514,4643,4732,4814,4933,5015,5098,5185,5252,5318,5389,5465,5554,5631,5709,5787,5863,5953,6026,6121,6218,6290,6364,6464,6516,6582,6670,6760,6822,6886,6949,7056,7145,7244,7332", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,84,116,81,63,80,63,60,110,67,53,68,61,53,110,60,61,53,71,128,88,81,118,81,82,86,66,65,70,75,88,76,77,77,75,89,72,94,96,71,73,99,51,65,87,89,61,63,62,106,88,98,87,75", ++ "endOffsets": "386,3177,3262,3379,3461,3525,3606,3670,3731,3842,3910,3964,4033,4095,4149,4260,4321,4383,4437,4509,4638,4727,4809,4928,5010,5093,5180,5247,5313,5384,5460,5549,5626,5704,5782,5858,5948,6021,6116,6213,6285,6359,6459,6511,6577,6665,6755,6817,6881,6944,7051,7140,7239,7327,7403" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7491", ++ "endColumns": "100", ++ "endOffsets": "7587" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-port.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-port.json +new file mode 100644 +index 0000000..fa71b9d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-port.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-port/values-port.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-port/values-port.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "55", ++ "endOffsets": "106" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pt-rBR.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pt-rBR.json +new file mode 100644 +index 0000000..abd2107 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pt-rBR.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-pt-rBR/values-pt-rBR.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,398,504,611,700,801,920,1005,1085,1176,1269,1364,1458,1558,1651,1746,1841,1932,2023,2108,2215,2326,2428,2536,2644,2754,2916,7436", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "393,499,606,695,796,915,1000,1080,1171,1264,1359,1453,1553,1646,1741,1836,1927,2018,2103,2210,2321,2423,2531,2639,2749,2911,3011,7517" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7522", ++ "endColumns": "100", ++ "endOffsets": "7618" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,312,413,533,614,678,770,849,909,999,1070,1133,1208,1272,1326,1453,1511,1573,1627,1706,1847,1934,2016,2125,2208,2292,2379,2446,2512,2586,2666,2753,2826,2903,2972,3046,3134,3211,3304,3400,3474,3554,3651,3703,3769,3856,3944,4006,4070,4133,4245,4354,4461,4571", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,100,119,80,63,91,78,59,89,70,62,74,63,53,126,57,61,53,78,140,86,81,108,82,83,86,66,65,73,79,86,72,76,68,73,87,76,92,95,73,79,96,51,65,86,87,61,63,62,111,108,106,109,76", ++ "endOffsets": "223,307,408,528,609,673,765,844,904,994,1065,1128,1203,1267,1321,1448,1506,1568,1622,1701,1842,1929,2011,2120,2203,2287,2374,2441,2507,2581,2661,2748,2821,2898,2967,3041,3129,3206,3299,3395,3469,3549,3646,3698,3764,3851,3939,4001,4065,4128,4240,4349,4456,4566,4643" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3016,3100,3201,3321,3402,3466,3558,3637,3697,3787,3858,3921,3996,4060,4114,4241,4299,4361,4415,4494,4635,4722,4804,4913,4996,5080,5167,5234,5300,5374,5454,5541,5614,5691,5760,5834,5922,5999,6092,6188,6262,6342,6439,6491,6557,6644,6732,6794,6858,6921,7033,7142,7249,7359", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,100,119,80,63,91,78,59,89,70,62,74,63,53,126,57,61,53,78,140,86,81,108,82,83,86,66,65,73,79,86,72,76,68,73,87,76,92,95,73,79,96,51,65,86,87,61,63,62,111,108,106,109,76", ++ "endOffsets": "273,3095,3196,3316,3397,3461,3553,3632,3692,3782,3853,3916,3991,4055,4109,4236,4294,4356,4410,4489,4630,4717,4799,4908,4991,5075,5162,5229,5295,5369,5449,5536,5609,5686,5755,5829,5917,5994,6087,6183,6257,6337,6434,6486,6552,6639,6727,6789,6853,6916,7028,7137,7244,7354,7431" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pt-rPT.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pt-rPT.json +new file mode 100644 +index 0000000..25bcefb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pt-rPT.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-pt-rPT/values-pt-rPT.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,310,413,533,614,678,770,849,914,1004,1072,1134,1207,1271,1325,1451,1509,1571,1625,1701,1844,1931,2013,2122,2204,2286,2373,2440,2506,2581,2661,2748,2821,2898,2971,3045,3138,3215,3308,3406,3480,3561,3660,3713,3779,3868,3956,4018,4082,4145,4261,4364,4471,4575", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,102,119,80,63,91,78,64,89,67,61,72,63,53,125,57,61,53,75,142,86,81,108,81,81,86,66,65,74,79,86,72,76,72,73,92,76,92,97,73,80,98,52,65,88,87,61,63,62,115,102,106,103,85", ++ "endOffsets": "223,305,408,528,609,673,765,844,909,999,1067,1129,1202,1266,1320,1446,1504,1566,1620,1696,1839,1926,2008,2117,2199,2281,2368,2435,2501,2576,2656,2743,2816,2893,2966,3040,3133,3210,3303,3401,3475,3556,3655,3708,3774,3863,3951,4013,4077,4140,4256,4359,4466,4570,4656" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3009,3091,3194,3314,3395,3459,3551,3630,3695,3785,3853,3915,3988,4052,4106,4232,4290,4352,4406,4482,4625,4712,4794,4903,4985,5067,5154,5221,5287,5362,5442,5529,5602,5679,5752,5826,5919,5996,6089,6187,6261,6342,6441,6494,6560,6649,6737,6799,6863,6926,7042,7145,7252,7356", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,102,119,80,63,91,78,64,89,67,61,72,63,53,125,57,61,53,75,142,86,81,108,81,81,86,66,65,74,79,86,72,76,72,73,92,76,92,97,73,80,98,52,65,88,87,61,63,62,115,102,106,103,85", ++ "endOffsets": "273,3086,3189,3309,3390,3454,3546,3625,3690,3780,3848,3910,3983,4047,4101,4227,4285,4347,4401,4477,4620,4707,4789,4898,4980,5062,5149,5216,5282,5357,5437,5524,5597,5674,5747,5821,5914,5991,6084,6182,6256,6337,6436,6489,6555,6644,6732,6794,6858,6921,7037,7140,7247,7351,7437" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,2836", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,2917" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,492,599,688,789,907,992,1072,1164,1258,1355,1449,1548,1642,1738,1833,1925,2017,2102,2209,2320,2422,2530,2638,2745,2910,7442", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "381,487,594,683,784,902,987,1067,1159,1253,1350,1444,1543,1637,1733,1828,1920,2012,2097,2204,2315,2417,2525,2633,2740,2905,3004,7523" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7528", ++ "endColumns": "100", ++ "endOffsets": "7624" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pt.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pt.json +new file mode 100644 +index 0000000..2823c71 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-pt.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-pt/values-pt.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2929", ++ "endColumns": "100", ++ "endOffsets": "3025" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ro.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ro.json +new file mode 100644 +index 0000000..da94a39 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ro.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ro/values-ro.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,276,363,464,585,669,735,830,904,964,1048,1114,1172,1245,1308,1364,1483,1540,1601,1657,1731,1876,1962,2046,2149,2231,2314,2404,2471,2537,2610,2688,2776,2847,2924,2998,3070,3161,3235,3330,3428,3502,3582,3683,3736,3802,3891,3981,4043,4107,4170,4282,4395,4505,4617", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,86,100,120,83,65,94,73,59,83,65,57,72,62,55,118,56,60,55,73,144,85,83,102,81,82,89,66,65,72,77,87,70,76,73,71,90,73,94,97,73,79,100,52,65,88,89,61,63,62,111,112,109,111,78", ++ "endOffsets": "271,358,459,580,664,730,825,899,959,1043,1109,1167,1240,1303,1359,1478,1535,1596,1652,1726,1871,1957,2041,2144,2226,2309,2399,2466,2532,2605,2683,2771,2842,2919,2993,3065,3156,3230,3325,3423,3497,3577,3678,3731,3797,3886,3976,4038,4102,4165,4277,4390,4500,4612,4691" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3072,3159,3260,3381,3465,3531,3626,3700,3760,3844,3910,3968,4041,4104,4160,4279,4336,4397,4453,4527,4672,4758,4842,4945,5027,5110,5200,5267,5333,5406,5484,5572,5643,5720,5794,5866,5957,6031,6126,6224,6298,6378,6479,6532,6598,6687,6777,6839,6903,6966,7078,7191,7301,7413", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,100,120,83,65,94,73,59,83,65,57,72,62,55,118,56,60,55,73,144,85,83,102,81,82,89,66,65,72,77,87,70,76,73,71,90,73,94,97,73,79,100,52,65,88,89,61,63,62,111,112,109,111,78", ++ "endOffsets": "321,3154,3255,3376,3460,3526,3621,3695,3755,3839,3905,3963,4036,4099,4155,4274,4331,4392,4448,4522,4667,4753,4837,4940,5022,5105,5195,5262,5328,5401,5479,5567,5638,5715,5789,5861,5952,6026,6121,6219,6293,6373,6474,6527,6593,6682,6772,6834,6898,6961,7073,7186,7296,7408,7487" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,2851", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,2930" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "326,447,551,664,748,852,973,1058,1138,1229,1322,1417,1511,1611,1704,1799,1893,1984,2076,2159,2271,2379,2479,2593,2699,2805,2969,7492", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "442,546,659,743,847,968,1053,1133,1224,1317,1412,1506,1606,1699,1794,1888,1979,2071,2154,2266,2374,2474,2588,2694,2800,2964,3067,7571" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7576", ++ "endColumns": "100", ++ "endOffsets": "7672" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ru.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ru.json +new file mode 100644 +index 0000000..f48be02 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ru.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ru/values-ru.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,2822", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,2899" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "386,501,603,702,788,893,1014,1093,1169,1261,1355,1450,1543,1638,1732,1828,1923,2015,2107,2196,2302,2409,2507,2616,2723,2837,3003,7515", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "496,598,697,783,888,1009,1088,1164,1256,1350,1445,1538,1633,1727,1823,1918,2010,2102,2191,2297,2404,2502,2611,2718,2832,2998,3098,7592" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7597", ++ "endColumns": "100", ++ "endOffsets": "7693" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,336,420,517,654,746,812,911,988,1051,1169,1234,1291,1361,1422,1476,1592,1649,1711,1765,1839,1967,2055,2141,2248,2332,2417,2508,2575,2641,2713,2791,2887,2967,3043,3120,3197,3286,3359,3449,3544,3618,3699,3792,3847,3913,3999,4084,4146,4210,4273,4371,4471,4566,4668", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,83,96,136,91,65,98,76,62,117,64,56,69,60,53,115,56,61,53,73,127,87,85,106,83,84,90,66,65,71,77,95,79,75,76,76,88,72,89,94,73,80,92,54,65,85,84,61,63,62,97,99,94,101,79", ++ "endOffsets": "331,415,512,649,741,807,906,983,1046,1164,1229,1286,1356,1417,1471,1587,1644,1706,1760,1834,1962,2050,2136,2243,2327,2412,2503,2570,2636,2708,2786,2882,2962,3038,3115,3192,3281,3354,3444,3539,3613,3694,3787,3842,3908,3994,4079,4141,4205,4268,4366,4466,4561,4663,4743" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3187,3284,3421,3513,3579,3678,3755,3818,3936,4001,4058,4128,4189,4243,4359,4416,4478,4532,4606,4734,4822,4908,5015,5099,5184,5275,5342,5408,5480,5558,5654,5734,5810,5887,5964,6053,6126,6216,6311,6385,6466,6559,6614,6680,6766,6851,6913,6977,7040,7138,7238,7333,7435", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,96,136,91,65,98,76,62,117,64,56,69,60,53,115,56,61,53,73,127,87,85,106,83,84,90,66,65,71,77,95,79,75,76,76,88,72,89,94,73,80,92,54,65,85,84,61,63,62,97,99,94,101,79", ++ "endOffsets": "381,3182,3279,3416,3508,3574,3673,3750,3813,3931,3996,4053,4123,4184,4238,4354,4411,4473,4527,4601,4729,4817,4903,5010,5094,5179,5270,5337,5403,5475,5553,5649,5729,5805,5882,5959,6048,6121,6211,6306,6380,6461,6554,6609,6675,6761,6846,6908,6972,7035,7133,7233,7328,7430,7510" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-si.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-si.json +new file mode 100644 +index 0000000..0d48c99 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-si.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-si/values-si.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7331", ++ "endColumns": "100", ++ "endOffsets": "7427" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,302,404,519,602,666,755,822,882,976,1039,1095,1165,1232,1287,1406,1463,1527,1581,1654,1776,1859,1944,2046,2124,2204,2290,2357,2423,2493,2566,2648,2720,2797,2869,2939,3032,3105,3195,3288,3362,3434,3525,3579,3645,3729,3814,3876,3940,4003,4108,4208,4303,4403", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,101,114,82,63,88,66,59,93,62,55,69,66,54,118,56,63,53,72,121,82,84,101,77,79,85,66,65,69,72,81,71,76,71,69,92,72,89,92,73,71,90,53,65,83,84,61,63,62,104,99,94,99,79", ++ "endOffsets": "219,297,399,514,597,661,750,817,877,971,1034,1090,1160,1227,1282,1401,1458,1522,1576,1649,1771,1854,1939,2041,2119,2199,2285,2352,2418,2488,2561,2643,2715,2792,2864,2934,3027,3100,3190,3283,3357,3429,3520,3574,3640,3724,3809,3871,3935,3998,4103,4203,4298,4398,4478" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2990,3068,3170,3285,3368,3432,3521,3588,3648,3742,3805,3861,3931,3998,4053,4172,4229,4293,4347,4420,4542,4625,4710,4812,4890,4970,5056,5123,5189,5259,5332,5414,5486,5563,5635,5705,5798,5871,5961,6054,6128,6200,6291,6345,6411,6495,6580,6642,6706,6769,6874,6974,7069,7169", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,101,114,82,63,88,66,59,93,62,55,69,66,54,118,56,63,53,72,121,82,84,101,77,79,85,66,65,69,72,81,71,76,71,69,92,72,89,92,73,71,90,53,65,83,84,61,63,62,104,99,94,99,79", ++ "endOffsets": "269,3063,3165,3280,3363,3427,3516,3583,3643,3737,3800,3856,3926,3993,4048,4167,4224,4288,4342,4415,4537,4620,4705,4807,4885,4965,5051,5118,5184,5254,5327,5409,5481,5558,5630,5700,5793,5866,5956,6049,6123,6195,6286,6340,6406,6490,6575,6637,6701,6764,6869,6969,7064,7164,7244" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,2821", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,2898" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,390,497,604,687,792,908,998,1084,1175,1268,1362,1456,1556,1649,1744,1838,1929,2020,2104,2213,2317,2415,2525,2625,2732,2891,7249", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "385,492,599,682,787,903,993,1079,1170,1263,1357,1451,1551,1644,1739,1833,1924,2015,2099,2208,2312,2410,2520,2620,2727,2886,2985,7326" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sk.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sk.json +new file mode 100644 +index 0000000..1fe6924 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sk.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-sk/values-sk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,2817", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,2895" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "383,490,591,702,788,896,1014,1093,1170,1261,1354,1452,1546,1646,1739,1834,1932,2023,2114,2198,2303,2411,2510,2616,2728,2831,2997,7399", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "485,586,697,783,891,1009,1088,1165,1256,1349,1447,1541,1641,1734,1829,1927,2018,2109,2193,2298,2406,2505,2611,2723,2826,2992,3090,7477" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,333,411,503,631,712,777,876,952,1017,1107,1173,1227,1296,1356,1410,1527,1587,1649,1703,1775,1905,1992,2084,2193,2262,2340,2428,2495,2561,2633,2710,2793,2865,2942,3015,3086,3174,3246,3338,3434,3508,3582,3678,3730,3797,3884,3971,4033,4097,4160,4266,4362,4460,4558", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,77,91,127,80,64,98,75,64,89,65,53,68,59,53,116,59,61,53,71,129,86,91,108,68,77,87,66,65,71,76,82,71,76,72,70,87,71,91,95,73,73,95,51,66,86,86,61,63,62,105,95,97,97,78", ++ "endOffsets": "328,406,498,626,707,772,871,947,1012,1102,1168,1222,1291,1351,1405,1522,1582,1644,1698,1770,1900,1987,2079,2188,2257,2335,2423,2490,2556,2628,2705,2788,2860,2937,3010,3081,3169,3241,3333,3429,3503,3577,3673,3725,3792,3879,3966,4028,4092,4155,4261,4357,4455,4553,4632" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3095,3173,3265,3393,3474,3539,3638,3714,3779,3869,3935,3989,4058,4118,4172,4289,4349,4411,4465,4537,4667,4754,4846,4955,5024,5102,5190,5257,5323,5395,5472,5555,5627,5704,5777,5848,5936,6008,6100,6196,6270,6344,6440,6492,6559,6646,6733,6795,6859,6922,7028,7124,7222,7320", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,91,127,80,64,98,75,64,89,65,53,68,59,53,116,59,61,53,71,129,86,91,108,68,77,87,66,65,71,76,82,71,76,72,70,87,71,91,95,73,73,95,51,66,86,86,61,63,62,105,95,97,97,78", ++ "endOffsets": "378,3168,3260,3388,3469,3534,3633,3709,3774,3864,3930,3984,4053,4113,4167,4284,4344,4406,4460,4532,4662,4749,4841,4950,5019,5097,5185,5252,5318,5390,5467,5550,5622,5699,5772,5843,5931,6003,6095,6191,6265,6339,6435,6487,6554,6641,6728,6790,6854,6917,7023,7119,7217,7315,7394" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7482", ++ "endColumns": "100", ++ "endOffsets": "7578" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sl.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sl.json +new file mode 100644 +index 0000000..0e688ce +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sl.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-sl/values-sl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2568,2751,2851", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,107,182,99,83", ++ "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2563,2746,2846,2930" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "372,484,586,694,781,884,1003,1084,1162,1254,1348,1443,1537,1632,1726,1822,1922,2014,2106,2190,2298,2406,2506,2619,2727,2835,3018,7466", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,107,182,99,83", ++ "endOffsets": "479,581,689,776,879,998,1079,1157,1249,1343,1438,1532,1627,1721,1817,1917,2009,2101,2185,2293,2401,2501,2614,2722,2830,3013,3113,7545" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,322,410,516,642,726,792,886,962,1025,1137,1202,1256,1326,1386,1442,1554,1611,1673,1729,1802,1936,2021,2106,2219,2303,2386,2475,2542,2608,2681,2758,2842,2916,2992,3067,3140,3228,3301,3391,3482,3554,3628,3719,3771,3838,3922,4009,4071,4135,4198,4301,4398,4496,4593", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,87,105,125,83,65,93,75,62,111,64,53,69,59,55,111,56,61,55,72,133,84,84,112,83,82,88,66,65,72,76,83,73,75,74,72,87,72,89,90,71,73,90,51,66,83,86,61,63,62,102,96,97,96,76", ++ "endOffsets": "317,405,511,637,721,787,881,957,1020,1132,1197,1251,1321,1381,1437,1549,1606,1668,1724,1797,1931,2016,2101,2214,2298,2381,2470,2537,2603,2676,2753,2837,2911,2987,3062,3135,3223,3296,3386,3477,3549,3623,3714,3766,3833,3917,4004,4066,4130,4193,4296,4393,4491,4588,4665" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3118,3206,3312,3438,3522,3588,3682,3758,3821,3933,3998,4052,4122,4182,4238,4350,4407,4469,4525,4598,4732,4817,4902,5015,5099,5182,5271,5338,5404,5477,5554,5638,5712,5788,5863,5936,6024,6097,6187,6278,6350,6424,6515,6567,6634,6718,6805,6867,6931,6994,7097,7194,7292,7389", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,105,125,83,65,93,75,62,111,64,53,69,59,55,111,56,61,55,72,133,84,84,112,83,82,88,66,65,72,76,83,73,75,74,72,87,72,89,90,71,73,90,51,66,83,86,61,63,62,102,96,97,96,76", ++ "endOffsets": "367,3201,3307,3433,3517,3583,3677,3753,3816,3928,3993,4047,4117,4177,4233,4345,4402,4464,4520,4593,4727,4812,4897,5010,5094,5177,5266,5333,5399,5472,5549,5633,5707,5783,5858,5931,6019,6092,6182,6273,6345,6419,6510,6562,6629,6713,6800,6862,6926,6989,7092,7189,7287,7384,7461" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7550", ++ "endColumns": "100", ++ "endOffsets": "7646" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-small-v4.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-small-v4.json +new file mode 100644 +index 0000000..08f6c56 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-small-v4.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-small-v4/values-small-v4.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-small-v4/values-small-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,128,198,270", ++ "endColumns": "72,69,71,69", ++ "endOffsets": "123,193,265,335" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sq.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sq.json +new file mode 100644 +index 0000000..4d00a56 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sq.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-sq/values-sq.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7455", ++ "endColumns": "100", ++ "endOffsets": "7551" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,2801", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,2878" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "272,386,486,598,684,790,913,995,1073,1164,1257,1352,1446,1547,1640,1735,1832,1923,2016,2097,2203,2307,2405,2511,2615,2717,2871,7373", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "381,481,593,679,785,908,990,1068,1159,1252,1347,1441,1542,1635,1730,1827,1918,2011,2092,2198,2302,2400,2506,2610,2712,2866,2963,7450" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,222,308,409,535,618,683,783,853,912,1010,1074,1133,1205,1268,1322,1439,1496,1558,1612,1684,1819,1902,1980,2091,2175,2257,2347,2414,2480,2551,2630,2718,2794,2872,2944,3017,3106,3178,3272,3371,3445,3517,3618,3668,3734,3824,3913,3975,4039,4102,4218,4326,4435,4544", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,100,125,82,64,99,69,58,97,63,58,71,62,53,116,56,61,53,71,134,82,77,110,83,81,89,66,65,70,78,87,75,77,71,72,88,71,93,98,73,71,100,49,65,89,88,61,63,62,115,107,108,108,82", ++ "endOffsets": "217,303,404,530,613,678,778,848,907,1005,1069,1128,1200,1263,1317,1434,1491,1553,1607,1679,1814,1897,1975,2086,2170,2252,2342,2409,2475,2546,2625,2713,2789,2867,2939,3012,3101,3173,3267,3366,3440,3512,3613,3663,3729,3819,3908,3970,4034,4097,4213,4321,4430,4539,4622" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2968,3054,3155,3281,3364,3429,3529,3599,3658,3756,3820,3879,3951,4014,4068,4185,4242,4304,4358,4430,4565,4648,4726,4837,4921,5003,5093,5160,5226,5297,5376,5464,5540,5618,5690,5763,5852,5924,6018,6117,6191,6263,6364,6414,6480,6570,6659,6721,6785,6848,6964,7072,7181,7290", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,100,125,82,64,99,69,58,97,63,58,71,62,53,116,56,61,53,71,134,82,77,110,83,81,89,66,65,70,78,87,75,77,71,72,88,71,93,98,73,71,100,49,65,89,88,61,63,62,115,107,108,108,82", ++ "endOffsets": "267,3049,3150,3276,3359,3424,3524,3594,3653,3751,3815,3874,3946,4009,4063,4180,4237,4299,4353,4425,4560,4643,4721,4832,4916,4998,5088,5155,5221,5292,5371,5459,5535,5613,5685,5758,5847,5919,6013,6112,6186,6258,6359,6409,6475,6565,6654,6716,6780,6843,6959,7067,7176,7285,7368" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sr.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sr.json +new file mode 100644 +index 0000000..b38cfb7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sr.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-sr/values-sr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,2833", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,2915" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "326,433,534,640,726,830,952,1036,1117,1208,1301,1396,1490,1590,1683,1778,1883,1974,2065,2151,2256,2362,2465,2571,2680,2787,2957,7394", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "428,529,635,721,825,947,1031,1112,1203,1296,1391,1485,1585,1678,1773,1878,1969,2060,2146,2251,2357,2460,2566,2675,2782,2952,3049,7476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,276,356,450,581,662,728,820,888,951,1054,1120,1176,1247,1307,1361,1473,1530,1591,1645,1721,1846,1932,2015,2123,2204,2287,2375,2442,2508,2582,2660,2749,2824,2900,2975,3046,3136,3209,3301,3397,3469,3545,3641,3694,3761,3848,3935,3997,4061,4124,4229,4333,4429,4536", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,79,93,130,80,65,91,67,62,102,65,55,70,59,53,111,56,60,53,75,124,85,82,107,80,82,87,66,65,73,77,88,74,75,74,70,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "271,351,445,576,657,723,815,883,946,1049,1115,1171,1242,1302,1356,1468,1525,1586,1640,1716,1841,1927,2010,2118,2199,2282,2370,2437,2503,2577,2655,2744,2819,2895,2970,3041,3131,3204,3296,3392,3464,3540,3636,3689,3756,3843,3930,3992,4056,4119,4224,4328,4424,4531,4611" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3054,3134,3228,3359,3440,3506,3598,3666,3729,3832,3898,3954,4025,4085,4139,4251,4308,4369,4423,4499,4624,4710,4793,4901,4982,5065,5153,5220,5286,5360,5438,5527,5602,5678,5753,5824,5914,5987,6079,6175,6247,6323,6419,6472,6539,6626,6713,6775,6839,6902,7007,7111,7207,7314", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,93,130,80,65,91,67,62,102,65,55,70,59,53,111,56,60,53,75,124,85,82,107,80,82,87,66,65,73,77,88,74,75,74,70,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "321,3129,3223,3354,3435,3501,3593,3661,3724,3827,3893,3949,4020,4080,4134,4246,4303,4364,4418,4494,4619,4705,4788,4896,4977,5060,5148,5215,5281,5355,5433,5522,5597,5673,5748,5819,5909,5982,6074,6170,6242,6318,6414,6467,6534,6621,6708,6770,6834,6897,7002,7106,7202,7309,7389" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7481", ++ "endColumns": "100", ++ "endOffsets": "7577" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sv.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sv.json +new file mode 100644 +index 0000000..0d4d94e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sv.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-sv/values-sv.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7280", ++ "endColumns": "100", ++ "endOffsets": "7376" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,221,302,400,522,601,664,756,820,880,972,1035,1097,1164,1228,1282,1387,1446,1507,1561,1630,1749,1832,1916,2022,2101,2185,2271,2338,2404,2473,2547,2636,2708,2785,2856,2930,3021,3100,3187,3275,3347,3421,3506,3557,3624,3705,3789,3851,3915,3978,4085,4192,4291,4399", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,97,121,78,62,91,63,59,91,62,61,66,63,53,104,58,60,53,68,118,82,83,105,78,83,85,66,65,68,73,88,71,76,70,73,90,78,86,87,71,73,84,50,66,80,83,61,63,62,106,106,98,107,77", ++ "endOffsets": "216,297,395,517,596,659,751,815,875,967,1030,1092,1159,1223,1277,1382,1441,1502,1556,1625,1744,1827,1911,2017,2096,2180,2266,2333,2399,2468,2542,2631,2703,2780,2851,2925,3016,3095,3182,3270,3342,3416,3501,3552,3619,3700,3784,3846,3910,3973,4080,4187,4286,4394,4472" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2944,3025,3123,3245,3324,3387,3479,3543,3603,3695,3758,3820,3887,3951,4005,4110,4169,4230,4284,4353,4472,4555,4639,4745,4824,4908,4994,5061,5127,5196,5270,5359,5431,5508,5579,5653,5744,5823,5910,5998,6070,6144,6229,6280,6347,6428,6512,6574,6638,6701,6808,6915,7014,7122", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,97,121,78,62,91,63,59,91,62,61,66,63,53,104,58,60,53,68,118,82,83,105,78,83,85,66,65,68,73,88,71,76,70,73,90,78,86,87,71,73,84,50,66,80,83,61,63,62,106,106,98,107,77", ++ "endOffsets": "266,3020,3118,3240,3319,3382,3474,3538,3598,3690,3753,3815,3882,3946,4000,4105,4164,4225,4279,4348,4467,4550,4634,4740,4819,4903,4989,5056,5122,5191,5265,5354,5426,5503,5574,5648,5739,5818,5905,5993,6065,6139,6224,6275,6342,6423,6507,6569,6633,6696,6803,6910,7009,7117,7195" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,2778", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,2853" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "271,374,477,588,672,774,887,964,1039,1132,1227,1322,1416,1518,1613,1710,1808,1904,1997,2077,2183,2282,2378,2483,2586,2688,2842,7200", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "369,472,583,667,769,882,959,1034,1127,1222,1317,1411,1513,1608,1705,1803,1899,1992,2072,2178,2277,2373,2478,2581,2683,2837,2939,7275" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sw.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sw.json +new file mode 100644 +index 0000000..36e1efa +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sw.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-sw/values-sw.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,287,386,515,598,666,758,831,894,980,1043,1108,1176,1239,1293,1425,1482,1544,1598,1672,1810,1891,1971,2073,2158,2245,2333,2400,2466,2538,2620,2710,2782,2857,2928,3001,3098,3172,3267,3364,3438,3523,3623,3676,3744,3832,3922,3984,4048,4111,4228,4338,4449,4561", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,72,98,128,82,67,91,72,62,85,62,64,67,62,53,131,56,61,53,73,137,80,79,101,84,86,87,66,65,71,81,89,71,74,70,72,96,73,94,96,73,84,99,52,67,87,89,61,63,62,116,109,110,111,80", ++ "endOffsets": "209,282,381,510,593,661,753,826,889,975,1038,1103,1171,1234,1288,1420,1477,1539,1593,1667,1805,1886,1966,2068,2153,2240,2328,2395,2461,2533,2615,2705,2777,2852,2923,2996,3093,3167,3262,3359,3433,3518,3618,3671,3739,3827,3917,3979,4043,4106,4223,4333,4444,4556,4637" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2960,3033,3132,3261,3344,3412,3504,3577,3640,3726,3789,3854,3922,3985,4039,4171,4228,4290,4344,4418,4556,4637,4717,4819,4904,4991,5079,5146,5212,5284,5366,5456,5528,5603,5674,5747,5844,5918,6013,6110,6184,6269,6369,6422,6490,6578,6668,6730,6794,6857,6974,7084,7195,7307", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,72,98,128,82,67,91,72,62,85,62,64,67,62,53,131,56,61,53,73,137,80,79,101,84,86,87,66,65,71,81,89,71,74,70,72,96,73,94,96,73,84,99,52,67,87,89,61,63,62,116,109,110,111,80", ++ "endOffsets": "259,3028,3127,3256,3339,3407,3499,3572,3635,3721,3784,3849,3917,3980,4034,4166,4223,4285,4339,4413,4551,4632,4712,4814,4899,4986,5074,5141,5207,5279,5361,5451,5523,5598,5669,5742,5839,5913,6008,6105,6179,6264,6364,6417,6485,6573,6663,6725,6789,6852,6969,7079,7190,7302,7383" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7471", ++ "endColumns": "100", ++ "endOffsets": "7567" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,2801", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,2879" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,367,466,574,664,769,886,969,1051,1142,1235,1330,1424,1524,1617,1712,1806,1897,1988,2070,2171,2279,2378,2485,2597,2701,2863,7388", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "362,461,569,659,764,881,964,1046,1137,1230,1325,1419,1519,1612,1707,1801,1892,1983,2065,2166,2274,2373,2480,2592,2696,2858,2955,7466" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sw600dp-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sw600dp-v13.json +new file mode 100644 +index 0000000..230913f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-sw600dp-v13.json +@@ -0,0 +1,38 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,10,11,12,13,14", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,115,185,256,328,386,444,553,617,673,732,795", ++ "endLines": "2,3,4,5,6,7,9,10,11,12,13,17", ++ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10", ++ "endOffsets": "110,180,251,323,381,439,548,612,668,727,790,962" ++ }, ++ "to": { ++ "startLines": "10,11,12,13,14,15,16,18,19,20,21,22", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1229,1288,1351", ++ "endLines": "10,11,12,13,14,15,17,18,19,20,21,25", ++ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10", ++ "endOffsets": "666,736,807,879,937,995,1104,1168,1224,1283,1346,1518" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,193,263,337,413,472,543", ++ "endColumns": "68,68,69,73,75,58,70,67", ++ "endOffsets": "119,188,258,332,408,467,538,606" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ta.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ta.json +new file mode 100644 +index 0000000..adf617c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ta.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ta/values-ta.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,311,420,538,622,686,794,862,923,1031,1117,1175,1259,1326,1380,1503,1565,1628,1682,1770,1898,1984,2066,2168,2248,2329,2418,2485,2551,2636,2724,2816,2885,2962,3042,3110,3209,3292,3384,3478,3552,3638,3732,3782,3848,3933,4020,4083,4148,4211,4319,4422,4520,4625", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,108,117,83,63,107,67,60,107,85,57,83,66,53,122,61,62,53,87,127,85,81,101,79,80,88,66,65,84,87,91,68,76,79,67,98,82,91,93,73,85,93,49,65,84,86,62,64,62,107,102,97,104,85", ++ "endOffsets": "222,306,415,533,617,681,789,857,918,1026,1112,1170,1254,1321,1375,1498,1560,1623,1677,1765,1893,1979,2061,2163,2243,2324,2413,2480,2546,2631,2719,2811,2880,2957,3037,3105,3204,3287,3379,3473,3547,3633,3727,3777,3843,3928,4015,4078,4143,4206,4314,4417,4515,4620,4706" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3043,3127,3236,3354,3438,3502,3610,3678,3739,3847,3933,3991,4075,4142,4196,4319,4381,4444,4498,4586,4714,4800,4882,4984,5064,5145,5234,5301,5367,5452,5540,5632,5701,5778,5858,5926,6025,6108,6200,6294,6368,6454,6548,6598,6664,6749,6836,6899,6964,7027,7135,7238,7336,7441", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,108,117,83,63,107,67,60,107,85,57,83,66,53,122,61,62,53,87,127,85,81,101,79,80,88,66,65,84,87,91,68,76,79,67,98,82,91,93,73,85,93,49,65,84,86,62,64,62,107,102,97,104,85", ++ "endOffsets": "272,3122,3231,3349,3433,3497,3605,3673,3734,3842,3928,3986,4070,4137,4191,4314,4376,4439,4493,4581,4709,4795,4877,4979,5059,5140,5229,5296,5362,5447,5535,5627,5696,5773,5853,5921,6020,6103,6195,6289,6363,6449,6543,6593,6659,6744,6831,6894,6959,7022,7130,7233,7331,7436,7522" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,2871", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,2948" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,390,492,607,696,807,928,1007,1083,1181,1281,1376,1470,1577,1677,1779,1873,1971,2069,2150,2258,2361,2460,2576,2679,2784,2941,7527", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "385,487,602,691,802,923,1002,1078,1176,1276,1371,1465,1572,1672,1774,1868,1966,2064,2145,2253,2356,2455,2571,2674,2779,2936,3038,7604" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7609", ++ "endColumns": "100", ++ "endOffsets": "7705" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-te.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-te.json +new file mode 100644 +index 0000000..42d2a82 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-te.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-te/values-te.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,222,334,445,535,640,759,837,913,1004,1097,1192,1286,1386,1479,1574,1669,1760,1851,1934,2048,2150,2249,2364,2467,2582,2744,2847", ++ "endColumns": "116,111,110,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,82,113,101,98,114,102,114,161,102,82", ++ "endOffsets": "217,329,440,530,635,754,832,908,999,1092,1187,1281,1381,1474,1569,1664,1755,1846,1929,2043,2145,2244,2359,2462,2577,2739,2842,2925" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "281,398,510,621,711,816,935,1013,1089,1180,1273,1368,1462,1562,1655,1750,1845,1936,2027,2110,2224,2326,2425,2540,2643,2758,2920,7460", ++ "endColumns": "116,111,110,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,82,113,101,98,114,102,114,161,102,82", ++ "endOffsets": "393,505,616,706,811,930,1008,1084,1175,1268,1363,1457,1557,1650,1745,1840,1931,2022,2105,2219,2321,2420,2535,2638,2753,2915,3018,7538" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,231,317,421,537,626,692,786,853,915,1008,1076,1139,1213,1278,1332,1453,1510,1572,1626,1705,1833,1921,2013,2128,2208,2290,2378,2445,2511,2586,2664,2754,2827,2903,2984,3053,3158,3235,3326,3419,3493,3570,3662,3717,3783,3867,3953,4016,4081,4145,4255,4367,4466,4585", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,103,115,88,65,93,66,61,92,67,62,73,64,53,120,56,61,53,78,127,87,91,114,79,81,87,66,65,74,77,89,72,75,80,68,104,76,90,92,73,76,91,54,65,83,85,62,64,63,109,111,98,118,82", ++ "endOffsets": "226,312,416,532,621,687,781,848,910,1003,1071,1134,1208,1273,1327,1448,1505,1567,1621,1700,1828,1916,2008,2123,2203,2285,2373,2440,2506,2581,2659,2749,2822,2898,2979,3048,3153,3230,3321,3414,3488,3565,3657,3712,3778,3862,3948,4011,4076,4140,4250,4362,4461,4580,4663" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3023,3109,3213,3329,3418,3484,3578,3645,3707,3800,3868,3931,4005,4070,4124,4245,4302,4364,4418,4497,4625,4713,4805,4920,5000,5082,5170,5237,5303,5378,5456,5546,5619,5695,5776,5845,5950,6027,6118,6211,6285,6362,6454,6509,6575,6659,6745,6808,6873,6937,7047,7159,7258,7377", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,103,115,88,65,93,66,61,92,67,62,73,64,53,120,56,61,53,78,127,87,91,114,79,81,87,66,65,74,77,89,72,75,80,68,104,76,90,92,73,76,91,54,65,83,85,62,64,63,109,111,98,118,82", ++ "endOffsets": "276,3104,3208,3324,3413,3479,3573,3640,3702,3795,3863,3926,4000,4065,4119,4240,4297,4359,4413,4492,4620,4708,4800,4915,4995,5077,5165,5232,5298,5373,5451,5541,5614,5690,5771,5840,5945,6022,6113,6206,6280,6357,6449,6504,6570,6654,6740,6803,6868,6932,7042,7154,7253,7372,7455" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7543", ++ "endColumns": "100", ++ "endOffsets": "7639" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-th.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-th.json +new file mode 100644 +index 0000000..67b48a9 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-th.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-th/values-th.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7241", ++ "endColumns": "100", ++ "endOffsets": "7337" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,240,323,422,535,615,685,775,845,905,992,1057,1118,1182,1243,1297,1398,1459,1519,1573,1643,1754,1841,1922,2035,2114,2196,2288,2355,2421,2491,2569,2655,2727,2805,2874,2943,3025,3113,3206,3300,3374,3443,3538,3590,3658,3743,3831,3893,3957,4020,4120,4213,4310,4403", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,98,112,79,69,89,69,59,86,64,60,63,60,53,100,60,59,53,69,110,86,80,112,78,81,91,66,65,69,77,85,71,77,68,68,81,87,92,93,73,68,94,51,67,84,87,61,63,62,99,92,96,92,76", ++ "endOffsets": "235,318,417,530,610,680,770,840,900,987,1052,1113,1177,1238,1292,1393,1454,1514,1568,1638,1749,1836,1917,2030,2109,2191,2283,2350,2416,2486,2564,2650,2722,2800,2869,2938,3020,3108,3201,3295,3369,3438,3533,3585,3653,3738,3826,3888,3952,4015,4115,4208,4305,4398,4475" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2919,3002,3101,3214,3294,3364,3454,3524,3584,3671,3736,3797,3861,3922,3976,4077,4138,4198,4252,4322,4433,4520,4601,4714,4793,4875,4967,5034,5100,5170,5248,5334,5406,5484,5553,5622,5704,5792,5885,5979,6053,6122,6217,6269,6337,6422,6510,6572,6636,6699,6799,6892,6989,7082", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,98,112,79,69,89,69,59,86,64,60,63,60,53,100,60,59,53,69,110,86,80,112,78,81,91,66,65,69,77,85,71,77,68,68,81,87,92,93,73,68,94,51,67,84,87,61,63,62,99,92,96,92,76", ++ "endOffsets": "285,2997,3096,3209,3289,3359,3449,3519,3579,3666,3731,3792,3856,3917,3971,4072,4133,4193,4247,4317,4428,4515,4596,4709,4788,4870,4962,5029,5095,5165,5243,5329,5401,5479,5548,5617,5699,5787,5880,5974,6048,6117,6212,6264,6332,6417,6505,6567,6631,6694,6794,6887,6984,7077,7154" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,2734", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,2811" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "290,395,488,596,681,783,893,971,1048,1139,1232,1323,1417,1517,1610,1705,1799,1890,1981,2062,2165,2263,2361,2464,2570,2671,2824,7159", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "390,483,591,676,778,888,966,1043,1134,1227,1318,1412,1512,1605,1700,1794,1885,1976,2057,2160,2258,2356,2459,2565,2666,2819,2914,7236" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-tl.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-tl.json +new file mode 100644 +index 0000000..3e36258 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-tl.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-tl/values-tl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,235,321,426,562,647,712,811,879,938,1027,1094,1157,1232,1300,1354,1474,1532,1594,1648,1723,1865,1955,2040,2155,2239,2322,2418,2485,2551,2625,2703,2794,2868,2947,3020,3092,3196,3269,3368,3468,3542,3617,3724,3776,3843,3934,4028,4090,4154,4217,4336,4438,4547,4650", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,104,135,84,64,98,67,58,88,66,62,74,67,53,119,57,61,53,74,141,89,84,114,83,82,95,66,65,73,77,90,73,78,72,71,103,72,98,99,73,74,106,51,66,90,93,61,63,62,118,101,108,102,84", ++ "endOffsets": "230,316,421,557,642,707,806,874,933,1022,1089,1152,1227,1295,1349,1469,1527,1589,1643,1718,1860,1950,2035,2150,2234,2317,2413,2480,2546,2620,2698,2789,2863,2942,3015,3087,3191,3264,3363,3463,3537,3612,3719,3771,3838,3929,4023,4085,4149,4212,4331,4433,4542,4645,4730" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3111,3216,3352,3437,3502,3601,3669,3728,3817,3884,3947,4022,4090,4144,4264,4322,4384,4438,4513,4655,4745,4830,4945,5029,5112,5208,5275,5341,5415,5493,5584,5658,5737,5810,5882,5986,6059,6158,6258,6332,6407,6514,6566,6633,6724,6818,6880,6944,7007,7126,7228,7337,7440", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,104,135,84,64,98,67,58,88,66,62,74,67,53,119,57,61,53,74,141,89,84,114,83,82,95,66,65,73,77,90,73,78,72,71,103,72,98,99,73,74,106,51,66,90,93,61,63,62,118,101,108,102,84", ++ "endOffsets": "280,3106,3211,3347,3432,3497,3596,3664,3723,3812,3879,3942,4017,4085,4139,4259,4317,4379,4433,4508,4650,4740,4825,4940,5024,5107,5203,5270,5336,5410,5488,5579,5653,5732,5805,5877,5981,6054,6153,6253,6327,6402,6509,6561,6628,6719,6813,6875,6939,7002,7121,7223,7332,7435,7520" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7610", ++ "endColumns": "100", ++ "endOffsets": "7706" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,324,437,525,631,746,826,903,994,1087,1182,1276,1376,1469,1564,1658,1749,1840,1924,2033,2143,2244,2354,2472,2580,2743,2845", ++ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", ++ "endOffsets": "211,319,432,520,626,741,821,898,989,1082,1177,1271,1371,1464,1559,1653,1744,1835,1919,2028,2138,2239,2349,2467,2575,2738,2840,2925" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "285,396,504,617,705,811,926,1006,1083,1174,1267,1362,1456,1556,1649,1744,1838,1929,2020,2104,2213,2323,2424,2534,2652,2760,2923,7525", ++ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", ++ "endOffsets": "391,499,612,700,806,921,1001,1078,1169,1262,1357,1451,1551,1644,1739,1833,1924,2015,2099,2208,2318,2419,2529,2647,2755,2918,3020,7605" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-tr.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-tr.json +new file mode 100644 +index 0000000..4559e98 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-tr.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-tr/values-tr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,2797", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,384,483,595,680,786,906,986,1061,1152,1245,1337,1431,1531,1624,1726,1821,1912,2003,2082,2189,2293,2389,2496,2599,2708,2864,7219", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "379,478,590,675,781,901,981,1056,1147,1240,1332,1426,1526,1619,1721,1816,1907,1998,2077,2184,2288,2384,2491,2594,2703,2859,2957,7294" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,297,393,505,587,651,742,819,880,971,1034,1093,1162,1225,1279,1387,1445,1507,1561,1634,1755,1839,1930,2040,2117,2193,2280,2347,2413,2483,2560,2643,2714,2789,2867,2938,3023,3112,3207,3300,3372,3444,3540,3592,3659,3743,3833,3895,3959,4022,4116,4212,4301,4398", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,95,111,81,63,90,76,60,90,62,58,68,62,53,107,57,61,53,72,120,83,90,109,76,75,86,66,65,69,76,82,70,74,77,70,84,88,94,92,71,71,95,51,66,83,89,61,63,62,93,95,88,96,78", ++ "endOffsets": "215,292,388,500,582,646,737,814,875,966,1029,1088,1157,1220,1274,1382,1440,1502,1556,1629,1750,1834,1925,2035,2112,2188,2275,2342,2408,2478,2555,2638,2709,2784,2862,2933,3018,3107,3202,3295,3367,3439,3535,3587,3654,3738,3828,3890,3954,4017,4111,4207,4296,4393,4472" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3039,3135,3247,3329,3393,3484,3561,3622,3713,3776,3835,3904,3967,4021,4129,4187,4249,4303,4376,4497,4581,4672,4782,4859,4935,5022,5089,5155,5225,5302,5385,5456,5531,5609,5680,5765,5854,5949,6042,6114,6186,6282,6334,6401,6485,6575,6637,6701,6764,6858,6954,7043,7140", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,95,111,81,63,90,76,60,90,62,58,68,62,53,107,57,61,53,72,120,83,90,109,76,75,86,66,65,69,76,82,70,74,77,70,84,88,94,92,71,71,95,51,66,83,89,61,63,62,93,95,88,96,78", ++ "endOffsets": "265,3034,3130,3242,3324,3388,3479,3556,3617,3708,3771,3830,3899,3962,4016,4124,4182,4244,4298,4371,4492,4576,4667,4777,4854,4930,5017,5084,5150,5220,5297,5380,5451,5526,5604,5675,5760,5849,5944,6037,6109,6181,6277,6329,6396,6480,6570,6632,6696,6759,6853,6949,7038,7135,7214" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7299", ++ "endColumns": "100", ++ "endOffsets": "7395" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-uk.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-uk.json +new file mode 100644 +index 0000000..bb8309a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-uk.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-uk/values-uk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,2829", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,2906" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "379,488,590,698,784,889,1007,1088,1167,1258,1351,1446,1540,1640,1733,1828,1923,2014,2105,2204,2310,2416,2514,2621,2728,2833,3003,7426", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "483,585,693,779,884,1002,1083,1162,1253,1346,1441,1535,1635,1728,1823,1918,2009,2100,2199,2305,2411,2509,2616,2723,2828,2998,3098,7503" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,329,417,513,629,712,779,870,936,999,1087,1154,1212,1283,1342,1396,1510,1570,1633,1687,1760,1879,1965,2048,2157,2242,2329,2417,2484,2550,2622,2698,2788,2861,2938,3019,3093,3183,3262,3353,3449,3523,3604,3699,3753,3819,3906,3992,4054,4118,4181,4288,4380,4478,4570", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,87,95,115,82,66,90,65,62,87,66,57,70,58,53,113,59,62,53,72,118,85,82,108,84,86,87,66,65,71,75,89,72,76,80,73,89,78,90,95,73,80,94,53,65,86,85,61,63,62,106,91,97,91,81", ++ "endOffsets": "324,412,508,624,707,774,865,931,994,1082,1149,1207,1278,1337,1391,1505,1565,1628,1682,1755,1874,1960,2043,2152,2237,2324,2412,2479,2545,2617,2693,2783,2856,2933,3014,3088,3178,3257,3348,3444,3518,3599,3694,3748,3814,3901,3987,4049,4113,4176,4283,4375,4473,4565,4647" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3191,3287,3403,3486,3553,3644,3710,3773,3861,3928,3986,4057,4116,4170,4284,4344,4407,4461,4534,4653,4739,4822,4931,5016,5103,5191,5258,5324,5396,5472,5562,5635,5712,5793,5867,5957,6036,6127,6223,6297,6378,6473,6527,6593,6680,6766,6828,6892,6955,7062,7154,7252,7344", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,95,115,82,66,90,65,62,87,66,57,70,58,53,113,59,62,53,72,118,85,82,108,84,86,87,66,65,71,75,89,72,76,80,73,89,78,90,95,73,80,94,53,65,86,85,61,63,62,106,91,97,91,81", ++ "endOffsets": "374,3186,3282,3398,3481,3548,3639,3705,3768,3856,3923,3981,4052,4111,4165,4279,4339,4402,4456,4529,4648,4734,4817,4926,5011,5098,5186,5253,5319,5391,5467,5557,5630,5707,5788,5862,5952,6031,6122,6218,6292,6373,6468,6522,6588,6675,6761,6823,6887,6950,7057,7149,7247,7339,7421" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7508", ++ "endColumns": "100", ++ "endOffsets": "7604" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ur.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ur.json +new file mode 100644 +index 0000000..986043d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-ur.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-ur/values-ur.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,2832", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,2913" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,378,484,593,679,783,903,980,1055,1147,1241,1336,1430,1531,1625,1721,1815,1907,1999,2084,2192,2298,2400,2511,2612,2728,2893,7279", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "373,479,588,674,778,898,975,1050,1142,1236,1331,1425,1526,1620,1716,1810,1902,1994,2079,2187,2293,2395,2506,2607,2723,2888,2986,7360" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,292,392,511,594,659,752,822,881,971,1040,1098,1167,1227,1291,1403,1462,1521,1576,1651,1774,1854,1938,2041,2123,2204,2291,2358,2424,2499,2579,2664,2731,2806,2883,2947,3041,3111,3200,3293,3367,3442,3532,3588,3655,3739,3823,3885,3949,4012,4112,4219,4313,4422", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,118,82,64,92,69,58,89,68,57,68,59,63,111,58,58,54,74,122,79,83,102,81,80,86,66,65,74,79,84,66,74,76,63,93,69,88,92,73,74,89,55,66,83,83,61,63,62,99,106,93,108,79", ++ "endOffsets": "209,287,387,506,589,654,747,817,876,966,1035,1093,1162,1222,1286,1398,1457,1516,1571,1646,1769,1849,1933,2036,2118,2199,2286,2353,2419,2494,2574,2659,2726,2801,2878,2942,3036,3106,3195,3288,3362,3437,3527,3583,3650,3734,3818,3880,3944,4007,4107,4214,4308,4417,4497" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2991,3069,3169,3288,3371,3436,3529,3599,3658,3748,3817,3875,3944,4004,4068,4180,4239,4298,4353,4428,4551,4631,4715,4818,4900,4981,5068,5135,5201,5276,5356,5441,5508,5583,5660,5724,5818,5888,5977,6070,6144,6219,6309,6365,6432,6516,6600,6662,6726,6789,6889,6996,7090,7199", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,118,82,64,92,69,58,89,68,57,68,59,63,111,58,58,54,74,122,79,83,102,81,80,86,66,65,74,79,84,66,74,76,63,93,69,88,92,73,74,89,55,66,83,83,61,63,62,99,106,93,108,79", ++ "endOffsets": "259,3064,3164,3283,3366,3431,3524,3594,3653,3743,3812,3870,3939,3999,4063,4175,4234,4293,4348,4423,4546,4626,4710,4813,4895,4976,5063,5130,5196,5271,5351,5436,5503,5578,5655,5719,5813,5883,5972,6065,6139,6214,6304,6360,6427,6511,6595,6657,6721,6784,6884,6991,7085,7194,7274" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7365", ++ "endColumns": "100", ++ "endOffsets": "7461" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-uz.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-uz.json +new file mode 100644 +index 0000000..cfdcda5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-uz.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-uz/values-uz.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7407", ++ "endColumns": "100", ++ "endOffsets": "7503" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,321,416,543,627,691,794,864,931,1040,1107,1166,1240,1303,1357,1472,1530,1592,1646,1721,1850,1940,2029,2140,2222,2304,2390,2457,2523,2596,2674,2760,2832,2909,2984,3055,3149,3228,3324,3418,3492,3568,3654,3707,3773,3858,3949,4011,4075,4138,4240,4331,4427,4519", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,94,126,83,63,102,69,66,108,66,58,73,62,53,114,57,61,53,74,128,89,88,110,81,81,85,66,65,72,77,85,71,76,74,70,93,78,95,93,73,75,85,52,65,84,90,61,63,62,101,90,95,91,82", ++ "endOffsets": "233,316,411,538,622,686,789,859,926,1035,1102,1161,1235,1298,1352,1467,1525,1587,1641,1716,1845,1935,2024,2135,2217,2299,2385,2452,2518,2591,2669,2755,2827,2904,2979,3050,3144,3223,3319,3413,3487,3563,3649,3702,3768,3853,3944,4006,4070,4133,4235,4326,4422,4514,4597" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2959,3042,3137,3264,3348,3412,3515,3585,3652,3761,3828,3887,3961,4024,4078,4193,4251,4313,4367,4442,4571,4661,4750,4861,4943,5025,5111,5178,5244,5317,5395,5481,5553,5630,5705,5776,5870,5949,6045,6139,6213,6289,6375,6428,6494,6579,6670,6732,6796,6859,6961,7052,7148,7240", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,94,126,83,63,102,69,66,108,66,58,73,62,53,114,57,61,53,74,128,89,88,110,81,81,85,66,65,72,77,85,71,76,74,70,93,78,95,93,73,75,85,52,65,84,90,61,63,62,101,90,95,91,82", ++ "endOffsets": "283,3037,3132,3259,3343,3407,3510,3580,3647,3756,3823,3882,3956,4019,4073,4188,4246,4308,4362,4437,4566,4656,4745,4856,4938,5020,5106,5173,5239,5312,5390,5476,5548,5625,5700,5771,5865,5944,6040,6134,6208,6284,6370,6423,6489,6574,6665,6727,6791,6854,6956,7047,7143,7235,7318" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,405,487,587,704,789,867,958,1051,1146,1240,1334,1427,1522,1617,1708,1800,1884,1994,2100,2200,2308,2414,2516,2677,2776", ++ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", ++ "endOffsets": "205,300,400,482,582,699,784,862,953,1046,1141,1235,1329,1422,1517,1612,1703,1795,1879,1989,2095,2195,2303,2409,2511,2672,2771,2855" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,393,488,588,670,770,887,972,1050,1141,1234,1329,1423,1517,1610,1705,1800,1891,1983,2067,2177,2283,2383,2491,2597,2699,2860,7323", ++ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", ++ "endOffsets": "388,483,583,665,765,882,967,1045,1136,1229,1324,1418,1512,1605,1700,1795,1886,1978,2062,2172,2278,2378,2486,2592,2694,2855,2954,7402" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v16.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v16.json +new file mode 100644 +index 0000000..5ac129a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v16.json +@@ -0,0 +1,38 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-v16/values-v16.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "5", ++ "endColumns": "12", ++ "endOffsets": "223" ++ }, ++ "to": { ++ "startLines": "3", ++ "startColumns": "4", ++ "startOffsets": "121", ++ "endLines": "6", ++ "endColumns": "12", ++ "endOffsets": "289" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "65", ++ "endOffsets": "116" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v17.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v17.json +new file mode 100644 +index 0000000..1898ad3 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v17.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-v17/values-v17.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v17/values-v17.xml", ++ "from": { ++ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", ++ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", ++ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", ++ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v18.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v18.json +new file mode 100644 +index 0000000..f3564b0 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v18.json +@@ -0,0 +1,38 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-v18/values-v18.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v18/values-v18.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "48", ++ "endOffsets": "99" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v18/values.xml", ++ "from": { ++ "startLines": "4,12", ++ "startColumns": "0,0", ++ "startOffsets": "146,562", ++ "endLines": "11,19", ++ "endColumns": "8,8", ++ "endOffsets": "561,975" ++ }, ++ "to": { ++ "startLines": "3,11", ++ "startColumns": "4,4", ++ "startOffsets": "104,524", ++ "endLines": "10,18", ++ "endColumns": "8,8", ++ "endOffsets": "519,937" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v21.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v21.json +new file mode 100644 +index 0000000..8298d5f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v21.json +@@ -0,0 +1,85 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-v21/values-v21.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,106,109,152,155,158,160,162,164,167,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,220,222,223,224,234,235,236,248", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4213,4362,4511,4623,4770,4923,5070,5145,5234,5321,5422,5525,8499,8684,11670,11867,12066,12189,12312,12425,12608,12863,13064,13153,13264,13497,13598,13693,13816,13945,14062,14239,14338,14473,14616,14751,14870,15071,15190,15283,15394,15450,15557,15752,15863,15996,16091,16182,16273,16366,16483,16622,16693,16776,17456,17513,17571,18265", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,105,108,151,154,157,159,161,163,166,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,219,221,222,223,233,234,235,247,259", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4208,4357,4506,4618,4765,4918,5065,5140,5229,5316,5417,5520,8494,8679,11665,11862,12061,12184,12307,12420,12603,12858,13059,13148,13259,13492,13593,13688,13811,13940,14057,14234,14333,14468,14611,14746,14865,15066,15185,15278,15389,15445,15552,15747,15858,15991,16086,16177,16268,16361,16478,16617,16688,16771,17451,17508,17566,18260,18966" ++ }, ++ "to": { ++ "startLines": "16,17,18,19,20,21,22,23,24,25,26,27,28,29,31,33,34,35,36,38,40,41,42,43,44,46,48,50,52,54,56,57,62,64,66,67,68,70,72,73,74,75,80,90,133,136,179,194,200,202,204,206,209,213,216,217,218,221,222,223,224,225,226,229,230,232,234,236,238,242,244,245,246,247,249,253,255,257,258,259,260,261,262,290,291,292,302,303,304,316", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "1215,1306,1409,1512,1617,1724,1833,1942,2051,2160,2269,2376,2479,2598,2753,2908,3013,3134,3235,3382,3523,3626,3745,3852,3955,4110,4281,4430,4595,4752,4903,5022,5373,5522,5671,5783,5930,6083,6230,6305,6394,6481,7006,7852,10610,10795,13565,14698,15128,15251,15374,15487,15670,15925,16126,16215,16326,16559,16660,16755,16878,17007,17124,17301,17400,17535,17678,17813,17932,18133,18252,18345,18456,18512,18619,18814,18925,19058,19153,19244,19335,19428,19545,21777,21848,21931,22554,22611,22669,23293", ++ "endLines": "16,17,18,19,20,21,22,23,24,25,26,27,28,30,32,33,34,35,37,39,40,41,42,43,45,47,49,51,53,55,56,61,63,65,66,67,69,71,72,73,74,75,80,132,135,178,181,196,201,203,205,208,212,215,216,217,220,221,222,223,224,225,228,229,231,233,235,237,241,243,244,245,246,248,252,254,256,257,258,259,260,261,263,290,291,301,302,303,315,327", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "1301,1404,1507,1612,1719,1828,1937,2046,2155,2264,2371,2474,2593,2748,2903,3008,3129,3230,3377,3518,3621,3740,3847,3950,4105,4276,4425,4590,4747,4898,5017,5368,5517,5666,5778,5925,6078,6225,6300,6389,6476,6577,7104,10605,10790,13560,13757,14892,15246,15369,15482,15665,15920,16121,16210,16321,16554,16655,16750,16873,17002,17119,17296,17395,17530,17673,17808,17927,18128,18247,18340,18451,18507,18614,18809,18920,19053,19148,19239,19330,19423,19540,19679,21843,21926,22549,22606,22664,23288,23924" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,13", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,173,237,304,368,484,610,736,864,1036", ++ "endLines": "2,3,4,5,6,7,8,9,12,17", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" ++ }, ++ "to": { ++ "startLines": "2,13,14,15,328,329,330,331,393,396", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,1020,1084,1151,23929,24045,24171,24297,28280,28452", ++ "endLines": "2,13,14,15,328,329,330,331,395,400", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,1079,1146,1210,24040,24166,24292,24420,28447,28799" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,22,25,28,31,34,37,40,41,44,49,60,66,72,78,84,90,91,92,93,97,100,103,106,109,113,117", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,123,202,290,378,466,554,641,728,815,902,995,1102,1207,1326,1539,1798,2069,2287,2519,2755,3005,3236,3352,3522,3843,4872,5329,5671,6015,6365,6715,6853,6997,7153,7546,7764,7986,8212,8428,8669,8928", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,21,24,27,30,33,36,39,40,43,48,59,65,71,77,83,89,90,91,92,96,99,102,105,108,112,116,119", ++ "endColumns": "67,78,87,87,87,87,86,86,86,86,92,106,104,118,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,137,143,155,10,10,10,10,10,10,10,10", ++ "endOffsets": "118,197,285,373,461,549,636,723,810,897,990,1097,1202,1321,1534,1793,2064,2282,2514,2750,3000,3231,3347,3517,3838,4867,5324,5666,6010,6360,6710,6848,6992,7148,7541,7759,7981,8207,8423,8664,8923,9100" ++ }, ++ "to": { ++ "startLines": "3,4,5,6,7,8,9,10,11,12,76,77,78,79,81,84,87,182,185,188,191,197,264,265,268,273,284,332,338,344,350,356,357,358,359,363,366,369,372,401,405,409", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "173,241,320,408,496,584,672,759,846,933,6582,6675,6782,6887,7109,7322,7581,13762,13980,14212,14448,14897,19684,19800,19970,20291,21320,24425,24717,25011,25311,25611,25749,25893,26049,26442,26660,26882,27108,28804,29045,29304", ++ "endLines": "3,4,5,6,7,8,9,10,11,12,76,77,78,79,83,86,89,184,187,190,193,199,264,267,272,283,289,337,343,349,355,356,357,358,362,365,368,371,374,404,408,411", ++ "endColumns": "67,78,87,87,87,87,86,86,86,86,92,106,104,118,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,137,143,155,10,10,10,10,10,10,10,10", ++ "endOffsets": "236,315,403,491,579,667,754,841,928,1015,6670,6777,6882,7001,7317,7576,7847,13975,14207,14443,14693,15123,19795,19965,20286,21315,21772,24712,25006,25306,25606,25744,25888,26044,26437,26655,26877,27103,27319,29040,29299,29476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v21/values.xml", ++ "from": { ++ "startLines": "4,13", ++ "startColumns": "0,0", ++ "startOffsets": "146,621", ++ "endLines": "12,21", ++ "endColumns": "8,8", ++ "endOffsets": "620,1093" ++ }, ++ "to": { ++ "startLines": "375,384", ++ "startColumns": "4,4", ++ "startOffsets": "27324,27803", ++ "endLines": "383,392", ++ "endColumns": "8,8", ++ "endOffsets": "27798,28275" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v22.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v22.json +new file mode 100644 +index 0000000..76768d1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v22.json +@@ -0,0 +1,28 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-v22/values-v22.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v22/values-v22.xml", ++ "from": { ++ "startLines": "2,3,4,9", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,553", ++ "endLines": "2,3,8,13", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,548,896" ++ }, ++ "to": { ++ "startLines": "2,3,4,9", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,487", ++ "endLines": "2,3,8,13", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,482,764" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v23.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v23.json +new file mode 100644 +index 0000000..0b185f0 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v23.json +@@ -0,0 +1,66 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-v23/values-v23.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,190,325,400,487,1371,2267,2386,2513,2735,2959,3074,3181,3294", ++ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", ++ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", ++ "endOffsets": "185,320,395,482,1366,2262,2381,2508,2730,2954,3069,3176,3289,3519" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,190,325,400,487,1225,1975,2094,2221,2443,2667,2782,2889,3002", ++ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", ++ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", ++ "endOffsets": "185,320,395,482,1220,1970,2089,2216,2438,2662,2777,2884,2997,3227" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ac2b811be8f6b6e801e40541beb0df8/transformed/cardview-1.0.0/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "4", ++ "endColumns": "12", ++ "endOffsets": "200" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "3232", ++ "endLines": "52", ++ "endColumns": "12", ++ "endOffsets": "3377" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2,6", ++ "startColumns": "4,4", ++ "startOffsets": "55,320", ++ "endLines": "5,9", ++ "endColumns": "10,10", ++ "endOffsets": "315,588" ++ }, ++ "to": { ++ "startLines": "53,57", ++ "startColumns": "4,4", ++ "startOffsets": "3382,3647", ++ "endLines": "56,60", ++ "endColumns": "10,10", ++ "endOffsets": "3642,3915" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v24.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v24.json +new file mode 100644 +index 0000000..36f8586 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v24.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-v24/values-v24.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v24/values-v24.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,212", ++ "endColumns": "156,134", ++ "endOffsets": "207,342" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v25.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v25.json +new file mode 100644 +index 0000000..6fc44bd +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v25.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-v25/values-v25.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v25/values-v25.xml", ++ "from": { ++ "startLines": "2,3,4,6", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,126,209,308", ++ "endLines": "2,3,5,7", ++ "endColumns": "70,82,12,12", ++ "endOffsets": "121,204,303,414" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v26.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v26.json +new file mode 100644 +index 0000000..82af367 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v26.json +@@ -0,0 +1,28 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-v26/values-v26.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v26/values-v26.xml", ++ "from": { ++ "startLines": "2,3,4,8,12,16", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,130,217,431,657,896", ++ "endLines": "2,3,7,11,15,16", ++ "endColumns": "74,86,12,12,12,92", ++ "endOffsets": "125,212,426,652,891,984" ++ }, ++ "to": { ++ "startLines": "2,3,4,8,12,16", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,130,217,381,557,796", ++ "endLines": "2,3,7,11,15,16", ++ "endColumns": "74,86,12,12,12,92", ++ "endOffsets": "125,212,376,552,791,884" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v28.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v28.json +new file mode 100644 +index 0000000..117f0ec +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-v28.json +@@ -0,0 +1,57 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-v28/values-v28.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v28/values-v28.xml", ++ "from": { ++ "startLines": "2,3,4,8", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,447", ++ "endLines": "2,3,7,11", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,442,684" ++ }, ++ "to": { ++ "startLines": "10,11,12,16", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "755,830,917,1097", ++ "endLines": "10,11,15,19", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "825,912,1092,1284" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v28/values.xml", ++ "from": { ++ "startLines": "4,13", ++ "startColumns": "0,0", ++ "startOffsets": "146,625", ++ "endLines": "12,21", ++ "endColumns": "8,8", ++ "endOffsets": "624,1101" ++ }, ++ "to": { ++ "startLines": "20,29", ++ "startColumns": "4,4", ++ "startOffsets": "1289,1772", ++ "endLines": "28,37", ++ "endColumns": "8,8", ++ "endOffsets": "1767,2248" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v28/values-v28.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,143,231,319,407,494,581,668", ++ "endColumns": "87,87,87,87,86,86,86,86", ++ "endOffsets": "138,226,314,402,489,576,663,750" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-vi.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-vi.json +new file mode 100644 +index 0000000..7f970ea +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-vi.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-vi/values-vi.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,2798", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,2878" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,377,479,588,672,775,894,972,1048,1139,1232,1327,1421,1521,1614,1709,1803,1894,1985,2069,2173,2281,2382,2487,2602,2707,2864,7226", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "372,474,583,667,770,889,967,1043,1134,1227,1322,1416,1516,1609,1704,1798,1889,1980,2064,2168,2276,2377,2482,2597,2702,2859,2958,7306" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7311", ++ "endColumns": "100", ++ "endOffsets": "7407" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,298,397,511,591,654,748,822,881,967,1028,1086,1150,1211,1265,1382,1439,1499,1553,1628,1755,1839,1917,2017,2101,2179,2270,2337,2403,2471,2547,2628,2707,2782,2855,2931,3020,3097,3188,3282,3356,3426,3519,3568,3634,3719,3805,3867,3931,3994,4093,4198,4296,4401", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,98,113,79,62,93,73,58,85,60,57,63,60,53,116,56,59,53,74,126,83,77,99,83,77,90,66,65,67,75,80,78,74,72,75,88,76,90,93,73,69,92,48,65,84,85,61,63,62,98,104,97,104,81", ++ "endOffsets": "215,293,392,506,586,649,743,817,876,962,1023,1081,1145,1206,1260,1377,1434,1494,1548,1623,1750,1834,1912,2012,2096,2174,2265,2332,2398,2466,2542,2623,2702,2777,2850,2926,3015,3092,3183,3277,3351,3421,3514,3563,3629,3714,3800,3862,3926,3989,4088,4193,4291,4396,4478" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2963,3041,3140,3254,3334,3397,3491,3565,3624,3710,3771,3829,3893,3954,4008,4125,4182,4242,4296,4371,4498,4582,4660,4760,4844,4922,5013,5080,5146,5214,5290,5371,5450,5525,5598,5674,5763,5840,5931,6025,6099,6169,6262,6311,6377,6462,6548,6610,6674,6737,6836,6941,7039,7144", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,98,113,79,62,93,73,58,85,60,57,63,60,53,116,56,59,53,74,126,83,77,99,83,77,90,66,65,67,75,80,78,74,72,75,88,76,90,93,73,69,92,48,65,84,85,61,63,62,98,104,97,104,81", ++ "endOffsets": "265,3036,3135,3249,3329,3392,3486,3560,3619,3705,3766,3824,3888,3949,4003,4120,4177,4237,4291,4366,4493,4577,4655,4755,4839,4917,5008,5075,5141,5209,5285,5366,5445,5520,5593,5669,5758,5835,5926,6020,6094,6164,6257,6306,6372,6457,6543,6605,6669,6732,6831,6936,7034,7139,7221" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w320dp-land-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w320dp-land-v13.json +new file mode 100644 +index 0000000..4a16773 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w320dp-land-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-w320dp-land-v13/values-w320dp-land-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w320dp-land-v13/values-w320dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,110", ++ "endColumns": "54,61", ++ "endOffsets": "105,167" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w360dp-port-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w360dp-port-v13.json +new file mode 100644 +index 0000000..b6e6267 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w360dp-port-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-w360dp-port-v13/values-w360dp-port-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w360dp-port-v13/values-w360dp-port-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478", ++ "endColumns": "58,55,55,66,64,54,64,68", ++ "endOffsets": "109,165,221,288,353,408,473,542" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w480dp-port-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w480dp-port-v13.json +new file mode 100644 +index 0000000..985637c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w480dp-port-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-w480dp-port-v13/values-w480dp-port-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w480dp-port-v13/values-w480dp-port-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478", ++ "endColumns": "58,55,55,66,64,54,64,68", ++ "endOffsets": "109,165,221,288,353,408,473,542" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w600dp-land-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w600dp-land-v13.json +new file mode 100644 +index 0000000..e1d2b69 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-w600dp-land-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-w600dp-land-v13/values-w600dp-land-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w600dp-land-v13/values-w600dp-land-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "54", ++ "endOffsets": "105" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-watch-v20.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-watch-v20.json +new file mode 100644 +index 0000000..75533b5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-watch-v20.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-watch-v20/values-watch-v20.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-watch-v20/values-watch-v20.xml", ++ "from": { ++ "startLines": "2,5,8", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,214,385", ++ "endLines": "4,7,10", ++ "endColumns": "12,12,12", ++ "endOffsets": "209,380,553" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-watch-v21.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-watch-v21.json +new file mode 100644 +index 0000000..7523e5f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-watch-v21.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-watch-v21/values-watch-v21.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-watch-v21/values-watch-v21.xml", ++ "from": { ++ "startLines": "2,6,10", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,271,499", ++ "endLines": "5,9,13", ++ "endColumns": "12,12,12", ++ "endOffsets": "266,494,724" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-xlarge-v4.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-xlarge-v4.json +new file mode 100644 +index 0000000..0a510af +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-xlarge-v4.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-xlarge-v4/values-xlarge-v4.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-xlarge-v4/values-xlarge-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,126,197,267,337,405", ++ "endColumns": "70,70,69,69,67,67", ++ "endOffsets": "121,192,262,332,400,468" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zh-rCN.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zh-rCN.json +new file mode 100644 +index 0000000..3acd36a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zh-rCN.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-zh-rCN/values-zh-rCN.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,272,363,469,542,604,681,740,799,877,934,990,1049,1107,1161,1246,1302,1360,1414,1479,1571,1645,1721,1813,1875,1937,2016,2083,2149,2213,2282,2360,2421,2492,2559,2619,2698,2765,2848,2933,3007,3072,3148,3196,3260,3336,3414,3476,3540,3603,3683,3759,3837,3914", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,69,90,105,72,61,76,58,58,77,56,55,58,57,53,84,55,57,53,64,91,73,75,91,61,61,78,66,65,63,68,77,60,70,66,59,78,66,82,84,73,64,75,47,63,75,77,61,63,62,79,75,77,76,68", ++ "endOffsets": "197,267,358,464,537,599,676,735,794,872,929,985,1044,1102,1156,1241,1297,1355,1409,1474,1566,1640,1716,1808,1870,1932,2011,2078,2144,2208,2277,2355,2416,2487,2554,2614,2693,2760,2843,2928,3002,3067,3143,3191,3255,3331,3409,3471,3535,3598,3678,3754,3832,3909,3978" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2809,2879,2970,3076,3149,3211,3288,3347,3406,3484,3541,3597,3656,3714,3768,3853,3909,3967,4021,4086,4178,4252,4328,4420,4482,4544,4623,4690,4756,4820,4889,4967,5028,5099,5166,5226,5305,5372,5455,5540,5614,5679,5755,5803,5867,5943,6021,6083,6147,6210,6290,6366,6444,6521", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,69,90,105,72,61,76,58,58,77,56,55,58,57,53,84,55,57,53,64,91,73,75,91,61,61,78,66,65,63,68,77,60,70,66,59,78,66,82,84,73,64,75,47,63,75,77,61,63,62,79,75,77,76,68", ++ "endOffsets": "247,2874,2965,3071,3144,3206,3283,3342,3401,3479,3536,3592,3651,3709,3763,3848,3904,3962,4016,4081,4173,4247,4323,4415,4477,4539,4618,4685,4751,4815,4884,4962,5023,5094,5161,5221,5300,5367,5450,5535,5609,5674,5750,5798,5862,5938,6016,6078,6142,6205,6285,6361,6439,6516,6585" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,2662", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,2736" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,442,542,624,721,827,904,979,1070,1163,1260,1356,1450,1543,1638,1730,1821,1912,1990,2086,2181,2276,2373,2469,2567,2715,6590", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "342,437,537,619,716,822,899,974,1065,1158,1255,1351,1445,1538,1633,1725,1816,1907,1985,2081,2176,2271,2368,2464,2562,2710,2804,6664" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6669", ++ "endColumns": "100", ++ "endOffsets": "6765" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zh-rHK.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zh-rHK.json +new file mode 100644 +index 0000000..7d873ec +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zh-rHK.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-zh-rHK/values-zh-rHK.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,2666", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,2740" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,440,540,622,719,827,904,979,1071,1165,1256,1352,1447,1541,1637,1729,1821,1913,1991,2087,2182,2277,2374,2470,2568,2719,6583", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "342,435,535,617,714,822,899,974,1066,1160,1251,1347,1442,1536,1632,1724,1816,1908,1986,2082,2177,2272,2369,2465,2563,2714,2808,6657" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6662", ++ "endColumns": "100", ++ "endOffsets": "6758" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,269,359,466,539,601,679,738,796,874,931,987,1046,1104,1158,1244,1300,1358,1412,1477,1570,1644,1722,1812,1875,1938,2015,2082,2148,2212,2281,2356,2417,2488,2555,2615,2695,2758,2841,2926,3000,3065,3141,3189,3253,3329,3407,3469,3533,3596,3676,3751,3827,3903", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,66,89,106,72,61,77,58,57,77,56,55,58,57,53,85,55,57,53,64,92,73,77,89,62,62,76,66,65,63,68,74,60,70,66,59,79,62,82,84,73,64,75,47,63,75,77,61,63,62,79,74,75,75,68", ++ "endOffsets": "197,264,354,461,534,596,674,733,791,869,926,982,1041,1099,1153,1239,1295,1353,1407,1472,1565,1639,1717,1807,1870,1933,2010,2077,2143,2207,2276,2351,2412,2483,2550,2610,2690,2753,2836,2921,2995,3060,3136,3184,3248,3324,3402,3464,3528,3591,3671,3746,3822,3898,3967" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2813,2880,2970,3077,3150,3212,3290,3349,3407,3485,3542,3598,3657,3715,3769,3855,3911,3969,4023,4088,4181,4255,4333,4423,4486,4549,4626,4693,4759,4823,4892,4967,5028,5099,5166,5226,5306,5369,5452,5537,5611,5676,5752,5800,5864,5940,6018,6080,6144,6207,6287,6362,6438,6514", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,66,89,106,72,61,77,58,57,77,56,55,58,57,53,85,55,57,53,64,92,73,77,89,62,62,76,66,65,63,68,74,60,70,66,59,79,62,82,84,73,64,75,47,63,75,77,61,63,62,79,74,75,75,68", ++ "endOffsets": "247,2875,2965,3072,3145,3207,3285,3344,3402,3480,3537,3593,3652,3710,3764,3850,3906,3964,4018,4083,4176,4250,4328,4418,4481,4544,4621,4688,4754,4818,4887,4962,5023,5094,5161,5221,5301,5364,5447,5532,5606,5671,5747,5795,5859,5935,6013,6075,6139,6202,6282,6357,6433,6509,6578" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zh-rTW.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zh-rTW.json +new file mode 100644 +index 0000000..c4214ec +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zh-rTW.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-zh-rTW/values-zh-rTW.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,269,363,470,543,605,683,743,803,881,939,995,1055,1113,1167,1252,1308,1366,1420,1485,1577,1651,1728,1818,1881,1944,2021,2088,2154,2217,2285,2363,2424,2495,2562,2624,2703,2768,2851,2936,3010,3074,3150,3198,3262,3338,3416,3478,3542,3605,3685,3762,3838,3915", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,66,93,106,72,61,77,59,59,77,57,55,59,57,53,84,55,57,53,64,91,73,76,89,62,62,76,66,65,62,67,77,60,70,66,61,78,64,82,84,73,63,75,47,63,75,77,61,63,62,79,76,75,76,68", ++ "endOffsets": "197,264,358,465,538,600,678,738,798,876,934,990,1050,1108,1162,1247,1303,1361,1415,1480,1572,1646,1723,1813,1876,1939,2016,2083,2149,2212,2280,2358,2419,2490,2557,2619,2698,2763,2846,2931,3005,3069,3145,3193,3257,3333,3411,3473,3537,3600,3680,3757,3833,3910,3979" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2818,2885,2979,3086,3159,3221,3299,3359,3419,3497,3555,3611,3671,3729,3783,3868,3924,3982,4036,4101,4193,4267,4344,4434,4497,4560,4637,4704,4770,4833,4901,4979,5040,5111,5178,5240,5319,5384,5467,5552,5626,5690,5766,5814,5878,5954,6032,6094,6158,6221,6301,6378,6454,6531", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,66,93,106,72,61,77,59,59,77,57,55,59,57,53,84,55,57,53,64,91,73,76,89,62,62,76,66,65,62,67,77,60,70,66,61,78,64,82,84,73,63,75,47,63,75,77,61,63,62,79,76,75,76,68", ++ "endOffsets": "247,2880,2974,3081,3154,3216,3294,3354,3414,3492,3550,3606,3666,3724,3778,3863,3919,3977,4031,4096,4188,4262,4339,4429,4492,4555,4632,4699,4765,4828,4896,4974,5035,5106,5173,5235,5314,5379,5462,5547,5621,5685,5761,5809,5873,5949,6027,6089,6153,6216,6296,6373,6449,6526,6595" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6679", ++ "endColumns": "100", ++ "endOffsets": "6775" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,2671", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,2745" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,440,540,622,719,827,904,979,1071,1165,1262,1358,1453,1547,1643,1735,1827,1919,1997,2093,2188,2283,2380,2476,2574,2724,6600", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "342,435,535,617,714,822,899,974,1066,1160,1257,1353,1448,1542,1638,1730,1822,1914,1992,2088,2183,2278,2375,2471,2569,2719,2813,6674" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zu.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zu.json +new file mode 100644 +index 0000000..bb10806 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values-zu.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values-zu/values-zu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,320,432,520,623,738,817,894,985,1078,1173,1267,1367,1460,1555,1649,1740,1833,1914,2018,2121,2219,2326,2433,2538,2695,2791", ++ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", ++ "endOffsets": "208,315,427,515,618,733,812,889,980,1073,1168,1262,1362,1455,1550,1644,1735,1828,1909,2013,2116,2214,2321,2428,2533,2690,2786,2868" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,491,603,691,794,909,988,1065,1156,1249,1344,1438,1538,1631,1726,1820,1911,2004,2085,2189,2292,2390,2497,2604,2709,2866,7425", ++ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", ++ "endOffsets": "379,486,598,686,789,904,983,1060,1151,1244,1339,1433,1533,1626,1721,1815,1906,1999,2080,2184,2287,2385,2492,2599,2704,2861,2957,7502" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7507", ++ "endColumns": "100", ++ "endOffsets": "7603" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,303,415,541,622,689,792,867,930,1022,1087,1154,1226,1298,1352,1473,1532,1596,1650,1727,1859,1944,2025,2144,2231,2314,2406,2473,2539,2611,2688,2779,2859,2938,3013,3092,3182,3255,3349,3446,3520,3593,3692,3747,3815,3903,3992,4054,4118,4181,4290,4395,4498,4607", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,111,125,80,66,102,74,62,91,64,66,71,71,53,120,58,63,53,76,131,84,80,118,86,82,91,66,65,71,76,90,79,78,74,78,89,72,93,96,73,72,98,54,67,87,88,61,63,62,108,104,102,108,81", ++ "endOffsets": "221,298,410,536,617,684,787,862,925,1017,1082,1149,1221,1293,1347,1468,1527,1591,1645,1722,1854,1939,2020,2139,2226,2309,2401,2468,2534,2606,2683,2774,2854,2933,3008,3087,3177,3250,3344,3441,3515,3588,3687,3742,3810,3898,3987,4049,4113,4176,4285,4390,4493,4602,4684" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3039,3151,3277,3358,3425,3528,3603,3666,3758,3823,3890,3962,4034,4088,4209,4268,4332,4386,4463,4595,4680,4761,4880,4967,5050,5142,5209,5275,5347,5424,5515,5595,5674,5749,5828,5918,5991,6085,6182,6256,6329,6428,6483,6551,6639,6728,6790,6854,6917,7026,7131,7234,7343", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,111,125,80,66,102,74,62,91,64,66,71,71,53,120,58,63,53,76,131,84,80,118,86,82,91,66,65,71,76,90,79,78,74,78,89,72,93,96,73,72,98,54,67,87,88,61,63,62,108,104,102,108,81", ++ "endOffsets": "271,3034,3146,3272,3353,3420,3523,3598,3661,3753,3818,3885,3957,4029,4083,4204,4263,4327,4381,4458,4590,4675,4756,4875,4962,5045,5137,5204,5270,5342,5419,5510,5590,5669,5744,5823,5913,5986,6080,6177,6251,6324,6423,6478,6546,6634,6723,6785,6849,6912,7021,7126,7229,7338,7420" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values.json +new file mode 100644 +index 0000000..94d8eb8 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/out/multi-v2/values.json +@@ -0,0 +1,339 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20:/values/values.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/113a9edb5eab6212082ea70ac0555d5e/transformed/appcompat-resources-1.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,29,36,47,74", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,1702,2087,2684,4317", ++ "endLines": "28,35,46,73,78", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "1697,2082,2679,4312,4582" ++ }, ++ "to": { ++ "startLines": "5156,5172,5178,7330,7346", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "333041,333466,333644,428385,428796", ++ "endLines": "5171,5177,5187,7345,7349", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "333461,333639,333923,428791,428918" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/461d7c19ef38b4f9b46fbdeb7e398449/transformed/espresso-contrib-3.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "5", ++ "startColumns": "0", ++ "startOffsets": "164", ++ "endColumns": "73", ++ "endOffsets": "237" ++ }, ++ "to": { ++ "startLines": "982", ++ "startColumns": "4", ++ "startOffsets": "57683", ++ "endColumns": "77", ++ "endOffsets": "57756" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,89,90,94,95,96,97,103,113,146,167,200", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,115,187,275,344,407,477,545,617,687,748,822,895,956,1017,1079,1143,1205,1266,1334,1434,1494,1560,1633,1702,1759,1811,1873,1945,2021,2086,2145,2204,2264,2324,2384,2444,2504,2564,2624,2684,2744,2804,2863,2923,2983,3043,3103,3163,3223,3283,3343,3403,3463,3522,3582,3642,3701,3760,3819,3878,3937,3996,4031,4066,4121,4184,4239,4297,4355,4416,4479,4536,4587,4637,4698,4755,4821,4855,4890,4925,4995,5066,5183,5384,5494,5695,5824,5896,5963,6166,6467,8198,8879,9561", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,88,89,93,94,95,96,102,112,145,166,199,205", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "110,182,270,339,402,472,540,612,682,743,817,890,951,1012,1074,1138,1200,1261,1329,1429,1489,1555,1628,1697,1754,1806,1868,1940,2016,2081,2140,2199,2259,2319,2379,2439,2499,2559,2619,2679,2739,2799,2858,2918,2978,3038,3098,3158,3218,3278,3338,3398,3458,3517,3577,3637,3696,3755,3814,3873,3932,3991,4026,4061,4116,4179,4234,4292,4350,4411,4474,4531,4582,4632,4693,4750,4816,4850,4885,4920,4990,5061,5178,5379,5489,5690,5819,5891,5958,6161,6462,8193,8874,9556,9723" ++ }, ++ "to": { ++ "startLines": "312,413,414,496,497,605,606,607,608,609,610,611,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,988,989,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1036,1075,1184,3645,3646,3650,3651,3655,4204,4205,5900,6204,6433,6466,6502,6535", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "14944,19842,19914,25552,25621,32876,32946,33014,33086,33156,33217,33291,52866,52927,52988,53050,53114,53176,53237,53305,53405,53465,53531,53604,53673,53730,53782,55355,55427,55503,55568,55627,55686,55746,55806,55866,55926,55986,56046,56106,56166,56226,56286,56345,56405,56465,56525,56585,56645,56705,56765,56825,56885,56945,57004,57064,57124,57183,57242,57301,57360,57419,58005,58040,59332,59387,59450,59505,59563,59621,59682,59745,59802,59853,59903,59964,60021,60087,60121,60503,62813,77035,238337,238454,238655,238765,238966,278078,278150,358443,368261,390140,391871,393096,393778", ++ "endLines": "312,413,414,496,497,605,606,607,608,609,610,611,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,988,989,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1036,1075,1184,3645,3649,3650,3654,3655,4204,4205,5905,6213,6465,6486,6534,6540", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "14999,19909,19997,25616,25679,32941,33009,33081,33151,33212,33286,33359,52922,52983,53045,53109,53171,53232,53300,53400,53460,53526,53599,53668,53725,53777,53839,55422,55498,55563,55622,55681,55741,55801,55861,55921,55981,56041,56101,56161,56221,56281,56340,56400,56460,56520,56580,56640,56700,56760,56820,56880,56940,56999,57059,57119,57178,57237,57296,57355,57414,57473,58035,58070,59382,59445,59500,59558,59616,59677,59740,59797,59848,59898,59959,60016,60082,60116,60151,60533,62878,77101,238449,238650,238760,238961,239090,278145,278212,358641,368557,391866,392547,393773,393940" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/6193ccf8266fe7e7acf873e6a6e33027/transformed/recyclerview-1.2.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,111,170,218,274,349,425,497,563", ++ "endLines": "2,3,4,5,6,7,8,9,38", ++ "endColumns": "55,58,47,55,74,75,71,65,24", ++ "endOffsets": "106,165,213,269,344,420,492,558,2084" ++ }, ++ "to": { ++ "startLines": "330,663,664,665,673,674,675,987,7121", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "15685,36669,36728,36776,37443,37518,37594,57939,421661", ++ "endLines": "330,663,664,665,673,674,675,987,7141", ++ "endColumns": "55,58,47,55,74,75,71,65,24", ++ "endOffsets": "15736,36723,36771,36827,37513,37589,37661,58000,422496" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/aab319f82c96efbdcc73962788b25c1d/transformed/fragment-1.3.6/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,10", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,112,177,241,411", ++ "endLines": "2,3,4,9,13", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "107,172,236,406,555" ++ }, ++ "to": { ++ "startLines": "983,1012,1047,6493,6498", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "57761,59221,61031,392777,392947", ++ "endLines": "983,1012,1047,6497,6501", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "57813,59281,61090,392942,393091" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,221,222,226,230,234,239,245,252,256,260,265,269,273,277,281,285,289,295,299,305,309,315,319,324,328,331,335,341,345,351,355,361,364,368,372,376,380,384,385,386,387,390,393,396,399,403,404,405,406,407,410,412,414,416,421,422,426,432,436,437,439,451,452,456,462,466,467,468,472,499,503,504,508,536,708,734,906,932,963,971,977,993,1015,1020,1025,1035,1044,1053,1057,1064,1083,1090,1091,1100,1103,1106,1110,1114,1118,1121,1122,1127,1132,1142,1147,1154,1160,1161,1164,1168,1173,1175,1177,1180,1183,1185,1189,1192,1199,1202,1205,1209,1211,1215,1217,1219,1221,1225,1233,1241,1253,1259,1268,1271,1282,1285,1286,1291,1292,1297,1366,1436,1437,1447,1456,1457,1459,1463,1466,1469,1472,1475,1478,1481,1484,1488,1491,1494,1497,1501,1504,1508,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1534,1536,1537,1538,1539,1540,1541,1542,1543,1545,1546,1548,1549,1551,1553,1554,1556,1557,1558,1559,1560,1561,1563,1564,1565,1566,1567,1568,1570,1572,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1588,1589,1590,1591,1592,1593,1594,1596,1600,1604,1605,1606,1607,1608,1609,1613,1614,1615,1616,1618,1620,1622,1624,1626,1627,1628,1629,1631,1633,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1649,1650,1651,1652,1654,1656,1657,1659,1660,1662,1664,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1684,1685,1686,1687,1688,1690,1692,1694,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1794,1797,1800,1803,1817,1828,1838,1868,1895,1904,1979,2382,2387,2415,2433,2469,2475,2481,2504,2645,2665,2671,2675,2681,2718,2730,2796,2820,2889,2908,2934", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,160,205,254,295,350,412,476,546,607,682,758,835,913,998,1080,1156,1232,1309,1387,1493,1599,1678,1758,1815,1873,1947,2022,2087,2153,2213,2274,2346,2419,2486,2554,2613,2672,2731,2790,2849,2903,2957,3010,3064,3118,3172,3226,3300,3379,3452,3526,3597,3669,3741,3814,3871,3929,4002,4076,4150,4225,4297,4370,4440,4511,4571,4632,4701,4770,4840,4914,4990,5054,5131,5207,5284,5349,5418,5495,5570,5639,5707,5784,5850,5911,6008,6073,6142,6241,6312,6371,6429,6486,6545,6609,6680,6752,6824,6896,6968,7035,7103,7171,7230,7293,7357,7447,7538,7598,7664,7731,7797,7867,7931,7984,8051,8112,8179,8292,8350,8413,8478,8543,8618,8691,8763,8807,8854,8900,8949,9010,9071,9132,9194,9258,9322,9386,9451,9514,9574,9635,9701,9760,9820,9882,9953,10013,10081,10167,10254,10344,10431,10519,10601,10684,10774,10865,10917,10975,11020,11086,11150,11207,11264,11318,11375,11423,11472,11523,11557,11604,11653,11699,11731,11795,11857,11917,11974,12048,12118,12196,12250,12320,12405,12453,12499,12560,12623,12689,12753,12824,12887,12952,13016,13077,13138,13190,13263,13337,13406,13481,13555,13629,13770,13840,13893,13971,14061,14149,14245,14335,14917,15006,15253,15534,15786,16071,16464,16941,17163,17385,17661,17888,18118,18348,18578,18808,19035,19454,19680,20105,20335,20763,20982,21265,21473,21604,21831,22257,22482,22909,23130,23555,23675,23951,24252,24576,24867,25181,25318,25449,25554,25796,25963,26167,26375,26646,26758,26870,26975,27092,27306,27452,27592,27678,28026,28114,28360,28778,29027,29109,29207,29889,29989,30241,30665,30920,31014,31103,31340,33392,33634,33736,33989,36173,47362,48878,60165,61693,63450,64076,64496,65757,67022,67278,67514,68061,68555,69160,69358,69938,71306,71681,71799,72337,72494,72690,72963,73219,73389,73530,73594,73959,74326,75002,75266,75604,75957,76051,76237,76543,76805,76930,77057,77296,77507,77626,77819,77996,78451,78632,78754,79013,79126,79313,79415,79522,79651,79926,80434,80930,81807,82101,82671,82820,83552,83724,83808,84144,84236,84514,89908,95442,95504,96134,96748,96839,96952,97181,97341,97493,97664,97830,97999,98166,98329,98572,98742,98915,99086,99360,99559,99764,100094,100178,100274,100370,100468,100568,100670,100772,100874,100976,101078,101178,101274,101386,101515,101638,101769,101900,101998,102112,102206,102346,102480,102576,102688,102788,102904,103000,103112,103212,103352,103488,103652,103782,103940,104090,104231,104375,104510,104622,104772,104900,105028,105164,105296,105426,105556,105668,105808,105954,106098,106236,106302,106392,106468,106572,106662,106764,106872,106980,107080,107160,107252,107350,107460,107512,107590,107696,107788,107892,108002,108124,108287,108444,108524,108624,108714,108824,108914,109155,109249,109355,109447,109547,109659,109773,109889,110005,110099,110213,110325,110427,110547,110669,110751,110855,110975,111101,111199,111293,111381,111493,111609,111731,111843,112018,112134,112220,112312,112424,112548,112615,112741,112809,112937,113081,113209,113278,113373,113488,113601,113700,113809,113920,114031,114132,114237,114337,114467,114558,114681,114775,114887,114973,115077,115173,115261,115379,115483,115587,115713,115801,115909,116009,116099,116209,116293,116395,116479,116533,116597,116703,116789,116899,116983,117103,122247,122365,122480,122612,123327,124019,124536,126135,127668,128056,132791,153454,153714,155224,156257,158270,158532,158888,159718,166500,167634,167928,168151,168478,170528,171176,175027,176229,180308,181523,182932", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,220,221,225,229,233,238,244,251,255,259,264,268,272,276,280,284,288,294,298,304,308,314,318,323,327,330,334,340,344,350,354,360,363,367,371,375,379,383,384,385,386,389,392,395,398,402,403,404,405,406,409,411,413,415,420,421,425,431,435,436,438,450,451,455,461,465,466,467,471,498,502,503,507,535,707,733,905,931,962,970,976,992,1014,1019,1024,1034,1043,1052,1056,1063,1082,1089,1090,1099,1102,1105,1109,1113,1117,1120,1121,1126,1131,1141,1146,1153,1159,1160,1163,1167,1172,1174,1176,1179,1182,1184,1188,1191,1198,1201,1204,1208,1210,1214,1216,1218,1220,1224,1232,1240,1252,1258,1267,1270,1281,1284,1285,1290,1291,1296,1365,1435,1436,1446,1455,1456,1458,1462,1465,1468,1471,1474,1477,1480,1483,1487,1490,1493,1496,1500,1503,1507,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1533,1535,1536,1537,1538,1539,1540,1541,1542,1544,1545,1547,1548,1550,1552,1553,1555,1556,1557,1558,1559,1560,1562,1563,1564,1565,1566,1567,1569,1571,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1587,1588,1589,1590,1591,1592,1593,1595,1599,1603,1604,1605,1606,1607,1608,1612,1613,1614,1615,1617,1619,1621,1623,1625,1626,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1648,1649,1650,1651,1653,1655,1656,1658,1659,1661,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1678,1679,1680,1681,1683,1684,1685,1686,1687,1689,1691,1693,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1793,1796,1799,1802,1816,1827,1837,1867,1894,1903,1978,2381,2386,2414,2432,2468,2474,2480,2503,2644,2664,2670,2674,2680,2717,2729,2795,2819,2888,2907,2933,2942", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "155,200,249,290,345,407,471,541,602,677,753,830,908,993,1075,1151,1227,1304,1382,1488,1594,1673,1753,1810,1868,1942,2017,2082,2148,2208,2269,2341,2414,2481,2549,2608,2667,2726,2785,2844,2898,2952,3005,3059,3113,3167,3221,3295,3374,3447,3521,3592,3664,3736,3809,3866,3924,3997,4071,4145,4220,4292,4365,4435,4506,4566,4627,4696,4765,4835,4909,4985,5049,5126,5202,5279,5344,5413,5490,5565,5634,5702,5779,5845,5906,6003,6068,6137,6236,6307,6366,6424,6481,6540,6604,6675,6747,6819,6891,6963,7030,7098,7166,7225,7288,7352,7442,7533,7593,7659,7726,7792,7862,7926,7979,8046,8107,8174,8287,8345,8408,8473,8538,8613,8686,8758,8802,8849,8895,8944,9005,9066,9127,9189,9253,9317,9381,9446,9509,9569,9630,9696,9755,9815,9877,9948,10008,10076,10162,10249,10339,10426,10514,10596,10679,10769,10860,10912,10970,11015,11081,11145,11202,11259,11313,11370,11418,11467,11518,11552,11599,11648,11694,11726,11790,11852,11912,11969,12043,12113,12191,12245,12315,12400,12448,12494,12555,12618,12684,12748,12819,12882,12947,13011,13072,13133,13185,13258,13332,13401,13476,13550,13624,13765,13835,13888,13966,14056,14144,14240,14330,14912,15001,15248,15529,15781,16066,16459,16936,17158,17380,17656,17883,18113,18343,18573,18803,19030,19449,19675,20100,20330,20758,20977,21260,21468,21599,21826,22252,22477,22904,23125,23550,23670,23946,24247,24571,24862,25176,25313,25444,25549,25791,25958,26162,26370,26641,26753,26865,26970,27087,27301,27447,27587,27673,28021,28109,28355,28773,29022,29104,29202,29884,29984,30236,30660,30915,31009,31098,31335,33387,33629,33731,33984,36168,47357,48873,60160,61688,63445,64071,64491,65752,67017,67273,67509,68056,68550,69155,69353,69933,71301,71676,71794,72332,72489,72685,72958,73214,73384,73525,73589,73954,74321,74997,75261,75599,75952,76046,76232,76538,76800,76925,77052,77291,77502,77621,77814,77991,78446,78627,78749,79008,79121,79308,79410,79517,79646,79921,80429,80925,81802,82096,82666,82815,83547,83719,83803,84139,84231,84509,89903,95437,95499,96129,96743,96834,96947,97176,97336,97488,97659,97825,97994,98161,98324,98567,98737,98910,99081,99355,99554,99759,100089,100173,100269,100365,100463,100563,100665,100767,100869,100971,101073,101173,101269,101381,101510,101633,101764,101895,101993,102107,102201,102341,102475,102571,102683,102783,102899,102995,103107,103207,103347,103483,103647,103777,103935,104085,104226,104370,104505,104617,104767,104895,105023,105159,105291,105421,105551,105663,105803,105949,106093,106231,106297,106387,106463,106567,106657,106759,106867,106975,107075,107155,107247,107345,107455,107507,107585,107691,107783,107887,107997,108119,108282,108439,108519,108619,108709,108819,108909,109150,109244,109350,109442,109542,109654,109768,109884,110000,110094,110208,110320,110422,110542,110664,110746,110850,110970,111096,111194,111288,111376,111488,111604,111726,111838,112013,112129,112215,112307,112419,112543,112610,112736,112804,112932,113076,113204,113273,113368,113483,113596,113695,113804,113915,114026,114127,114232,114332,114462,114553,114676,114770,114882,114968,115072,115168,115256,115374,115478,115582,115708,115796,115904,116004,116094,116204,116288,116390,116474,116528,116592,116698,116784,116894,116978,117098,122242,122360,122475,122607,123322,124014,124531,126130,127663,128051,132786,153449,153709,155219,156252,158265,158527,158883,159713,166495,167629,167923,168146,168473,170523,171171,175022,176224,180303,181518,182927,183401" ++ }, ++ "to": { ++ "startLines": "73,141,143,361,403,404,406,407,408,409,410,411,412,415,416,417,418,419,420,421,422,423,424,425,426,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,661,662,666,667,668,669,670,671,672,933,934,935,936,937,938,939,940,978,979,980,981,986,1004,1005,1013,1042,1048,1049,1052,1053,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1183,1185,1186,1190,1191,1192,1201,1209,1210,1214,1218,1229,1234,1262,1269,1273,1277,1282,1286,1290,1294,1298,1302,1306,1312,1316,1322,1326,1332,1336,1341,1345,1348,1352,1358,1362,1368,1372,1378,1381,1385,1389,1393,1397,1401,1402,1403,1404,1407,1410,1413,1416,1420,1421,1422,1423,1461,1464,1466,1468,1470,1475,1476,1480,1486,1490,1491,1493,1505,1506,1510,1516,1520,1575,1576,1580,1607,1611,1612,1616,2267,2438,2464,2635,2661,2692,2700,2706,2722,2744,2749,2754,2764,2773,2782,2786,2793,2812,2819,2820,2829,2832,2835,2839,2843,2847,2850,2851,2856,2861,2871,2876,2883,2889,2890,2893,2897,2902,2904,2906,2909,2912,2914,2918,2921,2928,2931,2934,2938,2940,2944,2946,2948,2950,2954,2962,2970,2982,2988,2997,3000,3011,3014,3015,3020,3021,3254,3323,3397,3398,3408,3417,3418,3420,3424,3427,3430,3433,3436,3439,3442,3445,3449,3452,3455,3458,3462,3465,3469,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3611,3613,3614,3615,3616,3617,3618,3619,3620,3622,3623,3625,3626,3628,3630,3631,3633,3634,3635,3636,3637,3638,3640,3641,3642,3643,3644,3776,3778,3780,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3796,3797,3798,3799,3800,3801,3802,3804,3808,3931,3932,3933,3934,3935,3936,3940,3941,3942,4109,4111,4113,4115,4117,4119,4120,4121,4122,4124,4126,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4142,4143,4144,4145,4147,4149,4150,4152,4153,4155,4157,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4172,4173,4174,4175,4177,4178,4179,4180,4181,4183,4185,4187,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,5042,5117,5120,5123,5126,5140,5146,5251,5280,5307,5316,5378,5896,6214,6337,6562,6586,6624,6802,6823,6947,7093,7099,7115,7149,7317,7351,7516,7768,7851,7863,7892", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "3404,6375,6473,17464,19162,19217,19341,19405,19475,19536,19611,19687,19764,20002,20087,20169,20245,20321,20398,20476,20582,20688,20767,20847,20904,23634,23708,23783,23848,23914,23974,24035,24107,24180,24247,24315,24374,24433,24492,24551,24610,24664,24718,24771,24825,24879,24933,25684,25758,25837,25910,25984,26055,26127,26199,26272,26329,26387,26460,26534,26608,26683,26755,26828,26898,26969,27029,27090,27159,27228,27298,27372,27448,27512,27589,27665,27742,27807,27876,27953,28028,28097,28165,28242,28308,28369,28466,28531,28600,28699,28770,28829,28887,28944,29003,29067,29138,29210,29282,29354,29426,29493,29561,29629,29688,29751,29815,29905,29996,30056,30122,30189,30255,30325,30389,30442,30509,30570,30637,30750,30808,30871,30936,31001,31076,31149,31221,31265,31312,31358,31407,31468,31529,31590,31652,31716,31780,31844,31909,31972,32032,32093,32159,32218,32278,32340,32411,32471,36496,36582,36832,36922,37009,37097,37179,37262,37352,54625,54677,54735,54780,54846,54910,54967,55024,57478,57535,57583,57632,57905,58848,58895,59286,60804,61095,61159,61349,61409,63203,63277,63347,63425,63479,63549,63634,63682,63728,63789,63852,63918,63982,64053,64116,64181,64245,64306,64367,64419,64492,64566,64635,64710,64784,64858,64999,76982,77106,77184,77408,77496,77592,78244,78826,78915,79162,79443,80109,80394,82142,82619,82841,83063,83339,83566,83796,84026,84256,84486,84713,85132,85358,85783,86013,86441,86660,86943,87151,87282,87509,87935,88160,88587,88808,89233,89353,89629,89930,90254,90545,90859,90996,91127,91232,91474,91641,91845,92053,92324,92436,92548,92653,94598,94812,94958,95098,95184,95532,95620,95866,96284,96533,96615,96713,97370,97470,97722,98146,98401,102432,102521,102758,104782,105024,105126,105379,149735,160332,161848,172543,174071,175828,176454,176874,178135,179400,179656,179892,180439,180933,181538,181736,182316,183684,184059,184177,184715,184872,185068,185341,185597,185767,185908,185972,186337,186704,187380,187644,187982,188335,188429,188615,188921,189183,189308,189435,189674,189885,190004,190197,190374,190829,191010,191132,191391,191504,191691,191793,191900,192029,192304,192812,193308,194185,194479,195049,195198,195930,196102,196186,196522,196614,210568,215799,221514,221576,222154,222738,222829,222942,223171,223331,223483,223654,223820,223989,224156,224319,224562,224732,224905,225076,225350,225549,225754,232623,232707,232803,232899,232997,233097,233199,233301,233403,233505,233607,233707,233803,233915,234044,234167,234298,234429,234527,234641,234735,234875,235009,235105,235217,235317,235433,235529,235641,235741,235881,236017,236181,236311,236469,236619,236760,236904,237039,237151,237301,237429,237557,237693,237825,237955,238085,238197,246079,246225,246369,246507,246573,246663,246739,246843,246933,247035,247143,247251,247351,247431,247523,247621,247731,247783,247861,247967,248059,248163,248273,248395,248558,258007,258087,258187,258277,258387,258477,258718,258812,258918,270422,270522,270634,270748,270864,270980,271074,271188,271300,271402,271522,271644,271726,271830,271950,272076,272174,272268,272356,272468,272584,272706,272818,272993,273109,273195,273287,273399,273523,273590,273716,273784,273912,274056,274184,274253,274348,274463,274576,274675,274784,274895,275006,275107,275212,275312,275442,275533,275656,275750,275862,275948,276052,276148,276236,276354,276458,276562,276688,276776,276884,276984,277074,277184,277268,277370,277454,277508,277572,277678,277764,277874,277958,329001,331617,331735,331850,331930,332291,332524,336639,337983,339344,339732,342507,358308,368562,387423,400775,401526,403040,409116,409495,413773,420549,420778,421446,422784,427946,429029,435282,444274,448648,448988,450409", ++ "endLines": "73,141,143,361,403,404,406,407,408,409,410,411,412,415,416,417,418,419,420,421,422,423,424,425,426,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,661,662,666,667,668,669,670,671,672,933,934,935,936,937,938,939,940,978,979,980,981,986,1004,1005,1013,1042,1048,1049,1052,1053,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1183,1185,1186,1190,1191,1192,1208,1209,1213,1217,1221,1233,1239,1268,1272,1276,1281,1285,1289,1293,1297,1301,1305,1311,1315,1321,1325,1331,1335,1340,1344,1347,1351,1357,1361,1367,1371,1377,1380,1384,1388,1392,1396,1400,1401,1402,1403,1406,1409,1412,1415,1419,1420,1421,1422,1423,1463,1465,1467,1469,1474,1475,1479,1485,1489,1490,1492,1504,1505,1509,1515,1519,1520,1575,1579,1606,1610,1611,1615,1643,2437,2463,2634,2660,2691,2699,2705,2721,2743,2748,2753,2763,2772,2781,2785,2792,2811,2818,2819,2828,2831,2834,2838,2842,2846,2849,2850,2855,2860,2870,2875,2882,2888,2889,2892,2896,2901,2903,2905,2908,2911,2913,2917,2920,2927,2930,2933,2937,2939,2943,2945,2947,2949,2953,2961,2969,2981,2987,2996,2999,3010,3013,3014,3019,3020,3025,3322,3392,3397,3407,3416,3417,3419,3423,3426,3429,3432,3435,3438,3441,3444,3448,3451,3454,3457,3461,3464,3468,3472,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3610,3612,3613,3614,3615,3616,3617,3618,3619,3621,3622,3624,3625,3627,3629,3630,3632,3633,3634,3635,3636,3637,3639,3640,3641,3642,3643,3644,3777,3779,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3795,3796,3797,3798,3799,3800,3801,3803,3807,3811,3931,3932,3933,3934,3935,3939,3940,3941,3942,4110,4112,4114,4116,4118,4119,4120,4121,4123,4125,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4141,4142,4143,4144,4146,4148,4149,4151,4152,4154,4156,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4171,4172,4173,4174,4176,4177,4178,4179,4180,4182,4184,4186,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,5116,5119,5122,5125,5139,5145,5155,5279,5306,5315,5377,5740,5899,6241,6354,6585,6591,6629,6822,6946,6966,7098,7102,7120,7183,7328,7416,7535,7822,7862,7888,7898", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "3454,6415,6517,17500,19212,19274,19400,19470,19531,19606,19682,19759,19837,20082,20164,20240,20316,20393,20471,20577,20683,20762,20842,20899,20957,23703,23778,23843,23909,23969,24030,24102,24175,24242,24310,24369,24428,24487,24546,24605,24659,24713,24766,24820,24874,24928,24982,25753,25832,25905,25979,26050,26122,26194,26267,26324,26382,26455,26529,26603,26678,26750,26823,26893,26964,27024,27085,27154,27223,27293,27367,27443,27507,27584,27660,27737,27802,27871,27948,28023,28092,28160,28237,28303,28364,28461,28526,28595,28694,28765,28824,28882,28939,28998,29062,29133,29205,29277,29349,29421,29488,29556,29624,29683,29746,29810,29900,29991,30051,30117,30184,30250,30320,30384,30437,30504,30565,30632,30745,30803,30866,30931,30996,31071,31144,31216,31260,31307,31353,31402,31463,31524,31585,31647,31711,31775,31839,31904,31967,32027,32088,32154,32213,32273,32335,32406,32466,32534,36577,36664,36917,37004,37092,37174,37257,37347,37438,54672,54730,54775,54841,54905,54962,55019,55073,57530,57578,57627,57678,57934,58890,58939,59327,60831,61154,61216,61404,61461,63272,63342,63420,63474,63544,63629,63677,63723,63784,63847,63913,63977,64048,64111,64176,64240,64301,64362,64414,64487,64561,64630,64705,64779,64853,64994,65064,77030,77179,77269,77491,77587,77677,78821,78910,79157,79438,79690,80389,80782,82614,82836,83058,83334,83561,83791,84021,84251,84481,84708,85127,85353,85778,86008,86436,86655,86938,87146,87277,87504,87930,88155,88582,88803,89228,89348,89624,89925,90249,90540,90854,90991,91122,91227,91469,91636,91840,92048,92319,92431,92543,92648,92765,94807,94953,95093,95179,95527,95615,95861,96279,96528,96610,96708,97365,97465,97717,98141,98396,98490,102516,102753,104777,105019,105121,105374,107530,160327,161843,172538,174066,175823,176449,176869,178130,179395,179651,179887,180434,180928,181533,181731,182311,183679,184054,184172,184710,184867,185063,185336,185592,185762,185903,185967,186332,186699,187375,187639,187977,188330,188424,188610,188916,189178,189303,189430,189669,189880,189999,190192,190369,190824,191005,191127,191386,191499,191686,191788,191895,192024,192299,192807,193303,194180,194474,195044,195193,195925,196097,196181,196517,196609,196887,215794,221165,221571,222149,222733,222824,222937,223166,223326,223478,223649,223815,223984,224151,224314,224557,224727,224900,225071,225345,225544,225749,226079,232702,232798,232894,232992,233092,233194,233296,233398,233500,233602,233702,233798,233910,234039,234162,234293,234424,234522,234636,234730,234870,235004,235100,235212,235312,235428,235524,235636,235736,235876,236012,236176,236306,236464,236614,236755,236899,237034,237146,237296,237424,237552,237688,237820,237950,238080,238192,238332,246220,246364,246502,246568,246658,246734,246838,246928,247030,247138,247246,247346,247426,247518,247616,247726,247778,247856,247962,248054,248158,248268,248390,248553,248710,258082,258182,258272,258382,258472,258713,258807,258913,259005,270517,270629,270743,270859,270975,271069,271183,271295,271397,271517,271639,271721,271825,271945,272071,272169,272263,272351,272463,272579,272701,272813,272988,273104,273190,273282,273394,273518,273585,273711,273779,273907,274051,274179,274248,274343,274458,274571,274670,274779,274890,275001,275102,275207,275307,275437,275528,275651,275745,275857,275943,276047,276143,276231,276349,276453,276557,276683,276771,276879,276979,277069,277179,277263,277365,277449,277503,277567,277673,277759,277869,277953,278073,331612,331730,331845,331925,332286,332519,333036,337978,339339,339727,342502,352555,358438,369914,387990,401521,401783,403235,409490,413768,414374,420773,420924,421656,423862,428253,432050,436021,446400,448983,450294,450607" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a44dd8dae0f5566110296e3edaa8fb5a/transformed/transition-1.2.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,95,142,185,240,287,341,393,442,503", ++ "endColumns": "39,46,42,54,46,53,51,48,60,49", ++ "endOffsets": "90,137,180,235,282,336,388,437,498,548" ++ }, ++ "to": { ++ "startLines": "984,985,1003,1007,1008,1037,1038,1039,1040,1041", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "57818,57858,58805,58987,59042,60538,60592,60644,60693,60754", ++ "endColumns": "39,46,42,54,46,53,51,48,60,49", ++ "endOffsets": "57853,57900,58843,59037,59084,60587,60639,60688,60749,60799" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "4,11", ++ "startColumns": "0,0", ++ "startOffsets": "142,510", ++ "endLines": "10,17", ++ "endColumns": "8,8", ++ "endOffsets": "509,875" ++ }, ++ "to": { ++ "startLines": "4095,4102", ++ "startColumns": "4,4", ++ "startOffsets": "269680,270052", ++ "endLines": "4101,4108", ++ "endColumns": "8,8", ++ "endOffsets": "270047,270417" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,80,81,82,83,84,85,86,87,88,89,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,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,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,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,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,583,587,591,598,605,613,623,632,641,650,651,652,657,658,662,663,669,673,674,675,676,686,687,688,692,693,699,703,704,705,706,707,763,845,890,970,1025,1107,1171,1216,1296,1307,1311,1315,1327,1343,1359,1360,1408,1412,1416,1417,1418,1421,1435,1444,1459,1501,1502,1503,1515,1519,1524,1529,1534,1537,1540,1543,1547,1551,1552,1553,1554,1555,1558,1561,1564,1567,1571,1575,1576,1579,1582,1585,1588,1592,1595,1598,1601,1604,1607,1610,1614,1617,1620,1624,1627,1637,1645,1653,1656,1659,1662,1665,1668,1671,1674,1675,1678,1681,1682,1685,1686,1687,1691,1692,1697,1698,1706,1714,1715,1723,1727,1735,1743,1751,1759,1767,1768,1776,1784,1785,1788,1791,1793,1798,1800,1805,1809,1813,1814,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1843,1844,1845,1851,1852,1856,1858,1859,1862,1867,1868,1869,1870,1871,1872,1876,1877,1878,1884,1885,1889,1891,1894,1898,1902,1906,1910,1911,1912,1913,1921,1929,1932,1937,1942,1947,1952,1956,1960,1961,1969,1970,1971,1972,1973,1981,1986,1991,1992,1993,1994,2018,2022,2027,2030,2034,2037,2041,2048,2051,2055,2059,2062,2070,2079,2092,2096,2111,2119,2122,2133,2138,2142,2177,2181,2182,2189,2193,2194,2195,2198,2203,2208,2209,2213,2218,2233,2237,2238,2250,2260,2261,2273,2278,2302,2305,2311,2314,2323,2331,2335,2338,2341,2344,2348,2351,2368,2372,2375,2390,2393,2401,2406,2413,2418,2419,2424,2425,2431,2437,2443,2474,2485,2502,2509,2513,2516,2528,2537,2541,2546,2550,2554,2558,2561,2565,2569,2572,2581,2586,2595,2599,2606,2607,2611,2620,2626,2630,2631,2647,2653,2657,2661,2662,2684,2685,2686,2687,2688,2692,2695,2696,2703,2704,2716,2728,2735,2736,2741,2746,2747,2751,2765,2770,2776,2782,2788,2793,2799,2805,2806,2811,2825,2830,2839,2852,2863,2867,2876,2884,2885,2892,2900,2925,2937,2976,2996,3061,3095,3099,3161,3274,3300,3331,3337,3345,3452,3467,3481,3487,3533,3537,3543,3549,3557,3592,3598,3605,3608,3674,3686,3698,3710,3742,3751,3760,3766,3771,3776,3782,3795,3843,3859,3914,3920,3927,3930,3934,3972,3995,4046,4054,4077,4084,4092,4189,4194,4443,4459", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "150,206,255,311,371,432,487,537,587,640,698,746,815,863,930,967,1014,1063,1119,1170,1219,1273,1327,1376,1432,1479,1535,1595,1648,1709,1781,1845,1896,1949,2001,2059,2124,2172,2223,2290,2356,2414,2483,2541,2611,2684,2758,2826,2893,2963,3029,3102,3162,3238,3298,3358,3433,3493,3552,3609,3668,3730,3792,3849,3905,3961,4019,4077,4134,4191,4250,4309,4367,4421,4477,4606,4664,4722,4780,4826,4886,4940,5008,5077,5145,5198,5250,5300,5346,5396,5443,5501,5559,5618,5678,5740,5802,5864,5926,5988,6050,6118,6179,6241,6303,6356,6410,6461,6506,6570,6629,6691,6765,6836,6902,6976,7045,7116,7189,7260,7328,7401,7477,7547,7625,7693,7759,7820,7889,7953,8019,8087,8153,8216,8284,8355,8420,8493,8556,8637,8701,8767,8837,8907,8977,9047,9114,9179,9245,9298,9374,9440,9527,9603,9679,9726,9791,9846,9896,9950,10029,10107,10180,10245,10308,10374,10445,10516,10586,10648,10717,10783,10843,10910,10977,11033,11084,11137,11189,11243,11314,11377,11436,11498,11557,11630,11697,11757,11820,11895,11967,12063,12134,12190,12261,12318,12375,12441,12505,12576,12633,12686,12749,12801,12859,12926,12990,13052,13114,13182,13240,13303,13366,13433,13505,13571,13623,13683,13741,13793,13877,13962,14043,14123,14200,14279,14356,14430,14504,14575,14655,14727,14802,14870,14947,15012,15073,15133,15208,15282,15359,15432,15502,15574,15644,15717,15781,15851,15899,15968,16020,16105,16188,16246,16312,16379,16445,16526,16601,16657,16710,16771,16829,16879,16928,16977,17026,17088,17140,17185,17266,17317,17371,17424,17478,17529,17578,17644,17695,17756,17817,17879,17929,17970,18047,18106,18165,18224,18285,18341,18397,18464,18525,18590,18645,18710,18779,18847,18925,18994,19054,19125,19199,19264,19336,19406,19473,19557,19626,19693,19763,19826,19893,19961,20044,20123,20213,20290,20358,20425,20503,20560,20617,20685,20751,20807,20867,20926,20980,21030,21080,21128,21190,21241,21307,21380,21460,21540,21604,21667,21734,21805,21863,21924,21990,22049,22116,22176,22236,22299,22367,22428,22495,22573,22643,22692,22749,22818,22879,22967,23055,23143,23231,23287,23374,23461,23548,23635,23693,23767,23837,23893,23964,24029,24091,24166,24239,24329,24395,24461,24522,24586,24648,24706,24777,24860,24919,24990,25056,25121,25182,25241,25312,25378,25443,25526,25602,25677,25758,25818,25887,25957,26026,26081,26137,26193,26254,26312,26368,26423,26485,26538,26595,26689,26758,26859,26910,26980,27043,27101,27171,27240,27310,27380,27450,27517,27584,27659,27726,27785,27839,27893,27947,28000,28052,28126,28191,28265,28338,28406,28466,28524,28585,28651,28717,28782,28846,28907,29044,29184,29233,29283,29331,29387,29445,29507,29562,29620,29679,29741,29807,29873,29916,29960,30005,30048,30099,30146,30191,30242,30293,30344,30395,30443,30509,30571,30634,30706,30763,30829,30895,30963,31031,31097,31164,31238,31301,31358,31418,31483,31550,31615,31672,31733,31791,31861,31918,32238,32388,32519,32757,32855,32970,33055,33103,33182,33247,33336,33493,33650,33803,33957,34016,34098,34272,34420,34579,34734,34907,35024,35141,35309,35421,35535,35709,35887,36020,36132,36278,36430,36562,36705,36827,37005,37187,37504,37686,37868,38058,38248,38447,38620,38730,38913,39050,39270,39454,39614,39772,39956,40159,40330,40550,40772,40927,41127,41311,41414,41555,41720,41891,42091,42295,42497,42702,42903,43102,43306,43384,43685,43851,44006,44108,44242,44519,44804,45194,45650,46159,46701,47166,47628,48099,48192,48299,48642,48749,48994,49115,49524,49772,49872,49977,50096,50630,50777,50896,51147,51280,51695,51949,52061,52182,52315,52462,56647,62185,65549,70877,74963,80464,84531,87811,93102,93858,94110,94375,95435,96339,97438,97529,99723,100045,100255,100364,100483,100667,101639,102235,103164,105815,105910,105941,106811,107097,107500,107902,108245,108457,108658,108871,109160,109445,109518,109605,109690,109789,109909,110070,110233,110394,110559,110726,110779,110912,111032,111130,111243,111436,111562,111714,111856,112026,112182,112354,112645,112757,112886,113115,113333,114188,114775,115389,115557,115699,115860,116003,116171,116328,116523,116615,116788,116950,117045,117214,117308,117397,117640,117729,118022,118136,118545,118959,119075,119493,119734,120164,120599,121009,121431,121841,121963,122372,122788,122910,123128,123312,123380,123724,123804,124160,124310,124454,124538,124927,125025,125133,125227,125357,125465,125587,125723,125831,125951,126085,126207,126335,126477,126603,126743,126869,126987,127119,127217,127327,127627,127739,127857,128321,128437,128740,128866,128962,129092,129493,129603,129727,129865,129975,130097,130409,130533,130663,131139,131267,131582,131720,131866,132028,132244,132400,132604,132672,132756,132860,133422,134053,134211,134430,134661,134884,135119,135341,135607,135745,136344,136458,136596,136708,136832,137403,137898,138444,138589,138682,138774,140671,141059,141357,141546,141752,141945,142155,142760,142905,143122,143383,143514,143946,144470,145114,145311,146259,146816,146939,147712,147933,148133,150110,150345,150469,150977,151191,151294,151424,151599,151918,152204,152344,152538,152808,153689,153977,154107,154884,155541,155687,156393,156631,158171,158321,158738,158903,159589,160059,160255,160417,160572,160716,160950,161117,162045,162331,162491,163106,163265,163593,163820,164332,164694,164773,165112,165217,165582,165953,166314,168136,168765,169841,170361,170614,170766,171756,172493,172696,172942,173189,173431,173752,173951,174256,174479,174651,175192,175461,175955,176216,176656,176815,177099,177844,178209,178514,178672,179669,180067,180295,180515,180657,182357,182463,182593,182731,182855,183085,183254,183354,183813,183927,184810,185565,186004,186128,186441,186724,186858,187049,187828,188046,188337,188616,188933,189155,189450,189733,189837,190120,190852,191168,191794,192523,193184,193373,194020,194585,194705,195202,195736,197360,198071,200119,200961,203808,205732,205972,209959,215289,216567,217810,217994,218205,224846,225554,226331,226715,228885,229116,229420,229737,230259,231715,232022,232452,232611,236088,236706,237288,237783,239291,239782,240276,240649,240878,241086,241222,241908,244717,245580,249181,249402,249695,249832,250067,251921,252911,255466,255907,257137,257558,257874,263177,263442,277443,278512", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,79,80,81,82,83,84,85,86,87,88,89,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,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,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,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,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,582,586,590,597,604,612,622,631,640,649,650,651,656,657,661,662,668,672,673,674,675,685,686,687,691,692,698,702,703,704,705,706,762,844,889,969,1024,1106,1170,1215,1295,1306,1310,1314,1326,1342,1358,1359,1407,1411,1415,1416,1417,1420,1434,1443,1458,1500,1501,1502,1514,1518,1523,1528,1533,1536,1539,1542,1546,1550,1551,1552,1553,1554,1557,1560,1563,1566,1570,1574,1575,1578,1581,1584,1587,1591,1594,1597,1600,1603,1606,1609,1613,1616,1619,1623,1626,1636,1644,1652,1655,1658,1661,1664,1667,1670,1673,1674,1677,1680,1681,1684,1685,1686,1690,1691,1696,1697,1705,1713,1714,1722,1726,1734,1742,1750,1758,1766,1767,1775,1783,1784,1787,1790,1792,1797,1799,1804,1808,1812,1813,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1842,1843,1844,1850,1851,1855,1857,1858,1861,1866,1867,1868,1869,1870,1871,1875,1876,1877,1883,1884,1888,1890,1893,1897,1901,1905,1909,1910,1911,1912,1920,1928,1931,1936,1941,1946,1951,1955,1959,1960,1968,1969,1970,1971,1972,1980,1985,1990,1991,1992,1993,2017,2021,2026,2029,2033,2036,2040,2047,2050,2054,2058,2061,2069,2078,2091,2095,2110,2118,2121,2132,2137,2141,2176,2180,2181,2188,2192,2193,2194,2197,2202,2207,2208,2212,2217,2232,2236,2237,2249,2259,2260,2272,2277,2301,2304,2310,2313,2322,2330,2334,2337,2340,2343,2347,2350,2367,2371,2374,2389,2392,2400,2405,2412,2417,2418,2423,2424,2430,2436,2442,2473,2484,2501,2508,2512,2515,2527,2536,2540,2545,2549,2553,2557,2560,2564,2568,2571,2580,2585,2594,2598,2605,2606,2610,2619,2625,2629,2630,2646,2652,2656,2660,2661,2683,2684,2685,2686,2687,2691,2694,2695,2702,2703,2715,2727,2734,2735,2740,2745,2746,2750,2764,2769,2775,2781,2787,2792,2798,2804,2805,2810,2824,2829,2838,2851,2862,2866,2875,2883,2884,2891,2899,2924,2936,2975,2995,3060,3094,3098,3160,3273,3299,3330,3336,3344,3451,3466,3480,3486,3532,3536,3542,3548,3556,3591,3597,3604,3607,3673,3685,3697,3709,3741,3750,3759,3765,3770,3775,3781,3794,3842,3858,3913,3919,3926,3929,3933,3971,3994,4045,4053,4076,4083,4091,4188,4193,4442,4458,4467", ++ "endColumns": "55,48,55,59,60,54,49,49,52,57,47,68,47,66,36,46,48,55,50,48,53,53,48,55,46,55,59,52,60,71,63,50,52,51,57,64,47,50,66,65,57,68,57,69,72,73,67,66,69,65,72,59,75,59,59,74,59,58,56,58,61,61,56,55,55,57,57,56,56,58,58,57,53,55,9,57,57,57,45,59,53,67,68,67,52,51,49,45,49,46,57,57,58,59,61,61,61,61,61,61,67,60,61,61,52,53,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,64,65,52,75,65,86,75,75,46,64,54,49,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,63,61,61,67,57,62,62,66,71,65,51,59,57,51,83,84,80,79,76,78,76,73,73,70,79,71,74,67,76,64,60,59,74,73,76,72,69,71,69,72,63,69,47,68,51,84,82,57,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,65,72,79,79,63,62,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,55,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,54,61,52,56,93,68,100,50,69,62,57,69,68,69,69,69,66,66,74,66,58,53,53,53,52,51,73,64,73,72,67,59,57,60,65,65,64,63,60,136,139,48,49,47,55,57,61,54,57,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,69,56,12,149,130,237,97,114,84,47,78,64,88,156,156,152,153,58,81,173,147,158,154,172,116,116,167,111,113,173,177,132,111,145,151,131,142,121,177,181,316,181,181,189,189,198,172,109,182,136,219,183,159,157,183,202,170,219,221,154,199,183,102,140,164,170,199,203,201,204,200,198,203,77,300,165,154,101,10,10,10,10,10,10,10,10,10,10,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,90,10,10,10,108,118,10,10,10,10,10,94,30,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,10,10,10,10,10,52,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22", ++ "endOffsets": "201,250,306,366,427,482,532,582,635,693,741,810,858,925,962,1009,1058,1114,1165,1214,1268,1322,1371,1427,1474,1530,1590,1643,1704,1776,1840,1891,1944,1996,2054,2119,2167,2218,2285,2351,2409,2478,2536,2606,2679,2753,2821,2888,2958,3024,3097,3157,3233,3293,3353,3428,3488,3547,3604,3663,3725,3787,3844,3900,3956,4014,4072,4129,4186,4245,4304,4362,4416,4472,4601,4659,4717,4775,4821,4881,4935,5003,5072,5140,5193,5245,5295,5341,5391,5438,5496,5554,5613,5673,5735,5797,5859,5921,5983,6045,6113,6174,6236,6298,6351,6405,6456,6501,6565,6624,6686,6760,6831,6897,6971,7040,7111,7184,7255,7323,7396,7472,7542,7620,7688,7754,7815,7884,7948,8014,8082,8148,8211,8279,8350,8415,8488,8551,8632,8696,8762,8832,8902,8972,9042,9109,9174,9240,9293,9369,9435,9522,9598,9674,9721,9786,9841,9891,9945,10024,10102,10175,10240,10303,10369,10440,10511,10581,10643,10712,10778,10838,10905,10972,11028,11079,11132,11184,11238,11309,11372,11431,11493,11552,11625,11692,11752,11815,11890,11962,12058,12129,12185,12256,12313,12370,12436,12500,12571,12628,12681,12744,12796,12854,12921,12985,13047,13109,13177,13235,13298,13361,13428,13500,13566,13618,13678,13736,13788,13872,13957,14038,14118,14195,14274,14351,14425,14499,14570,14650,14722,14797,14865,14942,15007,15068,15128,15203,15277,15354,15427,15497,15569,15639,15712,15776,15846,15894,15963,16015,16100,16183,16241,16307,16374,16440,16521,16596,16652,16705,16766,16824,16874,16923,16972,17021,17083,17135,17180,17261,17312,17366,17419,17473,17524,17573,17639,17690,17751,17812,17874,17924,17965,18042,18101,18160,18219,18280,18336,18392,18459,18520,18585,18640,18705,18774,18842,18920,18989,19049,19120,19194,19259,19331,19401,19468,19552,19621,19688,19758,19821,19888,19956,20039,20118,20208,20285,20353,20420,20498,20555,20612,20680,20746,20802,20862,20921,20975,21025,21075,21123,21185,21236,21302,21375,21455,21535,21599,21662,21729,21800,21858,21919,21985,22044,22111,22171,22231,22294,22362,22423,22490,22568,22638,22687,22744,22813,22874,22962,23050,23138,23226,23282,23369,23456,23543,23630,23688,23762,23832,23888,23959,24024,24086,24161,24234,24324,24390,24456,24517,24581,24643,24701,24772,24855,24914,24985,25051,25116,25177,25236,25307,25373,25438,25521,25597,25672,25753,25813,25882,25952,26021,26076,26132,26188,26249,26307,26363,26418,26480,26533,26590,26684,26753,26854,26905,26975,27038,27096,27166,27235,27305,27375,27445,27512,27579,27654,27721,27780,27834,27888,27942,27995,28047,28121,28186,28260,28333,28401,28461,28519,28580,28646,28712,28777,28841,28902,29039,29179,29228,29278,29326,29382,29440,29502,29557,29615,29674,29736,29802,29868,29911,29955,30000,30043,30094,30141,30186,30237,30288,30339,30390,30438,30504,30566,30629,30701,30758,30824,30890,30958,31026,31092,31159,31233,31296,31353,31413,31478,31545,31610,31667,31728,31786,31856,31913,32233,32383,32514,32752,32850,32965,33050,33098,33177,33242,33331,33488,33645,33798,33952,34011,34093,34267,34415,34574,34729,34902,35019,35136,35304,35416,35530,35704,35882,36015,36127,36273,36425,36557,36700,36822,37000,37182,37499,37681,37863,38053,38243,38442,38615,38725,38908,39045,39265,39449,39609,39767,39951,40154,40325,40545,40767,40922,41122,41306,41409,41550,41715,41886,42086,42290,42492,42697,42898,43097,43301,43379,43680,43846,44001,44103,44237,44514,44799,45189,45645,46154,46696,47161,47623,48094,48187,48294,48637,48744,48989,49110,49519,49767,49867,49972,50091,50625,50772,50891,51142,51275,51690,51944,52056,52177,52310,52457,56642,62180,65544,70872,74958,80459,84526,87806,93097,93853,94105,94370,95430,96334,97433,97524,99718,100040,100250,100359,100478,100662,101634,102230,103159,105810,105905,105936,106806,107092,107495,107897,108240,108452,108653,108866,109155,109440,109513,109600,109685,109784,109904,110065,110228,110389,110554,110721,110774,110907,111027,111125,111238,111431,111557,111709,111851,112021,112177,112349,112640,112752,112881,113110,113328,114183,114770,115384,115552,115694,115855,115998,116166,116323,116518,116610,116783,116945,117040,117209,117303,117392,117635,117724,118017,118131,118540,118954,119070,119488,119729,120159,120594,121004,121426,121836,121958,122367,122783,122905,123123,123307,123375,123719,123799,124155,124305,124449,124533,124922,125020,125128,125222,125352,125460,125582,125718,125826,125946,126080,126202,126330,126472,126598,126738,126864,126982,127114,127212,127322,127622,127734,127852,128316,128432,128735,128861,128957,129087,129488,129598,129722,129860,129970,130092,130404,130528,130658,131134,131262,131577,131715,131861,132023,132239,132395,132599,132667,132751,132855,133417,134048,134206,134425,134656,134879,135114,135336,135602,135740,136339,136453,136591,136703,136827,137398,137893,138439,138584,138677,138769,140666,141054,141352,141541,141747,141940,142150,142755,142900,143117,143378,143509,143941,144465,145109,145306,146254,146811,146934,147707,147928,148128,150105,150340,150464,150972,151186,151289,151419,151594,151913,152199,152339,152533,152803,153684,153972,154102,154879,155536,155682,156388,156626,158166,158316,158733,158898,159584,160054,160250,160412,160567,160711,160945,161112,162040,162326,162486,163101,163260,163588,163815,164327,164689,164768,165107,165212,165577,165948,166309,168131,168760,169836,170356,170609,170761,171751,172488,172691,172937,173184,173426,173747,173946,174251,174474,174646,175187,175456,175950,176211,176651,176810,177094,177839,178204,178509,178667,179664,180062,180290,180510,180652,182352,182458,182588,182726,182850,183080,183249,183349,183808,183922,184805,185560,185999,186123,186436,186719,186853,187044,187823,188041,188332,188611,188928,189150,189445,189728,189832,190115,190847,191163,191789,192518,193179,193368,194015,194580,194700,195197,195731,197355,198066,200114,200956,203803,205727,205967,209954,215284,216562,217805,217989,218200,224841,225549,226326,226710,228880,229111,229415,229732,230254,231710,232017,232447,232606,236083,236701,237283,237778,239286,239777,240271,240644,240873,241081,241217,241903,244712,245575,249176,249397,249690,249827,250062,251916,252906,255461,255902,257132,257553,257869,263172,263437,277438,278507,278841" ++ }, ++ "to": { ++ "startLines": "3,9,20,21,22,23,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,77,78,79,80,81,82,140,142,144,145,146,147,148,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,310,311,329,331,332,333,334,335,336,337,338,340,341,342,343,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,373,381,382,405,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,488,489,490,491,492,493,494,495,599,600,604,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,921,922,923,924,925,926,927,928,929,930,931,932,941,942,990,991,993,994,995,996,997,998,999,1000,1001,1002,1006,1009,1010,1011,1029,1030,1031,1032,1033,1034,1035,1043,1050,1051,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1076,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1187,1193,1197,1240,1247,1254,1424,1434,1443,1452,1521,1522,1523,1528,1529,1533,1534,1540,1544,1545,1546,1547,1557,1558,1559,1563,1564,1570,1574,1644,1645,1646,1647,1703,1785,1830,1910,1965,2047,2111,2156,2236,2247,2251,2255,3026,3042,3057,3058,3106,3110,3114,3115,3116,3119,3133,3140,3154,3196,3205,3206,3218,3222,3227,3232,3237,3240,3243,3246,3250,3393,3394,3395,3396,3473,3476,3479,3482,3485,3489,3493,3494,3497,3500,3503,3506,3510,3513,3516,3519,3522,3525,3528,3532,3535,3538,3542,3545,3555,3563,3571,3574,3577,3580,3583,3586,3656,3659,3660,3663,3666,3667,3670,3671,3672,3676,3677,3682,3683,3691,3699,3700,3708,3712,3720,3728,3736,3744,3752,3753,3761,3769,3770,3773,3812,3814,3819,3821,3826,3830,3834,3835,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3864,3865,3866,3872,3873,3877,3879,3880,3883,3888,3889,3890,3891,3892,3893,3897,3898,3899,3905,3906,3910,3912,3915,3919,3923,3927,3943,3944,3945,3946,3954,3962,3965,3970,3975,3980,3985,3989,3993,3994,4002,4003,4004,4005,4006,4014,4019,4024,4025,4026,4027,4051,4055,4060,4063,4067,4070,4074,4081,4084,4088,4092,4206,4214,4223,4236,4240,4255,4263,4266,4277,4282,4286,4321,4325,4326,4333,4337,4338,4339,4342,4347,4352,4353,4357,4362,4377,4381,4382,4394,4404,4405,4417,4422,4446,4449,4455,4458,4467,4475,4479,4482,4485,4488,4492,4495,4512,4516,4519,4534,4537,4545,4550,4557,4562,4563,4568,4569,4575,4581,4587,4618,4629,4646,4653,4657,4660,4672,4681,4685,4690,4694,4698,4702,4705,4709,4713,4716,4725,4730,4739,4743,4750,4751,4755,4764,4770,4774,4775,4791,4797,4801,4805,4806,4824,4825,4826,4827,4828,4832,4835,4836,4842,4843,4855,4867,4874,4875,4880,4885,4886,4890,4904,4909,4915,4921,4927,4932,4938,4944,4945,4950,4964,4969,4978,4991,5002,5006,5015,5023,5024,5031,5188,5203,5213,5741,5761,5807,5841,5845,5934,6043,6063,6084,6090,6098,6190,6359,6373,6379,6423,6427,6487,6542,6592,6630,6636,6643,6646,6700,6709,6721,6733,6760,6766,6772,6778,6783,6788,6794,6983,7017,7033,7104,7109,7142,7145,7184,7222,7240,7289,7297,7417,7421,7429,7536,7540,7760,7823", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "207,449,902,958,1018,1079,1234,1284,1334,1387,1445,1544,1613,1661,1728,1765,1812,1861,1917,1968,2017,2071,2125,2174,2230,3608,3664,3724,3777,3838,3910,6324,6420,6522,6574,6632,6697,6745,12239,12306,12372,12430,12499,12557,12627,12700,12774,12842,12909,12979,13045,13118,13178,13254,13314,13374,13449,13509,13568,13625,13684,13746,13808,13865,13921,13977,14035,14093,14150,14207,14266,14325,14383,14437,14493,14828,14886,15627,15741,15787,15847,15901,15969,16038,16106,16159,16257,16307,16353,16403,16497,16555,16613,16672,16732,16794,16856,16918,16980,17042,17104,17172,17233,17295,17357,17410,17505,17938,18276,18340,19279,21211,21285,21356,21422,21496,21565,21636,21709,21780,21848,21921,21997,22067,22145,22213,22279,22340,22409,22473,22539,22607,22673,22736,22804,22875,22940,23013,23076,23157,23221,23287,23357,23427,23497,23567,24987,25052,25118,25171,25247,25313,25400,25476,32539,32586,32821,33416,33466,33520,33599,33677,33750,33815,33878,33944,34015,34086,34156,34218,34287,34353,34413,34480,34547,34603,34654,34707,34759,34813,34884,34947,35006,35068,35127,35200,35267,35327,35390,35465,35537,35633,35704,35760,35831,35888,35945,36011,36075,36146,36203,36256,36319,36371,36429,37666,37730,37792,37854,37922,37980,38043,38106,38173,38245,38311,38363,38423,38481,38533,38617,38702,38783,38863,38940,39019,39096,39170,39244,39315,39395,39467,39542,39610,39687,39752,39813,39873,39948,40022,40099,40172,40242,40314,40384,40457,40521,40591,40639,40708,40760,40845,40928,40986,41052,41119,41185,41266,41341,41397,41450,41511,41569,41619,41668,41717,41766,41828,41880,41925,42006,42057,42111,42164,42218,42269,42318,42384,42435,42496,42557,42619,42669,42710,42787,42846,42905,42964,43025,43081,43137,43204,43265,43330,43385,43450,43519,43587,43665,43734,43794,43865,43939,44004,44076,44146,44213,44297,44366,44433,44503,44566,44633,44701,44784,44863,44953,45030,45098,45165,45243,45300,45357,45425,45491,45547,45607,45666,45720,45770,45820,45868,45930,45981,46047,46120,46200,46280,46344,46407,46474,46545,46603,46664,46730,46789,46856,46916,46976,47039,47107,47168,47235,47313,47383,47432,47489,47558,47619,47707,47795,47883,47971,48027,48114,48201,48288,48375,48433,48507,48577,48633,48704,48769,48831,48906,48979,49069,49135,49201,49262,49326,49388,49446,49517,49600,49659,49730,49796,49861,49922,49981,50052,50118,50183,50266,50342,50417,50498,50558,50627,50697,50766,50821,50877,50933,50994,51052,51108,51163,51225,51278,51335,51429,51498,51599,51650,51720,51783,51841,51911,51980,52050,52120,52190,52257,52324,52399,52466,52525,52579,52633,52687,52740,52792,53844,53909,53983,54056,54124,54184,54242,54303,54369,54435,54500,54564,55078,55215,58075,58124,58215,58263,58319,58377,58439,58494,58552,58611,58673,58739,58944,59089,59133,59178,60156,60207,60254,60299,60350,60401,60452,60836,61221,61287,61466,61529,61601,61658,61724,61790,61858,61926,61992,62059,62133,62196,62253,62313,62378,62445,62510,62567,62628,62686,62756,62883,65112,65262,65393,65631,65729,65844,65929,65977,66056,66121,66210,66367,66524,66677,66831,66890,66972,67146,67294,67453,67608,67781,67898,68015,68183,68295,68409,68583,68761,68894,69006,69152,69304,69436,69579,69701,69879,70061,70378,70560,70742,70932,71122,71321,71494,71604,71787,71924,72144,72328,72488,72646,72830,73033,73204,73424,73646,73801,74001,74185,74288,74429,74594,74765,74965,75169,75371,75576,75777,75976,76180,76258,76559,76725,76880,77274,77682,77959,80787,81177,81633,92770,93284,93721,94155,98495,98588,98695,99038,99145,99390,99511,99920,100168,100268,100373,100492,101001,101148,101267,101518,101651,102066,102320,107535,107656,107789,107936,111957,117371,120642,125846,129768,135145,139129,142301,147468,148224,148454,148697,196892,197796,198721,198812,201006,201328,201538,201647,201766,201950,202922,203392,204143,206620,207033,207064,207934,208220,208623,209025,209368,209580,209781,209994,210283,221170,221243,221330,221415,226084,226204,226365,226528,226689,226854,227021,227074,227207,227327,227425,227538,227731,227857,228009,228151,228321,228477,228649,228940,229052,229181,229410,229628,230483,231070,231684,231852,231994,232155,232298,232466,239095,239290,239382,239555,239717,239812,239981,240075,240164,240407,240496,240789,240903,241312,241726,241842,242260,242501,242931,243366,243776,244198,244608,244730,245139,245555,245677,245895,248715,248783,249127,249207,249563,249713,249857,249941,250330,250428,250536,250630,250760,250868,250990,251126,251234,251354,251488,251610,251738,251880,252006,252146,252272,252390,252522,252620,252730,253030,253142,253260,253724,253840,254143,254269,254365,254495,254896,255006,255130,255268,255378,255500,255812,255936,256066,256542,256670,256985,257123,257269,257431,257647,257803,259010,259078,259162,259266,259753,260309,260467,260686,260917,261140,261375,261597,261863,262001,262600,262714,262852,262964,263088,263659,264154,264700,264845,264938,265030,266837,267225,267523,267712,267918,268111,268321,268926,269071,269288,269549,278217,278649,279173,279817,280014,280962,281519,281642,282415,282636,282836,284813,285048,285172,285584,285798,285901,286031,286206,286458,286654,286794,286988,287258,288139,288427,288557,289334,289991,290137,290843,291081,292621,292771,293188,293353,294039,294509,294705,294796,294880,295024,295258,295425,296353,296639,296799,297414,297573,297901,298128,298640,299002,299081,299420,299525,299890,300261,300622,302444,303073,304149,304573,304826,304978,305968,306705,306908,307154,307401,307643,307964,308163,308468,308691,308863,309404,309673,310167,310428,310868,311027,311311,312056,312421,312726,312884,313881,314279,314507,314727,314869,316159,316265,316395,316533,316657,316887,317056,317156,317441,317555,318438,319193,319632,319756,320002,320195,320329,320520,321299,321517,321808,322087,322404,322626,322921,323204,323308,323591,324323,324639,325200,325929,326590,326779,327330,327800,327920,328322,333928,334401,334700,352560,353337,354931,356035,356184,359570,361865,362305,363057,363241,363452,367678,388106,388478,388680,389815,389965,392552,394365,401788,403240,403547,403977,404136,405884,406104,406686,407181,407800,407953,408109,408302,408531,408739,408875,416159,417197,417894,421161,421277,422501,422638,423867,425005,425536,427015,427263,432055,432171,432346,436026,436173,444031,446405", ++ "endLines": "3,9,20,21,22,23,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,77,78,79,80,81,82,140,142,144,145,146,147,148,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,305,310,311,329,331,332,333,334,335,336,337,338,340,341,342,343,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,373,381,382,405,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,488,489,490,491,492,493,494,495,599,600,604,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,921,922,923,924,925,926,927,928,929,930,931,932,941,942,990,991,993,994,995,996,997,998,999,1000,1001,1002,1006,1009,1010,1011,1029,1030,1031,1032,1033,1034,1035,1043,1050,1051,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1079,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1189,1196,1200,1246,1253,1261,1433,1442,1451,1460,1521,1522,1527,1528,1532,1533,1539,1543,1544,1545,1546,1556,1557,1558,1562,1563,1569,1573,1574,1644,1645,1646,1702,1784,1829,1909,1964,2046,2110,2155,2235,2246,2250,2254,2266,3041,3056,3057,3105,3109,3113,3114,3115,3118,3132,3139,3153,3195,3196,3205,3217,3221,3226,3231,3236,3239,3242,3245,3249,3253,3393,3394,3395,3396,3475,3478,3481,3484,3488,3492,3493,3496,3499,3502,3505,3509,3512,3515,3518,3521,3524,3527,3531,3534,3537,3541,3544,3554,3562,3570,3573,3576,3579,3582,3585,3588,3658,3659,3662,3665,3666,3669,3670,3671,3675,3676,3681,3682,3690,3698,3699,3707,3711,3719,3727,3735,3743,3751,3752,3760,3768,3769,3772,3775,3813,3818,3820,3825,3829,3833,3834,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3863,3864,3865,3871,3872,3876,3878,3879,3882,3887,3888,3889,3890,3891,3892,3896,3897,3898,3904,3905,3909,3911,3914,3918,3922,3926,3930,3943,3944,3945,3953,3961,3964,3969,3974,3979,3984,3988,3992,3993,4001,4002,4003,4004,4005,4013,4018,4023,4024,4025,4026,4050,4054,4059,4062,4066,4069,4073,4080,4083,4087,4091,4094,4213,4222,4235,4239,4254,4262,4265,4276,4281,4285,4320,4324,4325,4332,4336,4337,4338,4341,4346,4351,4352,4356,4361,4376,4380,4381,4393,4403,4404,4416,4421,4445,4448,4454,4457,4466,4474,4478,4481,4484,4487,4491,4494,4511,4515,4518,4533,4536,4544,4549,4556,4561,4562,4567,4568,4574,4580,4586,4617,4628,4645,4652,4656,4659,4671,4680,4684,4689,4693,4697,4701,4704,4708,4712,4715,4724,4729,4738,4742,4749,4750,4754,4763,4769,4773,4774,4790,4796,4800,4804,4805,4823,4824,4825,4826,4827,4831,4834,4835,4841,4842,4854,4866,4873,4874,4879,4884,4885,4889,4903,4908,4914,4920,4926,4931,4937,4943,4944,4949,4963,4968,4977,4990,5001,5005,5014,5022,5023,5030,5038,5202,5212,5250,5760,5806,5840,5844,5895,6042,6062,6083,6089,6097,6189,6203,6372,6378,6422,6426,6432,6492,6548,6623,6635,6642,6645,6699,6708,6720,6732,6759,6765,6771,6777,6782,6787,6793,6801,7016,7032,7073,7108,7114,7144,7148,7221,7239,7288,7296,7316,7420,7428,7515,7539,7759,7767,7831", ++ "endColumns": "55,48,55,59,60,54,49,49,52,57,47,68,47,66,36,46,48,55,50,48,53,53,48,55,46,55,59,52,60,71,63,50,52,51,57,64,47,50,66,65,57,68,57,69,72,73,67,66,69,65,72,59,75,59,59,74,59,58,56,58,61,61,56,55,55,57,57,56,56,58,58,57,53,55,9,57,57,57,45,59,53,67,68,67,52,51,49,45,49,46,57,57,58,59,61,61,61,61,61,61,67,60,61,61,52,53,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,64,65,52,75,65,86,75,75,46,64,54,49,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,63,61,61,67,57,62,62,66,71,65,51,59,57,51,83,84,80,79,76,78,76,73,73,70,79,71,74,67,76,64,60,59,74,73,76,72,69,71,69,72,63,69,47,68,51,84,82,57,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,65,72,79,79,63,62,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,55,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,54,61,52,56,93,68,100,50,69,62,57,69,68,69,69,69,66,66,74,66,58,53,53,53,52,51,73,64,73,72,67,59,57,60,65,65,64,63,60,136,139,48,49,47,55,57,61,54,57,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,69,56,12,149,130,237,97,114,84,47,78,64,88,156,156,152,153,58,81,173,147,158,154,172,116,116,167,111,113,173,177,132,111,145,151,131,142,121,177,181,316,181,181,189,189,198,172,109,182,136,219,183,159,157,183,202,170,219,221,154,199,183,102,140,164,170,199,203,201,204,200,198,203,77,300,165,154,101,10,10,10,10,10,10,10,10,10,10,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,90,10,10,10,108,118,10,10,10,10,10,94,30,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,10,10,10,10,10,52,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22", ++ "endOffsets": "258,493,953,1013,1074,1129,1279,1329,1382,1440,1488,1608,1656,1723,1760,1807,1856,1912,1963,2012,2066,2120,2169,2225,2272,3659,3719,3772,3833,3905,3969,6370,6468,6569,6627,6692,6740,6791,12301,12367,12425,12494,12552,12622,12695,12769,12837,12904,12974,13040,13113,13173,13249,13309,13369,13444,13504,13563,13620,13679,13741,13803,13860,13916,13972,14030,14088,14145,14202,14261,14320,14378,14432,14488,14617,14881,14939,15680,15782,15842,15896,15964,16033,16101,16154,16206,16302,16348,16398,16445,16550,16608,16667,16727,16789,16851,16913,16975,17037,17099,17167,17228,17290,17352,17405,17459,17551,17978,18335,18394,19336,21280,21351,21417,21491,21560,21631,21704,21775,21843,21916,21992,22062,22140,22208,22274,22335,22404,22468,22534,22602,22668,22731,22799,22870,22935,23008,23071,23152,23216,23282,23352,23422,23492,23562,23629,25047,25113,25166,25242,25308,25395,25471,25547,32581,32646,32871,33461,33515,33594,33672,33745,33810,33873,33939,34010,34081,34151,34213,34282,34348,34408,34475,34542,34598,34649,34702,34754,34808,34879,34942,35001,35063,35122,35195,35262,35322,35385,35460,35532,35628,35699,35755,35826,35883,35940,36006,36070,36141,36198,36251,36314,36366,36424,36491,37725,37787,37849,37917,37975,38038,38101,38168,38240,38306,38358,38418,38476,38528,38612,38697,38778,38858,38935,39014,39091,39165,39239,39310,39390,39462,39537,39605,39682,39747,39808,39868,39943,40017,40094,40167,40237,40309,40379,40452,40516,40586,40634,40703,40755,40840,40923,40981,41047,41114,41180,41261,41336,41392,41445,41506,41564,41614,41663,41712,41761,41823,41875,41920,42001,42052,42106,42159,42213,42264,42313,42379,42430,42491,42552,42614,42664,42705,42782,42841,42900,42959,43020,43076,43132,43199,43260,43325,43380,43445,43514,43582,43660,43729,43789,43860,43934,43999,44071,44141,44208,44292,44361,44428,44498,44561,44628,44696,44779,44858,44948,45025,45093,45160,45238,45295,45352,45420,45486,45542,45602,45661,45715,45765,45815,45863,45925,45976,46042,46115,46195,46275,46339,46402,46469,46540,46598,46659,46725,46784,46851,46911,46971,47034,47102,47163,47230,47308,47378,47427,47484,47553,47614,47702,47790,47878,47966,48022,48109,48196,48283,48370,48428,48502,48572,48628,48699,48764,48826,48901,48974,49064,49130,49196,49257,49321,49383,49441,49512,49595,49654,49725,49791,49856,49917,49976,50047,50113,50178,50261,50337,50412,50493,50553,50622,50692,50761,50816,50872,50928,50989,51047,51103,51158,51220,51273,51330,51424,51493,51594,51645,51715,51778,51836,51906,51975,52045,52115,52185,52252,52319,52394,52461,52520,52574,52628,52682,52735,52787,52861,53904,53978,54051,54119,54179,54237,54298,54364,54430,54495,54559,54620,55210,55350,58119,58169,58258,58314,58372,58434,58489,58547,58606,58668,58734,58800,58982,59128,59173,59216,60202,60249,60294,60345,60396,60447,60498,60879,61282,61344,61524,61596,61653,61719,61785,61853,61921,61987,62054,62128,62191,62248,62308,62373,62440,62505,62562,62623,62681,62751,62808,63198,65257,65388,65626,65724,65839,65924,65972,66051,66116,66205,66362,66519,66672,66826,66885,66967,67141,67289,67448,67603,67776,67893,68010,68178,68290,68404,68578,68756,68889,69001,69147,69299,69431,69574,69696,69874,70056,70373,70555,70737,70927,71117,71316,71489,71599,71782,71919,72139,72323,72483,72641,72825,73028,73199,73419,73641,73796,73996,74180,74283,74424,74589,74760,74960,75164,75366,75571,75772,75971,76175,76253,76554,76720,76875,76977,77403,77954,78239,81172,81628,82137,93279,93716,94150,94593,98583,98690,99033,99140,99385,99506,99915,100163,100263,100368,100487,100996,101143,101262,101513,101646,102061,102315,102427,107651,107784,107931,111952,117366,120637,125841,129763,135140,139124,142296,147463,148219,148449,148692,149730,197791,198716,198807,201001,201323,201533,201642,201761,201945,202917,203387,204138,206615,206710,207059,207929,208215,208618,209020,209363,209575,209776,209989,210278,210563,221238,221325,221410,221509,226199,226360,226523,226684,226849,227016,227069,227202,227322,227420,227533,227726,227852,228004,228146,228316,228472,228644,228935,229047,229176,229405,229623,230478,231065,231679,231847,231989,232150,232293,232461,232618,239285,239377,239550,239712,239807,239976,240070,240159,240402,240491,240784,240898,241307,241721,241837,242255,242496,242926,243361,243771,244193,244603,244725,245134,245550,245672,245890,246074,248778,249122,249202,249558,249708,249852,249936,250325,250423,250531,250625,250755,250863,250985,251121,251229,251349,251483,251605,251733,251875,252001,252141,252267,252385,252517,252615,252725,253025,253137,253255,253719,253835,254138,254264,254360,254490,254891,255001,255125,255263,255373,255495,255807,255931,256061,256537,256665,256980,257118,257264,257426,257642,257798,258002,259073,259157,259261,259748,260304,260462,260681,260912,261135,261370,261592,261858,261996,262595,262709,262847,262959,263083,263654,264149,264695,264840,264933,265025,266832,267220,267518,267707,267913,268106,268316,268921,269066,269283,269544,269675,278644,279168,279812,280009,280957,281514,281637,282410,282631,282831,284808,285043,285167,285579,285793,285896,286026,286201,286453,286649,286789,286983,287253,288134,288422,288552,289329,289986,290132,290838,291076,292616,292766,293183,293348,294034,294504,294700,294791,294875,295019,295253,295420,296348,296634,296794,297409,297568,297896,298123,298635,298997,299076,299415,299520,299885,300256,300617,302439,303068,304144,304568,304821,304973,305963,306700,306903,307149,307396,307638,307959,308158,308463,308686,308858,309399,309668,310162,310423,310863,311022,311306,312051,312416,312721,312879,313876,314274,314502,314722,314864,316154,316260,316390,316528,316652,316882,317051,317151,317436,317550,318433,319188,319627,319751,319997,320190,320324,320515,321294,321512,321803,322082,322399,322621,322916,323199,323303,323586,324318,324634,325195,325924,326585,326774,327325,327795,327915,328317,328851,334396,334695,336634,353332,354926,356030,356179,358303,361860,362300,363052,363236,363447,367673,368256,388473,388675,389810,389960,390135,392772,394692,403035,403542,403972,404131,405879,406099,406681,407176,407795,407948,408104,408297,408526,408734,408870,409111,417192,417889,419117,421272,421441,422633,422779,425000,425531,427010,427258,427941,432166,432341,435277,436168,444026,444269,446734" ++ } ++ }, ++ { ++ "source": "/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/packaged_res/coreNativeDebug/packageCoreNativeDebugResources/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "42", ++ "endOffsets": "93" ++ }, ++ "to": { ++ "startLines": "1107", ++ "startColumns": "4", ++ "startOffsets": "65069", ++ "endColumns": "42", ++ "endOffsets": "65107" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7cf662db696d7c0bf4b24c08fd87c12c/transformed/viewpager2-1.0.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "4", ++ "endColumns": "24", ++ "endOffsets": "160" ++ }, ++ "to": { ++ "startLines": "7889", ++ "startColumns": "4", ++ "startOffsets": "450299", ++ "endLines": "7891", ++ "endColumns": "24", ++ "endOffsets": "450404" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ffe1920c397f0b305742d655a3e2f95/transformed/coordinatorlayout-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,6,16", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,116,261,869", ++ "endLines": "2,5,15,104", ++ "endColumns": "60,12,24,24", ++ "endOffsets": "111,256,864,6075" ++ }, ++ "to": { ++ "startLines": "49,5039,6246,6252", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "2436,328856,382193,382404", ++ "endLines": "49,5041,6251,6335", ++ "endColumns": "60,12,24,24", ++ "endOffsets": "2492,328996,382399,386915" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4dd5b2b5dff266b02e3d542070c12c10/transformed/lifecycle-runtime-2.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "42", ++ "endOffsets": "93" ++ }, ++ "to": { ++ "startLines": "1044", ++ "startColumns": "4", ++ "startOffsets": "60884", ++ "endColumns": "42", ++ "endOffsets": "60922" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/bc43dd7f4418060d7e97eafa583bae0e/transformed/savedstate-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "53", ++ "endOffsets": "104" ++ }, ++ "to": { ++ "startLines": "1045", ++ "startColumns": "4", ++ "startOffsets": "60927", ++ "endColumns": "53", ++ "endOffsets": "60976" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9db7760b0deff7e4ab8d80cd4aa38e52/transformed/drawerlayout-1.1.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,111,159,211", ++ "endLines": "2,3,4,8", ++ "endColumns": "55,47,51,24", ++ "endOffsets": "106,154,206,426" ++ }, ++ "to": { ++ "startLines": "74,76,612,6355", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "3459,3560,33364,387995", ++ "endLines": "74,76,612,6358", ++ "endColumns": "55,47,51,24", ++ "endOffsets": "3510,3603,33411,388101" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/fe7845793de81b169cc70f2cabd7542f/transformed/constraintlayout-2.0.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,8,9,17,18,19,20,21,22,23,27,28,29,30,38,46,47,48,53,54,59,64,65,66,71,72,77,78,83,84,85,91,92,93,98,103,104,105,109,110,111,112,115,116,119,122,123,124,125,126,129,132,133,134,135,140,143,146,147,148,153,154,155,158,161,162,165,168,171,174,175,176,179,182,183,188,189,194,197,200,201,202,203,204,205,206,207,208,209,221,222,223,224,225,231,232,233,236,241,242,243,244,253,259,260,264,265,266,267,276,356,280,281,282,283,284,285,286,287,288,289,290,291,296,297,298,299,300,301,302,308,309,315,322,334,335,336,337,338,355", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,112,298,359,650,702,750,801,853,914,960,1093,1145,1195,1246,1555,1867,1912,1971,2168,2225,2420,2602,2656,2713,2905,2963,3159,3215,3409,3466,3517,3739,3791,3846,4036,4212,4262,4318,4478,4539,4599,4669,4802,4870,4999,5125,5187,5252,5320,5387,5510,5635,5702,5767,5832,6013,6134,6255,6321,6388,6598,6667,6733,6858,6984,7051,7177,7304,7429,7556,7612,7677,7803,7926,7991,8199,8266,8446,8566,8686,8751,8813,8875,8937,8996,9056,9117,9178,9237,9738,9789,9838,9886,9944,10174,10221,10281,10387,10567,10613,10660,10712,11042,11280,11335,11474,11520,11575,11620,11961,36954,12098,16317,19922,20066,24372,24875,25295,25926,26578,26619,26673,26723,27345,27998,28496,31373,31719,31951,32091,32596,32726,33153,33548,34580,34812,34939,35045,35529,36651", ++ "endLines": "2,7,8,16,17,18,19,20,21,22,26,27,28,29,37,45,46,47,52,53,58,63,64,65,70,71,76,77,82,83,84,90,91,92,97,102,103,104,108,109,110,111,114,115,118,121,122,123,124,125,128,131,132,133,134,139,142,145,146,147,152,153,154,157,160,161,164,167,170,173,174,175,178,181,182,187,188,193,196,199,200,201,202,203,204,205,206,207,208,220,221,222,223,224,230,231,232,235,240,241,242,243,252,258,259,263,264,265,266,275,279,356,280,281,282,283,284,285,286,287,288,289,290,295,296,297,298,299,300,301,307,308,314,321,333,334,335,336,337,354,355", ++ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302", ++ "endOffsets": "107,293,354,645,697,745,796,848,909,955,1088,1140,1190,1241,1550,1862,1907,1966,2163,2220,2415,2597,2651,2708,2900,2958,3154,3210,3404,3461,3512,3734,3786,3841,4031,4207,4257,4313,4473,4534,4594,4664,4797,4865,4994,5120,5182,5247,5315,5382,5505,5630,5697,5762,5827,6008,6129,6250,6316,6383,6593,6662,6728,6853,6979,7046,7172,7299,7424,7551,7607,7672,7798,7921,7986,8194,8261,8441,8561,8681,8746,8808,8870,8932,8991,9051,9112,9173,9232,9733,9784,9833,9881,9939,10169,10216,10276,10382,10562,10608,10655,10707,11037,11275,11330,11469,11515,11570,11615,11956,12093,36990,16312,19917,20061,24367,24870,25290,25921,26573,26614,26668,26718,27340,27993,28491,31368,31714,31946,32086,32591,32721,33148,33543,34575,34807,34934,35040,35524,36646,36949" ++ }, ++ "to": { ++ "startLines": "2,4,10,11,19,25,31,46,47,48,50,54,55,56,57,65,75,83,84,89,90,95,100,101,102,107,108,113,114,119,120,121,127,128,129,134,139,149,150,154,155,156,157,160,161,164,167,168,169,170,171,174,177,178,179,180,185,188,191,192,193,198,199,200,203,206,207,210,213,216,219,220,221,224,227,228,233,234,239,242,245,246,247,248,249,250,251,252,253,254,306,307,308,309,313,319,320,321,324,339,344,363,364,374,380,383,387,388,389,390,399,992,6242,6243,6244,6245,6336,6541,6549,6550,6551,6552,6553,6554,6559,6560,6561,6967,6968,6969,6970,6976,6977,7074,7081,7103,7329,7350,7832,7833,7850", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "150,263,498,559,850,1186,1493,2277,2329,2390,2497,2630,2682,2732,2783,3092,3515,3974,4033,4230,4287,4482,4664,4718,4775,4967,5025,5221,5277,5471,5528,5579,5801,5853,5908,6098,6274,6796,6852,7012,7073,7133,7203,7336,7404,7533,7659,7721,7786,7854,7921,8044,8169,8236,8301,8366,8547,8668,8789,8855,8922,9132,9201,9267,9392,9518,9585,9711,9838,9963,10090,10146,10211,10337,10460,10525,10733,10800,10980,11100,11220,11285,11347,11409,11471,11530,11590,11651,11712,11771,14622,14673,14722,14770,15004,15234,15281,15341,15447,16211,16450,17556,17608,17983,18221,18399,18538,18584,18639,18684,19025,58174,369919,374138,377743,377887,386920,393945,394697,395328,395980,396021,396075,396125,396747,397400,397898,414379,414725,414957,415097,415602,415732,419122,419517,420929,428258,428923,446739,447223,448345", ++ "endLines": "2,8,10,18,19,25,31,46,47,48,53,54,55,56,64,72,75,83,88,89,94,99,100,101,106,107,112,113,118,119,120,126,127,128,133,138,139,149,153,154,155,156,159,160,163,166,167,168,169,170,173,176,177,178,179,184,187,190,191,192,197,198,199,202,205,206,209,212,215,218,219,220,223,226,227,232,233,238,241,244,245,246,247,248,249,250,251,252,253,265,306,307,308,309,318,319,320,323,328,339,344,363,372,379,380,386,387,388,389,398,402,992,6242,6243,6244,6245,6336,6541,6549,6550,6551,6552,6553,6558,6559,6560,6561,6967,6968,6969,6975,6976,6982,7080,7092,7103,7329,7350,7832,7849,7850", ++ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302", ++ "endOffsets": "202,444,554,845,897,1229,1539,2324,2385,2431,2625,2677,2727,2778,3087,3399,3555,4028,4225,4282,4477,4659,4713,4770,4962,5020,5216,5272,5466,5523,5574,5796,5848,5903,6093,6269,6319,6847,7007,7068,7128,7198,7331,7399,7528,7654,7716,7781,7849,7916,8039,8164,8231,8296,8361,8542,8663,8784,8850,8917,9127,9196,9262,9387,9513,9580,9706,9833,9958,10085,10141,10206,10332,10455,10520,10728,10795,10975,11095,11215,11280,11342,11404,11466,11525,11585,11646,11707,11766,12234,14668,14717,14765,14823,15229,15276,15336,15442,15622,16252,16492,17603,17933,18216,18271,18533,18579,18634,18679,19020,19157,58210,374133,377738,377882,382188,387418,394360,395323,395975,396016,396070,396120,396742,397395,397893,400770,414720,414952,415092,415597,415727,416154,419512,420544,421156,428380,429024,447218,448340,448643" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ac2b811be8f6b6e801e40541beb0df8/transformed/cardview-1.0.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356", ++ "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34", ++ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", ++ "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174" ++ }, ++ "to": { ++ "startLines": "24,427,428,429,430,601,602,603,1222,3197,3199,3202,5906", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "1134,20962,21023,21085,21147,32651,32710,32767,79695,206715,206779,206905,358646", ++ "endLines": "24,427,428,429,430,601,602,603,1228,3198,3201,3204,5933", ++ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", ++ "endOffsets": "1181,21018,21080,21142,21206,32705,32762,32816,80104,206774,206900,207028,359565" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/fef64e29f65a0374786979b4dd8facf7/transformed/lifecycle-viewmodel-2.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "49", ++ "endOffsets": "100" ++ }, ++ "to": { ++ "startLines": "1046", ++ "startColumns": "4", ++ "startOffsets": "60981", ++ "endColumns": "49", ++ "endOffsets": "61026" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/mergeFullDebugAndroidTestResources.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/mergeFullDebugAndroidTestResources.json +new file mode 100644 +index 0000000..2d6bc96 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/mergeFullDebugAndroidTestResources.json +@@ -0,0 +1,5911 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-sk_values-sk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,2817", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,2895" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "383,490,591,702,788,896,1014,1093,1170,1261,1354,1452,1546,1646,1739,1834,1932,2023,2114,2198,2303,2411,2510,2616,2728,2831,2997,7399", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "485,586,697,783,891,1009,1088,1165,1256,1349,1447,1541,1641,1734,1829,1927,2018,2109,2193,2298,2406,2505,2611,2723,2826,2992,3090,7477" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,333,411,503,631,712,777,876,952,1017,1107,1173,1227,1296,1356,1410,1527,1587,1649,1703,1775,1905,1992,2084,2193,2262,2340,2428,2495,2561,2633,2710,2793,2865,2942,3015,3086,3174,3246,3338,3434,3508,3582,3678,3730,3797,3884,3971,4033,4097,4160,4266,4362,4460,4558", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,77,91,127,80,64,98,75,64,89,65,53,68,59,53,116,59,61,53,71,129,86,91,108,68,77,87,66,65,71,76,82,71,76,72,70,87,71,91,95,73,73,95,51,66,86,86,61,63,62,105,95,97,97,78", ++ "endOffsets": "328,406,498,626,707,772,871,947,1012,1102,1168,1222,1291,1351,1405,1522,1582,1644,1698,1770,1900,1987,2079,2188,2257,2335,2423,2490,2556,2628,2705,2788,2860,2937,3010,3081,3169,3241,3333,3429,3503,3577,3673,3725,3792,3879,3966,4028,4092,4155,4261,4357,4455,4553,4632" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3095,3173,3265,3393,3474,3539,3638,3714,3779,3869,3935,3989,4058,4118,4172,4289,4349,4411,4465,4537,4667,4754,4846,4955,5024,5102,5190,5257,5323,5395,5472,5555,5627,5704,5777,5848,5936,6008,6100,6196,6270,6344,6440,6492,6559,6646,6733,6795,6859,6922,7028,7124,7222,7320", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,91,127,80,64,98,75,64,89,65,53,68,59,53,116,59,61,53,71,129,86,91,108,68,77,87,66,65,71,76,82,71,76,72,70,87,71,91,95,73,73,95,51,66,86,86,61,63,62,105,95,97,97,78", ++ "endOffsets": "378,3168,3260,3388,3469,3534,3633,3709,3774,3864,3930,3984,4053,4113,4167,4284,4344,4406,4460,4532,4662,4749,4841,4950,5019,5097,5185,5252,5318,5390,5467,5550,5622,5699,5772,5843,5931,6003,6095,6191,6265,6339,6435,6487,6554,6641,6728,6790,6854,6917,7023,7119,7217,7315,7394" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7482", ++ "endColumns": "100", ++ "endOffsets": "7578" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-bg_values-bg.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7565", ++ "endColumns": "100", ++ "endOffsets": "7661" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,303,398,531,620,686,783,863,925,1014,1079,1138,1211,1274,1328,1456,1513,1575,1629,1702,1845,1929,2017,2123,2211,2299,2384,2451,2517,2592,2668,2754,2831,2907,2984,3058,3149,3224,3315,3407,3481,3568,3659,3714,3780,3863,3949,4011,4075,4138,4255,4368,4479,4596", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,94,132,88,65,96,79,61,88,64,58,72,62,53,127,56,61,53,72,142,83,87,105,87,87,84,66,65,74,75,85,76,75,76,73,90,74,90,91,73,86,90,54,65,82,85,61,63,62,116,112,110,116,85", ++ "endOffsets": "215,298,393,526,615,681,778,858,920,1009,1074,1133,1206,1269,1323,1451,1508,1570,1624,1697,1840,1924,2012,2118,2206,2294,2379,2446,2512,2587,2663,2749,2826,2902,2979,3053,3144,3219,3310,3402,3476,3563,3654,3709,3775,3858,3944,4006,4070,4133,4250,4363,4474,4591,4677" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3019,3102,3197,3330,3419,3485,3582,3662,3724,3813,3878,3937,4010,4073,4127,4255,4312,4374,4428,4501,4644,4728,4816,4922,5010,5098,5183,5250,5316,5391,5467,5553,5630,5706,5783,5857,5948,6023,6114,6206,6280,6367,6458,6513,6579,6662,6748,6810,6874,6937,7054,7167,7278,7395", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,94,132,88,65,96,79,61,88,64,58,72,62,53,127,56,61,53,72,142,83,87,105,87,87,84,66,65,74,75,85,76,75,76,73,90,74,90,91,73,86,90,54,65,82,85,61,63,62,116,112,110,116,85", ++ "endOffsets": "265,3097,3192,3325,3414,3480,3577,3657,3719,3808,3873,3932,4005,4068,4122,4250,4307,4369,4423,4496,4639,4723,4811,4917,5005,5093,5178,5245,5311,5386,5462,5548,5625,5701,5778,5852,5943,6018,6109,6201,6275,6362,6453,6508,6574,6657,6743,6805,6869,6932,7049,7162,7273,7390,7476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,2854", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,2933" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,390,496,601,687,797,918,998,1075,1166,1259,1354,1448,1548,1641,1736,1844,1935,2026,2109,2223,2331,2431,2545,2652,2760,2920,7481", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "385,491,596,682,792,913,993,1070,1161,1254,1349,1443,1543,1636,1731,1839,1930,2021,2104,2218,2326,2426,2540,2647,2755,2915,3014,7560" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-zh-rHK_values-zh-rHK.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,2666", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,2740" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,440,540,622,719,827,904,979,1071,1165,1256,1352,1447,1541,1637,1729,1821,1913,1991,2087,2182,2277,2374,2470,2568,2719,6583", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "342,435,535,617,714,822,899,974,1066,1160,1251,1347,1442,1536,1632,1724,1816,1908,1986,2082,2177,2272,2369,2465,2563,2714,2808,6657" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6662", ++ "endColumns": "100", ++ "endOffsets": "6758" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,269,359,466,539,601,679,738,796,874,931,987,1046,1104,1158,1244,1300,1358,1412,1477,1570,1644,1722,1812,1875,1938,2015,2082,2148,2212,2281,2356,2417,2488,2555,2615,2695,2758,2841,2926,3000,3065,3141,3189,3253,3329,3407,3469,3533,3596,3676,3751,3827,3903", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,66,89,106,72,61,77,58,57,77,56,55,58,57,53,85,55,57,53,64,92,73,77,89,62,62,76,66,65,63,68,74,60,70,66,59,79,62,82,84,73,64,75,47,63,75,77,61,63,62,79,74,75,75,68", ++ "endOffsets": "197,264,354,461,534,596,674,733,791,869,926,982,1041,1099,1153,1239,1295,1353,1407,1472,1565,1639,1717,1807,1870,1933,2010,2077,2143,2207,2276,2351,2412,2483,2550,2610,2690,2753,2836,2921,2995,3060,3136,3184,3248,3324,3402,3464,3528,3591,3671,3746,3822,3898,3967" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2813,2880,2970,3077,3150,3212,3290,3349,3407,3485,3542,3598,3657,3715,3769,3855,3911,3969,4023,4088,4181,4255,4333,4423,4486,4549,4626,4693,4759,4823,4892,4967,5028,5099,5166,5226,5306,5369,5452,5537,5611,5676,5752,5800,5864,5940,6018,6080,6144,6207,6287,6362,6438,6514", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,66,89,106,72,61,77,58,57,77,56,55,58,57,53,85,55,57,53,64,92,73,77,89,62,62,76,66,65,63,68,74,60,70,66,59,79,62,82,84,73,64,75,47,63,75,77,61,63,62,79,74,75,75,68", ++ "endOffsets": "247,2875,2965,3072,3145,3207,3285,3344,3402,3480,3537,3593,3652,3710,3764,3850,3906,3964,4018,4083,4176,4250,4328,4418,4481,4544,4621,4688,4754,4818,4887,4962,5023,5094,5161,5221,5301,5364,5447,5532,5606,5671,5747,5795,5859,5935,6013,6075,6139,6202,6282,6357,6433,6509,6578" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-mn_values-mn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,299,397,516,601,666,764,845,904,997,1060,1118,1189,1251,1305,1426,1483,1544,1598,1669,1802,1886,1969,2072,2154,2232,2322,2389,2455,2526,2604,2690,2765,2843,2923,3006,3094,3173,3263,3356,3430,3500,3591,3645,3712,3796,3881,3943,4007,4070,4174,4280,4377,4482", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,97,118,84,64,97,80,58,92,62,57,70,61,53,120,56,60,53,70,132,83,82,102,81,77,89,66,65,70,77,85,74,77,79,82,87,78,89,92,73,69,90,53,66,83,84,61,63,62,103,105,96,104,83", ++ "endOffsets": "215,294,392,511,596,661,759,840,899,992,1055,1113,1184,1246,1300,1421,1478,1539,1593,1664,1797,1881,1964,2067,2149,2227,2317,2384,2450,2521,2599,2685,2760,2838,2918,3001,3089,3168,3258,3351,3425,3495,3586,3640,3707,3791,3876,3938,4002,4065,4169,4275,4372,4477,4561" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3041,3139,3258,3343,3408,3506,3587,3646,3739,3802,3860,3931,3993,4047,4168,4225,4286,4340,4411,4544,4628,4711,4814,4896,4974,5064,5131,5197,5268,5346,5432,5507,5585,5665,5748,5836,5915,6005,6098,6172,6242,6333,6387,6454,6538,6623,6685,6749,6812,6916,7022,7119,7224", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,97,118,84,64,97,80,58,92,62,57,70,61,53,120,56,60,53,70,132,83,82,102,81,77,89,66,65,70,77,85,74,77,79,82,87,78,89,92,73,69,90,53,66,83,84,61,63,62,103,105,96,104,83", ++ "endOffsets": "265,3036,3134,3253,3338,3403,3501,3582,3641,3734,3797,3855,3926,3988,4042,4163,4220,4281,4335,4406,4539,4623,4706,4809,4891,4969,5059,5126,5192,5263,5341,5427,5502,5580,5660,5743,5831,5910,6000,6093,6167,6237,6328,6382,6449,6533,6618,6680,6744,6807,6911,7017,7114,7219,7303" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,2797", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,2873" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,384,484,593,679,785,899,982,1063,1154,1247,1342,1438,1535,1628,1722,1814,1905,1995,2075,2182,2285,2382,2489,2591,2704,2863,7308", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "379,479,588,674,780,894,977,1058,1149,1242,1337,1433,1530,1623,1717,1809,1900,1990,2070,2177,2280,2377,2484,2586,2699,2858,2957,7384" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7389", ++ "endColumns": "100", ++ "endOffsets": "7485" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-port_values-port.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-port/values-port.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "55", ++ "endOffsets": "106" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-v28_values-v28.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v28/values-v28.xml", ++ "from": { ++ "startLines": "2,3,4,8", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,447", ++ "endLines": "2,3,7,11", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,442,684" ++ }, ++ "to": { ++ "startLines": "10,11,12,16", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "755,830,917,1097", ++ "endLines": "10,11,15,19", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "825,912,1092,1284" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v28/values.xml", ++ "from": { ++ "startLines": "4,13", ++ "startColumns": "0,0", ++ "startOffsets": "146,625", ++ "endLines": "12,21", ++ "endColumns": "8,8", ++ "endOffsets": "624,1101" ++ }, ++ "to": { ++ "startLines": "20,29", ++ "startColumns": "4,4", ++ "startOffsets": "1289,1772", ++ "endLines": "28,37", ++ "endColumns": "8,8", ++ "endOffsets": "1767,2248" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v28/values-v28.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,143,231,319,407,494,581,668", ++ "endColumns": "87,87,87,87,86,86,86,86", ++ "endOffsets": "138,226,314,402,489,576,663,750" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h550dp-port-v13/values-h550dp-port-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "76", ++ "endOffsets": "127" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-xlarge-v4_values-xlarge-v4.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-xlarge-v4/values-xlarge-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,126,197,267,337,405", ++ "endColumns": "70,70,69,69,67,67", ++ "endOffsets": "121,192,262,332,400,468" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-eu_values-eu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7453", ++ "endColumns": "100", ++ "endOffsets": "7549" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,312,422,508,614,738,824,905,997,1091,1187,1281,1382,1476,1572,1669,1761,1854,1936,2045,2154,2253,2362,2469,2580,2751,2850", ++ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", ++ "endOffsets": "209,307,417,503,609,733,819,900,992,1086,1182,1276,1377,1471,1567,1664,1756,1849,1931,2040,2149,2248,2357,2464,2575,2746,2845,2928" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "280,389,487,597,683,789,913,999,1080,1172,1266,1362,1456,1557,1651,1747,1844,1936,2029,2111,2220,2329,2428,2537,2644,2755,2926,7370", ++ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", ++ "endOffsets": "384,482,592,678,784,908,994,1075,1167,1261,1357,1451,1552,1646,1742,1839,1931,2024,2106,2215,2324,2423,2532,2639,2750,2921,3020,7448" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,230,310,408,523,606,673,772,840,901,989,1055,1119,1190,1253,1307,1416,1475,1538,1592,1666,1791,1881,1961,2076,2159,2241,2330,2397,2463,2534,2614,2700,2778,2856,2929,3004,3091,3178,3269,3362,3434,3510,3602,3653,3719,3803,3889,3951,4015,4078,4185,4290,4386,4492", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,97,114,82,66,98,67,60,87,65,63,70,62,53,108,58,62,53,73,124,89,79,114,82,81,88,66,65,70,79,85,77,77,72,74,86,86,90,92,71,75,91,50,65,83,85,61,63,62,106,104,95,105,82", ++ "endOffsets": "225,305,403,518,601,668,767,835,896,984,1050,1114,1185,1248,1302,1411,1470,1533,1587,1661,1786,1876,1956,2071,2154,2236,2325,2392,2458,2529,2609,2695,2773,2851,2924,2999,3086,3173,3264,3357,3429,3505,3597,3648,3714,3798,3884,3946,4010,4073,4180,4285,4381,4487,4570" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3105,3203,3318,3401,3468,3567,3635,3696,3784,3850,3914,3985,4048,4102,4211,4270,4333,4387,4461,4586,4676,4756,4871,4954,5036,5125,5192,5258,5329,5409,5495,5573,5651,5724,5799,5886,5973,6064,6157,6229,6305,6397,6448,6514,6598,6684,6746,6810,6873,6980,7085,7181,7287", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,97,114,82,66,98,67,60,87,65,63,70,62,53,108,58,62,53,73,124,89,79,114,82,81,88,66,65,70,79,85,77,77,72,74,86,86,90,92,71,75,91,50,65,83,85,61,63,62,106,104,95,105,82", ++ "endOffsets": "275,3100,3198,3313,3396,3463,3562,3630,3691,3779,3845,3909,3980,4043,4097,4206,4265,4328,4382,4456,4581,4671,4751,4866,4949,5031,5120,5187,5253,5324,5404,5490,5568,5646,5719,5794,5881,5968,6059,6152,6224,6300,6392,6443,6509,6593,6679,6741,6805,6868,6975,7080,7176,7282,7365" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ro_values-ro.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,276,363,464,585,669,735,830,904,964,1048,1114,1172,1245,1308,1364,1483,1540,1601,1657,1731,1876,1962,2046,2149,2231,2314,2404,2471,2537,2610,2688,2776,2847,2924,2998,3070,3161,3235,3330,3428,3502,3582,3683,3736,3802,3891,3981,4043,4107,4170,4282,4395,4505,4617", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,86,100,120,83,65,94,73,59,83,65,57,72,62,55,118,56,60,55,73,144,85,83,102,81,82,89,66,65,72,77,87,70,76,73,71,90,73,94,97,73,79,100,52,65,88,89,61,63,62,111,112,109,111,78", ++ "endOffsets": "271,358,459,580,664,730,825,899,959,1043,1109,1167,1240,1303,1359,1478,1535,1596,1652,1726,1871,1957,2041,2144,2226,2309,2399,2466,2532,2605,2683,2771,2842,2919,2993,3065,3156,3230,3325,3423,3497,3577,3678,3731,3797,3886,3976,4038,4102,4165,4277,4390,4500,4612,4691" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3072,3159,3260,3381,3465,3531,3626,3700,3760,3844,3910,3968,4041,4104,4160,4279,4336,4397,4453,4527,4672,4758,4842,4945,5027,5110,5200,5267,5333,5406,5484,5572,5643,5720,5794,5866,5957,6031,6126,6224,6298,6378,6479,6532,6598,6687,6777,6839,6903,6966,7078,7191,7301,7413", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,100,120,83,65,94,73,59,83,65,57,72,62,55,118,56,60,55,73,144,85,83,102,81,82,89,66,65,72,77,87,70,76,73,71,90,73,94,97,73,79,100,52,65,88,89,61,63,62,111,112,109,111,78", ++ "endOffsets": "321,3154,3255,3376,3460,3526,3621,3695,3755,3839,3905,3963,4036,4099,4155,4274,4331,4392,4448,4522,4667,4753,4837,4940,5022,5105,5195,5262,5328,5401,5479,5567,5638,5715,5789,5861,5952,6026,6121,6219,6293,6373,6474,6527,6593,6682,6772,6834,6898,6961,7073,7186,7296,7408,7487" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,2851", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,2930" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "326,447,551,664,748,852,973,1058,1138,1229,1322,1417,1511,1611,1704,1799,1893,1984,2076,2159,2271,2379,2479,2593,2699,2805,2969,7492", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "442,546,659,743,847,968,1053,1133,1224,1317,1412,1506,1606,1699,1794,1888,1979,2071,2154,2266,2374,2474,2588,2694,2800,2964,3067,7571" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7576", ++ "endColumns": "100", ++ "endOffsets": "7672" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-large-v4_values-large-v4.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-large-v4/values-large-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,185,256,326,396,464,532,636", ++ "endColumns": "58,70,70,69,69,67,67,103,115", ++ "endOffsets": "109,180,251,321,391,459,527,631,747" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-large-v4/values-large-v4.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,177", ++ "endColumns": "121,133", ++ "endOffsets": "172,306" ++ }, ++ "to": { ++ "startLines": "11,12", ++ "startColumns": "4,4", ++ "startOffsets": "752,874", ++ "endColumns": "121,133", ++ "endOffsets": "869,1003" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w360dp-port-v13/values-w360dp-port-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478", ++ "endColumns": "58,55,55,66,64,54,64,68", ++ "endOffsets": "109,165,221,288,353,408,473,542" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-night-v8_values-night-v8.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-night-v8/values-night-v8.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,293,389,491,593,687", ++ "endColumns": "69,83,83,95,101,101,93,88", ++ "endOffsets": "120,204,288,384,486,588,682,771" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,25", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,293,389,491,593,2549", ++ "endColumns": "69,83,83,95,101,101,93,88", ++ "endOffsets": "120,204,288,384,486,588,682,2633" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-night-v8/values-night-v8.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,143,267,369,471,587,689,803,931,1047,1169,1305,1425,1559,1679,1791,1917,2041,2171,2293,2431,2565,2681", ++ "endColumns": "87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,123,129,121,137,133,115,119", ++ "endOffsets": "138,262,364,466,582,684,798,926,1042,1164,1300,1420,1554,1674,1786,1912,2036,2166,2288,2426,2560,2676,2796" ++ }, ++ "to": { ++ "startLines": "9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,26,27,28,29,30,31,32", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "687,775,899,1001,1103,1219,1321,1435,1563,1679,1801,1937,2057,2191,2311,2423,2638,2762,2892,3014,3152,3286,3402", ++ "endColumns": "87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,123,129,121,137,133,115,119", ++ "endOffsets": "770,894,996,1098,1214,1316,1430,1558,1674,1796,1932,2052,2186,2306,2418,2544,2757,2887,3009,3147,3281,3397,3517" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w480dp-port-v13/values-w480dp-port-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478", ++ "endColumns": "58,55,55,66,64,54,64,68", ++ "endOffsets": "109,165,221,288,353,408,473,542" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-en-rGB_values-en-rGB.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,402,517,596,661,751,818,877,967,1031,1094,1163,1227,1281,1393,1451,1513,1567,1639,1761,1848,1929,2039,2116,2197,2288,2355,2421,2491,2568,2655,2726,2803,2872,2941,3032,3104,3193,3282,3356,3428,3514,3564,3630,3710,3794,3856,3920,3983,4083,4180,4272,4371", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,97,114,78,64,89,66,58,89,63,62,68,63,53,111,57,61,53,71,121,86,80,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,77", ++ "endOffsets": "222,299,397,512,591,656,746,813,872,962,1026,1089,1158,1222,1276,1388,1446,1508,1562,1634,1756,1843,1924,2034,2111,2192,2283,2350,2416,2486,2563,2650,2721,2798,2867,2936,3027,3099,3188,3277,3351,3423,3509,3559,3625,3705,3789,3851,3915,3978,4078,4175,4267,4366,4444" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2934,3011,3109,3224,3303,3368,3458,3525,3584,3674,3738,3801,3870,3934,3988,4100,4158,4220,4274,4346,4468,4555,4636,4746,4823,4904,4995,5062,5128,5198,5275,5362,5433,5510,5579,5648,5739,5811,5900,5989,6063,6135,6221,6271,6337,6417,6501,6563,6627,6690,6790,6887,6979,7078", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,97,114,78,64,89,66,58,89,63,62,68,63,53,111,57,61,53,71,121,86,80,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,77", ++ "endOffsets": "272,3006,3104,3219,3298,3363,3453,3520,3579,3669,3733,3796,3865,3929,3983,4095,4153,4215,4269,4341,4463,4550,4631,4741,4818,4899,4990,5057,5123,5193,5270,5357,5428,5505,5574,5643,5734,5806,5895,5984,6058,6130,6216,6266,6332,6412,6496,6558,6622,6685,6785,6882,6974,7073,7151" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,381,481,589,673,773,888,966,1041,1132,1225,1320,1414,1514,1607,1702,1796,1887,1978,2060,2163,2266,2365,2470,2574,2678,2834,7156", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "376,476,584,668,768,883,961,1036,1127,1220,1315,1409,1509,1602,1697,1791,1882,1973,2055,2158,2261,2360,2465,2569,2673,2829,2929,7234" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7239", ++ "endColumns": "100", ++ "endOffsets": "7335" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-v21_values-v21.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,106,109,152,155,158,160,162,164,167,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,220,222,223,224,234,235,236,248", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4213,4362,4511,4623,4770,4923,5070,5145,5234,5321,5422,5525,8499,8684,11670,11867,12066,12189,12312,12425,12608,12863,13064,13153,13264,13497,13598,13693,13816,13945,14062,14239,14338,14473,14616,14751,14870,15071,15190,15283,15394,15450,15557,15752,15863,15996,16091,16182,16273,16366,16483,16622,16693,16776,17456,17513,17571,18265", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,105,108,151,154,157,159,161,163,166,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,219,221,222,223,233,234,235,247,259", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4208,4357,4506,4618,4765,4918,5065,5140,5229,5316,5417,5520,8494,8679,11665,11862,12061,12184,12307,12420,12603,12858,13059,13148,13259,13492,13593,13688,13811,13940,14057,14234,14333,14468,14611,14746,14865,15066,15185,15278,15389,15445,15552,15747,15858,15991,16086,16177,16268,16361,16478,16617,16688,16771,17451,17508,17566,18260,18966" ++ }, ++ "to": { ++ "startLines": "16,17,18,19,20,21,22,23,24,25,26,27,28,29,31,33,34,35,36,38,40,41,42,43,44,46,48,50,52,54,56,57,62,64,66,67,68,70,72,73,74,75,80,90,133,136,179,194,200,202,204,206,209,213,216,217,218,221,222,223,224,225,226,229,230,232,234,236,238,242,244,245,246,247,249,253,255,257,258,259,260,261,262,290,291,292,302,303,304,316", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "1215,1306,1409,1512,1617,1724,1833,1942,2051,2160,2269,2376,2479,2598,2753,2908,3013,3134,3235,3382,3523,3626,3745,3852,3955,4110,4281,4430,4595,4752,4903,5022,5373,5522,5671,5783,5930,6083,6230,6305,6394,6481,7006,7852,10610,10795,13565,14698,15128,15251,15374,15487,15670,15925,16126,16215,16326,16559,16660,16755,16878,17007,17124,17301,17400,17535,17678,17813,17932,18133,18252,18345,18456,18512,18619,18814,18925,19058,19153,19244,19335,19428,19545,21777,21848,21931,22554,22611,22669,23293", ++ "endLines": "16,17,18,19,20,21,22,23,24,25,26,27,28,30,32,33,34,35,37,39,40,41,42,43,45,47,49,51,53,55,56,61,63,65,66,67,69,71,72,73,74,75,80,132,135,178,181,196,201,203,205,208,212,215,216,217,220,221,222,223,224,225,228,229,231,233,235,237,241,243,244,245,246,248,252,254,256,257,258,259,260,261,263,290,291,301,302,303,315,327", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "1301,1404,1507,1612,1719,1828,1937,2046,2155,2264,2371,2474,2593,2748,2903,3008,3129,3230,3377,3518,3621,3740,3847,3950,4105,4276,4425,4590,4747,4898,5017,5368,5517,5666,5778,5925,6078,6225,6300,6389,6476,6577,7104,10605,10790,13560,13757,14892,15246,15369,15482,15665,15920,16121,16210,16321,16554,16655,16750,16873,17002,17119,17296,17395,17530,17673,17808,17927,18128,18247,18340,18451,18507,18614,18809,18920,19053,19148,19239,19330,19423,19540,19679,21843,21926,22549,22606,22664,23288,23924" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,13", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,173,237,304,368,484,610,736,864,1036", ++ "endLines": "2,3,4,5,6,7,8,9,12,17", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" ++ }, ++ "to": { ++ "startLines": "2,13,14,15,328,329,330,331,393,396", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,1020,1084,1151,23929,24045,24171,24297,28280,28452", ++ "endLines": "2,13,14,15,328,329,330,331,395,400", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,1079,1146,1210,24040,24166,24292,24420,28447,28799" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,22,25,28,31,34,37,40,41,44,49,60,66,72,78,84,90,91,92,93,97,100,103,106,109,113,117", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,123,202,290,378,466,554,641,728,815,902,995,1102,1207,1326,1539,1798,2069,2287,2519,2755,3005,3236,3352,3522,3843,4872,5329,5671,6015,6365,6715,6853,6997,7153,7546,7764,7986,8212,8428,8669,8928", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,21,24,27,30,33,36,39,40,43,48,59,65,71,77,83,89,90,91,92,96,99,102,105,108,112,116,119", ++ "endColumns": "67,78,87,87,87,87,86,86,86,86,92,106,104,118,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,137,143,155,10,10,10,10,10,10,10,10", ++ "endOffsets": "118,197,285,373,461,549,636,723,810,897,990,1097,1202,1321,1534,1793,2064,2282,2514,2750,3000,3231,3347,3517,3838,4867,5324,5666,6010,6360,6710,6848,6992,7148,7541,7759,7981,8207,8423,8664,8923,9100" ++ }, ++ "to": { ++ "startLines": "3,4,5,6,7,8,9,10,11,12,76,77,78,79,81,84,87,182,185,188,191,197,264,265,268,273,284,332,338,344,350,356,357,358,359,363,366,369,372,401,405,409", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "173,241,320,408,496,584,672,759,846,933,6582,6675,6782,6887,7109,7322,7581,13762,13980,14212,14448,14897,19684,19800,19970,20291,21320,24425,24717,25011,25311,25611,25749,25893,26049,26442,26660,26882,27108,28804,29045,29304", ++ "endLines": "3,4,5,6,7,8,9,10,11,12,76,77,78,79,83,86,89,184,187,190,193,199,264,267,272,283,289,337,343,349,355,356,357,358,362,365,368,371,374,404,408,411", ++ "endColumns": "67,78,87,87,87,87,86,86,86,86,92,106,104,118,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,137,143,155,10,10,10,10,10,10,10,10", ++ "endOffsets": "236,315,403,491,579,667,754,841,928,1015,6670,6777,6882,7001,7317,7576,7847,13975,14207,14443,14693,15123,19795,19965,20286,21315,21772,24712,25006,25306,25606,25744,25888,26044,26437,26655,26877,27103,27319,29040,29299,29476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v21/values.xml", ++ "from": { ++ "startLines": "4,13", ++ "startColumns": "0,0", ++ "startOffsets": "146,621", ++ "endLines": "12,21", ++ "endColumns": "8,8", ++ "endOffsets": "620,1093" ++ }, ++ "to": { ++ "startLines": "375,384", ++ "startColumns": "4,4", ++ "startOffsets": "27324,27803", ++ "endLines": "383,392", ++ "endColumns": "8,8", ++ "endOffsets": "27798,28275" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-fr-rCA_values-fr-rCA.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,320,420,542,627,693,790,870,932,1024,1098,1159,1238,1302,1356,1472,1531,1593,1647,1729,1858,1950,2034,2148,2227,2308,2401,2468,2534,2613,2694,2785,2857,2935,3010,3082,3179,3256,3354,3452,3530,3611,3711,3768,3834,3917,4004,4066,4130,4193,4295,4402,4499,4608", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,99,121,84,65,96,79,61,91,73,60,78,63,53,115,58,61,53,81,128,91,83,113,78,80,92,66,65,78,80,90,71,77,74,71,96,76,97,97,77,80,99,56,65,82,86,61,63,62,101,106,96,108,88", ++ "endOffsets": "233,315,415,537,622,688,785,865,927,1019,1093,1154,1233,1297,1351,1467,1526,1588,1642,1724,1853,1945,2029,2143,2222,2303,2396,2463,2529,2608,2689,2780,2852,2930,3005,3077,3174,3251,3349,3447,3525,3606,3706,3763,3829,3912,3999,4061,4125,4188,4290,4397,4494,4603,4692" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3038,3120,3220,3342,3427,3493,3590,3670,3732,3824,3898,3959,4038,4102,4156,4272,4331,4393,4447,4529,4658,4750,4834,4948,5027,5108,5201,5268,5334,5413,5494,5585,5657,5735,5810,5882,5979,6056,6154,6252,6330,6411,6511,6568,6634,6717,6804,6866,6930,6993,7095,7202,7299,7408", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,99,121,84,65,96,79,61,91,73,60,78,63,53,115,58,61,53,81,128,91,83,113,78,80,92,66,65,78,80,90,71,77,74,71,96,76,97,97,77,80,99,56,65,82,86,61,63,62,101,106,96,108,88", ++ "endOffsets": "283,3115,3215,3337,3422,3488,3585,3665,3727,3819,3893,3954,4033,4097,4151,4267,4326,4388,4442,4524,4653,4745,4829,4943,5022,5103,5196,5263,5329,5408,5489,5580,5652,5730,5805,5877,5974,6051,6149,6247,6325,6406,6506,6563,6629,6712,6799,6861,6925,6988,7090,7197,7294,7403,7492" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,2855", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,2937" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,399,506,616,703,809,939,1024,1104,1195,1288,1386,1481,1581,1674,1767,1862,1953,2044,2130,2240,2351,2454,2565,2673,2780,2939,7497", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "394,501,611,698,804,934,1019,1099,1190,1283,1381,1476,1576,1669,1762,1857,1948,2039,2125,2235,2346,2449,2560,2668,2775,2934,3033,7579" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7584", ++ "endColumns": "100", ++ "endOffsets": "7680" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ms_values-ms.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7369", ++ "endColumns": "100", ++ "endOffsets": "7465" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,2800", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "284,395,500,608,695,799,910,989,1067,1158,1251,1346,1440,1538,1631,1726,1820,1911,2002,2082,2194,2302,2399,2508,2612,2719,2878,7288", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "390,495,603,690,794,905,984,1062,1153,1246,1341,1435,1533,1626,1721,1815,1906,1997,2077,2189,2297,2394,2503,2607,2714,2873,2974,7364" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,234,321,424,540,623,688,781,846,905,992,1054,1114,1180,1242,1296,1404,1461,1522,1577,1648,1768,1859,1945,2063,2149,2235,2323,2390,2456,2527,2605,2688,2761,2837,2910,2981,3073,3146,3236,3329,3403,3474,3565,3617,3685,3769,3854,3916,3980,4043,4147,4253,4349,4457", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,102,115,82,64,92,64,58,86,61,59,65,61,53,107,56,60,54,70,119,90,85,117,85,85,87,66,65,70,77,82,72,75,72,70,91,72,89,92,73,70,90,51,67,83,84,61,63,62,103,105,95,107,85", ++ "endOffsets": "229,316,419,535,618,683,776,841,900,987,1049,1109,1175,1237,1291,1399,1456,1517,1572,1643,1763,1854,1940,2058,2144,2230,2318,2385,2451,2522,2600,2683,2756,2832,2905,2976,3068,3141,3231,3324,3398,3469,3560,3612,3680,3764,3849,3911,3975,4038,4142,4248,4344,4452,4538" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2979,3066,3169,3285,3368,3433,3526,3591,3650,3737,3799,3859,3925,3987,4041,4149,4206,4267,4322,4393,4513,4604,4690,4808,4894,4980,5068,5135,5201,5272,5350,5433,5506,5582,5655,5726,5818,5891,5981,6074,6148,6219,6310,6362,6430,6514,6599,6661,6725,6788,6892,6998,7094,7202", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,102,115,82,64,92,64,58,86,61,59,65,61,53,107,56,60,54,70,119,90,85,117,85,85,87,66,65,70,77,82,72,75,72,70,91,72,89,92,73,70,90,51,67,83,84,61,63,62,103,105,95,107,85", ++ "endOffsets": "279,3061,3164,3280,3363,3428,3521,3586,3645,3732,3794,3854,3920,3982,4036,4144,4201,4262,4317,4388,4508,4599,4685,4803,4889,4975,5063,5130,5196,5267,5345,5428,5501,5577,5650,5721,5813,5886,5976,6069,6143,6214,6305,6357,6425,6509,6594,6656,6720,6783,6887,6993,7089,7197,7283" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-gu_values-gu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7355", ++ "endColumns": "100", ++ "endOffsets": "7451" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,305,404,524,608,671,762,829,888,978,1043,1107,1176,1238,1292,1407,1465,1526,1580,1653,1780,1866,1950,2053,2128,2204,2290,2357,2423,2496,2576,2661,2732,2808,2887,2956,3052,3130,3225,3321,3395,3470,3569,3620,3687,3774,3864,3926,3990,4053,4155,4260,4357,4463", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,98,119,83,62,90,66,58,89,64,63,68,61,53,114,57,60,53,72,126,85,83,102,74,75,85,66,65,72,79,84,70,75,78,68,95,77,94,95,73,74,98,50,66,86,89,61,63,62,101,104,96,105,77", ++ "endOffsets": "218,300,399,519,603,666,757,824,883,973,1038,1102,1171,1233,1287,1402,1460,1521,1575,1648,1775,1861,1945,2048,2123,2199,2285,2352,2418,2491,2571,2656,2727,2803,2882,2951,3047,3125,3220,3316,3390,3465,3564,3615,3682,3769,3859,3921,3985,4048,4150,4255,4352,4458,4536" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2956,3038,3137,3257,3341,3404,3495,3562,3621,3711,3776,3840,3909,3971,4025,4140,4198,4259,4313,4386,4513,4599,4683,4786,4861,4937,5023,5090,5156,5229,5309,5394,5465,5541,5620,5689,5785,5863,5958,6054,6128,6203,6302,6353,6420,6507,6597,6659,6723,6786,6888,6993,7090,7196", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,98,119,83,62,90,66,58,89,64,63,68,61,53,114,57,60,53,72,126,85,83,102,74,75,85,66,65,72,79,84,70,75,78,68,95,77,94,95,73,74,98,50,66,86,89,61,63,62,101,104,96,105,77", ++ "endOffsets": "268,3033,3132,3252,3336,3399,3490,3557,3616,3706,3771,3835,3904,3966,4020,4135,4193,4254,4308,4381,4508,4594,4678,4781,4856,4932,5018,5085,5151,5224,5304,5389,5460,5536,5615,5684,5780,5858,5953,6049,6123,6198,6297,6348,6415,6502,6592,6654,6718,6781,6883,6988,7085,7191,7269" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,2788", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,2864" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,380,484,591,678,778,898,976,1053,1144,1237,1332,1426,1526,1619,1714,1808,1899,1990,2070,2176,2277,2374,2483,2583,2693,2853,7274", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "375,479,586,673,773,893,971,1048,1139,1232,1327,1421,1521,1614,1709,1803,1894,1985,2065,2171,2272,2369,2478,2578,2688,2848,2951,7350" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w320dp-land-v13/values-w320dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,110", ++ "endColumns": "54,61", ++ "endOffsets": "105,167" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-pt-rPT_values-pt-rPT.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,310,413,533,614,678,770,849,914,1004,1072,1134,1207,1271,1325,1451,1509,1571,1625,1701,1844,1931,2013,2122,2204,2286,2373,2440,2506,2581,2661,2748,2821,2898,2971,3045,3138,3215,3308,3406,3480,3561,3660,3713,3779,3868,3956,4018,4082,4145,4261,4364,4471,4575", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,102,119,80,63,91,78,64,89,67,61,72,63,53,125,57,61,53,75,142,86,81,108,81,81,86,66,65,74,79,86,72,76,72,73,92,76,92,97,73,80,98,52,65,88,87,61,63,62,115,102,106,103,85", ++ "endOffsets": "223,305,408,528,609,673,765,844,909,999,1067,1129,1202,1266,1320,1446,1504,1566,1620,1696,1839,1926,2008,2117,2199,2281,2368,2435,2501,2576,2656,2743,2816,2893,2966,3040,3133,3210,3303,3401,3475,3556,3655,3708,3774,3863,3951,4013,4077,4140,4256,4359,4466,4570,4656" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3009,3091,3194,3314,3395,3459,3551,3630,3695,3785,3853,3915,3988,4052,4106,4232,4290,4352,4406,4482,4625,4712,4794,4903,4985,5067,5154,5221,5287,5362,5442,5529,5602,5679,5752,5826,5919,5996,6089,6187,6261,6342,6441,6494,6560,6649,6737,6799,6863,6926,7042,7145,7252,7356", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,102,119,80,63,91,78,64,89,67,61,72,63,53,125,57,61,53,75,142,86,81,108,81,81,86,66,65,74,79,86,72,76,72,73,92,76,92,97,73,80,98,52,65,88,87,61,63,62,115,102,106,103,85", ++ "endOffsets": "273,3086,3189,3309,3390,3454,3546,3625,3690,3780,3848,3910,3983,4047,4101,4227,4285,4347,4401,4477,4620,4707,4789,4898,4980,5062,5149,5216,5282,5357,5437,5524,5597,5674,5747,5821,5914,5991,6084,6182,6256,6337,6436,6489,6555,6644,6732,6794,6858,6921,7037,7140,7247,7351,7437" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,2836", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,2917" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,492,599,688,789,907,992,1072,1164,1258,1355,1449,1548,1642,1738,1833,1925,2017,2102,2209,2320,2422,2530,2638,2745,2910,7442", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "381,487,594,683,784,902,987,1067,1159,1253,1350,1444,1543,1637,1733,1828,1920,2012,2097,2204,2315,2417,2525,2633,2740,2905,3004,7523" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7528", ++ "endColumns": "100", ++ "endOffsets": "7624" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-kn_values-kn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,2859", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,2937" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,388,500,613,701,808,934,1012,1088,1179,1272,1367,1461,1561,1654,1749,1843,1934,2025,2107,2223,2333,2432,2545,2650,2764,2928,7417", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "383,495,608,696,803,929,1007,1083,1174,1267,1362,1456,1556,1649,1744,1838,1929,2020,2102,2218,2328,2427,2540,2645,2759,2923,3023,7495" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7500", ++ "endColumns": "100", ++ "endOffsets": "7596" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,306,413,526,611,674,768,834,896,999,1070,1129,1205,1270,1324,1437,1495,1556,1610,1689,1805,1888,1979,2091,2170,2249,2337,2404,2470,2550,2640,2724,2801,2878,2955,3024,3123,3200,3293,3388,3462,3543,3639,3690,3758,3844,3932,3995,4060,4123,4228,4331,4426,4531", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,106,112,84,62,93,65,61,102,70,58,75,64,53,112,57,60,53,78,115,82,90,111,78,78,87,66,65,79,89,83,76,76,76,68,98,76,92,94,73,80,95,50,67,85,87,62,64,62,104,102,94,104,81", ++ "endOffsets": "219,301,408,521,606,669,763,829,891,994,1065,1124,1200,1265,1319,1432,1490,1551,1605,1684,1800,1883,1974,2086,2165,2244,2332,2399,2465,2545,2635,2719,2796,2873,2950,3019,3118,3195,3288,3383,3457,3538,3634,3685,3753,3839,3927,3990,4055,4118,4223,4326,4421,4526,4608" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3028,3110,3217,3330,3415,3478,3572,3638,3700,3803,3874,3933,4009,4074,4128,4241,4299,4360,4414,4493,4609,4692,4783,4895,4974,5053,5141,5208,5274,5354,5444,5528,5605,5682,5759,5828,5927,6004,6097,6192,6266,6347,6443,6494,6562,6648,6736,6799,6864,6927,7032,7135,7230,7335", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,106,112,84,62,93,65,61,102,70,58,75,64,53,112,57,60,53,78,115,82,90,111,78,78,87,66,65,79,89,83,76,76,76,68,98,76,92,94,73,80,95,50,67,85,87,62,64,62,104,102,94,104,81", ++ "endOffsets": "269,3105,3212,3325,3410,3473,3567,3633,3695,3798,3869,3928,4004,4069,4123,4236,4294,4355,4409,4488,4604,4687,4778,4890,4969,5048,5136,5203,5269,5349,5439,5523,5600,5677,5754,5823,5922,5999,6092,6187,6261,6342,6438,6489,6557,6643,6731,6794,6859,6922,7027,7130,7225,7330,7412" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-hdpi-v4_values-hdpi-v4.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hdpi-v4/values-hdpi-v4.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "6", ++ "endColumns": "13", ++ "endOffsets": "327" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ne_values-ne.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,217,299,401,511,598,664,760,826,887,992,1064,1122,1196,1258,1312,1425,1485,1546,1605,1683,1807,1888,1973,2079,2160,2243,2326,2393,2459,2536,2615,2703,2772,2848,2929,2997,3088,3166,3259,3356,3430,3509,3607,3667,3733,3821,3909,3971,4039,4102,4207,4325,4420,4540", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,101,109,86,65,95,65,60,104,71,57,73,61,53,112,59,60,58,77,123,80,84,105,80,82,82,66,65,76,78,87,68,75,80,67,90,77,92,96,73,78,97,59,65,87,87,61,67,62,104,117,94,119,83", ++ "endOffsets": "212,294,396,506,593,659,755,821,882,987,1059,1117,1191,1253,1307,1420,1480,1541,1600,1678,1802,1883,1968,2074,2155,2238,2321,2388,2454,2531,2610,2698,2767,2843,2924,2992,3083,3161,3254,3351,3425,3504,3602,3662,3728,3816,3904,3966,4034,4097,4202,4320,4415,4535,4619" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3029,3111,3213,3323,3410,3476,3572,3638,3699,3804,3876,3934,4008,4070,4124,4237,4297,4358,4417,4495,4619,4700,4785,4891,4972,5055,5138,5205,5271,5348,5427,5515,5584,5660,5741,5809,5900,5978,6071,6168,6242,6321,6419,6479,6545,6633,6721,6783,6851,6914,7019,7137,7232,7352", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,101,109,86,65,95,65,60,104,71,57,73,61,53,112,59,60,58,77,123,80,84,105,80,82,82,66,65,76,78,87,68,75,80,67,90,77,92,96,73,78,97,59,65,87,87,61,67,62,104,117,94,119,83", ++ "endOffsets": "262,3106,3208,3318,3405,3471,3567,3633,3694,3799,3871,3929,4003,4065,4119,4232,4292,4353,4412,4490,4614,4695,4780,4886,4967,5050,5133,5200,5266,5343,5422,5510,5579,5655,5736,5804,5895,5973,6066,6163,6237,6316,6414,6474,6540,6628,6716,6778,6846,6909,7014,7132,7227,7347,7431" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7516", ++ "endColumns": "100", ++ "endOffsets": "7612" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,327,435,526,633,753,837,916,1007,1100,1195,1289,1389,1482,1577,1671,1762,1853,1939,2052,2153,2249,2362,2472,2589,2756,2867", ++ "endColumns": "110,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "211,322,430,521,628,748,832,911,1002,1095,1190,1284,1384,1477,1572,1666,1757,1848,1934,2047,2148,2244,2357,2467,2584,2751,2862,2942" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "267,378,489,597,688,795,915,999,1078,1169,1262,1357,1451,1551,1644,1739,1833,1924,2015,2101,2214,2315,2411,2524,2634,2751,2918,7436", ++ "endColumns": "110,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "373,484,592,683,790,910,994,1073,1164,1257,1352,1446,1546,1639,1734,1828,1919,2010,2096,2209,2310,2406,2519,2629,2746,2913,3024,7511" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-lv_values-lv.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7727", ++ "endColumns": "100", ++ "endOffsets": "7823" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,279,360,461,595,678,743,837,910,971,1096,1164,1225,1297,1357,1411,1531,1591,1653,1707,1784,1914,2001,2083,2194,2274,2359,2450,2517,2583,2657,2738,2822,2895,2972,3049,3123,3216,3291,3381,3472,3544,3622,3713,3767,3835,3919,4006,4068,4132,4195,4305,4418,4521,4633", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,80,100,133,82,64,93,72,60,124,67,60,71,59,53,119,59,61,53,76,129,86,81,110,79,84,90,66,65,73,80,83,72,76,76,73,92,74,89,90,71,77,90,53,67,83,86,61,63,62,109,112,102,111,76", ++ "endOffsets": "274,355,456,590,673,738,832,905,966,1091,1159,1220,1292,1352,1406,1526,1586,1648,1702,1779,1909,1996,2078,2189,2269,2354,2445,2512,2578,2652,2733,2817,2890,2967,3044,3118,3211,3286,3376,3467,3539,3617,3708,3762,3830,3914,4001,4063,4127,4190,4300,4413,4516,4628,4705" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3213,3294,3395,3529,3612,3677,3771,3844,3905,4030,4098,4159,4231,4291,4345,4465,4525,4587,4641,4718,4848,4935,5017,5128,5208,5293,5384,5451,5517,5591,5672,5756,5829,5906,5983,6057,6150,6225,6315,6406,6478,6556,6647,6701,6769,6853,6940,7002,7066,7129,7239,7352,7455,7567", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,100,133,82,64,93,72,60,124,67,60,71,59,53,119,59,61,53,76,129,86,81,110,79,84,90,66,65,73,80,83,72,76,76,73,92,74,89,90,71,77,90,53,67,83,86,61,63,62,109,112,102,111,76", ++ "endOffsets": "324,3289,3390,3524,3607,3672,3766,3839,3900,4025,4093,4154,4226,4286,4340,4460,4520,4582,4636,4713,4843,4930,5012,5123,5203,5288,5379,5446,5512,5586,5667,5751,5824,5901,5978,6052,6145,6220,6310,6401,6473,6551,6642,6696,6764,6848,6935,6997,7061,7124,7234,7347,7450,7562,7639" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,2989", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,3067" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "329,449,559,668,754,858,980,1062,1142,1252,1360,1466,1575,1686,1789,1901,2008,2113,2213,2298,2407,2518,2617,2728,2835,2940,3114,7644", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "444,554,663,749,853,975,1057,1137,1247,1355,1461,1570,1681,1784,1896,2003,2108,2208,2293,2402,2513,2612,2723,2830,2935,3109,3208,7722" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-uk_values-uk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,2829", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,2906" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "379,488,590,698,784,889,1007,1088,1167,1258,1351,1446,1540,1640,1733,1828,1923,2014,2105,2204,2310,2416,2514,2621,2728,2833,3003,7426", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "483,585,693,779,884,1002,1083,1162,1253,1346,1441,1535,1635,1728,1823,1918,2009,2100,2199,2305,2411,2509,2616,2723,2828,2998,3098,7503" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,329,417,513,629,712,779,870,936,999,1087,1154,1212,1283,1342,1396,1510,1570,1633,1687,1760,1879,1965,2048,2157,2242,2329,2417,2484,2550,2622,2698,2788,2861,2938,3019,3093,3183,3262,3353,3449,3523,3604,3699,3753,3819,3906,3992,4054,4118,4181,4288,4380,4478,4570", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,87,95,115,82,66,90,65,62,87,66,57,70,58,53,113,59,62,53,72,118,85,82,108,84,86,87,66,65,71,75,89,72,76,80,73,89,78,90,95,73,80,94,53,65,86,85,61,63,62,106,91,97,91,81", ++ "endOffsets": "324,412,508,624,707,774,865,931,994,1082,1149,1207,1278,1337,1391,1505,1565,1628,1682,1755,1874,1960,2043,2152,2237,2324,2412,2479,2545,2617,2693,2783,2856,2933,3014,3088,3178,3257,3348,3444,3518,3599,3694,3748,3814,3901,3987,4049,4113,4176,4283,4375,4473,4565,4647" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3191,3287,3403,3486,3553,3644,3710,3773,3861,3928,3986,4057,4116,4170,4284,4344,4407,4461,4534,4653,4739,4822,4931,5016,5103,5191,5258,5324,5396,5472,5562,5635,5712,5793,5867,5957,6036,6127,6223,6297,6378,6473,6527,6593,6680,6766,6828,6892,6955,7062,7154,7252,7344", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,95,115,82,66,90,65,62,87,66,57,70,58,53,113,59,62,53,72,118,85,82,108,84,86,87,66,65,71,75,89,72,76,80,73,89,78,90,95,73,80,94,53,65,86,85,61,63,62,106,91,97,91,81", ++ "endOffsets": "374,3186,3282,3398,3481,3548,3639,3705,3768,3856,3923,3981,4052,4111,4165,4279,4339,4402,4456,4529,4648,4734,4817,4926,5011,5098,5186,5253,5319,5391,5467,5557,5630,5707,5788,5862,5952,6031,6122,6218,6292,6373,6468,6522,6588,6675,6761,6823,6887,6950,7057,7149,7247,7339,7421" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7508", ++ "endColumns": "100", ++ "endOffsets": "7604" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-v25_values-v25.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v25/values-v25.xml", ++ "from": { ++ "startLines": "2,3,4,6", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,126,209,308", ++ "endLines": "2,3,5,7", ++ "endColumns": "70,82,12,12", ++ "endOffsets": "121,204,303,414" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-pa_values-pa.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7223", ++ "endColumns": "100", ++ "endOffsets": "7319" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,218,299,407,519,602,666,758,827,886,971,1033,1091,1155,1216,1270,1384,1442,1502,1556,1626,1753,1834,1913,2018,2094,2171,2255,2322,2388,2457,2534,2620,2688,2764,2834,2899,2994,3067,3161,3254,3328,3397,3491,3547,3614,3698,3786,3848,3912,3975,4072,4167,4258,4354", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,107,111,82,63,91,68,58,84,61,57,63,60,53,113,57,59,53,69,126,80,78,104,75,76,83,66,65,68,76,85,67,75,69,64,94,72,93,92,73,68,93,55,66,83,87,61,63,62,96,94,90,95,76", ++ "endOffsets": "213,294,402,514,597,661,753,822,881,966,1028,1086,1150,1211,1265,1379,1437,1497,1551,1621,1748,1829,1908,2013,2089,2166,2250,2317,2383,2452,2529,2615,2683,2759,2829,2894,2989,3062,3156,3249,3323,3392,3486,3542,3609,3693,3781,3843,3907,3970,4067,4162,4253,4349,4426" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2930,3011,3119,3231,3314,3378,3470,3539,3598,3683,3745,3803,3867,3928,3982,4096,4154,4214,4268,4338,4465,4546,4625,4730,4806,4883,4967,5034,5100,5169,5246,5332,5400,5476,5546,5611,5706,5779,5873,5966,6040,6109,6203,6259,6326,6410,6498,6560,6624,6687,6784,6879,6970,7066", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,107,111,82,63,91,68,58,84,61,57,63,60,53,113,57,59,53,69,126,80,78,104,75,76,83,66,65,68,76,85,67,75,69,64,94,72,93,92,73,68,93,55,66,83,87,61,63,62,96,94,90,95,76", ++ "endOffsets": "263,3006,3114,3226,3309,3373,3465,3534,3593,3678,3740,3798,3862,3923,3977,4091,4149,4209,4263,4333,4460,4541,4620,4725,4801,4878,4962,5029,5095,5164,5241,5327,5395,5471,5541,5606,5701,5774,5868,5961,6035,6104,6198,6254,6321,6405,6493,6555,6619,6682,6779,6874,6965,7061,7138" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,2767", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,2842" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "268,371,468,573,659,759,872,950,1027,1118,1211,1305,1399,1499,1592,1687,1781,1872,1963,2042,2152,2255,2351,2462,2564,2674,2833,7143", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "366,463,568,654,754,867,945,1022,1113,1206,1300,1394,1494,1587,1682,1776,1867,1958,2037,2147,2250,2346,2457,2559,2669,2828,2925,7218" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-v24_values-v24.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v24/values-v24.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,212", ++ "endColumns": "156,134", ++ "endOffsets": "207,342" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-in_values-in.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7354", ++ "endColumns": "100", ++ "endOffsets": "7450" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,303,409,525,608,673,767,832,891,978,1040,1100,1166,1228,1282,1394,1451,1512,1566,1638,1764,1850,1934,2043,2124,2205,2295,2362,2428,2500,2584,2667,2742,2818,2891,2966,3051,3126,3218,3312,3386,3459,3553,3605,3674,3759,3846,3908,3972,4035,4138,4238,4333,4435", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,105,115,82,64,93,64,58,86,61,59,65,61,53,111,56,60,53,71,125,85,83,108,80,80,89,66,65,71,83,82,74,75,72,74,84,74,91,93,73,72,93,51,68,84,86,61,63,62,102,99,94,101,79", ++ "endOffsets": "219,298,404,520,603,668,762,827,886,973,1035,1095,1161,1223,1277,1389,1446,1507,1561,1633,1759,1845,1929,2038,2119,2200,2290,2357,2423,2495,2579,2662,2737,2813,2886,2961,3046,3121,3213,3307,3381,3454,3548,3600,3669,3754,3841,3903,3967,4030,4133,4233,4328,4430,4510" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2978,3057,3163,3279,3362,3427,3521,3586,3645,3732,3794,3854,3920,3982,4036,4148,4205,4266,4320,4392,4518,4604,4688,4797,4878,4959,5049,5116,5182,5254,5338,5421,5496,5572,5645,5720,5805,5880,5972,6066,6140,6213,6307,6359,6428,6513,6600,6662,6726,6789,6892,6992,7087,7189", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,105,115,82,64,93,64,58,86,61,59,65,61,53,111,56,60,53,71,125,85,83,108,80,80,89,66,65,71,83,82,74,75,72,74,84,74,91,93,73,72,93,51,68,84,86,61,63,62,102,99,94,101,79", ++ "endOffsets": "269,3052,3158,3274,3357,3422,3516,3581,3640,3727,3789,3849,3915,3977,4031,4143,4200,4261,4315,4387,4513,4599,4683,4792,4873,4954,5044,5111,5177,5249,5333,5416,5491,5567,5640,5715,5800,5875,5967,6061,6135,6208,6302,6354,6423,6508,6595,6657,6721,6784,6887,6987,7082,7184,7264" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,324,429,516,620,736,819,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1920,2023,2128,2229,2333,2442,2550,2710,2809", ++ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", ++ "endOffsets": "215,319,424,511,615,731,814,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1915,2018,2123,2224,2328,2437,2545,2705,2804,2889" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,389,493,598,685,789,905,988,1066,1157,1250,1345,1439,1539,1632,1727,1821,1912,2003,2089,2192,2297,2398,2502,2611,2719,2879,7269", ++ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", ++ "endOffsets": "384,488,593,680,784,900,983,1061,1152,1245,1340,1434,1534,1627,1722,1816,1907,1998,2084,2187,2292,2393,2497,2606,2714,2874,2973,7349" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-hu_values-hu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,218,295,394,514,597,661,760,835,894,1004,1073,1131,1203,1264,1319,1422,1479,1539,1594,1675,1795,1878,1966,2071,2154,2234,2328,2395,2461,2537,2619,2705,2782,2857,2936,3013,3109,3186,3278,3375,3449,3534,3631,3683,3750,3838,3925,3987,4051,4114,4212,4309,4403,4501", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,98,119,82,63,98,74,58,109,68,57,71,60,54,102,56,59,54,80,119,82,87,104,82,79,93,66,65,75,81,85,76,74,78,76,95,76,91,96,73,84,96,51,66,87,86,61,63,62,97,96,93,97,84", ++ "endOffsets": "213,290,389,509,592,656,755,830,889,999,1068,1126,1198,1259,1314,1417,1474,1534,1589,1670,1790,1873,1961,2066,2149,2229,2323,2390,2456,2532,2614,2700,2777,2852,2931,3008,3104,3181,3273,3370,3444,3529,3626,3678,3745,3833,3920,3982,4046,4109,4207,4304,4398,4496,4581" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3022,3099,3198,3318,3401,3465,3564,3639,3698,3808,3877,3935,4007,4068,4123,4226,4283,4343,4398,4479,4599,4682,4770,4875,4958,5038,5132,5199,5265,5341,5423,5509,5586,5661,5740,5817,5913,5990,6082,6179,6253,6338,6435,6487,6554,6642,6729,6791,6855,6918,7016,7113,7207,7305", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,98,119,82,63,98,74,58,109,68,57,71,60,54,102,56,59,54,80,119,82,87,104,82,79,93,66,65,75,81,85,76,74,78,76,95,76,91,96,73,84,96,51,66,87,86,61,63,62,97,96,93,97,84", ++ "endOffsets": "263,3094,3193,3313,3396,3460,3559,3634,3693,3803,3872,3930,4002,4063,4118,4221,4278,4338,4393,4474,4594,4677,4765,4870,4953,5033,5127,5194,5260,5336,5418,5504,5581,5656,5735,5812,5908,5985,6077,6174,6248,6333,6430,6482,6549,6637,6724,6786,6850,6913,7011,7108,7202,7300,7385" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7474", ++ "endColumns": "100", ++ "endOffsets": "7570" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,2859", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,2938" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "268,376,468,583,667,782,905,982,1057,1148,1241,1336,1430,1530,1623,1718,1813,1904,1995,2078,2188,2298,2398,2509,2618,2737,2919,7390", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "371,463,578,662,777,900,977,1052,1143,1236,1331,1425,1525,1618,1713,1808,1899,1990,2073,2183,2293,2393,2504,2613,2732,2914,3017,7469" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-pt_values-pt.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2929", ++ "endColumns": "100", ++ "endOffsets": "3025" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-hi_values-hi.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,2787", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,2864" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,370,468,578,664,766,887,965,1042,1133,1226,1321,1415,1515,1608,1703,1797,1888,1979,2060,2165,2267,2365,2475,2578,2687,2845,7289", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "365,463,573,659,761,882,960,1037,1128,1221,1316,1410,1510,1603,1698,1792,1883,1974,2055,2160,2262,2360,2470,2573,2682,2840,2941,7366" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,295,402,534,617,682,776,845,904,989,1052,1110,1175,1236,1297,1403,1461,1521,1580,1650,1766,1845,1925,2029,2104,2180,2277,2344,2410,2480,2557,2643,2711,2787,2868,2946,3032,3119,3216,3315,3389,3459,3563,3617,3684,3774,3866,3928,3992,4055,4160,4268,4369,4478", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,106,131,82,64,93,68,58,84,62,57,64,60,60,105,57,59,58,69,115,78,79,103,74,75,96,66,65,69,76,85,67,75,80,77,85,86,96,98,73,69,103,53,66,89,91,61,63,62,104,107,100,108,78", ++ "endOffsets": "209,290,397,529,612,677,771,840,899,984,1047,1105,1170,1231,1292,1398,1456,1516,1575,1645,1761,1840,1920,2024,2099,2175,2272,2339,2405,2475,2552,2638,2706,2782,2863,2941,3027,3114,3211,3310,3384,3454,3558,3612,3679,3769,3861,3923,3987,4050,4155,4263,4364,4473,4552" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2946,3027,3134,3266,3349,3414,3508,3577,3636,3721,3784,3842,3907,3968,4029,4135,4193,4253,4312,4382,4498,4577,4657,4761,4836,4912,5009,5076,5142,5212,5289,5375,5443,5519,5600,5678,5764,5851,5948,6047,6121,6191,6295,6349,6416,6506,6598,6660,6724,6787,6892,7000,7101,7210", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,106,131,82,64,93,68,58,84,62,57,64,60,60,105,57,59,58,69,115,78,79,103,74,75,96,66,65,69,76,85,67,75,80,77,85,86,96,98,73,69,103,53,66,89,91,61,63,62,104,107,100,108,78", ++ "endOffsets": "259,3022,3129,3261,3344,3409,3503,3572,3631,3716,3779,3837,3902,3963,4024,4130,4188,4248,4307,4377,4493,4572,4652,4756,4831,4907,5004,5071,5137,5207,5284,5370,5438,5514,5595,5673,5759,5846,5943,6042,6116,6186,6290,6344,6411,6501,6593,6655,6719,6782,6887,6995,7096,7205,7284" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7371", ++ "endColumns": "100", ++ "endOffsets": "7467" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-et_values-et.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,2827", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,2905" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "271,377,476,587,673,775,892,973,1050,1142,1236,1332,1434,1543,1637,1738,1832,1924,2017,2100,2211,2315,2414,2524,2626,2725,2891,7310", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "372,471,582,668,770,887,968,1045,1137,1231,1327,1429,1538,1632,1733,1827,1919,2012,2095,2206,2310,2409,2519,2621,2720,2886,2988,7388" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7393", ++ "endColumns": "100", ++ "endOffsets": "7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,221,306,405,522,604,668,753,821,885,972,1036,1095,1167,1231,1285,1404,1464,1525,1579,1652,1785,1869,1962,2070,2150,2229,2317,2384,2450,2523,2602,2688,2761,2836,2910,2982,3070,3147,3238,3330,3402,3476,3567,3621,3690,3773,3859,3921,3985,4048,4151,4255,4352,4457", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,98,116,81,63,84,67,63,86,63,58,71,63,53,118,59,60,53,72,132,83,92,107,79,78,87,66,65,72,78,85,72,74,73,71,87,76,90,91,71,73,90,53,68,82,85,61,63,62,102,103,96,104,80", ++ "endOffsets": "216,301,400,517,599,663,748,816,880,967,1031,1090,1162,1226,1280,1399,1459,1520,1574,1647,1780,1864,1957,2065,2145,2224,2312,2379,2445,2518,2597,2683,2756,2831,2905,2977,3065,3142,3233,3325,3397,3471,3562,3616,3685,3768,3854,3916,3980,4043,4146,4250,4347,4452,4533" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2993,3078,3177,3294,3376,3440,3525,3593,3657,3744,3808,3867,3939,4003,4057,4176,4236,4297,4351,4424,4557,4641,4734,4842,4922,5001,5089,5156,5222,5295,5374,5460,5533,5608,5682,5754,5842,5919,6010,6102,6174,6248,6339,6393,6462,6545,6631,6693,6757,6820,6923,7027,7124,7229", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,98,116,81,63,84,67,63,86,63,58,71,63,53,118,59,60,53,72,132,83,92,107,79,78,87,66,65,72,78,85,72,74,73,71,87,76,90,91,71,73,90,53,68,82,85,61,63,62,102,103,96,104,80", ++ "endOffsets": "266,3073,3172,3289,3371,3435,3520,3588,3652,3739,3803,3862,3934,3998,4052,4171,4231,4292,4346,4419,4552,4636,4729,4837,4917,4996,5084,5151,5217,5290,5369,5455,5528,5603,5677,5749,5837,5914,6005,6097,6169,6243,6334,6388,6457,6540,6626,6688,6752,6815,6918,7022,7119,7224,7305" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-fr_values-fr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7572", ++ "endColumns": "100", ++ "endOffsets": "7668" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,321,419,549,634,700,797,880,946,1048,1123,1179,1258,1318,1372,1494,1553,1615,1669,1751,1886,1978,2062,2176,2255,2336,2429,2496,2562,2642,2723,2826,2899,2977,3050,3122,3215,3290,3382,3474,3548,3632,3724,3781,3847,3930,4017,4079,4143,4206,4308,4406,4503,4604", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,97,129,84,65,96,82,65,101,74,55,78,59,53,121,58,61,53,81,134,91,83,113,78,80,92,66,65,79,80,102,72,77,72,71,92,74,91,91,73,83,91,56,65,82,86,61,63,62,101,97,96,100,88", ++ "endOffsets": "233,316,414,544,629,695,792,875,941,1043,1118,1174,1253,1313,1367,1489,1548,1610,1664,1746,1881,1973,2057,2171,2250,2331,2424,2491,2557,2637,2718,2821,2894,2972,3045,3117,3210,3285,3377,3469,3543,3627,3719,3776,3842,3925,4012,4074,4138,4201,4303,4401,4498,4599,4688" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3030,3113,3211,3341,3426,3492,3589,3672,3738,3840,3915,3971,4050,4110,4164,4286,4345,4407,4461,4543,4678,4770,4854,4968,5047,5128,5221,5288,5354,5434,5515,5618,5691,5769,5842,5914,6007,6082,6174,6266,6340,6424,6516,6573,6639,6722,6809,6871,6935,6998,7100,7198,7295,7396", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,97,129,84,65,96,82,65,101,74,55,78,59,53,121,58,61,53,81,134,91,83,113,78,80,92,66,65,79,80,102,72,77,72,71,92,74,91,91,73,83,91,56,65,82,86,61,63,62,101,97,96,100,88", ++ "endOffsets": "283,3108,3206,3336,3421,3487,3584,3667,3733,3835,3910,3966,4045,4105,4159,4281,4340,4402,4456,4538,4673,4765,4849,4963,5042,5123,5216,5283,5349,5429,5510,5613,5686,5764,5837,5909,6002,6077,6169,6261,6335,6419,6511,6568,6634,6717,6804,6866,6930,6993,7095,7193,7290,7391,7480" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,2847", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,2929" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,399,514,624,706,812,942,1020,1096,1187,1280,1378,1473,1573,1666,1759,1854,1945,2036,2122,2232,2343,2446,2557,2665,2772,2931,7485", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "394,509,619,701,807,937,1015,1091,1182,1275,1373,1468,1568,1661,1754,1849,1940,2031,2117,2227,2338,2441,2552,2660,2767,2926,3025,7567" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-as_values-as.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,406,529,608,673,762,827,886,972,1036,1099,1169,1233,1287,1392,1450,1512,1566,1638,1755,1842,1925,2035,2112,2193,2284,2351,2417,2487,2564,2651,2722,2799,2868,2937,3028,3100,3189,3278,3352,3424,3510,3560,3626,3706,3790,3852,3916,3979,4079,4176,4268,4367", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,101,122,78,64,88,64,58,85,63,62,69,63,53,104,57,61,53,71,116,86,82,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,80", ++ "endOffsets": "222,299,401,524,603,668,757,822,881,967,1031,1094,1164,1228,1282,1387,1445,1507,1561,1633,1750,1837,1920,2030,2107,2188,2279,2346,2412,2482,2559,2646,2717,2794,2863,2932,3023,3095,3184,3273,3347,3419,3505,3555,3621,3701,3785,3847,3911,3974,4074,4171,4263,4362,4443" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3013,3090,3192,3315,3394,3459,3548,3613,3672,3758,3822,3885,3955,4019,4073,4178,4236,4298,4352,4424,4541,4628,4711,4821,4898,4979,5070,5137,5203,5273,5350,5437,5508,5585,5654,5723,5814,5886,5975,6064,6138,6210,6296,6346,6412,6492,6576,6638,6702,6765,6865,6962,7054,7153", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,101,122,78,64,88,64,58,85,63,62,69,63,53,104,57,61,53,71,116,86,82,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,80", ++ "endOffsets": "272,3085,3187,3310,3389,3454,3543,3608,3667,3753,3817,3880,3950,4014,4068,4173,4231,4293,4347,4419,4536,4623,4706,4816,4893,4974,5065,5132,5198,5268,5345,5432,5503,5580,5649,5718,5809,5881,5970,6059,6133,6205,6291,6341,6407,6487,6571,6633,6697,6760,6860,6957,7049,7148,7229" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,312,419,510,612,732,809,884,975,1068,1163,1257,1357,1450,1545,1639,1730,1821,1907,2020,2128,2227,2336,2452,2572,2739,2841", ++ "endColumns": "107,98,106,90,101,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,98,108,115,119,166,101,82", ++ "endOffsets": "208,307,414,505,607,727,804,879,970,1063,1158,1252,1352,1445,1540,1634,1725,1816,1902,2015,2123,2222,2331,2447,2567,2734,2836,2919" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,385,484,591,682,784,904,981,1056,1147,1240,1335,1429,1529,1622,1717,1811,1902,1993,2079,2192,2300,2399,2508,2624,2744,2911,7234", ++ "endColumns": "107,98,106,90,101,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,98,108,115,119,166,101,82", ++ "endOffsets": "380,479,586,677,779,899,976,1051,1142,1235,1330,1424,1524,1617,1712,1806,1897,1988,2074,2187,2295,2394,2503,2619,2739,2906,3008,7312" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7317", ++ "endColumns": "100", ++ "endOffsets": "7413" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-sl_values-sl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2568,2751,2851", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,107,182,99,83", ++ "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2563,2746,2846,2930" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "372,484,586,694,781,884,1003,1084,1162,1254,1348,1443,1537,1632,1726,1822,1922,2014,2106,2190,2298,2406,2506,2619,2727,2835,3018,7466", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,107,182,99,83", ++ "endOffsets": "479,581,689,776,879,998,1079,1157,1249,1343,1438,1532,1627,1721,1817,1917,2009,2101,2185,2293,2401,2501,2614,2722,2830,3013,3113,7545" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,322,410,516,642,726,792,886,962,1025,1137,1202,1256,1326,1386,1442,1554,1611,1673,1729,1802,1936,2021,2106,2219,2303,2386,2475,2542,2608,2681,2758,2842,2916,2992,3067,3140,3228,3301,3391,3482,3554,3628,3719,3771,3838,3922,4009,4071,4135,4198,4301,4398,4496,4593", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,87,105,125,83,65,93,75,62,111,64,53,69,59,55,111,56,61,55,72,133,84,84,112,83,82,88,66,65,72,76,83,73,75,74,72,87,72,89,90,71,73,90,51,66,83,86,61,63,62,102,96,97,96,76", ++ "endOffsets": "317,405,511,637,721,787,881,957,1020,1132,1197,1251,1321,1381,1437,1549,1606,1668,1724,1797,1931,2016,2101,2214,2298,2381,2470,2537,2603,2676,2753,2837,2911,2987,3062,3135,3223,3296,3386,3477,3549,3623,3714,3766,3833,3917,4004,4066,4130,4193,4296,4393,4491,4588,4665" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3118,3206,3312,3438,3522,3588,3682,3758,3821,3933,3998,4052,4122,4182,4238,4350,4407,4469,4525,4598,4732,4817,4902,5015,5099,5182,5271,5338,5404,5477,5554,5638,5712,5788,5863,5936,6024,6097,6187,6278,6350,6424,6515,6567,6634,6718,6805,6867,6931,6994,7097,7194,7292,7389", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,105,125,83,65,93,75,62,111,64,53,69,59,55,111,56,61,55,72,133,84,84,112,83,82,88,66,65,72,76,83,73,75,74,72,87,72,89,90,71,73,90,51,66,83,86,61,63,62,102,96,97,96,76", ++ "endOffsets": "367,3201,3307,3433,3517,3583,3677,3753,3816,3928,3993,4047,4117,4177,4233,4345,4402,4464,4520,4593,4727,4812,4897,5010,5094,5177,5266,5333,5399,5472,5549,5633,5707,5783,5858,5931,6019,6092,6182,6273,6345,6419,6510,6562,6629,6713,6800,6862,6926,6989,7092,7189,7287,7384,7461" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7550", ++ "endColumns": "100", ++ "endOffsets": "7646" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-uz_values-uz.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7407", ++ "endColumns": "100", ++ "endOffsets": "7503" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,321,416,543,627,691,794,864,931,1040,1107,1166,1240,1303,1357,1472,1530,1592,1646,1721,1850,1940,2029,2140,2222,2304,2390,2457,2523,2596,2674,2760,2832,2909,2984,3055,3149,3228,3324,3418,3492,3568,3654,3707,3773,3858,3949,4011,4075,4138,4240,4331,4427,4519", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,94,126,83,63,102,69,66,108,66,58,73,62,53,114,57,61,53,74,128,89,88,110,81,81,85,66,65,72,77,85,71,76,74,70,93,78,95,93,73,75,85,52,65,84,90,61,63,62,101,90,95,91,82", ++ "endOffsets": "233,316,411,538,622,686,789,859,926,1035,1102,1161,1235,1298,1352,1467,1525,1587,1641,1716,1845,1935,2024,2135,2217,2299,2385,2452,2518,2591,2669,2755,2827,2904,2979,3050,3144,3223,3319,3413,3487,3563,3649,3702,3768,3853,3944,4006,4070,4133,4235,4326,4422,4514,4597" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2959,3042,3137,3264,3348,3412,3515,3585,3652,3761,3828,3887,3961,4024,4078,4193,4251,4313,4367,4442,4571,4661,4750,4861,4943,5025,5111,5178,5244,5317,5395,5481,5553,5630,5705,5776,5870,5949,6045,6139,6213,6289,6375,6428,6494,6579,6670,6732,6796,6859,6961,7052,7148,7240", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,94,126,83,63,102,69,66,108,66,58,73,62,53,114,57,61,53,74,128,89,88,110,81,81,85,66,65,72,77,85,71,76,74,70,93,78,95,93,73,75,85,52,65,84,90,61,63,62,101,90,95,91,82", ++ "endOffsets": "283,3037,3132,3259,3343,3407,3510,3580,3647,3756,3823,3882,3956,4019,4073,4188,4246,4308,4362,4437,4566,4656,4745,4856,4938,5020,5106,5173,5239,5312,5390,5476,5548,5625,5700,5771,5865,5944,6040,6134,6208,6284,6370,6423,6489,6574,6665,6727,6791,6854,6956,7047,7143,7235,7318" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,405,487,587,704,789,867,958,1051,1146,1240,1334,1427,1522,1617,1708,1800,1884,1994,2100,2200,2308,2414,2516,2677,2776", ++ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", ++ "endOffsets": "205,300,400,482,582,699,784,862,953,1046,1141,1235,1329,1422,1517,1612,1703,1795,1879,1989,2095,2195,2303,2409,2511,2672,2771,2855" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,393,488,588,670,770,887,972,1050,1141,1234,1329,1423,1517,1610,1705,1800,1891,1983,2067,2177,2283,2383,2491,2597,2699,2860,7323", ++ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", ++ "endOffsets": "388,483,583,665,765,882,967,1045,1136,1229,1324,1418,1512,1605,1700,1795,1886,1978,2062,2172,2278,2378,2486,2592,2694,2855,2954,7402" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ko_values-ko.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6761", ++ "endColumns": "100", ++ "endOffsets": "6857" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,2685", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,2759" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "254,351,445,546,628,726,832,912,987,1078,1171,1266,1360,1460,1553,1648,1742,1833,1924,2004,2102,2196,2291,2391,2488,2588,2740,6682", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "346,440,541,623,721,827,907,982,1073,1166,1261,1355,1455,1548,1643,1737,1828,1919,1999,2097,2191,2286,2386,2483,2583,2735,2829,6756" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,204,273,356,462,537,599,680,742,799,886,944,1002,1061,1118,1172,1267,1323,1380,1434,1500,1604,1679,1756,1847,1912,1977,2056,2123,2189,2253,2323,2400,2468,2539,2606,2676,2756,2833,2913,2995,3067,3132,3204,3252,3316,3391,3468,3530,3594,3657,3741,3820,3900,3980", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,68,82,105,74,61,80,61,56,86,57,57,58,56,53,94,55,56,53,65,103,74,76,90,64,64,78,66,65,63,69,76,67,70,66,69,79,76,79,81,71,64,71,47,63,74,76,61,63,62,83,78,79,79,71", ++ "endOffsets": "199,268,351,457,532,594,675,737,794,881,939,997,1056,1113,1167,1262,1318,1375,1429,1495,1599,1674,1751,1842,1907,1972,2051,2118,2184,2248,2318,2395,2463,2534,2601,2671,2751,2828,2908,2990,3062,3127,3199,3247,3311,3386,3463,3525,3589,3652,3736,3815,3895,3975,4047" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2834,2903,2986,3092,3167,3229,3310,3372,3429,3516,3574,3632,3691,3748,3802,3897,3953,4010,4064,4130,4234,4309,4386,4477,4542,4607,4686,4753,4819,4883,4953,5030,5098,5169,5236,5306,5386,5463,5543,5625,5697,5762,5834,5882,5946,6021,6098,6160,6224,6287,6371,6450,6530,6610", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,68,82,105,74,61,80,61,56,86,57,57,58,56,53,94,55,56,53,65,103,74,76,90,64,64,78,66,65,63,69,76,67,70,66,69,79,76,79,81,71,64,71,47,63,74,76,61,63,62,83,78,79,79,71", ++ "endOffsets": "249,2898,2981,3087,3162,3224,3305,3367,3424,3511,3569,3627,3686,3743,3797,3892,3948,4005,4059,4125,4229,4304,4381,4472,4537,4602,4681,4748,4814,4878,4948,5025,5093,5164,5231,5301,5381,5458,5538,5620,5692,5757,5829,5877,5941,6016,6093,6155,6219,6282,6366,6445,6525,6605,6677" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ta_values-ta.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,311,420,538,622,686,794,862,923,1031,1117,1175,1259,1326,1380,1503,1565,1628,1682,1770,1898,1984,2066,2168,2248,2329,2418,2485,2551,2636,2724,2816,2885,2962,3042,3110,3209,3292,3384,3478,3552,3638,3732,3782,3848,3933,4020,4083,4148,4211,4319,4422,4520,4625", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,108,117,83,63,107,67,60,107,85,57,83,66,53,122,61,62,53,87,127,85,81,101,79,80,88,66,65,84,87,91,68,76,79,67,98,82,91,93,73,85,93,49,65,84,86,62,64,62,107,102,97,104,85", ++ "endOffsets": "222,306,415,533,617,681,789,857,918,1026,1112,1170,1254,1321,1375,1498,1560,1623,1677,1765,1893,1979,2061,2163,2243,2324,2413,2480,2546,2631,2719,2811,2880,2957,3037,3105,3204,3287,3379,3473,3547,3633,3727,3777,3843,3928,4015,4078,4143,4206,4314,4417,4515,4620,4706" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3043,3127,3236,3354,3438,3502,3610,3678,3739,3847,3933,3991,4075,4142,4196,4319,4381,4444,4498,4586,4714,4800,4882,4984,5064,5145,5234,5301,5367,5452,5540,5632,5701,5778,5858,5926,6025,6108,6200,6294,6368,6454,6548,6598,6664,6749,6836,6899,6964,7027,7135,7238,7336,7441", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,108,117,83,63,107,67,60,107,85,57,83,66,53,122,61,62,53,87,127,85,81,101,79,80,88,66,65,84,87,91,68,76,79,67,98,82,91,93,73,85,93,49,65,84,86,62,64,62,107,102,97,104,85", ++ "endOffsets": "272,3122,3231,3349,3433,3497,3605,3673,3734,3842,3928,3986,4070,4137,4191,4314,4376,4439,4493,4581,4709,4795,4877,4979,5059,5140,5229,5296,5362,5447,5535,5627,5696,5773,5853,5921,6020,6103,6195,6289,6363,6449,6543,6593,6659,6744,6831,6894,6959,7022,7130,7233,7331,7436,7522" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,2871", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,2948" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,390,492,607,696,807,928,1007,1083,1181,1281,1376,1470,1577,1677,1779,1873,1971,2069,2150,2258,2361,2460,2576,2679,2784,2941,7527", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "385,487,602,691,802,923,1002,1078,1176,1276,1371,1465,1572,1672,1774,1868,1966,2064,2145,2253,2356,2455,2571,2674,2779,2936,3038,7604" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7609", ++ "endColumns": "100", ++ "endOffsets": "7705" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-hr_values-hr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7514", ++ "endColumns": "100", ++ "endOffsets": "7610" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,2816", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,2896" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "325,430,525,632,718,822,941,1026,1108,1199,1292,1387,1481,1581,1674,1769,1864,1955,2046,2132,2236,2348,2449,2554,2668,2770,2939,7429", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "425,520,627,713,817,936,1021,1103,1194,1287,1382,1476,1576,1669,1764,1859,1950,2041,2127,2231,2343,2444,2549,2663,2765,2934,3031,7509" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,275,360,456,586,670,738,834,902,965,1073,1139,1195,1266,1326,1380,1506,1563,1625,1679,1754,1888,1973,2054,2161,2245,2331,2422,2489,2555,2629,2707,2795,2867,2944,3024,3098,3191,3264,3356,3452,3526,3602,3698,3750,3817,3904,3991,4053,4117,4180,4286,4387,4484,4588", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,84,95,129,83,67,95,67,62,107,65,55,70,59,53,125,56,61,53,74,133,84,80,106,83,85,90,66,65,73,77,87,71,76,79,73,92,72,91,95,73,75,95,51,66,86,86,61,63,62,105,100,96,103,79", ++ "endOffsets": "270,355,451,581,665,733,829,897,960,1068,1134,1190,1261,1321,1375,1501,1558,1620,1674,1749,1883,1968,2049,2156,2240,2326,2417,2484,2550,2624,2702,2790,2862,2939,3019,3093,3186,3259,3351,3447,3521,3597,3693,3745,3812,3899,3986,4048,4112,4175,4281,4382,4479,4583,4663" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3036,3121,3217,3347,3431,3499,3595,3663,3726,3834,3900,3956,4027,4087,4141,4267,4324,4386,4440,4515,4649,4734,4815,4922,5006,5092,5183,5250,5316,5390,5468,5556,5628,5705,5785,5859,5952,6025,6117,6213,6287,6363,6459,6511,6578,6665,6752,6814,6878,6941,7047,7148,7245,7349", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,95,129,83,67,95,67,62,107,65,55,70,59,53,125,56,61,53,74,133,84,80,106,83,85,90,66,65,73,77,87,71,76,79,73,92,72,91,95,73,75,95,51,66,86,86,61,63,62,105,100,96,103,79", ++ "endOffsets": "320,3116,3212,3342,3426,3494,3590,3658,3721,3829,3895,3951,4022,4082,4136,4262,4319,4381,4435,4510,4644,4729,4810,4917,5001,5087,5178,5245,5311,5385,5463,5551,5623,5700,5780,5854,5947,6020,6112,6208,6282,6358,6454,6506,6573,6660,6747,6809,6873,6936,7042,7143,7240,7344,7424" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-en-rXC_values-en-rXC.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,5528", ++ "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185", ++ "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,5709" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "203", ++ "endOffsets": "254" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "5714", ++ "endColumns": "203", ++ "endOffsets": "5913" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-zu_values-zu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,320,432,520,623,738,817,894,985,1078,1173,1267,1367,1460,1555,1649,1740,1833,1914,2018,2121,2219,2326,2433,2538,2695,2791", ++ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", ++ "endOffsets": "208,315,427,515,618,733,812,889,980,1073,1168,1262,1362,1455,1550,1644,1735,1828,1909,2013,2116,2214,2321,2428,2533,2690,2786,2868" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,491,603,691,794,909,988,1065,1156,1249,1344,1438,1538,1631,1726,1820,1911,2004,2085,2189,2292,2390,2497,2604,2709,2866,7425", ++ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", ++ "endOffsets": "379,486,598,686,789,904,983,1060,1151,1244,1339,1433,1533,1626,1721,1815,1906,1999,2080,2184,2287,2385,2492,2599,2704,2861,2957,7502" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7507", ++ "endColumns": "100", ++ "endOffsets": "7603" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,303,415,541,622,689,792,867,930,1022,1087,1154,1226,1298,1352,1473,1532,1596,1650,1727,1859,1944,2025,2144,2231,2314,2406,2473,2539,2611,2688,2779,2859,2938,3013,3092,3182,3255,3349,3446,3520,3593,3692,3747,3815,3903,3992,4054,4118,4181,4290,4395,4498,4607", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,111,125,80,66,102,74,62,91,64,66,71,71,53,120,58,63,53,76,131,84,80,118,86,82,91,66,65,71,76,90,79,78,74,78,89,72,93,96,73,72,98,54,67,87,88,61,63,62,108,104,102,108,81", ++ "endOffsets": "221,298,410,536,617,684,787,862,925,1017,1082,1149,1221,1293,1347,1468,1527,1591,1645,1722,1854,1939,2020,2139,2226,2309,2401,2468,2534,2606,2683,2774,2854,2933,3008,3087,3177,3250,3344,3441,3515,3588,3687,3742,3810,3898,3987,4049,4113,4176,4285,4390,4493,4602,4684" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3039,3151,3277,3358,3425,3528,3603,3666,3758,3823,3890,3962,4034,4088,4209,4268,4332,4386,4463,4595,4680,4761,4880,4967,5050,5142,5209,5275,5347,5424,5515,5595,5674,5749,5828,5918,5991,6085,6182,6256,6329,6428,6483,6551,6639,6728,6790,6854,6917,7026,7131,7234,7343", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,111,125,80,66,102,74,62,91,64,66,71,71,53,120,58,63,53,76,131,84,80,118,86,82,91,66,65,71,76,90,79,78,74,78,89,72,93,96,73,72,98,54,67,87,88,61,63,62,108,104,102,108,81", ++ "endOffsets": "271,3034,3146,3272,3353,3420,3523,3598,3661,3753,3818,3885,3957,4029,4083,4204,4263,4327,4381,4458,4590,4675,4756,4875,4962,5045,5137,5204,5270,5342,5419,5510,5590,5669,5744,5823,5913,5986,6080,6177,6251,6324,6423,6478,6546,6634,6723,6785,6849,6912,7021,7126,7229,7338,7420" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-en-rIN_values-en-rIN.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-cs_values-cs.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7452", ++ "endColumns": "100", ++ "endOffsets": "7548" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,323,400,492,618,699,764,863,939,1000,1089,1156,1210,1278,1338,1392,1509,1569,1631,1685,1757,1879,1963,2055,2162,2240,2322,2410,2477,2543,2615,2692,2776,2848,2925,2999,3070,3158,3229,3322,3417,3491,3565,3661,3713,3780,3866,3954,4016,4080,4143,4253,4349,4448,4546", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,76,91,125,80,64,98,75,60,88,66,53,67,59,53,116,59,61,53,71,121,83,91,106,77,81,87,66,65,71,76,83,71,76,73,70,87,70,92,94,73,73,95,51,66,85,87,61,63,62,109,95,98,97,78", ++ "endOffsets": "318,395,487,613,694,759,858,934,995,1084,1151,1205,1273,1333,1387,1504,1564,1626,1680,1752,1874,1958,2050,2157,2235,2317,2405,2472,2538,2610,2687,2771,2843,2920,2994,3065,3153,3224,3317,3412,3486,3560,3656,3708,3775,3861,3949,4011,4075,4138,4248,4344,4443,4541,4620" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3067,3144,3236,3362,3443,3508,3607,3683,3744,3833,3900,3954,4022,4082,4136,4253,4313,4375,4429,4501,4623,4707,4799,4906,4984,5066,5154,5221,5287,5359,5436,5520,5592,5669,5743,5814,5902,5973,6066,6161,6235,6309,6405,6457,6524,6610,6698,6760,6824,6887,6997,7093,7192,7290", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,91,125,80,64,98,75,60,88,66,53,67,59,53,116,59,61,53,71,121,83,91,106,77,81,87,66,65,71,76,83,71,76,73,70,87,70,92,94,73,73,95,51,66,85,87,61,63,62,109,95,98,97,78", ++ "endOffsets": "368,3139,3231,3357,3438,3503,3602,3678,3739,3828,3895,3949,4017,4077,4131,4248,4308,4370,4424,4496,4618,4702,4794,4901,4979,5061,5149,5216,5282,5354,5431,5515,5587,5664,5738,5809,5897,5968,6061,6156,6230,6304,6400,6452,6519,6605,6693,6755,6819,6882,6992,7088,7187,7285,7364" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,2799", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,2877" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "373,480,582,692,778,883,1000,1078,1154,1245,1338,1433,1527,1621,1714,1809,1906,1997,2088,2172,2276,2388,2487,2593,2704,2806,2969,7369", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "475,577,687,773,878,995,1073,1149,1240,1333,1428,1522,1616,1709,1804,1901,1992,2083,2167,2271,2383,2482,2588,2699,2801,2964,3062,7447" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-b+es+419_values-b+es+419.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-b+es+419/values-b+es+419.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,319,421,549,630,695,790,860,923,1016,1088,1151,1225,1289,1346,1464,1522,1584,1641,1721,1855,1944,2025,2136,2217,2297,2387,2454,2520,2596,2678,2766,2839,2916,2986,3063,3152,3226,3320,3422,3494,3575,3679,3732,3799,3892,3981,4043,4107,4170,4281,4378,4480,4578", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "228,314,416,544,625,690,785,855,918,1011,1083,1146,1220,1284,1341,1459,1517,1579,1636,1716,1850,1939,2020,2131,2212,2292,2382,2449,2515,2591,2673,2761,2834,2911,2981,3058,3147,3221,3315,3417,3489,3570,3674,3727,3794,3887,3976,4038,4102,4165,4276,4373,4475,4573,4656" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-te_values-te.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,222,334,445,535,640,759,837,913,1004,1097,1192,1286,1386,1479,1574,1669,1760,1851,1934,2048,2150,2249,2364,2467,2582,2744,2847", ++ "endColumns": "116,111,110,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,82,113,101,98,114,102,114,161,102,82", ++ "endOffsets": "217,329,440,530,635,754,832,908,999,1092,1187,1281,1381,1474,1569,1664,1755,1846,1929,2043,2145,2244,2359,2462,2577,2739,2842,2925" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "281,398,510,621,711,816,935,1013,1089,1180,1273,1368,1462,1562,1655,1750,1845,1936,2027,2110,2224,2326,2425,2540,2643,2758,2920,7460", ++ "endColumns": "116,111,110,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,82,113,101,98,114,102,114,161,102,82", ++ "endOffsets": "393,505,616,706,811,930,1008,1084,1175,1268,1363,1457,1557,1650,1745,1840,1931,2022,2105,2219,2321,2420,2535,2638,2753,2915,3018,7538" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,231,317,421,537,626,692,786,853,915,1008,1076,1139,1213,1278,1332,1453,1510,1572,1626,1705,1833,1921,2013,2128,2208,2290,2378,2445,2511,2586,2664,2754,2827,2903,2984,3053,3158,3235,3326,3419,3493,3570,3662,3717,3783,3867,3953,4016,4081,4145,4255,4367,4466,4585", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,103,115,88,65,93,66,61,92,67,62,73,64,53,120,56,61,53,78,127,87,91,114,79,81,87,66,65,74,77,89,72,75,80,68,104,76,90,92,73,76,91,54,65,83,85,62,64,63,109,111,98,118,82", ++ "endOffsets": "226,312,416,532,621,687,781,848,910,1003,1071,1134,1208,1273,1327,1448,1505,1567,1621,1700,1828,1916,2008,2123,2203,2285,2373,2440,2506,2581,2659,2749,2822,2898,2979,3048,3153,3230,3321,3414,3488,3565,3657,3712,3778,3862,3948,4011,4076,4140,4250,4362,4461,4580,4663" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3023,3109,3213,3329,3418,3484,3578,3645,3707,3800,3868,3931,4005,4070,4124,4245,4302,4364,4418,4497,4625,4713,4805,4920,5000,5082,5170,5237,5303,5378,5456,5546,5619,5695,5776,5845,5950,6027,6118,6211,6285,6362,6454,6509,6575,6659,6745,6808,6873,6937,7047,7159,7258,7377", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,103,115,88,65,93,66,61,92,67,62,73,64,53,120,56,61,53,78,127,87,91,114,79,81,87,66,65,74,77,89,72,75,80,68,104,76,90,92,73,76,91,54,65,83,85,62,64,63,109,111,98,118,82", ++ "endOffsets": "276,3104,3208,3324,3413,3479,3573,3640,3702,3795,3863,3926,4000,4065,4119,4240,4297,4359,4413,4492,4620,4708,4800,4915,4995,5077,5165,5232,5298,5373,5451,5541,5614,5690,5771,5840,5945,6022,6113,6206,6280,6357,6449,6504,6570,6654,6740,6803,6868,6932,7042,7154,7253,7372,7455" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7543", ++ "endColumns": "100", ++ "endOffsets": "7639" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-small-v4_values-small-v4.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-small-v4/values-small-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,128,198,270", ++ "endColumns": "72,69,71,69", ++ "endOffsets": "123,193,265,335" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-kk_values-kk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,2796", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,2873" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,491,601,686,792,911,991,1068,1159,1252,1347,1441,1541,1634,1729,1826,1917,2008,2089,2194,2297,2395,2502,2608,2708,2874,7266", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "381,486,596,681,787,906,986,1063,1154,1247,1342,1436,1536,1629,1724,1821,1912,2003,2084,2189,2292,2390,2497,2603,2703,2869,2964,7343" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,307,399,511,593,657,752,822,885,992,1059,1120,1187,1249,1303,1417,1476,1537,1591,1666,1792,1880,1969,2081,2153,2226,2315,2382,2448,2519,2596,2682,2754,2830,2911,2981,3068,3140,3231,3324,3398,3473,3565,3617,3683,3767,3853,3915,3979,4042,4146,4246,4340,4441", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,91,111,81,63,94,69,62,106,66,60,66,61,53,113,58,60,53,74,125,87,88,111,71,72,88,66,65,70,76,85,71,75,80,69,86,71,90,92,73,74,91,51,65,83,85,61,63,62,103,99,93,100,83", ++ "endOffsets": "223,302,394,506,588,652,747,817,880,987,1054,1115,1182,1244,1298,1412,1471,1532,1586,1661,1787,1875,1964,2076,2148,2221,2310,2377,2443,2514,2591,2677,2749,2825,2906,2976,3063,3135,3226,3319,3393,3468,3560,3612,3678,3762,3848,3910,3974,4037,4141,4241,4335,4436,4520" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2969,3048,3140,3252,3334,3398,3493,3563,3626,3733,3800,3861,3928,3990,4044,4158,4217,4278,4332,4407,4533,4621,4710,4822,4894,4967,5056,5123,5189,5260,5337,5423,5495,5571,5652,5722,5809,5881,5972,6065,6139,6214,6306,6358,6424,6508,6594,6656,6720,6783,6887,6987,7081,7182", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,91,111,81,63,94,69,62,106,66,60,66,61,53,113,58,60,53,74,125,87,88,111,71,72,88,66,65,70,76,85,71,75,80,69,86,71,90,92,73,74,91,51,65,83,85,61,63,62,103,99,93,100,83", ++ "endOffsets": "273,3043,3135,3247,3329,3393,3488,3558,3621,3728,3795,3856,3923,3985,4039,4153,4212,4273,4327,4402,4528,4616,4705,4817,4889,4962,5051,5118,5184,5255,5332,5418,5490,5566,5647,5717,5804,5876,5967,6060,6134,6209,6301,6353,6419,6503,6589,6651,6715,6778,6882,6982,7076,7177,7261" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7348", ++ "endColumns": "100", ++ "endOffsets": "7444" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-mk_values-mk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,2820", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,2900" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,488,596,682,790,909,993,1074,1165,1258,1354,1448,1548,1641,1736,1832,1923,2014,2101,2207,2313,2414,2521,2633,2737,2893,7379", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "379,483,591,677,785,904,988,1069,1160,1253,1349,1443,1543,1636,1731,1827,1918,2009,2096,2202,2308,2409,2516,2628,2732,2888,2986,7459" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,308,404,528,615,681,772,842,906,1009,1074,1134,1202,1265,1320,1448,1505,1567,1622,1697,1837,1924,2007,2110,2192,2277,2364,2431,2497,2570,2646,2735,2808,2884,2959,3029,3117,3192,3284,3376,3450,3524,3616,3669,3736,3819,3906,3968,4032,4095,4209,4316,4418,4529", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,95,123,86,65,90,69,63,102,64,59,67,62,54,127,56,61,54,74,139,86,82,102,81,84,86,66,65,72,75,88,72,75,74,69,87,74,91,91,73,73,91,52,66,82,86,61,63,62,113,106,101,110,84", ++ "endOffsets": "221,303,399,523,610,676,767,837,901,1004,1069,1129,1197,1260,1315,1443,1500,1562,1617,1692,1832,1919,2002,2105,2187,2272,2359,2426,2492,2565,2641,2730,2803,2879,2954,3024,3112,3187,3279,3371,3445,3519,3611,3664,3731,3814,3901,3963,4027,4090,4204,4311,4413,4524,4609" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2991,3073,3169,3293,3380,3446,3537,3607,3671,3774,3839,3899,3967,4030,4085,4213,4270,4332,4387,4462,4602,4689,4772,4875,4957,5042,5129,5196,5262,5335,5411,5500,5573,5649,5724,5794,5882,5957,6049,6141,6215,6289,6381,6434,6501,6584,6671,6733,6797,6860,6974,7081,7183,7294", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,95,123,86,65,90,69,63,102,64,59,67,62,54,127,56,61,54,74,139,86,82,102,81,84,86,66,65,72,75,88,72,75,74,69,87,74,91,91,73,73,91,52,66,82,86,61,63,62,113,106,101,110,84", ++ "endOffsets": "271,3068,3164,3288,3375,3441,3532,3602,3666,3769,3834,3894,3962,4025,4080,4208,4265,4327,4382,4457,4597,4684,4767,4870,4952,5037,5124,5191,5257,5330,5406,5495,5568,5644,5719,5789,5877,5952,6044,6136,6210,6284,6376,6429,6496,6579,6666,6728,6792,6855,6969,7076,7178,7289,7374" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7464", ++ "endColumns": "100", ++ "endOffsets": "7560" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w600dp-land-v13/values-w600dp-land-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "54", ++ "endOffsets": "105" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-pt-rBR_values-pt-rBR.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,398,504,611,700,801,920,1005,1085,1176,1269,1364,1458,1558,1651,1746,1841,1932,2023,2108,2215,2326,2428,2536,2644,2754,2916,7436", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "393,499,606,695,796,915,1000,1080,1171,1264,1359,1453,1553,1646,1741,1836,1927,2018,2103,2210,2321,2423,2531,2639,2749,2911,3011,7517" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7522", ++ "endColumns": "100", ++ "endOffsets": "7618" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,312,413,533,614,678,770,849,909,999,1070,1133,1208,1272,1326,1453,1511,1573,1627,1706,1847,1934,2016,2125,2208,2292,2379,2446,2512,2586,2666,2753,2826,2903,2972,3046,3134,3211,3304,3400,3474,3554,3651,3703,3769,3856,3944,4006,4070,4133,4245,4354,4461,4571", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,100,119,80,63,91,78,59,89,70,62,74,63,53,126,57,61,53,78,140,86,81,108,82,83,86,66,65,73,79,86,72,76,68,73,87,76,92,95,73,79,96,51,65,86,87,61,63,62,111,108,106,109,76", ++ "endOffsets": "223,307,408,528,609,673,765,844,904,994,1065,1128,1203,1267,1321,1448,1506,1568,1622,1701,1842,1929,2011,2120,2203,2287,2374,2441,2507,2581,2661,2748,2821,2898,2967,3041,3129,3206,3299,3395,3469,3549,3646,3698,3764,3851,3939,4001,4065,4128,4240,4349,4456,4566,4643" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3016,3100,3201,3321,3402,3466,3558,3637,3697,3787,3858,3921,3996,4060,4114,4241,4299,4361,4415,4494,4635,4722,4804,4913,4996,5080,5167,5234,5300,5374,5454,5541,5614,5691,5760,5834,5922,5999,6092,6188,6262,6342,6439,6491,6557,6644,6732,6794,6858,6921,7033,7142,7249,7359", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,100,119,80,63,91,78,59,89,70,62,74,63,53,126,57,61,53,78,140,86,81,108,82,83,86,66,65,73,79,86,72,76,68,73,87,76,92,95,73,79,96,51,65,86,87,61,63,62,111,108,106,109,76", ++ "endOffsets": "273,3095,3196,3316,3397,3461,3553,3632,3692,3782,3853,3916,3991,4055,4109,4236,4294,4356,4410,4489,4630,4717,4799,4908,4991,5075,5162,5229,5295,5369,5449,5536,5609,5686,5755,5829,5917,5994,6087,6183,6257,6337,6434,6486,6552,6639,6727,6789,6853,6916,7028,7137,7244,7354,7431" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h320dp-port-v13/values-h320dp-port-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "75", ++ "endOffsets": "126" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-sw600dp-v13_values-sw600dp-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,10,11,12,13,14", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,115,185,256,328,386,444,553,617,673,732,795", ++ "endLines": "2,3,4,5,6,7,9,10,11,12,13,17", ++ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10", ++ "endOffsets": "110,180,251,323,381,439,548,612,668,727,790,962" ++ }, ++ "to": { ++ "startLines": "10,11,12,13,14,15,16,18,19,20,21,22", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1229,1288,1351", ++ "endLines": "10,11,12,13,14,15,17,18,19,20,21,25", ++ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10", ++ "endOffsets": "666,736,807,879,937,995,1104,1168,1224,1283,1346,1518" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,193,263,337,413,472,543", ++ "endColumns": "68,68,69,73,75,58,70,67", ++ "endOffsets": "119,188,258,332,408,467,538,606" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ky_values-ky.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,2817", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,2894" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,381,490,602,687,792,909,988,1066,1157,1250,1345,1439,1539,1632,1727,1822,1913,2004,2085,2191,2296,2394,2501,2604,2719,2880,7321", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "376,485,597,682,787,904,983,1061,1152,1245,1340,1434,1534,1627,1722,1817,1908,1999,2080,2186,2291,2389,2496,2599,2714,2875,2977,7398" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,305,406,547,631,695,789,859,920,1007,1071,1130,1204,1266,1320,1437,1495,1556,1610,1684,1806,1890,1986,2088,2166,2244,2333,2400,2466,2535,2612,2699,2771,2847,2929,3002,3087,3166,3256,3348,3422,3507,3597,3649,3714,3797,3882,3944,4008,4071,4188,4282,4382,4477", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,100,140,83,63,93,69,60,86,63,58,73,61,53,116,57,60,53,73,121,83,95,101,77,77,88,66,65,68,76,86,71,75,81,72,84,78,89,91,73,84,89,51,64,82,84,61,63,62,116,93,99,94,81", ++ "endOffsets": "215,300,401,542,626,690,784,854,915,1002,1066,1125,1199,1261,1315,1432,1490,1551,1605,1679,1801,1885,1981,2083,2161,2239,2328,2395,2461,2530,2607,2694,2766,2842,2924,2997,3082,3161,3251,3343,3417,3502,3592,3644,3709,3792,3877,3939,4003,4066,4183,4277,4377,4472,4554" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2982,3067,3168,3309,3393,3457,3551,3621,3682,3769,3833,3892,3966,4028,4082,4199,4257,4318,4372,4446,4568,4652,4748,4850,4928,5006,5095,5162,5228,5297,5374,5461,5533,5609,5691,5764,5849,5928,6018,6110,6184,6269,6359,6411,6476,6559,6644,6706,6770,6833,6950,7044,7144,7239", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,100,140,83,63,93,69,60,86,63,58,73,61,53,116,57,60,53,73,121,83,95,101,77,77,88,66,65,68,76,86,71,75,81,72,84,78,89,91,73,84,89,51,64,82,84,61,63,62,116,93,99,94,81", ++ "endOffsets": "265,3062,3163,3304,3388,3452,3546,3616,3677,3764,3828,3887,3961,4023,4077,4194,4252,4313,4367,4441,4563,4647,4743,4845,4923,5001,5090,5157,5223,5292,5369,5456,5528,5604,5686,5759,5844,5923,6013,6105,6179,6264,6354,6406,6471,6554,6639,6701,6765,6828,6945,7039,7139,7234,7316" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7403", ++ "endColumns": "100", ++ "endOffsets": "7499" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ka_values-ka.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,312,411,536,624,691,788,857,920,1007,1073,1133,1202,1263,1317,1432,1491,1551,1605,1677,1807,1895,1979,2087,2165,2241,2335,2402,2468,2541,2619,2705,2778,2856,2934,3009,3099,3174,3268,3366,3440,3517,3617,3670,3738,3827,3916,3978,4043,4106,4213,4311,4411,4510", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,98,124,87,66,96,68,62,86,65,59,68,60,53,114,58,59,53,71,129,87,83,107,77,75,93,66,65,72,77,85,72,77,77,74,89,74,93,97,73,76,99,52,67,88,88,61,64,62,106,97,99,98,79", ++ "endOffsets": "223,307,406,531,619,686,783,852,915,1002,1068,1128,1197,1258,1312,1427,1486,1546,1600,1672,1802,1890,1974,2082,2160,2236,2330,2397,2463,2536,2614,2700,2773,2851,2929,3004,3094,3169,3263,3361,3435,3512,3612,3665,3733,3822,3911,3973,4038,4101,4208,4306,4406,4505,4585" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2981,3065,3164,3289,3377,3444,3541,3610,3673,3760,3826,3886,3955,4016,4070,4185,4244,4304,4358,4430,4560,4648,4732,4840,4918,4994,5088,5155,5221,5294,5372,5458,5531,5609,5687,5762,5852,5927,6021,6119,6193,6270,6370,6423,6491,6580,6669,6731,6796,6859,6966,7064,7164,7263", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,98,124,87,66,96,68,62,86,65,59,68,60,53,114,58,59,53,71,129,87,83,107,77,75,93,66,65,72,77,85,72,77,77,74,89,74,93,97,73,76,99,52,67,88,88,61,64,62,106,97,99,98,79", ++ "endOffsets": "273,3060,3159,3284,3372,3439,3536,3605,3668,3755,3821,3881,3950,4011,4065,4180,4239,4299,4353,4425,4555,4643,4727,4835,4913,4989,5083,5150,5216,5289,5367,5453,5526,5604,5682,5757,5847,5922,6016,6114,6188,6265,6365,6418,6486,6575,6664,6726,6791,6854,6961,7059,7159,7258,7338" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,2808", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,2885" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,489,600,686,791,904,987,1066,1157,1250,1345,1439,1539,1632,1727,1822,1913,2004,2085,2198,2304,2402,2515,2620,2724,2882,7343", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "381,484,595,681,786,899,982,1061,1152,1245,1340,1434,1534,1627,1722,1817,1908,1999,2080,2193,2299,2397,2510,2615,2719,2877,2976,7420" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7425", ++ "endColumns": "100", ++ "endOffsets": "7521" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-sq_values-sq.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7455", ++ "endColumns": "100", ++ "endOffsets": "7551" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,2801", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,2878" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "272,386,486,598,684,790,913,995,1073,1164,1257,1352,1446,1547,1640,1735,1832,1923,2016,2097,2203,2307,2405,2511,2615,2717,2871,7373", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "381,481,593,679,785,908,990,1068,1159,1252,1347,1441,1542,1635,1730,1827,1918,2011,2092,2198,2302,2400,2506,2610,2712,2866,2963,7450" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,222,308,409,535,618,683,783,853,912,1010,1074,1133,1205,1268,1322,1439,1496,1558,1612,1684,1819,1902,1980,2091,2175,2257,2347,2414,2480,2551,2630,2718,2794,2872,2944,3017,3106,3178,3272,3371,3445,3517,3618,3668,3734,3824,3913,3975,4039,4102,4218,4326,4435,4544", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,100,125,82,64,99,69,58,97,63,58,71,62,53,116,56,61,53,71,134,82,77,110,83,81,89,66,65,70,78,87,75,77,71,72,88,71,93,98,73,71,100,49,65,89,88,61,63,62,115,107,108,108,82", ++ "endOffsets": "217,303,404,530,613,678,778,848,907,1005,1069,1128,1200,1263,1317,1434,1491,1553,1607,1679,1814,1897,1975,2086,2170,2252,2342,2409,2475,2546,2625,2713,2789,2867,2939,3012,3101,3173,3267,3366,3440,3512,3613,3663,3729,3819,3908,3970,4034,4097,4213,4321,4430,4539,4622" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2968,3054,3155,3281,3364,3429,3529,3599,3658,3756,3820,3879,3951,4014,4068,4185,4242,4304,4358,4430,4565,4648,4726,4837,4921,5003,5093,5160,5226,5297,5376,5464,5540,5618,5690,5763,5852,5924,6018,6117,6191,6263,6364,6414,6480,6570,6659,6721,6785,6848,6964,7072,7181,7290", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,100,125,82,64,99,69,58,97,63,58,71,62,53,116,56,61,53,71,134,82,77,110,83,81,89,66,65,70,78,87,75,77,71,72,88,71,93,98,73,71,100,49,65,89,88,61,63,62,115,107,108,108,82", ++ "endOffsets": "267,3049,3150,3276,3359,3424,3524,3594,3653,3751,3815,3874,3946,4009,4063,4180,4237,4299,4353,4425,4560,4643,4721,4832,4916,4998,5088,5155,5221,5292,5371,5459,5535,5613,5685,5758,5847,5919,6013,6112,6186,6258,6359,6409,6475,6565,6654,6716,6780,6843,6959,7067,7176,7285,7368" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-en-rCA_values-en-rCA.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-it_values-it.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7483", ++ "endColumns": "100", ++ "endOffsets": "7579" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,300,399,539,622,688,783,868,930,1018,1087,1150,1223,1286,1340,1461,1518,1580,1634,1711,1848,1933,2015,2120,2201,2282,2373,2440,2506,2579,2659,2750,2825,2902,2971,3048,3136,3225,3318,3411,3485,3565,3659,3710,3776,3860,3948,4010,4074,4137,4252,4362,4468,4577", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,98,139,82,65,94,84,61,87,68,62,72,62,53,120,56,61,53,76,136,84,81,104,80,80,90,66,65,72,79,90,74,76,68,76,87,88,92,92,73,79,93,50,65,83,87,61,63,62,114,109,105,108,79", ++ "endOffsets": "218,295,394,534,617,683,778,863,925,1013,1082,1145,1218,1281,1335,1456,1513,1575,1629,1706,1843,1928,2010,2115,2196,2277,2368,2435,2501,2574,2654,2745,2820,2897,2966,3043,3131,3220,3313,3406,3480,3560,3654,3705,3771,3855,3943,4005,4069,4132,4247,4357,4463,4572,4652" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2967,3044,3143,3283,3366,3432,3527,3612,3674,3762,3831,3894,3967,4030,4084,4205,4262,4324,4378,4455,4592,4677,4759,4864,4945,5026,5117,5184,5250,5323,5403,5494,5569,5646,5715,5792,5880,5969,6062,6155,6229,6309,6403,6454,6520,6604,6692,6754,6818,6881,6996,7106,7212,7321", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,98,139,82,65,94,84,61,87,68,62,72,62,53,120,56,61,53,76,136,84,81,104,80,80,90,66,65,72,79,90,74,76,68,76,87,88,92,92,73,79,93,50,65,83,87,61,63,62,114,109,105,108,79", ++ "endOffsets": "268,3039,3138,3278,3361,3427,3522,3607,3669,3757,3826,3889,3962,4025,4079,4200,4257,4319,4373,4450,4587,4672,4754,4859,4940,5021,5112,5179,5245,5318,5398,5489,5564,5641,5710,5787,5875,5964,6057,6150,6224,6304,6398,6449,6515,6599,6687,6749,6813,6876,6991,7101,7207,7316,7396" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,2799", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,378,481,590,674,779,898,976,1051,1143,1237,1330,1424,1525,1619,1716,1811,1903,1995,2076,2182,2289,2387,2491,2597,2704,2867,7401", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "373,476,585,669,774,893,971,1046,1138,1232,1325,1419,1520,1614,1711,1806,1898,1990,2071,2177,2284,2382,2486,2592,2699,2862,2962,7478" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-es-rUS_values-es-rUS.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,334,442,527,629,745,830,910,1001,1094,1189,1283,1382,1475,1574,1670,1761,1852,1934,2041,2140,2239,2347,2455,2562,2721,2821", ++ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", ++ "endOffsets": "220,329,437,522,624,740,825,905,996,1089,1184,1278,1377,1470,1569,1665,1756,1847,1929,2036,2135,2234,2342,2450,2557,2716,2816,2899" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "283,403,512,620,705,807,923,1008,1088,1179,1272,1367,1461,1560,1653,1752,1848,1939,2030,2112,2219,2318,2417,2525,2633,2740,2899,7427", ++ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", ++ "endOffsets": "398,507,615,700,802,918,1003,1083,1174,1267,1362,1456,1555,1648,1747,1843,1934,2025,2107,2214,2313,2412,2520,2628,2735,2894,2994,7505" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7510", ++ "endColumns": "100", ++ "endOffsets": "7606" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,319,421,549,630,695,790,860,923,1016,1088,1151,1225,1289,1346,1464,1522,1584,1641,1721,1855,1944,2025,2136,2217,2297,2387,2454,2520,2596,2678,2766,2839,2916,2986,3063,3152,3226,3320,3422,3494,3575,3679,3732,3799,3892,3981,4043,4107,4170,4281,4378,4480,4578", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "228,314,416,544,625,690,785,855,918,1011,1083,1146,1220,1284,1341,1459,1517,1579,1636,1716,1850,1939,2020,2131,2212,2292,2382,2449,2515,2591,2673,2761,2834,2911,2981,3058,3147,3221,3315,3417,3489,3570,3674,3727,3794,3887,3976,4038,4102,4165,4276,4373,4475,4573,4656" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2999,3085,3187,3315,3396,3461,3556,3626,3689,3782,3854,3917,3991,4055,4112,4230,4288,4350,4407,4487,4621,4710,4791,4902,4983,5063,5153,5220,5286,5362,5444,5532,5605,5682,5752,5829,5918,5992,6086,6188,6260,6341,6445,6498,6565,6658,6747,6809,6873,6936,7047,7144,7246,7344", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "278,3080,3182,3310,3391,3456,3551,3621,3684,3777,3849,3912,3986,4050,4107,4225,4283,4345,4402,4482,4616,4705,4786,4897,4978,5058,5148,5215,5281,5357,5439,5527,5600,5677,5747,5824,5913,5987,6081,6183,6255,6336,6440,6493,6560,6653,6742,6804,6868,6931,7042,7139,7241,7339,7422" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-nl_values-nl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7451", ++ "endColumns": "100", ++ "endOffsets": "7547" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,328,435,520,628,748,826,902,994,1088,1183,1277,1377,1471,1567,1662,1754,1846,1928,2039,2142,2241,2356,2470,2573,2728,2831", ++ "endColumns": "117,104,106,84,107,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "218,323,430,515,623,743,821,897,989,1083,1178,1272,1372,1466,1562,1657,1749,1841,1923,2034,2137,2236,2351,2465,2568,2723,2826,2909" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,392,497,604,689,797,917,995,1071,1163,1257,1352,1446,1546,1640,1736,1831,1923,2015,2097,2208,2311,2410,2525,2639,2742,2897,7368", ++ "endColumns": "117,104,106,84,107,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "387,492,599,684,792,912,990,1066,1158,1252,1347,1441,1541,1635,1731,1826,1918,2010,2092,2203,2306,2405,2520,2634,2737,2892,2995,7446" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,301,398,520,601,665,758,837,900,993,1059,1117,1190,1254,1310,1432,1489,1551,1607,1683,1817,1902,1988,2096,2177,2256,2346,2413,2479,2557,2640,2728,2803,2882,2955,3026,3120,3198,3287,3377,3451,3532,3619,3672,3739,3820,3904,3966,4030,4093,4201,4302,4404,4507", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,96,121,80,63,92,78,62,92,65,57,72,63,55,121,56,61,55,75,133,84,85,107,80,78,89,66,65,77,82,87,74,78,72,70,93,77,88,89,73,80,86,52,66,80,83,61,63,62,107,100,101,102,84", ++ "endOffsets": "219,296,393,515,596,660,753,832,895,988,1054,1112,1185,1249,1305,1427,1484,1546,1602,1678,1812,1897,1983,2091,2172,2251,2341,2408,2474,2552,2635,2723,2798,2877,2950,3021,3115,3193,3282,3372,3446,3527,3614,3667,3734,3815,3899,3961,4025,4088,4196,4297,4399,4502,4587" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3000,3077,3174,3296,3377,3441,3534,3613,3676,3769,3835,3893,3966,4030,4086,4208,4265,4327,4383,4459,4593,4678,4764,4872,4953,5032,5122,5189,5255,5333,5416,5504,5579,5658,5731,5802,5896,5974,6063,6153,6227,6308,6395,6448,6515,6596,6680,6742,6806,6869,6977,7078,7180,7283", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,96,121,80,63,92,78,62,92,65,57,72,63,55,121,56,61,55,75,133,84,85,107,80,78,89,66,65,77,82,87,74,78,72,70,93,77,88,89,73,80,86,52,66,80,83,61,63,62,107,100,101,102,84", ++ "endOffsets": "269,3072,3169,3291,3372,3436,3529,3608,3671,3764,3830,3888,3961,4025,4081,4203,4260,4322,4378,4454,4588,4673,4759,4867,4948,5027,5117,5184,5250,5328,5411,5499,5574,5653,5726,5797,5891,5969,6058,6148,6222,6303,6390,6443,6510,6591,6675,6737,6801,6864,6972,7073,7175,7278,7363" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-watch-v21_values-watch-v21.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-watch-v21/values-watch-v21.xml", ++ "from": { ++ "startLines": "2,6,10", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,271,499", ++ "endLines": "5,9,13", ++ "endColumns": "12,12,12", ++ "endOffsets": "266,494,724" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-sv_values-sv.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7280", ++ "endColumns": "100", ++ "endOffsets": "7376" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,221,302,400,522,601,664,756,820,880,972,1035,1097,1164,1228,1282,1387,1446,1507,1561,1630,1749,1832,1916,2022,2101,2185,2271,2338,2404,2473,2547,2636,2708,2785,2856,2930,3021,3100,3187,3275,3347,3421,3506,3557,3624,3705,3789,3851,3915,3978,4085,4192,4291,4399", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,97,121,78,62,91,63,59,91,62,61,66,63,53,104,58,60,53,68,118,82,83,105,78,83,85,66,65,68,73,88,71,76,70,73,90,78,86,87,71,73,84,50,66,80,83,61,63,62,106,106,98,107,77", ++ "endOffsets": "216,297,395,517,596,659,751,815,875,967,1030,1092,1159,1223,1277,1382,1441,1502,1556,1625,1744,1827,1911,2017,2096,2180,2266,2333,2399,2468,2542,2631,2703,2780,2851,2925,3016,3095,3182,3270,3342,3416,3501,3552,3619,3700,3784,3846,3910,3973,4080,4187,4286,4394,4472" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2944,3025,3123,3245,3324,3387,3479,3543,3603,3695,3758,3820,3887,3951,4005,4110,4169,4230,4284,4353,4472,4555,4639,4745,4824,4908,4994,5061,5127,5196,5270,5359,5431,5508,5579,5653,5744,5823,5910,5998,6070,6144,6229,6280,6347,6428,6512,6574,6638,6701,6808,6915,7014,7122", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,97,121,78,62,91,63,59,91,62,61,66,63,53,104,58,60,53,68,118,82,83,105,78,83,85,66,65,68,73,88,71,76,70,73,90,78,86,87,71,73,84,50,66,80,83,61,63,62,106,106,98,107,77", ++ "endOffsets": "266,3020,3118,3240,3319,3382,3474,3538,3598,3690,3753,3815,3882,3946,4000,4105,4164,4225,4279,4348,4467,4550,4634,4740,4819,4903,4989,5056,5122,5191,5265,5354,5426,5503,5574,5648,5739,5818,5905,5993,6065,6139,6224,6275,6342,6423,6507,6569,6633,6696,6803,6910,7009,7117,7195" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,2778", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,2853" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "271,374,477,588,672,774,887,964,1039,1132,1227,1322,1416,1518,1613,1710,1808,1904,1997,2077,2183,2282,2378,2483,2586,2688,2842,7200", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "369,472,583,667,769,882,959,1034,1127,1222,1317,1411,1513,1608,1705,1803,1899,1992,2072,2178,2277,2373,2478,2581,2683,2837,2939,7275" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-tr_values-tr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,2797", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,384,483,595,680,786,906,986,1061,1152,1245,1337,1431,1531,1624,1726,1821,1912,2003,2082,2189,2293,2389,2496,2599,2708,2864,7219", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "379,478,590,675,781,901,981,1056,1147,1240,1332,1426,1526,1619,1721,1816,1907,1998,2077,2184,2288,2384,2491,2594,2703,2859,2957,7294" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,297,393,505,587,651,742,819,880,971,1034,1093,1162,1225,1279,1387,1445,1507,1561,1634,1755,1839,1930,2040,2117,2193,2280,2347,2413,2483,2560,2643,2714,2789,2867,2938,3023,3112,3207,3300,3372,3444,3540,3592,3659,3743,3833,3895,3959,4022,4116,4212,4301,4398", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,95,111,81,63,90,76,60,90,62,58,68,62,53,107,57,61,53,72,120,83,90,109,76,75,86,66,65,69,76,82,70,74,77,70,84,88,94,92,71,71,95,51,66,83,89,61,63,62,93,95,88,96,78", ++ "endOffsets": "215,292,388,500,582,646,737,814,875,966,1029,1088,1157,1220,1274,1382,1440,1502,1556,1629,1750,1834,1925,2035,2112,2188,2275,2342,2408,2478,2555,2638,2709,2784,2862,2933,3018,3107,3202,3295,3367,3439,3535,3587,3654,3738,3828,3890,3954,4017,4111,4207,4296,4393,4472" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3039,3135,3247,3329,3393,3484,3561,3622,3713,3776,3835,3904,3967,4021,4129,4187,4249,4303,4376,4497,4581,4672,4782,4859,4935,5022,5089,5155,5225,5302,5385,5456,5531,5609,5680,5765,5854,5949,6042,6114,6186,6282,6334,6401,6485,6575,6637,6701,6764,6858,6954,7043,7140", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,95,111,81,63,90,76,60,90,62,58,68,62,53,107,57,61,53,72,120,83,90,109,76,75,86,66,65,69,76,82,70,74,77,70,84,88,94,92,71,71,95,51,66,83,89,61,63,62,93,95,88,96,78", ++ "endOffsets": "265,3034,3130,3242,3324,3388,3479,3556,3617,3708,3771,3830,3899,3962,4016,4124,4182,4244,4298,4371,4492,4576,4667,4777,4854,4930,5017,5084,5150,5220,5297,5380,5451,5526,5604,5675,5760,5849,5944,6037,6109,6181,6277,6329,6396,6480,6570,6632,6696,6759,6853,6949,7038,7135,7214" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7299", ++ "endColumns": "100", ++ "endOffsets": "7395" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ml_values-ml.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,313,407,517,609,674,773,839,899,1001,1077,1135,1213,1278,1332,1449,1513,1577,1631,1711,1845,1931,2020,2126,2211,2299,2394,2461,2527,2606,2688,2779,2855,2932,3009,3080,3187,3267,3364,3464,3538,3619,3724,3782,3849,3940,4032,4094,4158,4221,4324,4440,4545,4661", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,93,109,91,64,98,65,59,101,75,57,77,64,53,116,63,63,53,79,133,85,88,105,84,87,94,66,65,78,81,90,75,76,76,70,106,79,96,99,73,80,104,57,66,90,91,61,63,62,102,115,104,115,83", ++ "endOffsets": "221,308,402,512,604,669,768,834,894,996,1072,1130,1208,1273,1327,1444,1508,1572,1626,1706,1840,1926,2015,2121,2206,2294,2389,2456,2522,2601,2683,2774,2850,2927,3004,3075,3182,3262,3359,3459,3533,3614,3719,3777,3844,3935,4027,4089,4153,4216,4319,4435,4540,4656,4740" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3112,3206,3316,3408,3473,3572,3638,3698,3800,3876,3934,4012,4077,4131,4248,4312,4376,4430,4510,4644,4730,4819,4925,5010,5098,5193,5260,5326,5405,5487,5578,5654,5731,5808,5879,5986,6066,6163,6263,6337,6418,6523,6581,6648,6739,6831,6893,6957,7020,7123,7239,7344,7460", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,93,109,91,64,98,65,59,101,75,57,77,64,53,116,63,63,53,79,133,85,88,105,84,87,94,66,65,78,81,90,75,76,76,70,106,79,96,99,73,80,104,57,66,90,91,61,63,62,102,115,104,115,83", ++ "endOffsets": "271,3107,3201,3311,3403,3468,3567,3633,3693,3795,3871,3929,4007,4072,4126,4243,4307,4371,4425,4505,4639,4725,4814,4920,5005,5093,5188,5255,5321,5400,5482,5573,5649,5726,5803,5874,5981,6061,6158,6258,6332,6413,6518,6576,6643,6734,6826,6888,6952,7015,7118,7234,7339,7455,7539" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7627", ++ "endColumns": "100", ++ "endOffsets": "7723" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,2854", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,2932" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,383,489,600,691,796,918,996,1071,1162,1255,1356,1450,1550,1644,1739,1838,1929,2020,2102,2211,2315,2414,2526,2638,2759,2924,7544", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "378,484,595,686,791,913,991,1066,1157,1250,1351,1445,1545,1639,1734,1833,1924,2015,2097,2206,2310,2409,2521,2633,2754,2919,3020,7622" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-es_values-es.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7533", ++ "endColumns": "100", ++ "endOffsets": "7629" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,320,424,546,627,692,787,868,931,1020,1089,1152,1226,1290,1346,1464,1522,1584,1640,1720,1859,1948,2030,2141,2222,2302,2392,2459,2525,2604,2686,2774,2848,2925,2995,3074,3158,3242,3334,3434,3508,3589,3691,3744,3811,3904,3993,4055,4119,4182,4295,4388,4492,4586", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,103,121,80,64,94,80,62,88,68,62,73,63,55,117,57,61,55,79,138,88,81,110,80,79,89,66,65,78,81,87,73,76,69,78,83,83,91,99,73,80,101,52,66,92,88,61,63,62,112,92,103,93,82", ++ "endOffsets": "228,315,419,541,622,687,782,863,926,1015,1084,1147,1221,1285,1341,1459,1517,1579,1635,1715,1854,1943,2025,2136,2217,2297,2387,2454,2520,2599,2681,2769,2843,2920,2990,3069,3153,3237,3329,3429,3503,3584,3686,3739,3806,3899,3988,4050,4114,4177,4290,4383,4487,4581,4664" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3014,3101,3205,3327,3408,3473,3568,3649,3712,3801,3870,3933,4007,4071,4127,4245,4303,4365,4421,4501,4640,4729,4811,4922,5003,5083,5173,5240,5306,5385,5467,5555,5629,5706,5776,5855,5939,6023,6115,6215,6289,6370,6472,6525,6592,6685,6774,6836,6900,6963,7076,7169,7273,7367", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,103,121,80,64,94,80,62,88,68,62,73,63,55,117,57,61,55,79,138,88,81,110,80,79,89,66,65,78,81,87,73,76,69,78,83,83,91,99,73,80,101,52,66,92,88,61,63,62,112,92,103,93,82", ++ "endOffsets": "278,3096,3200,3322,3403,3468,3563,3644,3707,3796,3865,3928,4002,4066,4122,4240,4298,4360,4416,4496,4635,4724,4806,4917,4998,5078,5168,5235,5301,5380,5462,5550,5624,5701,5771,5850,5934,6018,6110,6210,6284,6365,6467,6520,6587,6680,6769,6831,6895,6958,7071,7164,7268,7362,7445" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,2836", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,2914" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "283,385,498,606,691,792,920,1006,1087,1179,1273,1370,1464,1564,1658,1754,1850,1942,2034,2116,2223,2334,2433,2541,2649,2756,2915,7450", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "380,493,601,686,787,915,1001,1082,1174,1268,1365,1459,1559,1653,1749,1845,1937,2029,2111,2218,2329,2428,2536,2644,2751,2910,3009,7528" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-de_values-de.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,2832", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,2909" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,393,491,603,689,795,910,988,1063,1155,1249,1345,1446,1553,1653,1757,1855,1953,2050,2132,2243,2345,2443,2550,2653,2757,2913,7430", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "388,486,598,684,790,905,983,1058,1150,1244,1340,1441,1548,1648,1752,1850,1948,2045,2127,2238,2340,2438,2545,2648,2752,2908,3010,7507" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,322,423,545,626,692,786,856,915,1023,1092,1150,1222,1286,1340,1468,1528,1590,1644,1722,1859,1951,2035,2150,2234,2320,2410,2477,2543,2617,2699,2792,2866,2944,3016,3090,3182,3264,3353,3442,3516,3594,3680,3735,3802,3882,3966,4028,4092,4155,4262,4366,4465,4571", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,100,121,80,65,93,69,58,107,68,57,71,63,53,127,59,61,53,77,136,91,83,114,83,85,89,66,65,73,81,92,73,77,71,73,91,81,88,88,73,77,85,54,66,79,83,61,63,62,106,103,98,105,81", ++ "endOffsets": "233,317,418,540,621,687,781,851,910,1018,1087,1145,1217,1281,1335,1463,1523,1585,1639,1717,1854,1946,2030,2145,2229,2315,2405,2472,2538,2612,2694,2787,2861,2939,3011,3085,3177,3259,3348,3437,3511,3589,3675,3730,3797,3877,3961,4023,4087,4150,4257,4361,4460,4566,4648" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3015,3099,3200,3322,3403,3469,3563,3633,3692,3800,3869,3927,3999,4063,4117,4245,4305,4367,4421,4499,4636,4728,4812,4927,5011,5097,5187,5254,5320,5394,5476,5569,5643,5721,5793,5867,5959,6041,6130,6219,6293,6371,6457,6512,6579,6659,6743,6805,6869,6932,7039,7143,7242,7348", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,100,121,80,65,93,69,58,107,68,57,71,63,53,127,59,61,53,77,136,91,83,114,83,85,89,66,65,73,81,92,73,77,71,73,91,81,88,88,73,77,85,54,66,79,83,61,63,62,106,103,98,105,81", ++ "endOffsets": "283,3094,3195,3317,3398,3464,3558,3628,3687,3795,3864,3922,3994,4058,4112,4240,4300,4362,4416,4494,4631,4723,4807,4922,5006,5092,5182,5249,5315,5389,5471,5564,5638,5716,5788,5862,5954,6036,6125,6214,6288,6366,6452,6507,6574,6654,6738,6800,6864,6927,7034,7138,7237,7343,7425" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7512", ++ "endColumns": "100", ++ "endOffsets": "7608" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-fa_values-fa.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7292", ++ "endColumns": "100", ++ "endOffsets": "7388" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,296,393,522,606,669,759,828,888,979,1043,1102,1169,1231,1286,1409,1467,1528,1583,1655,1792,1873,1955,2055,2129,2203,2289,2356,2422,2493,2570,2651,2724,2798,2868,2942,3028,3102,3191,3283,3357,3430,3519,3570,3637,3720,3804,3866,3930,3993,4087,4194,4287,4392", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,96,128,83,62,89,68,59,90,63,58,66,61,54,122,57,60,54,71,136,80,81,99,73,73,85,66,65,70,76,80,72,73,69,73,85,73,88,91,73,72,88,50,66,82,83,61,63,62,93,106,92,104,77", ++ "endOffsets": "209,291,388,517,601,664,754,823,883,974,1038,1097,1164,1226,1281,1404,1462,1523,1578,1650,1787,1868,1950,2050,2124,2198,2284,2351,2417,2488,2565,2646,2719,2793,2863,2937,3023,3097,3186,3278,3352,3425,3514,3565,3632,3715,3799,3861,3925,3988,4082,4189,4282,4387,4465" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2954,3036,3133,3262,3346,3409,3499,3568,3628,3719,3783,3842,3909,3971,4026,4149,4207,4268,4323,4395,4532,4613,4695,4795,4869,4943,5029,5096,5162,5233,5310,5391,5464,5538,5608,5682,5768,5842,5931,6023,6097,6170,6259,6310,6377,6460,6544,6606,6670,6733,6827,6934,7027,7132", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,96,128,83,62,89,68,59,90,63,58,66,61,54,122,57,60,54,71,136,80,81,99,73,73,85,66,65,70,76,80,72,73,69,73,85,73,88,91,73,72,88,50,66,82,83,61,63,62,93,106,92,104,77", ++ "endOffsets": "259,3031,3128,3257,3341,3404,3494,3563,3623,3714,3778,3837,3904,3966,4021,4144,4202,4263,4318,4390,4527,4608,4690,4790,4864,4938,5024,5091,5157,5228,5305,5386,5459,5533,5603,5677,5763,5837,5926,6018,6092,6165,6254,6305,6372,6455,6539,6601,6665,6728,6822,6929,7022,7127,7205" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,2795", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,374,475,586,670,771,886,966,1043,1136,1231,1323,1417,1519,1614,1711,1805,1898,1988,2070,2178,2282,2380,2486,2591,2696,2853,7210", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "369,470,581,665,766,881,961,1038,1131,1226,1318,1412,1514,1609,1706,1800,1893,1983,2065,2173,2277,2375,2481,2586,2691,2848,2949,7287" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-v17_values-v17.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v17/values-v17.xml", ++ "from": { ++ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", ++ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", ++ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", ++ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-my_values-my.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7514", ++ "endColumns": "100", ++ "endOffsets": "7610" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,240,316,422,551,636,701,791,866,925,1016,1081,1140,1211,1273,1330,1449,1507,1568,1623,1696,1828,1919,2008,2119,2197,2274,2366,2433,2499,2571,2653,2735,2810,2884,2956,3035,3132,3213,3299,3391,3465,3544,3630,3684,3752,3835,3916,3978,4042,4105,4217,4320,4424,4529", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,75,105,128,84,64,89,74,58,90,64,58,70,61,56,118,57,60,54,72,131,90,88,110,77,76,91,66,65,71,81,81,74,73,71,78,96,80,85,91,73,78,85,53,67,82,80,61,63,62,111,102,103,104,81", ++ "endOffsets": "235,311,417,546,631,696,786,861,920,1011,1076,1135,1206,1268,1325,1444,1502,1563,1618,1691,1823,1914,2003,2114,2192,2269,2361,2428,2494,2566,2648,2730,2805,2879,2951,3030,3127,3208,3294,3386,3460,3539,3625,3679,3747,3830,3911,3973,4037,4100,4212,4315,4419,4524,4606" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3057,3133,3239,3368,3453,3518,3608,3683,3742,3833,3898,3957,4028,4090,4147,4266,4324,4385,4440,4513,4645,4736,4825,4936,5014,5091,5183,5250,5316,5388,5470,5552,5627,5701,5773,5852,5949,6030,6116,6208,6282,6361,6447,6501,6569,6652,6733,6795,6859,6922,7034,7137,7241,7346", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,75,105,128,84,64,89,74,58,90,64,58,70,61,56,118,57,60,54,72,131,90,88,110,77,76,91,66,65,71,81,81,74,73,71,78,96,80,85,91,73,78,85,53,67,82,80,61,63,62,111,102,103,104,81", ++ "endOffsets": "285,3128,3234,3363,3448,3513,3603,3678,3737,3828,3893,3952,4023,4085,4142,4261,4319,4380,4435,4508,4640,4731,4820,4931,5009,5086,5178,5245,5311,5383,5465,5547,5622,5696,5768,5847,5944,6025,6111,6203,6277,6356,6442,6496,6564,6647,6728,6790,6854,6917,7029,7132,7236,7341,7423" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,325,441,528,637,760,842,923,1014,1107,1202,1296,1396,1489,1584,1678,1769,1860,1945,2060,2169,2268,2394,2501,2609,2769,2872", ++ "endColumns": "112,106,115,86,108,122,81,80,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "213,320,436,523,632,755,837,918,1009,1102,1197,1291,1391,1484,1579,1673,1764,1855,1940,2055,2164,2263,2389,2496,2604,2764,2867,2953" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "290,403,510,626,713,822,945,1027,1108,1199,1292,1387,1481,1581,1674,1769,1863,1954,2045,2130,2245,2354,2453,2579,2686,2794,2954,7428", ++ "endColumns": "112,106,115,86,108,122,81,80,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "398,505,621,708,817,940,1022,1103,1194,1287,1382,1476,1576,1669,1764,1858,1949,2040,2125,2240,2349,2448,2574,2681,2789,2949,3052,7509" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-si_values-si.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7331", ++ "endColumns": "100", ++ "endOffsets": "7427" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,302,404,519,602,666,755,822,882,976,1039,1095,1165,1232,1287,1406,1463,1527,1581,1654,1776,1859,1944,2046,2124,2204,2290,2357,2423,2493,2566,2648,2720,2797,2869,2939,3032,3105,3195,3288,3362,3434,3525,3579,3645,3729,3814,3876,3940,4003,4108,4208,4303,4403", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,101,114,82,63,88,66,59,93,62,55,69,66,54,118,56,63,53,72,121,82,84,101,77,79,85,66,65,69,72,81,71,76,71,69,92,72,89,92,73,71,90,53,65,83,84,61,63,62,104,99,94,99,79", ++ "endOffsets": "219,297,399,514,597,661,750,817,877,971,1034,1090,1160,1227,1282,1401,1458,1522,1576,1649,1771,1854,1939,2041,2119,2199,2285,2352,2418,2488,2561,2643,2715,2792,2864,2934,3027,3100,3190,3283,3357,3429,3520,3574,3640,3724,3809,3871,3935,3998,4103,4203,4298,4398,4478" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2990,3068,3170,3285,3368,3432,3521,3588,3648,3742,3805,3861,3931,3998,4053,4172,4229,4293,4347,4420,4542,4625,4710,4812,4890,4970,5056,5123,5189,5259,5332,5414,5486,5563,5635,5705,5798,5871,5961,6054,6128,6200,6291,6345,6411,6495,6580,6642,6706,6769,6874,6974,7069,7169", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,101,114,82,63,88,66,59,93,62,55,69,66,54,118,56,63,53,72,121,82,84,101,77,79,85,66,65,69,72,81,71,76,71,69,92,72,89,92,73,71,90,53,65,83,84,61,63,62,104,99,94,99,79", ++ "endOffsets": "269,3063,3165,3280,3363,3427,3516,3583,3643,3737,3800,3856,3926,3993,4048,4167,4224,4288,4342,4415,4537,4620,4705,4807,4885,4965,5051,5118,5184,5254,5327,5409,5481,5558,5630,5700,5793,5866,5956,6049,6123,6195,6286,6340,6406,6490,6575,6637,6701,6764,6869,6969,7064,7164,7244" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,2821", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,2898" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,390,497,604,687,792,908,998,1084,1175,1268,1362,1456,1556,1649,1744,1838,1929,2020,2104,2213,2317,2415,2525,2625,2732,2891,7249", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "385,492,599,682,787,903,993,1079,1170,1263,1357,1451,1551,1644,1739,1833,1924,2015,2099,2208,2312,2410,2520,2620,2727,2886,2985,7326" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ur_values-ur.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,2832", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,2913" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,378,484,593,679,783,903,980,1055,1147,1241,1336,1430,1531,1625,1721,1815,1907,1999,2084,2192,2298,2400,2511,2612,2728,2893,7279", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "373,479,588,674,778,898,975,1050,1142,1236,1331,1425,1526,1620,1716,1810,1902,1994,2079,2187,2293,2395,2506,2607,2723,2888,2986,7360" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,292,392,511,594,659,752,822,881,971,1040,1098,1167,1227,1291,1403,1462,1521,1576,1651,1774,1854,1938,2041,2123,2204,2291,2358,2424,2499,2579,2664,2731,2806,2883,2947,3041,3111,3200,3293,3367,3442,3532,3588,3655,3739,3823,3885,3949,4012,4112,4219,4313,4422", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,118,82,64,92,69,58,89,68,57,68,59,63,111,58,58,54,74,122,79,83,102,81,80,86,66,65,74,79,84,66,74,76,63,93,69,88,92,73,74,89,55,66,83,83,61,63,62,99,106,93,108,79", ++ "endOffsets": "209,287,387,506,589,654,747,817,876,966,1035,1093,1162,1222,1286,1398,1457,1516,1571,1646,1769,1849,1933,2036,2118,2199,2286,2353,2419,2494,2574,2659,2726,2801,2878,2942,3036,3106,3195,3288,3362,3437,3527,3583,3650,3734,3818,3880,3944,4007,4107,4214,4308,4417,4497" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2991,3069,3169,3288,3371,3436,3529,3599,3658,3748,3817,3875,3944,4004,4068,4180,4239,4298,4353,4428,4551,4631,4715,4818,4900,4981,5068,5135,5201,5276,5356,5441,5508,5583,5660,5724,5818,5888,5977,6070,6144,6219,6309,6365,6432,6516,6600,6662,6726,6789,6889,6996,7090,7199", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,118,82,64,92,69,58,89,68,57,68,59,63,111,58,58,54,74,122,79,83,102,81,80,86,66,65,74,79,84,66,74,76,63,93,69,88,92,73,74,89,55,66,83,83,61,63,62,99,106,93,108,79", ++ "endOffsets": "259,3064,3164,3283,3366,3431,3524,3594,3653,3743,3812,3870,3939,3999,4063,4175,4234,4293,4348,4423,4546,4626,4710,4813,4895,4976,5063,5130,5196,5271,5351,5436,5503,5578,5655,5719,5813,5883,5972,6065,6139,6214,6304,6360,6427,6511,6595,6657,6721,6784,6884,6991,7085,7194,7274" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7365", ++ "endColumns": "100", ++ "endOffsets": "7461" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-be_values-be.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,2835", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,2912" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "387,507,610,726,812,917,1036,1116,1193,1285,1379,1474,1568,1663,1757,1853,1948,2040,2132,2213,2319,2424,2522,2630,2736,2844,3017,7549", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "502,605,721,807,912,1031,1111,1188,1280,1374,1469,1563,1658,1752,1848,1943,2035,2127,2208,2314,2419,2517,2625,2731,2839,3012,3112,7626" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,337,419,516,632,715,782,875,952,1015,1131,1200,1259,1330,1389,1443,1564,1625,1688,1742,1815,1937,2025,2108,2230,2316,2403,2494,2561,2627,2699,2776,2860,2935,3012,3094,3170,3259,3341,3432,3528,3602,3683,3778,3832,3898,3985,4071,4133,4197,4260,4370,4477,4580,4689", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,81,96,115,82,66,92,76,62,115,68,58,70,58,53,120,60,62,53,72,121,87,82,121,85,86,90,66,65,71,76,83,74,76,81,75,88,81,90,95,73,80,94,53,65,86,85,61,63,62,109,106,102,108,79", ++ "endOffsets": "332,414,511,627,710,777,870,947,1010,1126,1195,1254,1325,1384,1438,1559,1620,1683,1737,1810,1932,2020,2103,2225,2311,2398,2489,2556,2622,2694,2771,2855,2930,3007,3089,3165,3254,3336,3427,3523,3597,3678,3773,3827,3893,3980,4066,4128,4192,4255,4365,4472,4575,4684,4764" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3117,3199,3296,3412,3495,3562,3655,3732,3795,3911,3980,4039,4110,4169,4223,4344,4405,4468,4522,4595,4717,4805,4888,5010,5096,5183,5274,5341,5407,5479,5556,5640,5715,5792,5874,5950,6039,6121,6212,6308,6382,6463,6558,6612,6678,6765,6851,6913,6977,7040,7150,7257,7360,7469", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,96,115,82,66,92,76,62,115,68,58,70,58,53,120,60,62,53,72,121,87,82,121,85,86,90,66,65,71,76,83,74,76,81,75,88,81,90,95,73,80,94,53,65,86,85,61,63,62,109,106,102,108,79", ++ "endOffsets": "382,3194,3291,3407,3490,3557,3650,3727,3790,3906,3975,4034,4105,4164,4218,4339,4400,4463,4517,4590,4712,4800,4883,5005,5091,5178,5269,5336,5402,5474,5551,5635,5710,5787,5869,5945,6034,6116,6207,6303,6377,6458,6553,6607,6673,6760,6846,6908,6972,7035,7145,7252,7355,7464,7544" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7631", ++ "endColumns": "100", ++ "endOffsets": "7727" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ar_values-ar.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "92", ++ "startColumns": "4", ++ "startOffsets": "7518", ++ "endColumns": "100", ++ "endOffsets": "7614" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,420,504,605,724,801,864,955,1024,1091,1191,1256,1317,1385,1447,1505,1619,1679,1740,1797,1870,1993,2074,2154,2272,2353,2434,2523,2590,2656,2734,2814,2898,2970,3044,3117,3187,3278,3349,3439,3534,3608,3691,3784,3833,3902,3988,4073,4135,4199,4262,4371,4463,4560,4653", ++ "endLines": "9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63", ++ "endColumns": "12,83,100,118,76,62,90,68,66,99,64,60,67,61,57,113,59,60,56,72,122,80,79,117,80,80,88,66,65,77,79,83,71,73,72,69,90,70,89,94,73,82,92,48,68,85,84,61,63,62,108,91,96,92,79", ++ "endOffsets": "415,499,600,719,796,859,950,1019,1086,1186,1251,1312,1380,1442,1500,1614,1674,1735,1792,1865,1988,2069,2149,2267,2348,2429,2518,2585,2651,2729,2809,2893,2965,3039,3112,3182,3273,3344,3434,3529,3603,3686,3779,3828,3897,3983,4068,4130,4194,4257,4366,4458,4555,4648,4728" ++ }, ++ "to": { ++ "startLines": "2,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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,90", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3123,3207,3308,3427,3504,3567,3658,3727,3794,3894,3959,4020,4088,4150,4208,4322,4382,4443,4500,4573,4696,4777,4857,4975,5056,5137,5226,5293,5359,5437,5517,5601,5673,5747,5820,5890,5981,6052,6142,6237,6311,6394,6487,6536,6605,6691,6776,6838,6902,6965,7074,7166,7263,7356", ++ "endLines": "9,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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,90", ++ "endColumns": "12,83,100,118,76,62,90,68,66,99,64,60,67,61,57,113,59,60,56,72,122,80,79,117,80,80,88,66,65,77,79,83,71,73,72,69,90,70,89,94,73,82,92,48,68,85,84,61,63,62,108,91,96,92,79", ++ "endOffsets": "465,3202,3303,3422,3499,3562,3653,3722,3789,3889,3954,4015,4083,4145,4203,4317,4377,4438,4495,4568,4691,4772,4852,4970,5051,5132,5221,5288,5354,5432,5512,5596,5668,5742,5815,5885,5976,6047,6137,6232,6306,6389,6482,6531,6600,6686,6771,6833,6897,6960,7069,7161,7258,7351,7431" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,424,506,607,721,801,879,970,1063,1155,1249,1349,1442,1537,1630,1721,1815,1894,1999,2097,2195,2303,2403,2506,2661,2758", ++ "endColumns": "107,103,106,81,100,113,79,77,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "208,312,419,501,602,716,796,874,965,1058,1150,1244,1344,1437,1532,1625,1716,1810,1889,1994,2092,2190,2298,2398,2501,2656,2753,2835" ++ }, ++ "to": { ++ "startLines": "10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,91", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "470,578,682,789,871,972,1086,1166,1244,1335,1428,1520,1614,1714,1807,1902,1995,2086,2180,2259,2364,2462,2560,2668,2768,2871,3026,7436", ++ "endColumns": "107,103,106,81,100,113,79,77,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "573,677,784,866,967,1081,1161,1239,1330,1423,1515,1609,1709,1802,1897,1990,2081,2175,2254,2359,2457,2555,2663,2763,2866,3021,3118,7513" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-watch-v20_values-watch-v20.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-watch-v20/values-watch-v20.xml", ++ "from": { ++ "startLines": "2,5,8", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,214,385", ++ "endLines": "4,7,10", ++ "endColumns": "12,12,12", ++ "endOffsets": "209,380,553" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-am_values-am.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6978", ++ "endColumns": "100", ++ "endOffsets": "7074" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,216,291,380,482,559,623,708,770,828,913,975,1033,1099,1161,1216,1312,1369,1428,1484,1551,1656,1736,1817,1916,1989,2060,2142,2209,2275,2341,2414,2495,2563,2636,2707,2774,2859,2926,3013,3101,3175,3243,3328,3379,3443,3523,3605,3667,3731,3794,3889,3978,4063,4154", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,74,88,101,76,63,84,61,57,84,61,57,65,61,54,95,56,58,55,66,104,79,80,98,72,70,81,66,65,65,72,80,67,72,70,66,84,66,86,87,73,67,84,50,63,79,81,61,63,62,94,88,84,90,75", ++ "endOffsets": "211,286,375,477,554,618,703,765,823,908,970,1028,1094,1156,1211,1307,1364,1423,1479,1546,1651,1731,1812,1911,1984,2055,2137,2204,2270,2336,2409,2490,2558,2631,2702,2769,2854,2921,3008,3096,3170,3238,3323,3374,3438,3518,3600,3662,3726,3789,3884,3973,4058,4149,4225" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2884,2959,3048,3150,3227,3291,3376,3438,3496,3581,3643,3701,3767,3829,3884,3980,4037,4096,4152,4219,4324,4404,4485,4584,4657,4728,4810,4877,4943,5009,5082,5163,5231,5304,5375,5442,5527,5594,5681,5769,5843,5911,5996,6047,6111,6191,6273,6335,6399,6462,6557,6646,6731,6822", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,74,88,101,76,63,84,61,57,84,61,57,65,61,54,95,56,58,55,66,104,79,80,98,72,70,81,66,65,65,72,80,67,72,70,66,84,66,86,87,73,67,84,50,63,79,81,61,63,62,94,88,84,90,75", ++ "endOffsets": "261,2954,3043,3145,3222,3286,3371,3433,3491,3576,3638,3696,3762,3824,3879,3975,4032,4091,4147,4214,4319,4399,4480,4579,4652,4723,4805,4872,4938,5004,5077,5158,5226,5299,5370,5437,5522,5589,5676,5764,5838,5906,5991,6042,6106,6186,6268,6330,6394,6457,6552,6641,6726,6817,6893" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,203,301,407,493,596,713,791,867,958,1051,1143,1237,1337,1430,1525,1618,1709,1800,1880,1980,2080,2176,2278,2378,2477,2627,2723", ++ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", ++ "endOffsets": "198,296,402,488,591,708,786,862,953,1046,1138,1232,1332,1425,1520,1613,1704,1795,1875,1975,2075,2171,2273,2373,2472,2622,2718,2798" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "266,364,462,568,654,757,874,952,1028,1119,1212,1304,1398,1498,1591,1686,1779,1870,1961,2041,2141,2241,2337,2439,2539,2638,2788,6898", ++ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", ++ "endOffsets": "359,457,563,649,752,869,947,1023,1114,1207,1299,1393,1493,1586,1681,1774,1865,1956,2036,2136,2236,2332,2434,2534,2633,2783,2879,6973" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-v22_values-v22.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v22/values-v22.xml", ++ "from": { ++ "startLines": "2,3,4,9", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,553", ++ "endLines": "2,3,8,13", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,548,896" ++ }, ++ "to": { ++ "startLines": "2,3,4,9", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,487", ++ "endLines": "2,3,8,13", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,482,764" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-is_values-is.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,225,304,401,516,598,663,751,815,876,966,1029,1091,1159,1223,1279,1402,1467,1529,1585,1656,1783,1867,1951,2057,2134,2211,2298,2365,2431,2507,2587,2676,2743,2817,2887,2953,3039,3109,3200,3290,3364,3437,3526,3577,3649,3730,3816,3878,3942,4005,4119,4222,4330,4433", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,96,114,81,64,87,63,60,89,62,61,67,63,55,122,64,61,55,70,126,83,83,105,76,76,86,66,65,75,79,88,66,73,69,65,85,69,90,89,73,72,88,50,71,80,85,61,63,62,113,102,107,102,79", ++ "endOffsets": "220,299,396,511,593,658,746,810,871,961,1024,1086,1154,1218,1274,1397,1462,1524,1580,1651,1778,1862,1946,2052,2129,2206,2293,2360,2426,2502,2582,2671,2738,2812,2882,2948,3034,3104,3195,3285,3359,3432,3521,3572,3644,3725,3811,3873,3937,4000,4114,4217,4325,4428,4508" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2949,3028,3125,3240,3322,3387,3475,3539,3600,3690,3753,3815,3883,3947,4003,4126,4191,4253,4309,4380,4507,4591,4675,4781,4858,4935,5022,5089,5155,5231,5311,5400,5467,5541,5611,5677,5763,5833,5924,6014,6088,6161,6250,6301,6373,6454,6540,6602,6666,6729,6843,6946,7054,7157", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,96,114,81,64,87,63,60,89,62,61,67,63,55,122,64,61,55,70,126,83,83,105,76,76,86,66,65,75,79,88,66,73,69,65,85,69,90,89,73,72,88,50,71,80,85,61,63,62,113,102,107,102,79", ++ "endOffsets": "270,3023,3120,3235,3317,3382,3470,3534,3595,3685,3748,3810,3878,3942,3998,4121,4186,4248,4304,4375,4502,4586,4670,4776,4853,4930,5017,5084,5150,5226,5306,5395,5462,5536,5606,5672,5758,5828,5919,6009,6083,6156,6245,6296,6368,6449,6535,6597,6661,6724,6838,6941,7049,7152,7232" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,302,414,499,600,714,795,874,965,1058,1151,1245,1351,1444,1539,1634,1725,1819,1900,2010,2117,2214,2323,2423,2526,2681,2779", ++ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", ++ "endOffsets": "200,297,409,494,595,709,790,869,960,1053,1146,1240,1346,1439,1534,1629,1720,1814,1895,2005,2112,2209,2318,2418,2521,2676,2774,2855" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "275,375,472,584,669,770,884,965,1044,1135,1228,1321,1415,1521,1614,1709,1804,1895,1989,2070,2180,2287,2384,2493,2593,2696,2851,7237", ++ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", ++ "endOffsets": "370,467,579,664,765,879,960,1039,1130,1223,1316,1410,1516,1609,1704,1799,1890,1984,2065,2175,2282,2379,2488,2588,2691,2846,2944,7313" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7318", ++ "endColumns": "100", ++ "endOffsets": "7414" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-sw_values-sw.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,287,386,515,598,666,758,831,894,980,1043,1108,1176,1239,1293,1425,1482,1544,1598,1672,1810,1891,1971,2073,2158,2245,2333,2400,2466,2538,2620,2710,2782,2857,2928,3001,3098,3172,3267,3364,3438,3523,3623,3676,3744,3832,3922,3984,4048,4111,4228,4338,4449,4561", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,72,98,128,82,67,91,72,62,85,62,64,67,62,53,131,56,61,53,73,137,80,79,101,84,86,87,66,65,71,81,89,71,74,70,72,96,73,94,96,73,84,99,52,67,87,89,61,63,62,116,109,110,111,80", ++ "endOffsets": "209,282,381,510,593,661,753,826,889,975,1038,1103,1171,1234,1288,1420,1477,1539,1593,1667,1805,1886,1966,2068,2153,2240,2328,2395,2461,2533,2615,2705,2777,2852,2923,2996,3093,3167,3262,3359,3433,3518,3618,3671,3739,3827,3917,3979,4043,4106,4223,4333,4444,4556,4637" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2960,3033,3132,3261,3344,3412,3504,3577,3640,3726,3789,3854,3922,3985,4039,4171,4228,4290,4344,4418,4556,4637,4717,4819,4904,4991,5079,5146,5212,5284,5366,5456,5528,5603,5674,5747,5844,5918,6013,6110,6184,6269,6369,6422,6490,6578,6668,6730,6794,6857,6974,7084,7195,7307", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,72,98,128,82,67,91,72,62,85,62,64,67,62,53,131,56,61,53,73,137,80,79,101,84,86,87,66,65,71,81,89,71,74,70,72,96,73,94,96,73,84,99,52,67,87,89,61,63,62,116,109,110,111,80", ++ "endOffsets": "259,3028,3127,3256,3339,3407,3499,3572,3635,3721,3784,3849,3917,3980,4034,4166,4223,4285,4339,4413,4551,4632,4712,4814,4899,4986,5074,5141,5207,5279,5361,5451,5523,5598,5669,5742,5839,5913,6008,6105,6179,6264,6364,6417,6485,6573,6663,6725,6789,6852,6969,7079,7190,7302,7383" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7471", ++ "endColumns": "100", ++ "endOffsets": "7567" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,2801", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,2879" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,367,466,574,664,769,886,969,1051,1142,1235,1330,1424,1524,1617,1712,1806,1897,1988,2070,2171,2279,2378,2485,2597,2701,2863,7388", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "362,461,569,659,764,881,964,1046,1137,1230,1325,1419,1519,1612,1707,1801,1892,1983,2065,2166,2274,2373,2480,2592,2696,2858,2955,7466" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-v26_values-v26.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v26/values-v26.xml", ++ "from": { ++ "startLines": "2,3,4,8,12,16", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,130,217,431,657,896", ++ "endLines": "2,3,7,11,15,16", ++ "endColumns": "74,86,12,12,12,92", ++ "endOffsets": "125,212,426,652,891,984" ++ }, ++ "to": { ++ "startLines": "2,3,4,8,12,16", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,130,217,381,557,796", ++ "endLines": "2,3,7,11,15,16", ++ "endColumns": "74,86,12,12,12,92", ++ "endOffsets": "125,212,376,552,791,884" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-da_values-da.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,305,405,554,632,696,782,855,915,1002,1064,1126,1194,1259,1315,1433,1491,1552,1608,1683,1809,1895,1975,2086,2164,2244,2330,2397,2463,2531,2605,2694,2766,2844,2914,2987,3071,3148,3236,3325,3399,3472,3557,3606,3672,3752,3835,3897,3961,4024,4132,4227,4328,4423", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,148,77,63,85,72,59,86,61,61,67,64,55,117,57,60,55,74,125,85,79,110,77,79,85,66,65,67,73,88,71,77,69,72,83,76,87,88,73,72,84,48,65,79,82,61,63,62,107,94,100,94,79", ++ "endOffsets": "222,300,400,549,627,691,777,850,910,997,1059,1121,1189,1254,1310,1428,1486,1547,1603,1678,1804,1890,1970,2081,2159,2239,2325,2392,2458,2526,2600,2689,2761,2839,2909,2982,3066,3143,3231,3320,3394,3467,3552,3601,3667,3747,3830,3892,3956,4019,4127,4222,4323,4418,4498" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2929,3007,3107,3256,3334,3398,3484,3557,3617,3704,3766,3828,3896,3961,4017,4135,4193,4254,4310,4385,4511,4597,4677,4788,4866,4946,5032,5099,5165,5233,5307,5396,5468,5546,5616,5689,5773,5850,5938,6027,6101,6174,6259,6308,6374,6454,6537,6599,6663,6726,6834,6929,7030,7125", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,148,77,63,85,72,59,86,61,61,67,64,55,117,57,60,55,74,125,85,79,110,77,79,85,66,65,67,73,88,71,77,69,72,83,76,87,88,73,72,84,48,65,79,82,61,63,62,107,94,100,94,79", ++ "endOffsets": "272,3002,3102,3251,3329,3393,3479,3552,3612,3699,3761,3823,3891,3956,4012,4130,4188,4249,4305,4380,4506,4592,4672,4783,4861,4941,5027,5094,5160,5228,5302,5391,5463,5541,5611,5684,5768,5845,5933,6022,6096,6169,6254,6303,6369,6449,6532,6594,6658,6721,6829,6924,7025,7120,7200" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,2757", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,2832" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,377,471,587,672,772,885,963,1039,1130,1223,1316,1410,1504,1597,1692,1790,1881,1972,2051,2159,2266,2362,2475,2578,2679,2832,7205", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "372,466,582,667,767,880,958,1034,1125,1218,1311,1405,1499,1592,1687,1785,1876,1967,2046,2154,2261,2357,2470,2573,2674,2827,2924,7280" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7285", ++ "endColumns": "100", ++ "endOffsets": "7381" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-sr_values-sr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,2833", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,2915" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "326,433,534,640,726,830,952,1036,1117,1208,1301,1396,1490,1590,1683,1778,1883,1974,2065,2151,2256,2362,2465,2571,2680,2787,2957,7394", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "428,529,635,721,825,947,1031,1112,1203,1296,1391,1485,1585,1678,1773,1878,1969,2060,2146,2251,2357,2460,2566,2675,2782,2952,3049,7476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,276,356,450,581,662,728,820,888,951,1054,1120,1176,1247,1307,1361,1473,1530,1591,1645,1721,1846,1932,2015,2123,2204,2287,2375,2442,2508,2582,2660,2749,2824,2900,2975,3046,3136,3209,3301,3397,3469,3545,3641,3694,3761,3848,3935,3997,4061,4124,4229,4333,4429,4536", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,79,93,130,80,65,91,67,62,102,65,55,70,59,53,111,56,60,53,75,124,85,82,107,80,82,87,66,65,73,77,88,74,75,74,70,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "271,351,445,576,657,723,815,883,946,1049,1115,1171,1242,1302,1356,1468,1525,1586,1640,1716,1841,1927,2010,2118,2199,2282,2370,2437,2503,2577,2655,2744,2819,2895,2970,3041,3131,3204,3296,3392,3464,3540,3636,3689,3756,3843,3930,3992,4056,4119,4224,4328,4424,4531,4611" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3054,3134,3228,3359,3440,3506,3598,3666,3729,3832,3898,3954,4025,4085,4139,4251,4308,4369,4423,4499,4624,4710,4793,4901,4982,5065,5153,5220,5286,5360,5438,5527,5602,5678,5753,5824,5914,5987,6079,6175,6247,6323,6419,6472,6539,6626,6713,6775,6839,6902,7007,7111,7207,7314", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,93,130,80,65,91,67,62,102,65,55,70,59,53,111,56,60,53,75,124,85,82,107,80,82,87,66,65,73,77,88,74,75,74,70,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "321,3129,3223,3354,3435,3501,3593,3661,3724,3827,3893,3949,4020,4080,4134,4246,4303,4364,4418,4494,4619,4705,4788,4896,4977,5060,5148,5215,5281,5355,5433,5522,5597,5673,5748,5819,5909,5982,6074,6170,6242,6318,6414,6467,6534,6621,6708,6770,6834,6897,7002,7106,7202,7309,7389" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7481", ++ "endColumns": "100", ++ "endOffsets": "7577" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ca_values-ca.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,229,317,418,546,630,695,792,872,937,1032,1104,1166,1242,1305,1362,1483,1541,1602,1659,1739,1876,1963,2047,2156,2234,2313,2402,2469,2535,2613,2694,2782,2860,2937,3011,3090,3180,3272,3364,3465,3539,3621,3722,3772,3838,3930,4017,4079,4143,4206,4329,4432,4536,4642", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,87,100,127,83,64,96,79,64,94,71,61,75,62,56,120,57,60,56,79,136,86,83,108,77,78,88,66,65,77,80,87,77,76,73,78,89,91,91,100,73,81,100,49,65,91,86,61,63,62,122,102,103,105,85", ++ "endOffsets": "224,312,413,541,625,690,787,867,932,1027,1099,1161,1237,1300,1357,1478,1536,1597,1654,1734,1871,1958,2042,2151,2229,2308,2397,2464,2530,2608,2689,2777,2855,2932,3006,3085,3175,3267,3359,3460,3534,3616,3717,3767,3833,3925,4012,4074,4138,4201,4324,4427,4531,4637,4723" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3004,3092,3193,3321,3405,3470,3567,3647,3712,3807,3879,3941,4017,4080,4137,4258,4316,4377,4434,4514,4651,4738,4822,4931,5009,5088,5177,5244,5310,5388,5469,5557,5635,5712,5786,5865,5955,6047,6139,6240,6314,6396,6497,6547,6613,6705,6792,6854,6918,6981,7104,7207,7311,7417", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,100,127,83,64,96,79,64,94,71,61,75,62,56,120,57,60,56,79,136,86,83,108,77,78,88,66,65,77,80,87,77,76,73,78,89,91,91,100,73,81,100,49,65,91,86,61,63,62,122,102,103,105,85", ++ "endOffsets": "274,3087,3188,3316,3400,3465,3562,3642,3707,3802,3874,3936,4012,4075,4132,4253,4311,4372,4429,4509,4646,4733,4817,4926,5004,5083,5172,5239,5305,5383,5464,5552,5630,5707,5781,5860,5950,6042,6134,6235,6309,6391,6492,6542,6608,6700,6787,6849,6913,6976,7099,7202,7306,7412,7498" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,228,333,440,523,629,755,839,918,1009,1102,1195,1290,1388,1481,1574,1668,1759,1850,1931,2042,2150,2248,2358,2463,2571,2731,2830", ++ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", ++ "endOffsets": "223,328,435,518,624,750,834,913,1004,1097,1190,1285,1383,1476,1569,1663,1754,1845,1926,2037,2145,2243,2353,2458,2566,2726,2825,2907" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "279,402,507,614,697,803,929,1013,1092,1183,1276,1369,1464,1562,1655,1748,1842,1933,2024,2105,2216,2324,2422,2532,2637,2745,2905,7503", ++ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", ++ "endOffsets": "397,502,609,692,798,924,1008,1087,1178,1271,1364,1459,1557,1650,1743,1837,1928,2019,2100,2211,2319,2417,2527,2632,2740,2900,2999,7580" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7585", ++ "endColumns": "100", ++ "endOffsets": "7681" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-v23_values-v23.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,190,325,400,487,1371,2267,2386,2513,2735,2959,3074,3181,3294", ++ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", ++ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", ++ "endOffsets": "185,320,395,482,1366,2262,2381,2508,2730,2954,3069,3176,3289,3519" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,190,325,400,487,1225,1975,2094,2221,2443,2667,2782,2889,3002", ++ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", ++ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", ++ "endOffsets": "185,320,395,482,1220,1970,2089,2216,2438,2662,2777,2884,2997,3227" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ac2b811be8f6b6e801e40541beb0df8/transformed/cardview-1.0.0/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "4", ++ "endColumns": "12", ++ "endOffsets": "200" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "3232", ++ "endLines": "52", ++ "endColumns": "12", ++ "endOffsets": "3377" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2,6", ++ "startColumns": "4,4", ++ "startOffsets": "55,320", ++ "endLines": "5,9", ++ "endColumns": "10,10", ++ "endOffsets": "315,588" ++ }, ++ "to": { ++ "startLines": "53,57", ++ "startColumns": "4,4", ++ "startOffsets": "3382,3647", ++ "endLines": "56,60", ++ "endColumns": "10,10", ++ "endOffsets": "3642,3915" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-vi_values-vi.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,2798", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,2878" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,377,479,588,672,775,894,972,1048,1139,1232,1327,1421,1521,1614,1709,1803,1894,1985,2069,2173,2281,2382,2487,2602,2707,2864,7226", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "372,474,583,667,770,889,967,1043,1134,1227,1322,1416,1516,1609,1704,1798,1889,1980,2064,2168,2276,2377,2482,2597,2702,2859,2958,7306" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7311", ++ "endColumns": "100", ++ "endOffsets": "7407" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,298,397,511,591,654,748,822,881,967,1028,1086,1150,1211,1265,1382,1439,1499,1553,1628,1755,1839,1917,2017,2101,2179,2270,2337,2403,2471,2547,2628,2707,2782,2855,2931,3020,3097,3188,3282,3356,3426,3519,3568,3634,3719,3805,3867,3931,3994,4093,4198,4296,4401", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,98,113,79,62,93,73,58,85,60,57,63,60,53,116,56,59,53,74,126,83,77,99,83,77,90,66,65,67,75,80,78,74,72,75,88,76,90,93,73,69,92,48,65,84,85,61,63,62,98,104,97,104,81", ++ "endOffsets": "215,293,392,506,586,649,743,817,876,962,1023,1081,1145,1206,1260,1377,1434,1494,1548,1623,1750,1834,1912,2012,2096,2174,2265,2332,2398,2466,2542,2623,2702,2777,2850,2926,3015,3092,3183,3277,3351,3421,3514,3563,3629,3714,3800,3862,3926,3989,4088,4193,4291,4396,4478" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2963,3041,3140,3254,3334,3397,3491,3565,3624,3710,3771,3829,3893,3954,4008,4125,4182,4242,4296,4371,4498,4582,4660,4760,4844,4922,5013,5080,5146,5214,5290,5371,5450,5525,5598,5674,5763,5840,5931,6025,6099,6169,6262,6311,6377,6462,6548,6610,6674,6737,6836,6941,7039,7144", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,98,113,79,62,93,73,58,85,60,57,63,60,53,116,56,59,53,74,126,83,77,99,83,77,90,66,65,67,75,80,78,74,72,75,88,76,90,93,73,69,92,48,65,84,85,61,63,62,98,104,97,104,81", ++ "endOffsets": "265,3036,3135,3249,3329,3392,3486,3560,3619,3705,3766,3824,3888,3949,4003,4120,4177,4237,4291,4366,4493,4577,4655,4755,4839,4917,5008,5075,5141,5209,5285,5366,5445,5520,5593,5669,5758,5835,5926,6020,6094,6164,6257,6306,6372,6457,6543,6605,6669,6732,6831,6936,7034,7139,7221" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-zh-rTW_values-zh-rTW.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,269,363,470,543,605,683,743,803,881,939,995,1055,1113,1167,1252,1308,1366,1420,1485,1577,1651,1728,1818,1881,1944,2021,2088,2154,2217,2285,2363,2424,2495,2562,2624,2703,2768,2851,2936,3010,3074,3150,3198,3262,3338,3416,3478,3542,3605,3685,3762,3838,3915", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,66,93,106,72,61,77,59,59,77,57,55,59,57,53,84,55,57,53,64,91,73,76,89,62,62,76,66,65,62,67,77,60,70,66,61,78,64,82,84,73,63,75,47,63,75,77,61,63,62,79,76,75,76,68", ++ "endOffsets": "197,264,358,465,538,600,678,738,798,876,934,990,1050,1108,1162,1247,1303,1361,1415,1480,1572,1646,1723,1813,1876,1939,2016,2083,2149,2212,2280,2358,2419,2490,2557,2619,2698,2763,2846,2931,3005,3069,3145,3193,3257,3333,3411,3473,3537,3600,3680,3757,3833,3910,3979" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2818,2885,2979,3086,3159,3221,3299,3359,3419,3497,3555,3611,3671,3729,3783,3868,3924,3982,4036,4101,4193,4267,4344,4434,4497,4560,4637,4704,4770,4833,4901,4979,5040,5111,5178,5240,5319,5384,5467,5552,5626,5690,5766,5814,5878,5954,6032,6094,6158,6221,6301,6378,6454,6531", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,66,93,106,72,61,77,59,59,77,57,55,59,57,53,84,55,57,53,64,91,73,76,89,62,62,76,66,65,62,67,77,60,70,66,61,78,64,82,84,73,63,75,47,63,75,77,61,63,62,79,76,75,76,68", ++ "endOffsets": "247,2880,2974,3081,3154,3216,3294,3354,3414,3492,3550,3606,3666,3724,3778,3863,3919,3977,4031,4096,4188,4262,4339,4429,4492,4555,4632,4699,4765,4828,4896,4974,5035,5106,5173,5235,5314,5379,5462,5547,5621,5685,5761,5809,5873,5949,6027,6089,6153,6216,6296,6373,6449,6526,6595" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6679", ++ "endColumns": "100", ++ "endOffsets": "6775" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,2671", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,2745" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,440,540,622,719,827,904,979,1071,1165,1262,1358,1453,1547,1643,1735,1827,1919,1997,2093,2188,2283,2380,2476,2574,2724,6600", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "342,435,535,617,714,822,899,974,1066,1160,1257,1353,1448,1542,1638,1730,1822,1914,1992,2088,2183,2278,2375,2471,2569,2719,2813,6674" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-nb_values-nb.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,303,417,503,603,716,793,868,959,1052,1146,1240,1340,1433,1528,1626,1717,1808,1886,1989,2087,2183,2287,2386,2487,2640,2737", ++ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", ++ "endOffsets": "203,298,412,498,598,711,788,863,954,1047,1141,1235,1335,1428,1523,1621,1712,1803,1881,1984,2082,2178,2282,2381,2482,2635,2732,2812" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "266,369,464,578,664,764,877,954,1029,1120,1213,1307,1401,1501,1594,1689,1787,1878,1969,2047,2150,2248,2344,2448,2547,2648,2801,7123", ++ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", ++ "endOffsets": "364,459,573,659,759,872,949,1024,1115,1208,1302,1396,1496,1589,1684,1782,1873,1964,2042,2145,2243,2339,2443,2542,2643,2796,2893,7198" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7203", ++ "endColumns": "100", ++ "endOffsets": "7299" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,216,303,402,521,603,667,759,827,887,974,1036,1100,1168,1233,1287,1396,1454,1516,1570,1645,1765,1847,1927,2031,2109,2189,2277,2344,2410,2478,2552,2642,2713,2791,2861,2931,3020,3098,3186,3276,3348,3420,3504,3555,3621,3702,3785,3847,3911,3974,4074,4172,4265,4363", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,98,118,81,63,91,67,59,86,61,63,67,64,53,108,57,61,53,74,119,81,79,103,77,79,87,66,65,67,73,89,70,77,69,69,88,77,87,89,71,71,83,50,65,80,82,61,63,62,99,97,92,97,77", ++ "endOffsets": "211,298,397,516,598,662,754,822,882,969,1031,1095,1163,1228,1282,1391,1449,1511,1565,1640,1760,1842,1922,2026,2104,2184,2272,2339,2405,2473,2547,2637,2708,2786,2856,2926,3015,3093,3181,3271,3343,3415,3499,3550,3616,3697,3780,3842,3906,3969,4069,4167,4260,4358,4436" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2898,2985,3084,3203,3285,3349,3441,3509,3569,3656,3718,3782,3850,3915,3969,4078,4136,4198,4252,4327,4447,4529,4609,4713,4791,4871,4959,5026,5092,5160,5234,5324,5395,5473,5543,5613,5702,5780,5868,5958,6030,6102,6186,6237,6303,6384,6467,6529,6593,6656,6756,6854,6947,7045", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,98,118,81,63,91,67,59,86,61,63,67,64,53,108,57,61,53,74,119,81,79,103,77,79,87,66,65,67,73,89,70,77,69,69,88,77,87,89,71,71,83,50,65,80,82,61,63,62,99,97,92,97,77", ++ "endOffsets": "261,2980,3079,3198,3280,3344,3436,3504,3564,3651,3713,3777,3845,3910,3964,4073,4131,4193,4247,4322,4442,4524,4604,4708,4786,4866,4954,5021,5087,5155,5229,5319,5390,5468,5538,5608,5697,5775,5863,5953,6025,6097,6181,6232,6298,6379,6462,6524,6588,6651,6751,6849,6942,7040,7118" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-lo_values-lo.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7265", ++ "endColumns": "100", ++ "endOffsets": "7361" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,305,420,539,622,688,777,846,905,1000,1065,1123,1188,1249,1309,1415,1476,1536,1594,1665,1784,1870,1952,2065,2140,2216,2306,2373,2439,2508,2582,2661,2734,2811,2880,2950,3035,3110,3203,3296,3370,3439,3533,3585,3652,3736,3820,3882,3946,4009,4108,4200,4295,4387", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,114,118,82,65,88,68,58,94,64,57,64,60,59,105,60,59,57,70,118,85,81,112,74,75,89,66,65,68,73,78,72,76,68,69,84,74,92,92,73,68,93,51,66,83,83,61,63,62,98,91,94,91,78", ++ "endOffsets": "219,300,415,534,617,683,772,841,900,995,1060,1118,1183,1244,1304,1410,1471,1531,1589,1660,1779,1865,1947,2060,2135,2211,2301,2368,2434,2503,2577,2656,2729,2806,2875,2945,3030,3105,3198,3291,3365,3434,3528,3580,3647,3731,3815,3877,3941,4004,4103,4195,4290,4382,4461" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2941,3022,3137,3256,3339,3405,3494,3563,3622,3717,3782,3840,3905,3966,4026,4132,4193,4253,4311,4382,4501,4587,4669,4782,4857,4933,5023,5090,5156,5225,5299,5378,5451,5528,5597,5667,5752,5827,5920,6013,6087,6156,6250,6302,6369,6453,6537,6599,6663,6726,6825,6917,7012,7104", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,114,118,82,65,88,68,58,94,64,57,64,60,59,105,60,59,57,70,118,85,81,112,74,75,89,66,65,68,73,78,72,76,68,69,84,74,92,92,73,68,93,51,66,83,83,61,63,62,98,91,94,91,78", ++ "endOffsets": "269,3017,3132,3251,3334,3400,3489,3558,3617,3712,3777,3835,3900,3961,4021,4127,4188,4248,4306,4377,4496,4582,4664,4777,4852,4928,5018,5085,5151,5220,5294,5373,5446,5523,5592,5662,5747,5822,5915,6008,6082,6151,6245,6297,6364,6448,6532,6594,6658,6721,6820,6912,7007,7099,7178" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,2772", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,2849" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,377,480,593,678,782,893,971,1048,1139,1232,1324,1418,1518,1611,1706,1802,1893,1984,2065,2172,2276,2374,2477,2581,2685,2842,7183", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "372,475,588,673,777,888,966,1043,1134,1227,1319,1413,1513,1606,1701,1797,1888,1979,2060,2167,2271,2369,2472,2576,2680,2837,2936,7260" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-hy_values-hy.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7447", ++ "endColumns": "100", ++ "endOffsets": "7543" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,300,395,525,606,670,767,852,914,1001,1065,1126,1193,1254,1308,1430,1487,1547,1601,1682,1817,1901,1986,2092,2167,2242,2337,2404,2470,2544,2624,2710,2781,2857,2933,3010,3098,3178,3274,3370,3444,3522,3622,3673,3742,3829,3920,3982,4046,4109,4214,4315,4415,4520", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,94,129,80,63,96,84,61,86,63,60,66,60,53,121,56,59,53,80,134,83,84,105,74,74,94,66,65,73,79,85,70,75,75,76,87,79,95,95,73,77,99,50,68,86,90,61,63,62,104,100,99,104,84", ++ "endOffsets": "215,295,390,520,601,665,762,847,909,996,1060,1121,1188,1249,1303,1425,1482,1542,1596,1677,1812,1896,1981,2087,2162,2237,2332,2399,2465,2539,2619,2705,2776,2852,2928,3005,3093,3173,3269,3365,3439,3517,3617,3668,3737,3824,3915,3977,4041,4104,4209,4310,4410,4515,4600" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2979,3059,3154,3284,3365,3429,3526,3611,3673,3760,3824,3885,3952,4013,4067,4189,4246,4306,4360,4441,4576,4660,4745,4851,4926,5001,5096,5163,5229,5303,5383,5469,5540,5616,5692,5769,5857,5937,6033,6129,6203,6281,6381,6432,6501,6588,6679,6741,6805,6868,6973,7074,7174,7279", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,94,129,80,63,96,84,61,86,63,60,66,60,53,121,56,59,53,80,134,83,84,105,74,74,94,66,65,73,79,85,70,75,75,76,87,79,95,95,73,77,99,50,68,86,90,61,63,62,104,100,99,104,84", ++ "endOffsets": "265,3054,3149,3279,3360,3424,3521,3606,3668,3755,3819,3880,3947,4008,4062,4184,4241,4301,4355,4436,4571,4655,4740,4846,4921,4996,5091,5158,5224,5298,5378,5464,5535,5611,5687,5764,5852,5932,6028,6124,6198,6276,6376,6427,6496,6583,6674,6736,6800,6863,6968,7069,7169,7274,7359" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,2814", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,2892" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,378,478,588,677,783,900,982,1062,1153,1246,1341,1435,1535,1628,1723,1817,1908,1999,2082,2188,2294,2393,2503,2611,2712,2882,7364", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "373,473,583,672,778,895,977,1057,1148,1241,1336,1430,1530,1623,1718,1812,1903,1994,2077,2183,2289,2388,2498,2606,2707,2877,2974,7442" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-fi_values-fi.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,306,402,510,594,659,752,827,892,980,1046,1104,1175,1241,1295,1405,1465,1529,1583,1656,1772,1856,1937,2040,2125,2210,2300,2367,2433,2510,2592,2676,2750,2829,2906,2978,3067,3140,3231,3326,3400,3473,3567,3621,3693,3779,3865,3927,3991,4054,4155,4257,4352,4455", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,95,107,83,64,92,74,64,87,65,57,70,65,53,109,59,63,53,72,115,83,80,102,84,84,89,66,65,76,81,83,73,78,76,71,88,72,90,94,73,72,93,53,71,85,85,61,63,62,100,101,94,102,78", ++ "endOffsets": "218,301,397,505,589,654,747,822,887,975,1041,1099,1170,1236,1290,1400,1460,1524,1578,1651,1767,1851,1932,2035,2120,2205,2295,2362,2428,2505,2587,2671,2745,2824,2901,2973,3062,3135,3226,3321,3395,3468,3562,3616,3688,3774,3860,3922,3986,4049,4150,4252,4347,4450,4529" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2943,3026,3122,3230,3314,3379,3472,3547,3612,3700,3766,3824,3895,3961,4015,4125,4185,4249,4303,4376,4492,4576,4657,4760,4845,4930,5020,5087,5153,5230,5312,5396,5470,5549,5626,5698,5787,5860,5951,6046,6120,6193,6287,6341,6413,6499,6585,6647,6711,6774,6875,6977,7072,7175", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,95,107,83,64,92,74,64,87,65,57,70,65,53,109,59,63,53,72,115,83,80,102,84,84,89,66,65,76,81,83,73,78,76,71,88,72,90,94,73,72,93,53,71,85,85,61,63,62,100,101,94,102,78", ++ "endOffsets": "268,3021,3117,3225,3309,3374,3467,3542,3607,3695,3761,3819,3890,3956,4010,4120,4180,4244,4298,4371,4487,4571,4652,4755,4840,4925,5015,5082,5148,5225,5307,5391,5465,5544,5621,5693,5782,5855,5946,6041,6115,6188,6282,6336,6408,6494,6580,6642,6706,6769,6870,6972,7067,7170,7249" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,2775", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,2851" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,381,481,590,676,781,899,985,1064,1155,1248,1343,1437,1531,1624,1720,1819,1910,2004,2084,2191,2292,2389,2495,2595,2693,2843,7254", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "376,476,585,671,776,894,980,1059,1150,1243,1338,1432,1526,1619,1715,1814,1905,1999,2079,2186,2287,2384,2490,2590,2688,2838,2938,7330" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7335", ++ "endColumns": "100", ++ "endOffsets": "7431" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-h720dp-v13_values-h720dp-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-h720dp-v13/values-h720dp-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "66", ++ "endOffsets": "117" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-v18_values-v18.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v18/values-v18.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "48", ++ "endOffsets": "99" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v18/values.xml", ++ "from": { ++ "startLines": "4,12", ++ "startColumns": "0,0", ++ "startOffsets": "146,562", ++ "endLines": "11,19", ++ "endColumns": "8,8", ++ "endOffsets": "561,975" ++ }, ++ "to": { ++ "startLines": "3,11", ++ "startColumns": "4,4", ++ "startOffsets": "104,524", ++ "endLines": "10,18", ++ "endColumns": "8,8", ++ "endOffsets": "519,937" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-th_values-th.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7241", ++ "endColumns": "100", ++ "endOffsets": "7337" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,240,323,422,535,615,685,775,845,905,992,1057,1118,1182,1243,1297,1398,1459,1519,1573,1643,1754,1841,1922,2035,2114,2196,2288,2355,2421,2491,2569,2655,2727,2805,2874,2943,3025,3113,3206,3300,3374,3443,3538,3590,3658,3743,3831,3893,3957,4020,4120,4213,4310,4403", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,98,112,79,69,89,69,59,86,64,60,63,60,53,100,60,59,53,69,110,86,80,112,78,81,91,66,65,69,77,85,71,77,68,68,81,87,92,93,73,68,94,51,67,84,87,61,63,62,99,92,96,92,76", ++ "endOffsets": "235,318,417,530,610,680,770,840,900,987,1052,1113,1177,1238,1292,1393,1454,1514,1568,1638,1749,1836,1917,2030,2109,2191,2283,2350,2416,2486,2564,2650,2722,2800,2869,2938,3020,3108,3201,3295,3369,3438,3533,3585,3653,3738,3826,3888,3952,4015,4115,4208,4305,4398,4475" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2919,3002,3101,3214,3294,3364,3454,3524,3584,3671,3736,3797,3861,3922,3976,4077,4138,4198,4252,4322,4433,4520,4601,4714,4793,4875,4967,5034,5100,5170,5248,5334,5406,5484,5553,5622,5704,5792,5885,5979,6053,6122,6217,6269,6337,6422,6510,6572,6636,6699,6799,6892,6989,7082", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,98,112,79,69,89,69,59,86,64,60,63,60,53,100,60,59,53,69,110,86,80,112,78,81,91,66,65,69,77,85,71,77,68,68,81,87,92,93,73,68,94,51,67,84,87,61,63,62,99,92,96,92,76", ++ "endOffsets": "285,2997,3096,3209,3289,3359,3449,3519,3579,3666,3731,3792,3856,3917,3971,4072,4133,4193,4247,4317,4428,4515,4596,4709,4788,4870,4962,5029,5095,5165,5243,5329,5401,5479,5548,5617,5699,5787,5880,5974,6048,6117,6212,6264,6332,6417,6505,6567,6631,6694,6794,6887,6984,7077,7154" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,2734", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,2811" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "290,395,488,596,681,783,893,971,1048,1139,1232,1323,1417,1517,1610,1705,1799,1890,1981,2062,2165,2263,2361,2464,2570,2671,2824,7159", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "390,483,591,676,778,888,966,1043,1134,1227,1318,1412,1512,1605,1700,1794,1885,1976,2057,2160,2258,2356,2459,2565,2666,2819,2914,7236" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-or_values-or.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,398,503,582,647,736,801,860,946,1010,1073,1146,1210,1264,1376,1434,1496,1550,1622,1744,1831,1917,2027,2104,2185,2276,2343,2409,2479,2556,2643,2714,2791,2860,2929,3020,3092,3181,3270,3344,3416,3502,3552,3618,3698,3782,3844,3908,3971,4071,4168,4260,4359", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,93,104,78,64,88,64,58,85,63,62,72,63,53,111,57,61,53,71,121,86,85,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,83", ++ "endOffsets": "222,299,393,498,577,642,731,796,855,941,1005,1068,1141,1205,1259,1371,1429,1491,1545,1617,1739,1826,1912,2022,2099,2180,2271,2338,2404,2474,2551,2638,2709,2786,2855,2924,3015,3087,3176,3265,3339,3411,3497,3547,3613,3693,3777,3839,3903,3966,4066,4163,4255,4354,4438" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3022,3099,3193,3298,3377,3442,3531,3596,3655,3741,3805,3868,3941,4005,4059,4171,4229,4291,4345,4417,4539,4626,4712,4822,4899,4980,5071,5138,5204,5274,5351,5438,5509,5586,5655,5724,5815,5887,5976,6065,6139,6211,6297,6347,6413,6493,6577,6639,6703,6766,6866,6963,7055,7154", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,93,104,78,64,88,64,58,85,63,62,72,63,53,111,57,61,53,71,121,86,85,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,83", ++ "endOffsets": "272,3094,3188,3293,3372,3437,3526,3591,3650,3736,3800,3863,3936,4000,4054,4166,4224,4286,4340,4412,4534,4621,4707,4817,4894,4975,5066,5133,5199,5269,5346,5433,5504,5581,5650,5719,5810,5882,5971,6060,6134,6206,6292,6342,6408,6488,6572,6634,6698,6761,6861,6958,7050,7149,7233" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7321", ++ "endColumns": "100", ++ "endOffsets": "7417" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,224,334,441,527,631,751,830,906,997,1090,1186,1281,1381,1474,1569,1665,1756,1846,1935,2045,2149,2248,2359,2463,2581,2744,2850", ++ "endColumns": "118,109,106,85,103,119,78,75,90,92,95,94,99,92,94,95,90,89,88,109,103,98,110,103,117,162,105,82", ++ "endOffsets": "219,329,436,522,626,746,825,901,992,1085,1181,1276,1376,1469,1564,1660,1751,1841,1930,2040,2144,2243,2354,2458,2576,2739,2845,2928" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,396,506,613,699,803,923,1002,1078,1169,1262,1358,1453,1553,1646,1741,1837,1928,2018,2107,2217,2321,2420,2531,2635,2753,2916,7238", ++ "endColumns": "118,109,106,85,103,119,78,75,90,92,95,94,99,92,94,95,90,89,88,109,103,98,110,103,117,162,105,82", ++ "endOffsets": "391,501,608,694,798,918,997,1073,1164,1257,1353,1448,1548,1641,1736,1832,1923,2013,2102,2212,2316,2415,2526,2630,2748,2911,3017,7316" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ru_values-ru.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,2822", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,2899" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "386,501,603,702,788,893,1014,1093,1169,1261,1355,1450,1543,1638,1732,1828,1923,2015,2107,2196,2302,2409,2507,2616,2723,2837,3003,7515", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "496,598,697,783,888,1009,1088,1164,1256,1350,1445,1538,1633,1727,1823,1918,2010,2102,2191,2297,2404,2502,2611,2718,2832,2998,3098,7592" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7597", ++ "endColumns": "100", ++ "endOffsets": "7693" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,336,420,517,654,746,812,911,988,1051,1169,1234,1291,1361,1422,1476,1592,1649,1711,1765,1839,1967,2055,2141,2248,2332,2417,2508,2575,2641,2713,2791,2887,2967,3043,3120,3197,3286,3359,3449,3544,3618,3699,3792,3847,3913,3999,4084,4146,4210,4273,4371,4471,4566,4668", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,83,96,136,91,65,98,76,62,117,64,56,69,60,53,115,56,61,53,73,127,87,85,106,83,84,90,66,65,71,77,95,79,75,76,76,88,72,89,94,73,80,92,54,65,85,84,61,63,62,97,99,94,101,79", ++ "endOffsets": "331,415,512,649,741,807,906,983,1046,1164,1229,1286,1356,1417,1471,1587,1644,1706,1760,1834,1962,2050,2136,2243,2327,2412,2503,2570,2636,2708,2786,2882,2962,3038,3115,3192,3281,3354,3444,3539,3613,3694,3787,3842,3908,3994,4079,4141,4205,4268,4366,4466,4561,4663,4743" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3187,3284,3421,3513,3579,3678,3755,3818,3936,4001,4058,4128,4189,4243,4359,4416,4478,4532,4606,4734,4822,4908,5015,5099,5184,5275,5342,5408,5480,5558,5654,5734,5810,5887,5964,6053,6126,6216,6311,6385,6466,6559,6614,6680,6766,6851,6913,6977,7040,7138,7238,7333,7435", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,96,136,91,65,98,76,62,117,64,56,69,60,53,115,56,61,53,73,127,87,85,106,83,84,90,66,65,71,77,95,79,75,76,76,88,72,89,94,73,80,92,54,65,85,84,61,63,62,97,99,94,101,79", ++ "endOffsets": "381,3182,3279,3416,3508,3574,3673,3750,3813,3931,3996,4053,4123,4184,4238,4354,4411,4473,4527,4601,4729,4817,4903,5010,5094,5179,5270,5337,5403,5475,5553,5649,5729,5805,5882,5959,6048,6121,6211,6306,6380,6461,6554,6609,6675,6761,6846,6908,6972,7035,7133,7233,7328,7430,7510" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-af_values-af.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,229,307,407,521,602,666,754,820,883,969,1030,1088,1154,1217,1272,1390,1447,1509,1564,1633,1752,1840,1923,2032,2115,2196,2283,2350,2416,2485,2561,2647,2721,2800,2873,2944,3031,3102,3191,3281,3353,3428,3515,3566,3633,3714,3798,3860,3924,3987,4091,4200,4296,4407", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,113,80,63,87,65,62,85,60,57,65,62,54,117,56,61,54,68,118,87,82,108,82,80,86,66,65,68,75,85,73,78,72,70,86,70,88,89,71,74,86,50,66,80,83,61,63,62,103,108,95,110,76", ++ "endOffsets": "224,302,402,516,597,661,749,815,878,964,1025,1083,1149,1212,1267,1385,1442,1504,1559,1628,1747,1835,1918,2027,2110,2191,2278,2345,2411,2480,2556,2642,2716,2795,2868,2939,3026,3097,3186,3276,3348,3423,3510,3561,3628,3709,3793,3855,3919,3982,4086,4195,4291,4402,4479" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2951,3029,3129,3243,3324,3388,3476,3542,3605,3691,3752,3810,3876,3939,3994,4112,4169,4231,4286,4355,4474,4562,4645,4754,4837,4918,5005,5072,5138,5207,5283,5369,5443,5522,5595,5666,5753,5824,5913,6003,6075,6150,6237,6288,6355,6436,6520,6582,6646,6709,6813,6922,7018,7129", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,113,80,63,87,65,62,85,60,57,65,62,54,117,56,61,54,68,118,87,82,108,82,80,86,66,65,68,75,85,73,78,72,70,86,70,88,89,71,74,86,50,66,80,83,61,63,62,103,108,95,110,76", ++ "endOffsets": "274,3024,3124,3238,3319,3383,3471,3537,3600,3686,3747,3805,3871,3934,3989,4107,4164,4226,4281,4350,4469,4557,4640,4749,4832,4913,5000,5067,5133,5202,5278,5364,5438,5517,5590,5661,5748,5819,5908,5998,6070,6145,6232,6283,6350,6431,6515,6577,6641,6704,6808,6917,7013,7124,7201" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,2777", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,2853" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "279,387,483,589,674,777,895,972,1048,1139,1232,1327,1421,1520,1613,1708,1807,1902,1996,2077,2184,2289,2386,2494,2597,2699,2853,7206", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "382,478,584,669,772,890,967,1043,1134,1227,1322,1416,1515,1608,1703,1802,1897,1991,2072,2179,2284,2381,2489,2592,2694,2848,2946,7282" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7287", ++ "endColumns": "100", ++ "endOffsets": "7383" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-v16_values-v16.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "5", ++ "endColumns": "12", ++ "endOffsets": "223" ++ }, ++ "to": { ++ "startLines": "3", ++ "startColumns": "4", ++ "startOffsets": "121", ++ "endLines": "6", ++ "endColumns": "12", ++ "endOffsets": "289" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "65", ++ "endOffsets": "116" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-iw_values-iw.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,2761", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,2838" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "369,474,574,682,766,868,984,1063,1141,1232,1326,1420,1514,1614,1707,1802,1895,1986,2078,2159,2264,2367,2465,2570,2672,2774,2928,7179", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "469,569,677,761,863,979,1058,1136,1227,1321,1415,1509,1609,1702,1797,1890,1981,2073,2154,2259,2362,2460,2565,2667,2769,2923,3020,7256" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,319,396,489,602,682,747,835,905,968,1060,1120,1179,1242,1303,1362,1464,1521,1580,1638,1706,1817,1898,1980,2082,2153,2226,2314,2381,2447,2520,2596,2682,2752,2827,2909,2977,3062,3132,3222,3313,3387,3460,3549,3600,3667,3749,3834,3896,3960,4023,4117,4212,4302,4398", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,76,92,112,79,64,87,69,62,91,59,58,62,60,58,101,56,58,57,67,110,80,81,101,70,72,87,66,65,72,75,85,69,74,81,67,84,69,89,90,73,72,88,50,66,81,84,61,63,62,93,94,89,95,74", ++ "endOffsets": "314,391,484,597,677,742,830,900,963,1055,1115,1174,1237,1298,1357,1459,1516,1575,1633,1701,1812,1893,1975,2077,2148,2221,2309,2376,2442,2515,2591,2677,2747,2822,2904,2972,3057,3127,3217,3308,3382,3455,3544,3595,3662,3744,3829,3891,3955,4018,4112,4207,4297,4393,4468" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3102,3195,3308,3388,3453,3541,3611,3674,3766,3826,3885,3948,4009,4068,4170,4227,4286,4344,4412,4523,4604,4686,4788,4859,4932,5020,5087,5153,5226,5302,5388,5458,5533,5615,5683,5768,5838,5928,6019,6093,6166,6255,6306,6373,6455,6540,6602,6666,6729,6823,6918,7008,7104", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,92,112,79,64,87,69,62,91,59,58,62,60,58,101,56,58,57,67,110,80,81,101,70,72,87,66,65,72,75,85,69,74,81,67,84,69,89,90,73,72,88,50,66,81,84,61,63,62,93,94,89,95,74", ++ "endOffsets": "364,3097,3190,3303,3383,3448,3536,3606,3669,3761,3821,3880,3943,4004,4063,4165,4222,4281,4339,4407,4518,4599,4681,4783,4854,4927,5015,5082,5148,5221,5297,5383,5453,5528,5610,5678,5763,5833,5923,6014,6088,6161,6250,6301,6368,6450,6535,6597,6661,6724,6818,6913,7003,7099,7174" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7261", ++ "endColumns": "100", ++ "endOffsets": "7357" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-lt_values-lt.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,2874", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,2953" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "380,496,600,713,800,902,1024,1107,1187,1281,1377,1474,1570,1673,1769,1867,1963,2057,2151,2234,2343,2451,2551,2661,2766,2872,3048,7603", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "491,595,708,795,897,1019,1102,1182,1276,1372,1469,1565,1668,1764,1862,1958,2052,2146,2229,2338,2446,2546,2656,2761,2867,3043,3144,7682" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7687", ++ "endColumns": "100", ++ "endOffsets": "7783" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,330,413,509,627,711,777,876,954,1019,1129,1201,1260,1334,1395,1449,1573,1634,1696,1750,1828,1962,2050,2134,2245,2324,2408,2505,2572,2638,2713,2792,2880,2956,3034,3107,3184,3271,3352,3442,3534,3606,3687,3779,3834,3900,3985,4072,4134,4198,4261,4372,4487,4588,4702", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,82,95,117,83,65,98,77,64,109,71,58,73,60,53,123,60,61,53,77,133,87,83,110,78,83,96,66,65,74,78,87,75,77,72,76,86,80,89,91,71,80,91,54,65,84,86,61,63,62,110,114,100,113,81", ++ "endOffsets": "325,408,504,622,706,772,871,949,1014,1124,1196,1255,1329,1390,1444,1568,1629,1691,1745,1823,1957,2045,2129,2240,2319,2403,2500,2567,2633,2708,2787,2875,2951,3029,3102,3179,3266,3347,3437,3529,3601,3682,3774,3829,3895,3980,4067,4129,4193,4256,4367,4482,4583,4697,4779" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3149,3232,3328,3446,3530,3596,3695,3773,3838,3948,4020,4079,4153,4214,4268,4392,4453,4515,4569,4647,4781,4869,4953,5064,5143,5227,5324,5391,5457,5532,5611,5699,5775,5853,5926,6003,6090,6171,6261,6353,6425,6506,6598,6653,6719,6804,6891,6953,7017,7080,7191,7306,7407,7521", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,95,117,83,65,98,77,64,109,71,58,73,60,53,123,60,61,53,77,133,87,83,110,78,83,96,66,65,74,78,87,75,77,72,76,86,80,89,91,71,80,91,54,65,84,86,61,63,62,110,114,100,113,81", ++ "endOffsets": "375,3227,3323,3441,3525,3591,3690,3768,3833,3943,4015,4074,4148,4209,4263,4387,4448,4510,4564,4642,4776,4864,4948,5059,5138,5222,5319,5386,5452,5527,5606,5694,5770,5848,5921,5998,6085,6166,6256,6348,6420,6501,6593,6648,6714,6799,6886,6948,7012,7075,7186,7301,7402,7516,7598" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-pl_values-pl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,2817", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,2895" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "391,506,608,716,802,909,1028,1107,1183,1274,1367,1462,1556,1657,1750,1845,1940,2031,2122,2204,2313,2413,2512,2621,2733,2844,3007,7408", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "501,603,711,797,904,1023,1102,1178,1269,1362,1457,1551,1652,1745,1840,1935,2026,2117,2199,2308,2408,2507,2616,2728,2839,3002,3098,7486" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,341,420,505,622,704,768,849,913,974,1085,1153,1207,1276,1338,1392,1503,1564,1626,1680,1752,1881,1970,2052,2171,2253,2336,2423,2490,2556,2627,2703,2792,2869,2947,3025,3101,3191,3264,3359,3456,3528,3602,3702,3754,3820,3908,3998,4060,4124,4187,4294,4383,4482,4570", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,78,84,116,81,63,80,63,60,110,67,53,68,61,53,110,60,61,53,71,128,88,81,118,81,82,86,66,65,70,75,88,76,77,77,75,89,72,94,96,71,73,99,51,65,87,89,61,63,62,106,88,98,87,75", ++ "endOffsets": "336,415,500,617,699,763,844,908,969,1080,1148,1202,1271,1333,1387,1498,1559,1621,1675,1747,1876,1965,2047,2166,2248,2331,2418,2485,2551,2622,2698,2787,2864,2942,3020,3096,3186,3259,3354,3451,3523,3597,3697,3749,3815,3903,3993,4055,4119,4182,4289,4378,4477,4565,4641" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3182,3267,3384,3466,3530,3611,3675,3736,3847,3915,3969,4038,4100,4154,4265,4326,4388,4442,4514,4643,4732,4814,4933,5015,5098,5185,5252,5318,5389,5465,5554,5631,5709,5787,5863,5953,6026,6121,6218,6290,6364,6464,6516,6582,6670,6760,6822,6886,6949,7056,7145,7244,7332", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,84,116,81,63,80,63,60,110,67,53,68,61,53,110,60,61,53,71,128,88,81,118,81,82,86,66,65,70,75,88,76,77,77,75,89,72,94,96,71,73,99,51,65,87,89,61,63,62,106,88,98,87,75", ++ "endOffsets": "386,3177,3262,3379,3461,3525,3606,3670,3731,3842,3910,3964,4033,4095,4149,4260,4321,4383,4437,4509,4638,4727,4809,4928,5010,5093,5180,5247,5313,5384,5460,5549,5626,5704,5782,5858,5948,6021,6116,6213,6285,6359,6459,6511,6577,6665,6755,6817,6881,6944,7051,7140,7239,7327,7403" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7491", ++ "endColumns": "100", ++ "endOffsets": "7587" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-km_values-km.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7393", ++ "endColumns": "100", ++ "endOffsets": "7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,304,404,516,596,661,755,825,887,974,1039,1098,1163,1224,1281,1400,1458,1519,1576,1647,1777,1863,1941,2049,2124,2195,2292,2359,2425,2505,2595,2681,2760,2837,2907,2982,3070,3140,3240,3339,3413,3489,3596,3650,3723,3814,3910,3972,4036,4099,4198,4296,4388,4488", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,99,111,79,64,93,69,61,86,64,58,64,60,56,118,57,60,56,70,129,85,77,107,74,70,96,66,65,79,89,85,78,76,69,74,87,69,99,98,73,75,106,53,72,90,95,61,63,62,98,97,91,99,82", ++ "endOffsets": "219,299,399,511,591,656,750,820,882,969,1034,1093,1158,1219,1276,1395,1453,1514,1571,1642,1772,1858,1936,2044,2119,2190,2287,2354,2420,2500,2590,2676,2755,2832,2902,2977,3065,3135,3235,3334,3408,3484,3591,3645,3718,3809,3905,3967,4031,4094,4193,4291,4383,4483,4566" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3042,3142,3254,3334,3399,3493,3563,3625,3712,3777,3836,3901,3962,4019,4138,4196,4257,4314,4385,4515,4601,4679,4787,4862,4933,5030,5097,5163,5243,5333,5419,5498,5575,5645,5720,5808,5878,5978,6077,6151,6227,6334,6388,6461,6552,6648,6710,6774,6837,6936,7034,7126,7226", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,99,111,79,64,93,69,61,86,64,58,64,60,56,118,57,60,56,70,129,85,77,107,74,70,96,66,65,79,89,85,78,76,69,74,87,69,99,98,73,75,106,53,72,90,95,61,63,62,98,97,91,99,82", ++ "endOffsets": "269,3037,3137,3249,3329,3394,3488,3558,3620,3707,3772,3831,3896,3957,4014,4133,4191,4252,4309,4380,4510,4596,4674,4782,4857,4928,5025,5092,5158,5238,5328,5414,5493,5570,5640,5715,5803,5873,5973,6072,6146,6222,6329,6383,6456,6547,6643,6705,6769,6832,6931,7029,7121,7221,7304" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,2793", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,376,475,585,672,775,896,974,1050,1141,1234,1326,1420,1520,1613,1708,1802,1893,1984,2067,2171,2275,2375,2484,2593,2702,2864,7309", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "371,470,580,667,770,891,969,1045,1136,1229,1321,1415,1515,1608,1703,1797,1888,1979,2062,2166,2270,2370,2479,2588,2697,2859,2957,7388" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ldrtl-v17_values-ldrtl-v17.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ldrtl-v17/values-ldrtl-v17.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,191", ++ "endColumns": "135,140", ++ "endOffsets": "186,327" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-gl_values-gl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7632", ++ "endColumns": "100", ++ "endOffsets": "7728" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,230,315,420,553,633,711,807,886,949,1044,1113,1176,1250,1314,1370,1491,1549,1611,1667,1744,1883,1971,2051,2161,2241,2321,2411,2478,2544,2623,2704,2792,2871,2948,3030,3119,3203,3295,3388,3489,3563,3655,3757,3809,3875,3967,4055,4117,4181,4244,4355,4457,4563,4666", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,104,132,79,77,95,78,62,94,68,62,73,63,55,120,57,61,55,76,138,87,79,109,79,79,89,66,65,78,80,87,78,76,81,88,83,91,92,100,73,91,101,51,65,91,87,61,63,62,110,101,105,102,84", ++ "endOffsets": "225,310,415,548,628,706,802,881,944,1039,1108,1171,1245,1309,1365,1486,1544,1606,1662,1739,1878,1966,2046,2156,2236,2316,2406,2473,2539,2618,2699,2787,2866,2943,3025,3114,3198,3290,3383,3484,3558,3650,3752,3804,3870,3962,4050,4112,4176,4239,4350,4452,4558,4661,4746" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3028,3113,3218,3351,3431,3509,3605,3684,3747,3842,3911,3974,4048,4112,4168,4289,4347,4409,4465,4542,4681,4769,4849,4959,5039,5119,5209,5276,5342,5421,5502,5590,5669,5746,5828,5917,6001,6093,6186,6287,6361,6453,6555,6607,6673,6765,6853,6915,6979,7042,7153,7255,7361,7464", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,104,132,79,77,95,78,62,94,68,62,73,63,55,120,57,61,55,76,138,87,79,109,79,79,89,66,65,78,80,87,78,76,81,88,83,91,92,100,73,91,101,51,65,91,87,61,63,62,110,101,105,102,84", ++ "endOffsets": "275,3108,3213,3346,3426,3504,3600,3679,3742,3837,3906,3969,4043,4107,4163,4284,4342,4404,4460,4537,4676,4764,4844,4954,5034,5114,5204,5271,5337,5416,5497,5585,5664,5741,5823,5912,5996,6088,6181,6282,6356,6448,6550,6602,6668,6760,6848,6910,6974,7037,7148,7250,7356,7459,7544" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,313,421,506,607,735,820,900,992,1086,1183,1277,1377,1471,1567,1662,1754,1846,1927,2035,2142,2249,2358,2463,2577,2754,2853", ++ "endColumns": "103,103,107,84,100,127,84,79,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", ++ "endOffsets": "204,308,416,501,602,730,815,895,987,1081,1178,1272,1372,1466,1562,1657,1749,1841,1922,2030,2137,2244,2353,2458,2572,2749,2848,2931" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "280,384,488,596,681,782,910,995,1075,1167,1261,1358,1452,1552,1646,1742,1837,1929,2021,2102,2210,2317,2424,2533,2638,2752,2929,7549", ++ "endColumns": "103,103,107,84,100,127,84,79,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", ++ "endOffsets": "379,483,591,676,777,905,990,1070,1162,1256,1353,1447,1547,1641,1737,1832,1924,2016,2097,2205,2312,2419,2528,2633,2747,2924,3023,7627" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-b+sr+Latn_values-b+sr+Latn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,816,898,989,1082,1177,1271,1371,1464,1559,1664,1755,1846,1932,2037,2143,2246,2353,2462,2569,2739,2836", ++ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,811,893,984,1077,1172,1266,1366,1459,1554,1659,1750,1841,1927,2032,2138,2241,2348,2457,2564,2734,2831,2918" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "329,436,537,643,729,833,955,1040,1122,1213,1306,1401,1495,1595,1688,1783,1888,1979,2070,2156,2261,2367,2470,2577,2686,2793,2963,7407", ++ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", ++ "endOffsets": "431,532,638,724,828,950,1035,1117,1208,1301,1396,1490,1590,1683,1778,1883,1974,2065,2151,2256,2362,2465,2572,2681,2788,2958,3055,7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7494", ++ "endColumns": "100", ++ "endOffsets": "7590" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,279,359,453,585,666,732,825,893,956,1059,1125,1181,1252,1312,1366,1478,1535,1596,1650,1726,1851,1938,2021,2130,2212,2295,2383,2450,2516,2590,2668,2757,2833,2909,2984,3056,3146,3219,3311,3407,3479,3555,3651,3704,3771,3858,3945,4007,4071,4134,4239,4343,4439,4546", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,79,93,131,80,65,92,67,62,102,65,55,70,59,53,111,56,60,53,75,124,86,82,108,81,82,87,66,65,73,77,88,75,75,74,71,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "274,354,448,580,661,727,820,888,951,1054,1120,1176,1247,1307,1361,1473,1530,1591,1645,1721,1846,1933,2016,2125,2207,2290,2378,2445,2511,2585,2663,2752,2828,2904,2979,3051,3141,3214,3306,3402,3474,3550,3646,3699,3766,3853,3940,4002,4066,4129,4234,4338,4434,4541,4621" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3060,3140,3234,3366,3447,3513,3606,3674,3737,3840,3906,3962,4033,4093,4147,4259,4316,4377,4431,4507,4632,4719,4802,4911,4993,5076,5164,5231,5297,5371,5449,5538,5614,5690,5765,5837,5927,6000,6092,6188,6260,6336,6432,6485,6552,6639,6726,6788,6852,6915,7020,7124,7220,7327", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,93,131,80,65,92,67,62,102,65,55,70,59,53,111,56,60,53,75,124,86,82,108,81,82,87,66,65,73,77,88,75,75,74,71,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "324,3135,3229,3361,3442,3508,3601,3669,3732,3835,3901,3957,4028,4088,4142,4254,4311,4372,4426,4502,4627,4714,4797,4906,4988,5071,5159,5226,5292,5366,5444,5533,5609,5685,5760,5832,5922,5995,6087,6183,6255,6331,6427,6480,6547,6634,6721,6783,6847,6910,7015,7119,7215,7322,7402" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h360dp-land-v13/values-h360dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478,547", ++ "endColumns": "58,55,55,66,64,54,64,68,68", ++ "endOffsets": "109,165,221,288,353,408,473,542,611" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-tl_values-tl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,235,321,426,562,647,712,811,879,938,1027,1094,1157,1232,1300,1354,1474,1532,1594,1648,1723,1865,1955,2040,2155,2239,2322,2418,2485,2551,2625,2703,2794,2868,2947,3020,3092,3196,3269,3368,3468,3542,3617,3724,3776,3843,3934,4028,4090,4154,4217,4336,4438,4547,4650", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,104,135,84,64,98,67,58,88,66,62,74,67,53,119,57,61,53,74,141,89,84,114,83,82,95,66,65,73,77,90,73,78,72,71,103,72,98,99,73,74,106,51,66,90,93,61,63,62,118,101,108,102,84", ++ "endOffsets": "230,316,421,557,642,707,806,874,933,1022,1089,1152,1227,1295,1349,1469,1527,1589,1643,1718,1860,1950,2035,2150,2234,2317,2413,2480,2546,2620,2698,2789,2863,2942,3015,3087,3191,3264,3363,3463,3537,3612,3719,3771,3838,3929,4023,4085,4149,4212,4331,4433,4542,4645,4730" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3111,3216,3352,3437,3502,3601,3669,3728,3817,3884,3947,4022,4090,4144,4264,4322,4384,4438,4513,4655,4745,4830,4945,5029,5112,5208,5275,5341,5415,5493,5584,5658,5737,5810,5882,5986,6059,6158,6258,6332,6407,6514,6566,6633,6724,6818,6880,6944,7007,7126,7228,7337,7440", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,104,135,84,64,98,67,58,88,66,62,74,67,53,119,57,61,53,74,141,89,84,114,83,82,95,66,65,73,77,90,73,78,72,71,103,72,98,99,73,74,106,51,66,90,93,61,63,62,118,101,108,102,84", ++ "endOffsets": "280,3106,3211,3347,3432,3497,3596,3664,3723,3812,3879,3942,4017,4085,4139,4259,4317,4379,4433,4508,4650,4740,4825,4940,5024,5107,5203,5270,5336,5410,5488,5579,5653,5732,5805,5877,5981,6054,6153,6253,6327,6402,6509,6561,6628,6719,6813,6875,6939,7002,7121,7223,7332,7435,7520" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7610", ++ "endColumns": "100", ++ "endOffsets": "7706" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,324,437,525,631,746,826,903,994,1087,1182,1276,1376,1469,1564,1658,1749,1840,1924,2033,2143,2244,2354,2472,2580,2743,2845", ++ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", ++ "endOffsets": "211,319,432,520,626,741,821,898,989,1082,1177,1271,1371,1464,1559,1653,1744,1835,1919,2028,2138,2239,2349,2467,2575,2738,2840,2925" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "285,396,504,617,705,811,926,1006,1083,1174,1267,1362,1456,1556,1649,1744,1838,1929,2020,2104,2213,2323,2424,2534,2652,2760,2923,7525", ++ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", ++ "endOffsets": "391,499,612,700,806,921,1001,1078,1169,1262,1357,1451,1551,1644,1739,1833,1924,2015,2099,2208,2318,2419,2529,2647,2755,2918,3020,7605" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-land_values-land.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-land/values-land.xml", ++ "from": { ++ "startLines": "2,3,4", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,125,196", ++ "endColumns": "69,70,67", ++ "endOffsets": "120,191,259" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-land/values-land.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,26,32", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,204,277,347,419,489,554,621,691,763,832,901,983,1073,1149,1217,1284,1362,1427,1494,1666,2061", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,25,31,36", ++ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10", ++ "endOffsets": "125,199,272,342,414,484,549,616,686,758,827,896,978,1068,1144,1212,1279,1357,1422,1489,1661,2056,2325" ++ }, ++ "to": { ++ "startLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,29,35", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,339,413,486,556,628,698,763,830,900,972,1041,1110,1192,1282,1358,1426,1493,1571,1636,1703,1875,2270", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,28,34,39", ++ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10", ++ "endOffsets": "334,408,481,551,623,693,758,825,895,967,1036,1105,1187,1277,1353,1421,1488,1566,1631,1698,1870,2265,2534" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-mr_values-mr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,322,429,519,621,733,811,888,979,1072,1165,1262,1362,1455,1550,1644,1735,1826,1906,2013,2114,2213,2322,2424,2538,2695,2798", ++ "endColumns": "110,105,106,89,101,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,98,108,101,113,156,102,82", ++ "endOffsets": "211,317,424,514,616,728,806,883,974,1067,1160,1257,1357,1450,1545,1639,1730,1821,1901,2008,2109,2208,2317,2419,2533,2690,2793,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,375,481,588,678,780,892,970,1047,1138,1231,1324,1421,1521,1614,1709,1803,1894,1985,2065,2172,2273,2372,2481,2583,2697,2854,7231", ++ "endColumns": "110,105,106,89,101,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,98,108,101,113,156,102,82", ++ "endOffsets": "370,476,583,673,775,887,965,1042,1133,1226,1319,1416,1516,1609,1704,1798,1889,1980,2060,2167,2268,2367,2476,2578,2692,2849,2952,7309" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,297,397,513,595,658,749,814,873,961,1023,1083,1150,1213,1267,1381,1438,1499,1553,1623,1742,1823,1908,2013,2090,2167,2253,2320,2386,2456,2534,2621,2691,2767,2838,2907,3003,3077,3175,3271,3345,3415,3517,3572,3639,3726,3819,3882,3946,4009,4109,4212,4306,4410", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,99,115,81,62,90,64,58,87,61,59,66,62,53,113,56,60,53,69,118,80,84,104,76,76,85,66,65,69,77,86,69,75,70,68,95,73,97,95,73,69,101,54,66,86,92,62,63,62,99,102,93,103,77", ++ "endOffsets": "209,292,392,508,590,653,744,809,868,956,1018,1078,1145,1208,1262,1376,1433,1494,1548,1618,1737,1818,1903,2008,2085,2162,2248,2315,2381,2451,2529,2616,2686,2762,2833,2902,2998,3072,3170,3266,3340,3410,3512,3567,3634,3721,3814,3877,3941,4004,4104,4207,4301,4405,4483" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2957,3040,3140,3256,3338,3401,3492,3557,3616,3704,3766,3826,3893,3956,4010,4124,4181,4242,4296,4366,4485,4566,4651,4756,4833,4910,4996,5063,5129,5199,5277,5364,5434,5510,5581,5650,5746,5820,5918,6014,6088,6158,6260,6315,6382,6469,6562,6625,6689,6752,6852,6955,7049,7153", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,99,115,81,62,90,64,58,87,61,59,66,62,53,113,56,60,53,69,118,80,84,104,76,76,85,66,65,69,77,86,69,75,70,68,95,73,97,95,73,69,101,54,66,86,92,62,63,62,99,102,93,103,77", ++ "endOffsets": "259,3035,3135,3251,3333,3396,3487,3552,3611,3699,3761,3821,3888,3951,4005,4119,4176,4237,4291,4361,4480,4561,4646,4751,4828,4905,4991,5058,5124,5194,5272,5359,5429,5505,5576,5645,5741,5815,5913,6009,6083,6153,6255,6310,6377,6464,6557,6620,6684,6747,6847,6950,7044,7148,7226" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7314", ++ "endColumns": "100", ++ "endOffsets": "7410" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-bn_values-bn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,2835", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,2917" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,490,596,685,790,911,994,1076,1167,1260,1354,1448,1548,1641,1736,1830,1921,2012,2098,2208,2312,2415,2523,2631,2736,2901,7301", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "379,485,591,680,785,906,989,1071,1162,1255,1349,1443,1543,1636,1731,1825,1916,2007,2093,2203,2307,2410,2518,2626,2731,2896,3001,7383" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7388", ++ "endColumns": "100", ++ "endOffsets": "7484" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,309,413,530,611,677,768,834,895,985,1052,1113,1182,1244,1298,1405,1464,1525,1579,1653,1773,1858,1942,2047,2118,2188,2275,2342,2408,2481,2561,2656,2725,2801,2881,2950,3045,3128,3218,3313,3387,3461,3554,3608,3675,3761,3846,3908,3972,4035,4137,4242,4335,4441", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,103,116,80,65,90,65,60,89,66,60,68,61,53,106,58,60,53,73,119,84,83,104,70,69,86,66,65,72,79,94,68,75,79,68,94,82,89,94,73,73,92,53,66,85,84,61,63,62,101,104,92,105,79", ++ "endOffsets": "221,304,408,525,606,672,763,829,890,980,1047,1108,1177,1239,1293,1400,1459,1520,1574,1648,1768,1853,1937,2042,2113,2183,2270,2337,2403,2476,2556,2651,2720,2796,2876,2945,3040,3123,3213,3308,3382,3456,3549,3603,3670,3756,3841,3903,3967,4030,4132,4237,4330,4436,4516" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3006,3089,3193,3310,3391,3457,3548,3614,3675,3765,3832,3893,3962,4024,4078,4185,4244,4305,4359,4433,4553,4638,4722,4827,4898,4968,5055,5122,5188,5261,5341,5436,5505,5581,5661,5730,5825,5908,5998,6093,6167,6241,6334,6388,6455,6541,6626,6688,6752,6815,6917,7022,7115,7221", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,103,116,80,65,90,65,60,89,66,60,68,61,53,106,58,60,53,73,119,84,83,104,70,69,86,66,65,72,79,94,68,75,79,68,94,82,89,94,73,73,92,53,66,85,84,61,63,62,101,104,92,105,79", ++ "endOffsets": "271,3084,3188,3305,3386,3452,3543,3609,3670,3760,3827,3888,3957,4019,4073,4180,4239,4300,4354,4428,4548,4633,4717,4822,4893,4963,5050,5117,5183,5256,5336,5431,5500,5576,5656,5725,5820,5903,5993,6088,6162,6236,6329,6383,6450,6536,6621,6683,6747,6810,6912,7017,7110,7216,7296" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-bs_values-bs.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,282,364,460,586,667,733,825,902,965,1073,1139,1195,1266,1326,1380,1499,1556,1618,1672,1747,1871,1959,2042,2157,2242,2328,2416,2483,2549,2623,2701,2788,2860,2937,3010,3080,3173,3245,3337,3433,3507,3583,3679,3732,3799,3886,3973,4035,4099,4162,4270,4372,4473,4578", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,81,95,125,80,65,91,76,62,107,65,55,70,59,53,118,56,61,53,74,123,87,82,114,84,85,87,66,65,73,77,86,71,76,72,69,92,71,91,95,73,75,95,52,66,86,86,61,63,62,107,101,100,104,79", ++ "endOffsets": "277,359,455,581,662,728,820,897,960,1068,1134,1190,1261,1321,1375,1494,1551,1613,1667,1742,1866,1954,2037,2152,2237,2323,2411,2478,2544,2618,2696,2783,2855,2932,3005,3075,3168,3240,3332,3428,3502,3578,3674,3727,3794,3881,3968,4030,4094,4157,4265,4367,4468,4573,4653" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3057,3139,3235,3361,3442,3508,3600,3677,3740,3848,3914,3970,4041,4101,4155,4274,4331,4393,4447,4522,4646,4734,4817,4932,5017,5103,5191,5258,5324,5398,5476,5563,5635,5712,5785,5855,5948,6020,6112,6208,6282,6358,6454,6507,6574,6661,6748,6810,6874,6937,7045,7147,7248,7353", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,95,125,80,65,91,76,62,107,65,55,70,59,53,118,56,61,53,74,123,87,82,114,84,85,87,66,65,73,77,86,71,76,72,69,92,71,91,95,73,75,95,52,66,86,86,61,63,62,107,101,100,104,79", ++ "endOffsets": "327,3134,3230,3356,3437,3503,3595,3672,3735,3843,3909,3965,4036,4096,4150,4269,4326,4388,4442,4517,4641,4729,4812,4927,5012,5098,5186,5253,5319,5393,5471,5558,5630,5707,5780,5850,5943,6015,6107,6203,6277,6353,6449,6502,6569,6656,6743,6805,6869,6932,7040,7142,7243,7348,7428" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,323,430,516,620,742,827,909,1000,1093,1188,1282,1382,1475,1570,1665,1756,1847,1935,2038,2142,2243,2348,2462,2565,2734,2830", ++ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", ++ "endOffsets": "221,318,425,511,615,737,822,904,995,1088,1183,1277,1377,1470,1565,1660,1751,1842,1930,2033,2137,2238,2343,2457,2560,2729,2825,2912" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "332,453,550,657,743,847,969,1054,1136,1227,1320,1415,1509,1609,1702,1797,1892,1983,2074,2162,2265,2369,2470,2575,2689,2792,2961,7433", ++ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", ++ "endOffsets": "448,545,652,738,842,964,1049,1131,1222,1315,1410,1504,1604,1697,1792,1887,1978,2069,2157,2260,2364,2465,2570,2684,2787,2956,3052,7515" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7520", ++ "endColumns": "100", ++ "endOffsets": "7616" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-az_values-az.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,300,396,512,592,656,750,818,877,972,1036,1095,1162,1225,1279,1394,1452,1514,1568,1639,1771,1855,1935,2039,2115,2191,2275,2342,2408,2478,2556,2639,2709,2785,2863,2934,3020,3103,3196,3289,3362,3434,3528,3582,3649,3733,3821,3885,3950,4014,4116,4213,4309,4406", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,95,115,79,63,93,67,58,94,63,58,66,62,53,114,57,61,53,70,131,83,79,103,75,75,83,66,65,69,77,82,69,75,77,70,85,82,92,92,72,71,93,53,66,83,87,63,64,63,101,96,95,96,79", ++ "endOffsets": "215,295,391,507,587,651,745,813,872,967,1031,1090,1157,1220,1274,1389,1447,1509,1563,1634,1766,1850,1930,2034,2110,2186,2270,2337,2403,2473,2551,2634,2704,2780,2858,2929,3015,3098,3191,3284,3357,3429,3523,3577,3644,3728,3816,3880,3945,4009,4111,4208,4304,4401,4481" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2978,3058,3154,3270,3350,3414,3508,3576,3635,3730,3794,3853,3920,3983,4037,4152,4210,4272,4326,4397,4529,4613,4693,4797,4873,4949,5033,5100,5166,5236,5314,5397,5467,5543,5621,5692,5778,5861,5954,6047,6120,6192,6286,6340,6407,6491,6579,6643,6708,6772,6874,6971,7067,7164", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,95,115,79,63,93,67,58,94,63,58,66,62,53,114,57,61,53,70,131,83,79,103,75,75,83,66,65,69,77,82,69,75,77,70,85,82,92,92,72,71,93,53,66,83,87,63,64,63,101,96,95,96,79", ++ "endOffsets": "265,3053,3149,3265,3345,3409,3503,3571,3630,3725,3789,3848,3915,3978,4032,4147,4205,4267,4321,4392,4524,4608,4688,4792,4868,4944,5028,5095,5161,5231,5309,5392,5462,5538,5616,5687,5773,5856,5949,6042,6115,6187,6281,6335,6402,6486,6574,6638,6703,6767,6869,6966,7062,7159,7239" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,2813", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,2892" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,380,481,591,679,786,900,982,1060,1151,1244,1338,1437,1537,1630,1725,1819,1910,2002,2087,2192,2298,2398,2507,2612,2714,2872,7244", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "375,476,586,674,781,895,977,1055,1146,1239,1333,1432,1532,1625,1720,1814,1905,1997,2082,2187,2293,2393,2502,2607,2709,2867,2973,7323" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7328", ++ "endColumns": "100", ++ "endOffsets": "7424" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-zh-rCN_values-zh-rCN.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,272,363,469,542,604,681,740,799,877,934,990,1049,1107,1161,1246,1302,1360,1414,1479,1571,1645,1721,1813,1875,1937,2016,2083,2149,2213,2282,2360,2421,2492,2559,2619,2698,2765,2848,2933,3007,3072,3148,3196,3260,3336,3414,3476,3540,3603,3683,3759,3837,3914", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,69,90,105,72,61,76,58,58,77,56,55,58,57,53,84,55,57,53,64,91,73,75,91,61,61,78,66,65,63,68,77,60,70,66,59,78,66,82,84,73,64,75,47,63,75,77,61,63,62,79,75,77,76,68", ++ "endOffsets": "197,267,358,464,537,599,676,735,794,872,929,985,1044,1102,1156,1241,1297,1355,1409,1474,1566,1640,1716,1808,1870,1932,2011,2078,2144,2208,2277,2355,2416,2487,2554,2614,2693,2760,2843,2928,3002,3067,3143,3191,3255,3331,3409,3471,3535,3598,3678,3754,3832,3909,3978" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2809,2879,2970,3076,3149,3211,3288,3347,3406,3484,3541,3597,3656,3714,3768,3853,3909,3967,4021,4086,4178,4252,4328,4420,4482,4544,4623,4690,4756,4820,4889,4967,5028,5099,5166,5226,5305,5372,5455,5540,5614,5679,5755,5803,5867,5943,6021,6083,6147,6210,6290,6366,6444,6521", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,69,90,105,72,61,76,58,58,77,56,55,58,57,53,84,55,57,53,64,91,73,75,91,61,61,78,66,65,63,68,77,60,70,66,59,78,66,82,84,73,64,75,47,63,75,77,61,63,62,79,75,77,76,68", ++ "endOffsets": "247,2874,2965,3071,3144,3206,3283,3342,3401,3479,3536,3592,3651,3709,3763,3848,3904,3962,4016,4081,4173,4247,4323,4415,4477,4539,4618,4685,4751,4815,4884,4962,5023,5094,5161,5221,5300,5367,5450,5535,5609,5674,5750,5798,5862,5938,6016,6078,6142,6205,6285,6361,6439,6516,6585" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,2662", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,2736" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,442,542,624,721,827,904,979,1070,1163,1260,1356,1450,1543,1638,1730,1821,1912,1990,2086,2181,2276,2373,2469,2567,2715,6590", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "342,437,537,619,716,822,899,974,1065,1158,1255,1351,1445,1538,1633,1725,1816,1907,1985,2081,2176,2271,2368,2464,2562,2710,2804,6664" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6669", ++ "endColumns": "100", ++ "endOffsets": "6765" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ldltr-v21_values-ldltr-v21.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ldltr-v21/values-ldltr-v21.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "112", ++ "endOffsets": "163" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-en-rAU_values-en-rAU.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-el_values-el.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,225,310,412,529,615,681,781,863,926,1017,1082,1144,1213,1275,1329,1467,1524,1585,1639,1712,1865,1950,2034,2143,2224,2309,2399,2466,2532,2610,2695,2780,2852,2932,3012,3083,3175,3247,3344,3441,3515,3589,3691,3747,3819,3907,3999,4061,4125,4188,4304,4412,4521,4629", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,101,116,85,65,99,81,62,90,64,61,68,61,53,137,56,60,53,72,152,84,83,108,80,84,89,66,65,77,84,84,71,79,79,70,91,71,96,96,73,73,101,55,71,87,91,61,63,62,115,107,108,107,90", ++ "endOffsets": "220,305,407,524,610,676,776,858,921,1012,1077,1139,1208,1270,1324,1462,1519,1580,1634,1707,1860,1945,2029,2138,2219,2304,2394,2461,2527,2605,2690,2775,2847,2927,3007,3078,3170,3242,3339,3436,3510,3584,3686,3742,3814,3902,3994,4056,4120,4183,4299,4407,4516,4624,4715" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3056,3141,3243,3360,3446,3512,3612,3694,3757,3848,3913,3975,4044,4106,4160,4298,4355,4416,4470,4543,4696,4781,4865,4974,5055,5140,5230,5297,5363,5441,5526,5611,5683,5763,5843,5914,6006,6078,6175,6272,6346,6420,6522,6578,6650,6738,6830,6892,6956,7019,7135,7243,7352,7460", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,101,116,85,65,99,81,62,90,64,61,68,61,53,137,56,60,53,72,152,84,83,108,80,84,89,66,65,77,84,84,71,79,79,70,91,71,96,96,73,73,101,55,71,87,91,61,63,62,115,107,108,107,90", ++ "endOffsets": "270,3136,3238,3355,3441,3507,3607,3689,3752,3843,3908,3970,4039,4101,4155,4293,4350,4411,4465,4538,4691,4776,4860,4969,5050,5135,5225,5292,5358,5436,5521,5606,5678,5758,5838,5909,6001,6073,6170,6267,6341,6415,6517,6573,6645,6733,6825,6887,6951,7014,7130,7238,7347,7455,7546" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7637", ++ "endColumns": "100", ++ "endOffsets": "7733" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,2886", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,2967" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "275,393,504,621,706,812,935,1024,1109,1200,1293,1388,1482,1582,1675,1770,1867,1958,2049,2134,2245,2354,2456,2567,2677,2785,2956,7551", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "388,499,616,701,807,930,1019,1104,1195,1288,1383,1477,1577,1670,1765,1862,1953,2044,2129,2240,2349,2451,2562,2672,2780,2951,3051,7632" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h480dp-land-v13/values-h480dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478,547", ++ "endColumns": "58,55,55,66,64,54,64,68,68", ++ "endOffsets": "109,165,221,288,353,408,473,542,611" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values-ja_values-ja.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,2691", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,2765" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "258,355,448,553,635,733,841,919,994,1085,1178,1273,1367,1467,1560,1655,1749,1840,1931,2009,2111,2209,2304,2407,2503,2599,2747,6692", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "350,443,548,630,728,836,914,989,1080,1173,1268,1362,1462,1555,1650,1744,1835,1926,2004,2106,2204,2299,2402,2498,2594,2742,2839,6766" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6771", ++ "endColumns": "100", ++ "endOffsets": "6867" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,208,277,362,466,542,605,689,753,811,892,956,1011,1070,1127,1181,1274,1330,1387,1441,1507,1607,1683,1764,1856,1918,1980,2059,2126,2192,2262,2332,2409,2473,2544,2612,2675,2754,2817,2897,2979,3051,3122,3194,3242,3306,3381,3458,3520,3584,3647,3733,3817,3898,3983", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,68,84,103,75,62,83,63,57,80,63,54,58,56,53,92,55,56,53,65,99,75,80,91,61,61,78,66,65,69,69,76,63,70,67,62,78,62,79,81,71,70,71,47,63,74,76,61,63,62,85,83,80,84,72", ++ "endOffsets": "203,272,357,461,537,600,684,748,806,887,951,1006,1065,1122,1176,1269,1325,1382,1436,1502,1602,1678,1759,1851,1913,1975,2054,2121,2187,2257,2327,2404,2468,2539,2607,2670,2749,2812,2892,2974,3046,3117,3189,3237,3301,3376,3453,3515,3579,3642,3728,3812,3893,3978,4051" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2844,2913,2998,3102,3178,3241,3325,3389,3447,3528,3592,3647,3706,3763,3817,3910,3966,4023,4077,4143,4243,4319,4400,4492,4554,4616,4695,4762,4828,4898,4968,5045,5109,5180,5248,5311,5390,5453,5533,5615,5687,5758,5830,5878,5942,6017,6094,6156,6220,6283,6369,6453,6534,6619", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,68,84,103,75,62,83,63,57,80,63,54,58,56,53,92,55,56,53,65,99,75,80,91,61,61,78,66,65,69,69,76,63,70,67,62,78,62,79,81,71,70,71,47,63,74,76,61,63,62,85,83,80,84,72", ++ "endOffsets": "253,2908,2993,3097,3173,3236,3320,3384,3442,3523,3587,3642,3701,3758,3812,3905,3961,4018,4072,4138,4238,4314,4395,4487,4549,4611,4690,4757,4823,4893,4963,5040,5104,5175,5243,5306,5385,5448,5528,5610,5682,5753,5825,5873,5937,6012,6089,6151,6215,6278,6364,6448,6529,6614,6687" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "com.wix.detox.test.detox-fullDebugAndroidTest-22:/values_values.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/113a9edb5eab6212082ea70ac0555d5e/transformed/appcompat-resources-1.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,29,36,47,74", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,1702,2087,2684,4317", ++ "endLines": "28,35,46,73,78", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "1697,2082,2679,4312,4582" ++ }, ++ "to": { ++ "startLines": "5156,5172,5178,7330,7346", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "333041,333466,333644,428385,428796", ++ "endLines": "5171,5177,5187,7345,7349", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "333461,333639,333923,428791,428918" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/461d7c19ef38b4f9b46fbdeb7e398449/transformed/espresso-contrib-3.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "5", ++ "startColumns": "0", ++ "startOffsets": "164", ++ "endColumns": "73", ++ "endOffsets": "237" ++ }, ++ "to": { ++ "startLines": "982", ++ "startColumns": "4", ++ "startOffsets": "57683", ++ "endColumns": "77", ++ "endOffsets": "57756" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,89,90,94,95,96,97,103,113,146,167,200", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,115,187,275,344,407,477,545,617,687,748,822,895,956,1017,1079,1143,1205,1266,1334,1434,1494,1560,1633,1702,1759,1811,1873,1945,2021,2086,2145,2204,2264,2324,2384,2444,2504,2564,2624,2684,2744,2804,2863,2923,2983,3043,3103,3163,3223,3283,3343,3403,3463,3522,3582,3642,3701,3760,3819,3878,3937,3996,4031,4066,4121,4184,4239,4297,4355,4416,4479,4536,4587,4637,4698,4755,4821,4855,4890,4925,4995,5066,5183,5384,5494,5695,5824,5896,5963,6166,6467,8198,8879,9561", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,88,89,93,94,95,96,102,112,145,166,199,205", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "110,182,270,339,402,472,540,612,682,743,817,890,951,1012,1074,1138,1200,1261,1329,1429,1489,1555,1628,1697,1754,1806,1868,1940,2016,2081,2140,2199,2259,2319,2379,2439,2499,2559,2619,2679,2739,2799,2858,2918,2978,3038,3098,3158,3218,3278,3338,3398,3458,3517,3577,3637,3696,3755,3814,3873,3932,3991,4026,4061,4116,4179,4234,4292,4350,4411,4474,4531,4582,4632,4693,4750,4816,4850,4885,4920,4990,5061,5178,5379,5489,5690,5819,5891,5958,6161,6462,8193,8874,9556,9723" ++ }, ++ "to": { ++ "startLines": "312,413,414,496,497,605,606,607,608,609,610,611,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,988,989,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1036,1075,1184,3645,3646,3650,3651,3655,4204,4205,5900,6204,6433,6466,6502,6535", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "14944,19842,19914,25552,25621,32876,32946,33014,33086,33156,33217,33291,52866,52927,52988,53050,53114,53176,53237,53305,53405,53465,53531,53604,53673,53730,53782,55355,55427,55503,55568,55627,55686,55746,55806,55866,55926,55986,56046,56106,56166,56226,56286,56345,56405,56465,56525,56585,56645,56705,56765,56825,56885,56945,57004,57064,57124,57183,57242,57301,57360,57419,58005,58040,59332,59387,59450,59505,59563,59621,59682,59745,59802,59853,59903,59964,60021,60087,60121,60503,62813,77035,238337,238454,238655,238765,238966,278078,278150,358443,368261,390140,391871,393096,393778", ++ "endLines": "312,413,414,496,497,605,606,607,608,609,610,611,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,988,989,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1036,1075,1184,3645,3649,3650,3654,3655,4204,4205,5905,6213,6465,6486,6534,6540", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "14999,19909,19997,25616,25679,32941,33009,33081,33151,33212,33286,33359,52922,52983,53045,53109,53171,53232,53300,53400,53460,53526,53599,53668,53725,53777,53839,55422,55498,55563,55622,55681,55741,55801,55861,55921,55981,56041,56101,56161,56221,56281,56340,56400,56460,56520,56580,56640,56700,56760,56820,56880,56940,56999,57059,57119,57178,57237,57296,57355,57414,57473,58035,58070,59382,59445,59500,59558,59616,59677,59740,59797,59848,59898,59959,60016,60082,60116,60151,60533,62878,77101,238449,238650,238760,238961,239090,278145,278212,358641,368557,391866,392547,393773,393940" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/6193ccf8266fe7e7acf873e6a6e33027/transformed/recyclerview-1.2.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,111,170,218,274,349,425,497,563", ++ "endLines": "2,3,4,5,6,7,8,9,38", ++ "endColumns": "55,58,47,55,74,75,71,65,24", ++ "endOffsets": "106,165,213,269,344,420,492,558,2084" ++ }, ++ "to": { ++ "startLines": "330,663,664,665,673,674,675,987,7121", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "15685,36669,36728,36776,37443,37518,37594,57939,421661", ++ "endLines": "330,663,664,665,673,674,675,987,7141", ++ "endColumns": "55,58,47,55,74,75,71,65,24", ++ "endOffsets": "15736,36723,36771,36827,37513,37589,37661,58000,422496" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/aab319f82c96efbdcc73962788b25c1d/transformed/fragment-1.3.6/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,10", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,112,177,241,411", ++ "endLines": "2,3,4,9,13", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "107,172,236,406,555" ++ }, ++ "to": { ++ "startLines": "983,1012,1047,6493,6498", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "57761,59221,61031,392777,392947", ++ "endLines": "983,1012,1047,6497,6501", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "57813,59281,61090,392942,393091" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,221,222,226,230,234,239,245,252,256,260,265,269,273,277,281,285,289,295,299,305,309,315,319,324,328,331,335,341,345,351,355,361,364,368,372,376,380,384,385,386,387,390,393,396,399,403,404,405,406,407,410,412,414,416,421,422,426,432,436,437,439,451,452,456,462,466,467,468,472,499,503,504,508,536,708,734,906,932,963,971,977,993,1015,1020,1025,1035,1044,1053,1057,1064,1083,1090,1091,1100,1103,1106,1110,1114,1118,1121,1122,1127,1132,1142,1147,1154,1160,1161,1164,1168,1173,1175,1177,1180,1183,1185,1189,1192,1199,1202,1205,1209,1211,1215,1217,1219,1221,1225,1233,1241,1253,1259,1268,1271,1282,1285,1286,1291,1292,1297,1366,1436,1437,1447,1456,1457,1459,1463,1466,1469,1472,1475,1478,1481,1484,1488,1491,1494,1497,1501,1504,1508,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1534,1536,1537,1538,1539,1540,1541,1542,1543,1545,1546,1548,1549,1551,1553,1554,1556,1557,1558,1559,1560,1561,1563,1564,1565,1566,1567,1568,1570,1572,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1588,1589,1590,1591,1592,1593,1594,1596,1600,1604,1605,1606,1607,1608,1609,1613,1614,1615,1616,1618,1620,1622,1624,1626,1627,1628,1629,1631,1633,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1649,1650,1651,1652,1654,1656,1657,1659,1660,1662,1664,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1684,1685,1686,1687,1688,1690,1692,1694,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1794,1797,1800,1803,1817,1828,1838,1868,1895,1904,1979,2382,2387,2415,2433,2469,2475,2481,2504,2645,2665,2671,2675,2681,2718,2730,2796,2820,2889,2908,2934", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,160,205,254,295,350,412,476,546,607,682,758,835,913,998,1080,1156,1232,1309,1387,1493,1599,1678,1758,1815,1873,1947,2022,2087,2153,2213,2274,2346,2419,2486,2554,2613,2672,2731,2790,2849,2903,2957,3010,3064,3118,3172,3226,3300,3379,3452,3526,3597,3669,3741,3814,3871,3929,4002,4076,4150,4225,4297,4370,4440,4511,4571,4632,4701,4770,4840,4914,4990,5054,5131,5207,5284,5349,5418,5495,5570,5639,5707,5784,5850,5911,6008,6073,6142,6241,6312,6371,6429,6486,6545,6609,6680,6752,6824,6896,6968,7035,7103,7171,7230,7293,7357,7447,7538,7598,7664,7731,7797,7867,7931,7984,8051,8112,8179,8292,8350,8413,8478,8543,8618,8691,8763,8807,8854,8900,8949,9010,9071,9132,9194,9258,9322,9386,9451,9514,9574,9635,9701,9760,9820,9882,9953,10013,10081,10167,10254,10344,10431,10519,10601,10684,10774,10865,10917,10975,11020,11086,11150,11207,11264,11318,11375,11423,11472,11523,11557,11604,11653,11699,11731,11795,11857,11917,11974,12048,12118,12196,12250,12320,12405,12453,12499,12560,12623,12689,12753,12824,12887,12952,13016,13077,13138,13190,13263,13337,13406,13481,13555,13629,13770,13840,13893,13971,14061,14149,14245,14335,14917,15006,15253,15534,15786,16071,16464,16941,17163,17385,17661,17888,18118,18348,18578,18808,19035,19454,19680,20105,20335,20763,20982,21265,21473,21604,21831,22257,22482,22909,23130,23555,23675,23951,24252,24576,24867,25181,25318,25449,25554,25796,25963,26167,26375,26646,26758,26870,26975,27092,27306,27452,27592,27678,28026,28114,28360,28778,29027,29109,29207,29889,29989,30241,30665,30920,31014,31103,31340,33392,33634,33736,33989,36173,47362,48878,60165,61693,63450,64076,64496,65757,67022,67278,67514,68061,68555,69160,69358,69938,71306,71681,71799,72337,72494,72690,72963,73219,73389,73530,73594,73959,74326,75002,75266,75604,75957,76051,76237,76543,76805,76930,77057,77296,77507,77626,77819,77996,78451,78632,78754,79013,79126,79313,79415,79522,79651,79926,80434,80930,81807,82101,82671,82820,83552,83724,83808,84144,84236,84514,89908,95442,95504,96134,96748,96839,96952,97181,97341,97493,97664,97830,97999,98166,98329,98572,98742,98915,99086,99360,99559,99764,100094,100178,100274,100370,100468,100568,100670,100772,100874,100976,101078,101178,101274,101386,101515,101638,101769,101900,101998,102112,102206,102346,102480,102576,102688,102788,102904,103000,103112,103212,103352,103488,103652,103782,103940,104090,104231,104375,104510,104622,104772,104900,105028,105164,105296,105426,105556,105668,105808,105954,106098,106236,106302,106392,106468,106572,106662,106764,106872,106980,107080,107160,107252,107350,107460,107512,107590,107696,107788,107892,108002,108124,108287,108444,108524,108624,108714,108824,108914,109155,109249,109355,109447,109547,109659,109773,109889,110005,110099,110213,110325,110427,110547,110669,110751,110855,110975,111101,111199,111293,111381,111493,111609,111731,111843,112018,112134,112220,112312,112424,112548,112615,112741,112809,112937,113081,113209,113278,113373,113488,113601,113700,113809,113920,114031,114132,114237,114337,114467,114558,114681,114775,114887,114973,115077,115173,115261,115379,115483,115587,115713,115801,115909,116009,116099,116209,116293,116395,116479,116533,116597,116703,116789,116899,116983,117103,122247,122365,122480,122612,123327,124019,124536,126135,127668,128056,132791,153454,153714,155224,156257,158270,158532,158888,159718,166500,167634,167928,168151,168478,170528,171176,175027,176229,180308,181523,182932", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,220,221,225,229,233,238,244,251,255,259,264,268,272,276,280,284,288,294,298,304,308,314,318,323,327,330,334,340,344,350,354,360,363,367,371,375,379,383,384,385,386,389,392,395,398,402,403,404,405,406,409,411,413,415,420,421,425,431,435,436,438,450,451,455,461,465,466,467,471,498,502,503,507,535,707,733,905,931,962,970,976,992,1014,1019,1024,1034,1043,1052,1056,1063,1082,1089,1090,1099,1102,1105,1109,1113,1117,1120,1121,1126,1131,1141,1146,1153,1159,1160,1163,1167,1172,1174,1176,1179,1182,1184,1188,1191,1198,1201,1204,1208,1210,1214,1216,1218,1220,1224,1232,1240,1252,1258,1267,1270,1281,1284,1285,1290,1291,1296,1365,1435,1436,1446,1455,1456,1458,1462,1465,1468,1471,1474,1477,1480,1483,1487,1490,1493,1496,1500,1503,1507,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1533,1535,1536,1537,1538,1539,1540,1541,1542,1544,1545,1547,1548,1550,1552,1553,1555,1556,1557,1558,1559,1560,1562,1563,1564,1565,1566,1567,1569,1571,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1587,1588,1589,1590,1591,1592,1593,1595,1599,1603,1604,1605,1606,1607,1608,1612,1613,1614,1615,1617,1619,1621,1623,1625,1626,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1648,1649,1650,1651,1653,1655,1656,1658,1659,1661,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1678,1679,1680,1681,1683,1684,1685,1686,1687,1689,1691,1693,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1793,1796,1799,1802,1816,1827,1837,1867,1894,1903,1978,2381,2386,2414,2432,2468,2474,2480,2503,2644,2664,2670,2674,2680,2717,2729,2795,2819,2888,2907,2933,2942", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "155,200,249,290,345,407,471,541,602,677,753,830,908,993,1075,1151,1227,1304,1382,1488,1594,1673,1753,1810,1868,1942,2017,2082,2148,2208,2269,2341,2414,2481,2549,2608,2667,2726,2785,2844,2898,2952,3005,3059,3113,3167,3221,3295,3374,3447,3521,3592,3664,3736,3809,3866,3924,3997,4071,4145,4220,4292,4365,4435,4506,4566,4627,4696,4765,4835,4909,4985,5049,5126,5202,5279,5344,5413,5490,5565,5634,5702,5779,5845,5906,6003,6068,6137,6236,6307,6366,6424,6481,6540,6604,6675,6747,6819,6891,6963,7030,7098,7166,7225,7288,7352,7442,7533,7593,7659,7726,7792,7862,7926,7979,8046,8107,8174,8287,8345,8408,8473,8538,8613,8686,8758,8802,8849,8895,8944,9005,9066,9127,9189,9253,9317,9381,9446,9509,9569,9630,9696,9755,9815,9877,9948,10008,10076,10162,10249,10339,10426,10514,10596,10679,10769,10860,10912,10970,11015,11081,11145,11202,11259,11313,11370,11418,11467,11518,11552,11599,11648,11694,11726,11790,11852,11912,11969,12043,12113,12191,12245,12315,12400,12448,12494,12555,12618,12684,12748,12819,12882,12947,13011,13072,13133,13185,13258,13332,13401,13476,13550,13624,13765,13835,13888,13966,14056,14144,14240,14330,14912,15001,15248,15529,15781,16066,16459,16936,17158,17380,17656,17883,18113,18343,18573,18803,19030,19449,19675,20100,20330,20758,20977,21260,21468,21599,21826,22252,22477,22904,23125,23550,23670,23946,24247,24571,24862,25176,25313,25444,25549,25791,25958,26162,26370,26641,26753,26865,26970,27087,27301,27447,27587,27673,28021,28109,28355,28773,29022,29104,29202,29884,29984,30236,30660,30915,31009,31098,31335,33387,33629,33731,33984,36168,47357,48873,60160,61688,63445,64071,64491,65752,67017,67273,67509,68056,68550,69155,69353,69933,71301,71676,71794,72332,72489,72685,72958,73214,73384,73525,73589,73954,74321,74997,75261,75599,75952,76046,76232,76538,76800,76925,77052,77291,77502,77621,77814,77991,78446,78627,78749,79008,79121,79308,79410,79517,79646,79921,80429,80925,81802,82096,82666,82815,83547,83719,83803,84139,84231,84509,89903,95437,95499,96129,96743,96834,96947,97176,97336,97488,97659,97825,97994,98161,98324,98567,98737,98910,99081,99355,99554,99759,100089,100173,100269,100365,100463,100563,100665,100767,100869,100971,101073,101173,101269,101381,101510,101633,101764,101895,101993,102107,102201,102341,102475,102571,102683,102783,102899,102995,103107,103207,103347,103483,103647,103777,103935,104085,104226,104370,104505,104617,104767,104895,105023,105159,105291,105421,105551,105663,105803,105949,106093,106231,106297,106387,106463,106567,106657,106759,106867,106975,107075,107155,107247,107345,107455,107507,107585,107691,107783,107887,107997,108119,108282,108439,108519,108619,108709,108819,108909,109150,109244,109350,109442,109542,109654,109768,109884,110000,110094,110208,110320,110422,110542,110664,110746,110850,110970,111096,111194,111288,111376,111488,111604,111726,111838,112013,112129,112215,112307,112419,112543,112610,112736,112804,112932,113076,113204,113273,113368,113483,113596,113695,113804,113915,114026,114127,114232,114332,114462,114553,114676,114770,114882,114968,115072,115168,115256,115374,115478,115582,115708,115796,115904,116004,116094,116204,116288,116390,116474,116528,116592,116698,116784,116894,116978,117098,122242,122360,122475,122607,123322,124014,124531,126130,127663,128051,132786,153449,153709,155219,156252,158265,158527,158883,159713,166495,167629,167923,168146,168473,170523,171171,175022,176224,180303,181518,182927,183401" ++ }, ++ "to": { ++ "startLines": "73,141,143,361,403,404,406,407,408,409,410,411,412,415,416,417,418,419,420,421,422,423,424,425,426,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,661,662,666,667,668,669,670,671,672,933,934,935,936,937,938,939,940,978,979,980,981,986,1004,1005,1013,1042,1048,1049,1052,1053,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1183,1185,1186,1190,1191,1192,1201,1209,1210,1214,1218,1229,1234,1262,1269,1273,1277,1282,1286,1290,1294,1298,1302,1306,1312,1316,1322,1326,1332,1336,1341,1345,1348,1352,1358,1362,1368,1372,1378,1381,1385,1389,1393,1397,1401,1402,1403,1404,1407,1410,1413,1416,1420,1421,1422,1423,1461,1464,1466,1468,1470,1475,1476,1480,1486,1490,1491,1493,1505,1506,1510,1516,1520,1575,1576,1580,1607,1611,1612,1616,2267,2438,2464,2635,2661,2692,2700,2706,2722,2744,2749,2754,2764,2773,2782,2786,2793,2812,2819,2820,2829,2832,2835,2839,2843,2847,2850,2851,2856,2861,2871,2876,2883,2889,2890,2893,2897,2902,2904,2906,2909,2912,2914,2918,2921,2928,2931,2934,2938,2940,2944,2946,2948,2950,2954,2962,2970,2982,2988,2997,3000,3011,3014,3015,3020,3021,3254,3323,3397,3398,3408,3417,3418,3420,3424,3427,3430,3433,3436,3439,3442,3445,3449,3452,3455,3458,3462,3465,3469,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3611,3613,3614,3615,3616,3617,3618,3619,3620,3622,3623,3625,3626,3628,3630,3631,3633,3634,3635,3636,3637,3638,3640,3641,3642,3643,3644,3776,3778,3780,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3796,3797,3798,3799,3800,3801,3802,3804,3808,3931,3932,3933,3934,3935,3936,3940,3941,3942,4109,4111,4113,4115,4117,4119,4120,4121,4122,4124,4126,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4142,4143,4144,4145,4147,4149,4150,4152,4153,4155,4157,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4172,4173,4174,4175,4177,4178,4179,4180,4181,4183,4185,4187,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,5042,5117,5120,5123,5126,5140,5146,5251,5280,5307,5316,5378,5896,6214,6337,6562,6586,6624,6802,6823,6947,7093,7099,7115,7149,7317,7351,7516,7768,7851,7863,7892", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "3404,6375,6473,17464,19162,19217,19341,19405,19475,19536,19611,19687,19764,20002,20087,20169,20245,20321,20398,20476,20582,20688,20767,20847,20904,23634,23708,23783,23848,23914,23974,24035,24107,24180,24247,24315,24374,24433,24492,24551,24610,24664,24718,24771,24825,24879,24933,25684,25758,25837,25910,25984,26055,26127,26199,26272,26329,26387,26460,26534,26608,26683,26755,26828,26898,26969,27029,27090,27159,27228,27298,27372,27448,27512,27589,27665,27742,27807,27876,27953,28028,28097,28165,28242,28308,28369,28466,28531,28600,28699,28770,28829,28887,28944,29003,29067,29138,29210,29282,29354,29426,29493,29561,29629,29688,29751,29815,29905,29996,30056,30122,30189,30255,30325,30389,30442,30509,30570,30637,30750,30808,30871,30936,31001,31076,31149,31221,31265,31312,31358,31407,31468,31529,31590,31652,31716,31780,31844,31909,31972,32032,32093,32159,32218,32278,32340,32411,32471,36496,36582,36832,36922,37009,37097,37179,37262,37352,54625,54677,54735,54780,54846,54910,54967,55024,57478,57535,57583,57632,57905,58848,58895,59286,60804,61095,61159,61349,61409,63203,63277,63347,63425,63479,63549,63634,63682,63728,63789,63852,63918,63982,64053,64116,64181,64245,64306,64367,64419,64492,64566,64635,64710,64784,64858,64999,76982,77106,77184,77408,77496,77592,78244,78826,78915,79162,79443,80109,80394,82142,82619,82841,83063,83339,83566,83796,84026,84256,84486,84713,85132,85358,85783,86013,86441,86660,86943,87151,87282,87509,87935,88160,88587,88808,89233,89353,89629,89930,90254,90545,90859,90996,91127,91232,91474,91641,91845,92053,92324,92436,92548,92653,94598,94812,94958,95098,95184,95532,95620,95866,96284,96533,96615,96713,97370,97470,97722,98146,98401,102432,102521,102758,104782,105024,105126,105379,149735,160332,161848,172543,174071,175828,176454,176874,178135,179400,179656,179892,180439,180933,181538,181736,182316,183684,184059,184177,184715,184872,185068,185341,185597,185767,185908,185972,186337,186704,187380,187644,187982,188335,188429,188615,188921,189183,189308,189435,189674,189885,190004,190197,190374,190829,191010,191132,191391,191504,191691,191793,191900,192029,192304,192812,193308,194185,194479,195049,195198,195930,196102,196186,196522,196614,210568,215799,221514,221576,222154,222738,222829,222942,223171,223331,223483,223654,223820,223989,224156,224319,224562,224732,224905,225076,225350,225549,225754,232623,232707,232803,232899,232997,233097,233199,233301,233403,233505,233607,233707,233803,233915,234044,234167,234298,234429,234527,234641,234735,234875,235009,235105,235217,235317,235433,235529,235641,235741,235881,236017,236181,236311,236469,236619,236760,236904,237039,237151,237301,237429,237557,237693,237825,237955,238085,238197,246079,246225,246369,246507,246573,246663,246739,246843,246933,247035,247143,247251,247351,247431,247523,247621,247731,247783,247861,247967,248059,248163,248273,248395,248558,258007,258087,258187,258277,258387,258477,258718,258812,258918,270422,270522,270634,270748,270864,270980,271074,271188,271300,271402,271522,271644,271726,271830,271950,272076,272174,272268,272356,272468,272584,272706,272818,272993,273109,273195,273287,273399,273523,273590,273716,273784,273912,274056,274184,274253,274348,274463,274576,274675,274784,274895,275006,275107,275212,275312,275442,275533,275656,275750,275862,275948,276052,276148,276236,276354,276458,276562,276688,276776,276884,276984,277074,277184,277268,277370,277454,277508,277572,277678,277764,277874,277958,329001,331617,331735,331850,331930,332291,332524,336639,337983,339344,339732,342507,358308,368562,387423,400775,401526,403040,409116,409495,413773,420549,420778,421446,422784,427946,429029,435282,444274,448648,448988,450409", ++ "endLines": "73,141,143,361,403,404,406,407,408,409,410,411,412,415,416,417,418,419,420,421,422,423,424,425,426,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,661,662,666,667,668,669,670,671,672,933,934,935,936,937,938,939,940,978,979,980,981,986,1004,1005,1013,1042,1048,1049,1052,1053,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1183,1185,1186,1190,1191,1192,1208,1209,1213,1217,1221,1233,1239,1268,1272,1276,1281,1285,1289,1293,1297,1301,1305,1311,1315,1321,1325,1331,1335,1340,1344,1347,1351,1357,1361,1367,1371,1377,1380,1384,1388,1392,1396,1400,1401,1402,1403,1406,1409,1412,1415,1419,1420,1421,1422,1423,1463,1465,1467,1469,1474,1475,1479,1485,1489,1490,1492,1504,1505,1509,1515,1519,1520,1575,1579,1606,1610,1611,1615,1643,2437,2463,2634,2660,2691,2699,2705,2721,2743,2748,2753,2763,2772,2781,2785,2792,2811,2818,2819,2828,2831,2834,2838,2842,2846,2849,2850,2855,2860,2870,2875,2882,2888,2889,2892,2896,2901,2903,2905,2908,2911,2913,2917,2920,2927,2930,2933,2937,2939,2943,2945,2947,2949,2953,2961,2969,2981,2987,2996,2999,3010,3013,3014,3019,3020,3025,3322,3392,3397,3407,3416,3417,3419,3423,3426,3429,3432,3435,3438,3441,3444,3448,3451,3454,3457,3461,3464,3468,3472,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3610,3612,3613,3614,3615,3616,3617,3618,3619,3621,3622,3624,3625,3627,3629,3630,3632,3633,3634,3635,3636,3637,3639,3640,3641,3642,3643,3644,3777,3779,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3795,3796,3797,3798,3799,3800,3801,3803,3807,3811,3931,3932,3933,3934,3935,3939,3940,3941,3942,4110,4112,4114,4116,4118,4119,4120,4121,4123,4125,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4141,4142,4143,4144,4146,4148,4149,4151,4152,4154,4156,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4171,4172,4173,4174,4176,4177,4178,4179,4180,4182,4184,4186,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,5116,5119,5122,5125,5139,5145,5155,5279,5306,5315,5377,5740,5899,6241,6354,6585,6591,6629,6822,6946,6966,7098,7102,7120,7183,7328,7416,7535,7822,7862,7888,7898", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "3454,6415,6517,17500,19212,19274,19400,19470,19531,19606,19682,19759,19837,20082,20164,20240,20316,20393,20471,20577,20683,20762,20842,20899,20957,23703,23778,23843,23909,23969,24030,24102,24175,24242,24310,24369,24428,24487,24546,24605,24659,24713,24766,24820,24874,24928,24982,25753,25832,25905,25979,26050,26122,26194,26267,26324,26382,26455,26529,26603,26678,26750,26823,26893,26964,27024,27085,27154,27223,27293,27367,27443,27507,27584,27660,27737,27802,27871,27948,28023,28092,28160,28237,28303,28364,28461,28526,28595,28694,28765,28824,28882,28939,28998,29062,29133,29205,29277,29349,29421,29488,29556,29624,29683,29746,29810,29900,29991,30051,30117,30184,30250,30320,30384,30437,30504,30565,30632,30745,30803,30866,30931,30996,31071,31144,31216,31260,31307,31353,31402,31463,31524,31585,31647,31711,31775,31839,31904,31967,32027,32088,32154,32213,32273,32335,32406,32466,32534,36577,36664,36917,37004,37092,37174,37257,37347,37438,54672,54730,54775,54841,54905,54962,55019,55073,57530,57578,57627,57678,57934,58890,58939,59327,60831,61154,61216,61404,61461,63272,63342,63420,63474,63544,63629,63677,63723,63784,63847,63913,63977,64048,64111,64176,64240,64301,64362,64414,64487,64561,64630,64705,64779,64853,64994,65064,77030,77179,77269,77491,77587,77677,78821,78910,79157,79438,79690,80389,80782,82614,82836,83058,83334,83561,83791,84021,84251,84481,84708,85127,85353,85778,86008,86436,86655,86938,87146,87277,87504,87930,88155,88582,88803,89228,89348,89624,89925,90249,90540,90854,90991,91122,91227,91469,91636,91840,92048,92319,92431,92543,92648,92765,94807,94953,95093,95179,95527,95615,95861,96279,96528,96610,96708,97365,97465,97717,98141,98396,98490,102516,102753,104777,105019,105121,105374,107530,160327,161843,172538,174066,175823,176449,176869,178130,179395,179651,179887,180434,180928,181533,181731,182311,183679,184054,184172,184710,184867,185063,185336,185592,185762,185903,185967,186332,186699,187375,187639,187977,188330,188424,188610,188916,189178,189303,189430,189669,189880,189999,190192,190369,190824,191005,191127,191386,191499,191686,191788,191895,192024,192299,192807,193303,194180,194474,195044,195193,195925,196097,196181,196517,196609,196887,215794,221165,221571,222149,222733,222824,222937,223166,223326,223478,223649,223815,223984,224151,224314,224557,224727,224900,225071,225345,225544,225749,226079,232702,232798,232894,232992,233092,233194,233296,233398,233500,233602,233702,233798,233910,234039,234162,234293,234424,234522,234636,234730,234870,235004,235100,235212,235312,235428,235524,235636,235736,235876,236012,236176,236306,236464,236614,236755,236899,237034,237146,237296,237424,237552,237688,237820,237950,238080,238192,238332,246220,246364,246502,246568,246658,246734,246838,246928,247030,247138,247246,247346,247426,247518,247616,247726,247778,247856,247962,248054,248158,248268,248390,248553,248710,258082,258182,258272,258382,258472,258713,258807,258913,259005,270517,270629,270743,270859,270975,271069,271183,271295,271397,271517,271639,271721,271825,271945,272071,272169,272263,272351,272463,272579,272701,272813,272988,273104,273190,273282,273394,273518,273585,273711,273779,273907,274051,274179,274248,274343,274458,274571,274670,274779,274890,275001,275102,275207,275307,275437,275528,275651,275745,275857,275943,276047,276143,276231,276349,276453,276557,276683,276771,276879,276979,277069,277179,277263,277365,277449,277503,277567,277673,277759,277869,277953,278073,331612,331730,331845,331925,332286,332519,333036,337978,339339,339727,342502,352555,358438,369914,387990,401521,401783,403235,409490,413768,414374,420773,420924,421656,423862,428253,432050,436021,446400,448983,450294,450607" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a44dd8dae0f5566110296e3edaa8fb5a/transformed/transition-1.2.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,95,142,185,240,287,341,393,442,503", ++ "endColumns": "39,46,42,54,46,53,51,48,60,49", ++ "endOffsets": "90,137,180,235,282,336,388,437,498,548" ++ }, ++ "to": { ++ "startLines": "984,985,1003,1007,1008,1037,1038,1039,1040,1041", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "57818,57858,58805,58987,59042,60538,60592,60644,60693,60754", ++ "endColumns": "39,46,42,54,46,53,51,48,60,49", ++ "endOffsets": "57853,57900,58843,59037,59084,60587,60639,60688,60749,60799" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "4,11", ++ "startColumns": "0,0", ++ "startOffsets": "142,510", ++ "endLines": "10,17", ++ "endColumns": "8,8", ++ "endOffsets": "509,875" ++ }, ++ "to": { ++ "startLines": "4095,4102", ++ "startColumns": "4,4", ++ "startOffsets": "269680,270052", ++ "endLines": "4101,4108", ++ "endColumns": "8,8", ++ "endOffsets": "270047,270417" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,80,81,82,83,84,85,86,87,88,89,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,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,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,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,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,583,587,591,598,605,613,623,632,641,650,651,652,657,658,662,663,669,673,674,675,676,686,687,688,692,693,699,703,704,705,706,707,763,845,890,970,1025,1107,1171,1216,1296,1307,1311,1315,1327,1343,1359,1360,1408,1412,1416,1417,1418,1421,1435,1444,1459,1501,1502,1503,1515,1519,1524,1529,1534,1537,1540,1543,1547,1551,1552,1553,1554,1555,1558,1561,1564,1567,1571,1575,1576,1579,1582,1585,1588,1592,1595,1598,1601,1604,1607,1610,1614,1617,1620,1624,1627,1637,1645,1653,1656,1659,1662,1665,1668,1671,1674,1675,1678,1681,1682,1685,1686,1687,1691,1692,1697,1698,1706,1714,1715,1723,1727,1735,1743,1751,1759,1767,1768,1776,1784,1785,1788,1791,1793,1798,1800,1805,1809,1813,1814,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1843,1844,1845,1851,1852,1856,1858,1859,1862,1867,1868,1869,1870,1871,1872,1876,1877,1878,1884,1885,1889,1891,1894,1898,1902,1906,1910,1911,1912,1913,1921,1929,1932,1937,1942,1947,1952,1956,1960,1961,1969,1970,1971,1972,1973,1981,1986,1991,1992,1993,1994,2018,2022,2027,2030,2034,2037,2041,2048,2051,2055,2059,2062,2070,2079,2092,2096,2111,2119,2122,2133,2138,2142,2177,2181,2182,2189,2193,2194,2195,2198,2203,2208,2209,2213,2218,2233,2237,2238,2250,2260,2261,2273,2278,2302,2305,2311,2314,2323,2331,2335,2338,2341,2344,2348,2351,2368,2372,2375,2390,2393,2401,2406,2413,2418,2419,2424,2425,2431,2437,2443,2474,2485,2502,2509,2513,2516,2528,2537,2541,2546,2550,2554,2558,2561,2565,2569,2572,2581,2586,2595,2599,2606,2607,2611,2620,2626,2630,2631,2647,2653,2657,2661,2662,2684,2685,2686,2687,2688,2692,2695,2696,2703,2704,2716,2728,2735,2736,2741,2746,2747,2751,2765,2770,2776,2782,2788,2793,2799,2805,2806,2811,2825,2830,2839,2852,2863,2867,2876,2884,2885,2892,2900,2925,2937,2976,2996,3061,3095,3099,3161,3274,3300,3331,3337,3345,3452,3467,3481,3487,3533,3537,3543,3549,3557,3592,3598,3605,3608,3674,3686,3698,3710,3742,3751,3760,3766,3771,3776,3782,3795,3843,3859,3914,3920,3927,3930,3934,3972,3995,4046,4054,4077,4084,4092,4189,4194,4443,4459", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "150,206,255,311,371,432,487,537,587,640,698,746,815,863,930,967,1014,1063,1119,1170,1219,1273,1327,1376,1432,1479,1535,1595,1648,1709,1781,1845,1896,1949,2001,2059,2124,2172,2223,2290,2356,2414,2483,2541,2611,2684,2758,2826,2893,2963,3029,3102,3162,3238,3298,3358,3433,3493,3552,3609,3668,3730,3792,3849,3905,3961,4019,4077,4134,4191,4250,4309,4367,4421,4477,4606,4664,4722,4780,4826,4886,4940,5008,5077,5145,5198,5250,5300,5346,5396,5443,5501,5559,5618,5678,5740,5802,5864,5926,5988,6050,6118,6179,6241,6303,6356,6410,6461,6506,6570,6629,6691,6765,6836,6902,6976,7045,7116,7189,7260,7328,7401,7477,7547,7625,7693,7759,7820,7889,7953,8019,8087,8153,8216,8284,8355,8420,8493,8556,8637,8701,8767,8837,8907,8977,9047,9114,9179,9245,9298,9374,9440,9527,9603,9679,9726,9791,9846,9896,9950,10029,10107,10180,10245,10308,10374,10445,10516,10586,10648,10717,10783,10843,10910,10977,11033,11084,11137,11189,11243,11314,11377,11436,11498,11557,11630,11697,11757,11820,11895,11967,12063,12134,12190,12261,12318,12375,12441,12505,12576,12633,12686,12749,12801,12859,12926,12990,13052,13114,13182,13240,13303,13366,13433,13505,13571,13623,13683,13741,13793,13877,13962,14043,14123,14200,14279,14356,14430,14504,14575,14655,14727,14802,14870,14947,15012,15073,15133,15208,15282,15359,15432,15502,15574,15644,15717,15781,15851,15899,15968,16020,16105,16188,16246,16312,16379,16445,16526,16601,16657,16710,16771,16829,16879,16928,16977,17026,17088,17140,17185,17266,17317,17371,17424,17478,17529,17578,17644,17695,17756,17817,17879,17929,17970,18047,18106,18165,18224,18285,18341,18397,18464,18525,18590,18645,18710,18779,18847,18925,18994,19054,19125,19199,19264,19336,19406,19473,19557,19626,19693,19763,19826,19893,19961,20044,20123,20213,20290,20358,20425,20503,20560,20617,20685,20751,20807,20867,20926,20980,21030,21080,21128,21190,21241,21307,21380,21460,21540,21604,21667,21734,21805,21863,21924,21990,22049,22116,22176,22236,22299,22367,22428,22495,22573,22643,22692,22749,22818,22879,22967,23055,23143,23231,23287,23374,23461,23548,23635,23693,23767,23837,23893,23964,24029,24091,24166,24239,24329,24395,24461,24522,24586,24648,24706,24777,24860,24919,24990,25056,25121,25182,25241,25312,25378,25443,25526,25602,25677,25758,25818,25887,25957,26026,26081,26137,26193,26254,26312,26368,26423,26485,26538,26595,26689,26758,26859,26910,26980,27043,27101,27171,27240,27310,27380,27450,27517,27584,27659,27726,27785,27839,27893,27947,28000,28052,28126,28191,28265,28338,28406,28466,28524,28585,28651,28717,28782,28846,28907,29044,29184,29233,29283,29331,29387,29445,29507,29562,29620,29679,29741,29807,29873,29916,29960,30005,30048,30099,30146,30191,30242,30293,30344,30395,30443,30509,30571,30634,30706,30763,30829,30895,30963,31031,31097,31164,31238,31301,31358,31418,31483,31550,31615,31672,31733,31791,31861,31918,32238,32388,32519,32757,32855,32970,33055,33103,33182,33247,33336,33493,33650,33803,33957,34016,34098,34272,34420,34579,34734,34907,35024,35141,35309,35421,35535,35709,35887,36020,36132,36278,36430,36562,36705,36827,37005,37187,37504,37686,37868,38058,38248,38447,38620,38730,38913,39050,39270,39454,39614,39772,39956,40159,40330,40550,40772,40927,41127,41311,41414,41555,41720,41891,42091,42295,42497,42702,42903,43102,43306,43384,43685,43851,44006,44108,44242,44519,44804,45194,45650,46159,46701,47166,47628,48099,48192,48299,48642,48749,48994,49115,49524,49772,49872,49977,50096,50630,50777,50896,51147,51280,51695,51949,52061,52182,52315,52462,56647,62185,65549,70877,74963,80464,84531,87811,93102,93858,94110,94375,95435,96339,97438,97529,99723,100045,100255,100364,100483,100667,101639,102235,103164,105815,105910,105941,106811,107097,107500,107902,108245,108457,108658,108871,109160,109445,109518,109605,109690,109789,109909,110070,110233,110394,110559,110726,110779,110912,111032,111130,111243,111436,111562,111714,111856,112026,112182,112354,112645,112757,112886,113115,113333,114188,114775,115389,115557,115699,115860,116003,116171,116328,116523,116615,116788,116950,117045,117214,117308,117397,117640,117729,118022,118136,118545,118959,119075,119493,119734,120164,120599,121009,121431,121841,121963,122372,122788,122910,123128,123312,123380,123724,123804,124160,124310,124454,124538,124927,125025,125133,125227,125357,125465,125587,125723,125831,125951,126085,126207,126335,126477,126603,126743,126869,126987,127119,127217,127327,127627,127739,127857,128321,128437,128740,128866,128962,129092,129493,129603,129727,129865,129975,130097,130409,130533,130663,131139,131267,131582,131720,131866,132028,132244,132400,132604,132672,132756,132860,133422,134053,134211,134430,134661,134884,135119,135341,135607,135745,136344,136458,136596,136708,136832,137403,137898,138444,138589,138682,138774,140671,141059,141357,141546,141752,141945,142155,142760,142905,143122,143383,143514,143946,144470,145114,145311,146259,146816,146939,147712,147933,148133,150110,150345,150469,150977,151191,151294,151424,151599,151918,152204,152344,152538,152808,153689,153977,154107,154884,155541,155687,156393,156631,158171,158321,158738,158903,159589,160059,160255,160417,160572,160716,160950,161117,162045,162331,162491,163106,163265,163593,163820,164332,164694,164773,165112,165217,165582,165953,166314,168136,168765,169841,170361,170614,170766,171756,172493,172696,172942,173189,173431,173752,173951,174256,174479,174651,175192,175461,175955,176216,176656,176815,177099,177844,178209,178514,178672,179669,180067,180295,180515,180657,182357,182463,182593,182731,182855,183085,183254,183354,183813,183927,184810,185565,186004,186128,186441,186724,186858,187049,187828,188046,188337,188616,188933,189155,189450,189733,189837,190120,190852,191168,191794,192523,193184,193373,194020,194585,194705,195202,195736,197360,198071,200119,200961,203808,205732,205972,209959,215289,216567,217810,217994,218205,224846,225554,226331,226715,228885,229116,229420,229737,230259,231715,232022,232452,232611,236088,236706,237288,237783,239291,239782,240276,240649,240878,241086,241222,241908,244717,245580,249181,249402,249695,249832,250067,251921,252911,255466,255907,257137,257558,257874,263177,263442,277443,278512", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,79,80,81,82,83,84,85,86,87,88,89,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,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,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,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,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,582,586,590,597,604,612,622,631,640,649,650,651,656,657,661,662,668,672,673,674,675,685,686,687,691,692,698,702,703,704,705,706,762,844,889,969,1024,1106,1170,1215,1295,1306,1310,1314,1326,1342,1358,1359,1407,1411,1415,1416,1417,1420,1434,1443,1458,1500,1501,1502,1514,1518,1523,1528,1533,1536,1539,1542,1546,1550,1551,1552,1553,1554,1557,1560,1563,1566,1570,1574,1575,1578,1581,1584,1587,1591,1594,1597,1600,1603,1606,1609,1613,1616,1619,1623,1626,1636,1644,1652,1655,1658,1661,1664,1667,1670,1673,1674,1677,1680,1681,1684,1685,1686,1690,1691,1696,1697,1705,1713,1714,1722,1726,1734,1742,1750,1758,1766,1767,1775,1783,1784,1787,1790,1792,1797,1799,1804,1808,1812,1813,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1842,1843,1844,1850,1851,1855,1857,1858,1861,1866,1867,1868,1869,1870,1871,1875,1876,1877,1883,1884,1888,1890,1893,1897,1901,1905,1909,1910,1911,1912,1920,1928,1931,1936,1941,1946,1951,1955,1959,1960,1968,1969,1970,1971,1972,1980,1985,1990,1991,1992,1993,2017,2021,2026,2029,2033,2036,2040,2047,2050,2054,2058,2061,2069,2078,2091,2095,2110,2118,2121,2132,2137,2141,2176,2180,2181,2188,2192,2193,2194,2197,2202,2207,2208,2212,2217,2232,2236,2237,2249,2259,2260,2272,2277,2301,2304,2310,2313,2322,2330,2334,2337,2340,2343,2347,2350,2367,2371,2374,2389,2392,2400,2405,2412,2417,2418,2423,2424,2430,2436,2442,2473,2484,2501,2508,2512,2515,2527,2536,2540,2545,2549,2553,2557,2560,2564,2568,2571,2580,2585,2594,2598,2605,2606,2610,2619,2625,2629,2630,2646,2652,2656,2660,2661,2683,2684,2685,2686,2687,2691,2694,2695,2702,2703,2715,2727,2734,2735,2740,2745,2746,2750,2764,2769,2775,2781,2787,2792,2798,2804,2805,2810,2824,2829,2838,2851,2862,2866,2875,2883,2884,2891,2899,2924,2936,2975,2995,3060,3094,3098,3160,3273,3299,3330,3336,3344,3451,3466,3480,3486,3532,3536,3542,3548,3556,3591,3597,3604,3607,3673,3685,3697,3709,3741,3750,3759,3765,3770,3775,3781,3794,3842,3858,3913,3919,3926,3929,3933,3971,3994,4045,4053,4076,4083,4091,4188,4193,4442,4458,4467", ++ "endColumns": "55,48,55,59,60,54,49,49,52,57,47,68,47,66,36,46,48,55,50,48,53,53,48,55,46,55,59,52,60,71,63,50,52,51,57,64,47,50,66,65,57,68,57,69,72,73,67,66,69,65,72,59,75,59,59,74,59,58,56,58,61,61,56,55,55,57,57,56,56,58,58,57,53,55,9,57,57,57,45,59,53,67,68,67,52,51,49,45,49,46,57,57,58,59,61,61,61,61,61,61,67,60,61,61,52,53,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,64,65,52,75,65,86,75,75,46,64,54,49,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,63,61,61,67,57,62,62,66,71,65,51,59,57,51,83,84,80,79,76,78,76,73,73,70,79,71,74,67,76,64,60,59,74,73,76,72,69,71,69,72,63,69,47,68,51,84,82,57,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,65,72,79,79,63,62,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,55,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,54,61,52,56,93,68,100,50,69,62,57,69,68,69,69,69,66,66,74,66,58,53,53,53,52,51,73,64,73,72,67,59,57,60,65,65,64,63,60,136,139,48,49,47,55,57,61,54,57,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,69,56,12,149,130,237,97,114,84,47,78,64,88,156,156,152,153,58,81,173,147,158,154,172,116,116,167,111,113,173,177,132,111,145,151,131,142,121,177,181,316,181,181,189,189,198,172,109,182,136,219,183,159,157,183,202,170,219,221,154,199,183,102,140,164,170,199,203,201,204,200,198,203,77,300,165,154,101,10,10,10,10,10,10,10,10,10,10,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,90,10,10,10,108,118,10,10,10,10,10,94,30,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,10,10,10,10,10,52,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22", ++ "endOffsets": "201,250,306,366,427,482,532,582,635,693,741,810,858,925,962,1009,1058,1114,1165,1214,1268,1322,1371,1427,1474,1530,1590,1643,1704,1776,1840,1891,1944,1996,2054,2119,2167,2218,2285,2351,2409,2478,2536,2606,2679,2753,2821,2888,2958,3024,3097,3157,3233,3293,3353,3428,3488,3547,3604,3663,3725,3787,3844,3900,3956,4014,4072,4129,4186,4245,4304,4362,4416,4472,4601,4659,4717,4775,4821,4881,4935,5003,5072,5140,5193,5245,5295,5341,5391,5438,5496,5554,5613,5673,5735,5797,5859,5921,5983,6045,6113,6174,6236,6298,6351,6405,6456,6501,6565,6624,6686,6760,6831,6897,6971,7040,7111,7184,7255,7323,7396,7472,7542,7620,7688,7754,7815,7884,7948,8014,8082,8148,8211,8279,8350,8415,8488,8551,8632,8696,8762,8832,8902,8972,9042,9109,9174,9240,9293,9369,9435,9522,9598,9674,9721,9786,9841,9891,9945,10024,10102,10175,10240,10303,10369,10440,10511,10581,10643,10712,10778,10838,10905,10972,11028,11079,11132,11184,11238,11309,11372,11431,11493,11552,11625,11692,11752,11815,11890,11962,12058,12129,12185,12256,12313,12370,12436,12500,12571,12628,12681,12744,12796,12854,12921,12985,13047,13109,13177,13235,13298,13361,13428,13500,13566,13618,13678,13736,13788,13872,13957,14038,14118,14195,14274,14351,14425,14499,14570,14650,14722,14797,14865,14942,15007,15068,15128,15203,15277,15354,15427,15497,15569,15639,15712,15776,15846,15894,15963,16015,16100,16183,16241,16307,16374,16440,16521,16596,16652,16705,16766,16824,16874,16923,16972,17021,17083,17135,17180,17261,17312,17366,17419,17473,17524,17573,17639,17690,17751,17812,17874,17924,17965,18042,18101,18160,18219,18280,18336,18392,18459,18520,18585,18640,18705,18774,18842,18920,18989,19049,19120,19194,19259,19331,19401,19468,19552,19621,19688,19758,19821,19888,19956,20039,20118,20208,20285,20353,20420,20498,20555,20612,20680,20746,20802,20862,20921,20975,21025,21075,21123,21185,21236,21302,21375,21455,21535,21599,21662,21729,21800,21858,21919,21985,22044,22111,22171,22231,22294,22362,22423,22490,22568,22638,22687,22744,22813,22874,22962,23050,23138,23226,23282,23369,23456,23543,23630,23688,23762,23832,23888,23959,24024,24086,24161,24234,24324,24390,24456,24517,24581,24643,24701,24772,24855,24914,24985,25051,25116,25177,25236,25307,25373,25438,25521,25597,25672,25753,25813,25882,25952,26021,26076,26132,26188,26249,26307,26363,26418,26480,26533,26590,26684,26753,26854,26905,26975,27038,27096,27166,27235,27305,27375,27445,27512,27579,27654,27721,27780,27834,27888,27942,27995,28047,28121,28186,28260,28333,28401,28461,28519,28580,28646,28712,28777,28841,28902,29039,29179,29228,29278,29326,29382,29440,29502,29557,29615,29674,29736,29802,29868,29911,29955,30000,30043,30094,30141,30186,30237,30288,30339,30390,30438,30504,30566,30629,30701,30758,30824,30890,30958,31026,31092,31159,31233,31296,31353,31413,31478,31545,31610,31667,31728,31786,31856,31913,32233,32383,32514,32752,32850,32965,33050,33098,33177,33242,33331,33488,33645,33798,33952,34011,34093,34267,34415,34574,34729,34902,35019,35136,35304,35416,35530,35704,35882,36015,36127,36273,36425,36557,36700,36822,37000,37182,37499,37681,37863,38053,38243,38442,38615,38725,38908,39045,39265,39449,39609,39767,39951,40154,40325,40545,40767,40922,41122,41306,41409,41550,41715,41886,42086,42290,42492,42697,42898,43097,43301,43379,43680,43846,44001,44103,44237,44514,44799,45189,45645,46154,46696,47161,47623,48094,48187,48294,48637,48744,48989,49110,49519,49767,49867,49972,50091,50625,50772,50891,51142,51275,51690,51944,52056,52177,52310,52457,56642,62180,65544,70872,74958,80459,84526,87806,93097,93853,94105,94370,95430,96334,97433,97524,99718,100040,100250,100359,100478,100662,101634,102230,103159,105810,105905,105936,106806,107092,107495,107897,108240,108452,108653,108866,109155,109440,109513,109600,109685,109784,109904,110065,110228,110389,110554,110721,110774,110907,111027,111125,111238,111431,111557,111709,111851,112021,112177,112349,112640,112752,112881,113110,113328,114183,114770,115384,115552,115694,115855,115998,116166,116323,116518,116610,116783,116945,117040,117209,117303,117392,117635,117724,118017,118131,118540,118954,119070,119488,119729,120159,120594,121004,121426,121836,121958,122367,122783,122905,123123,123307,123375,123719,123799,124155,124305,124449,124533,124922,125020,125128,125222,125352,125460,125582,125718,125826,125946,126080,126202,126330,126472,126598,126738,126864,126982,127114,127212,127322,127622,127734,127852,128316,128432,128735,128861,128957,129087,129488,129598,129722,129860,129970,130092,130404,130528,130658,131134,131262,131577,131715,131861,132023,132239,132395,132599,132667,132751,132855,133417,134048,134206,134425,134656,134879,135114,135336,135602,135740,136339,136453,136591,136703,136827,137398,137893,138439,138584,138677,138769,140666,141054,141352,141541,141747,141940,142150,142755,142900,143117,143378,143509,143941,144465,145109,145306,146254,146811,146934,147707,147928,148128,150105,150340,150464,150972,151186,151289,151419,151594,151913,152199,152339,152533,152803,153684,153972,154102,154879,155536,155682,156388,156626,158166,158316,158733,158898,159584,160054,160250,160412,160567,160711,160945,161112,162040,162326,162486,163101,163260,163588,163815,164327,164689,164768,165107,165212,165577,165948,166309,168131,168760,169836,170356,170609,170761,171751,172488,172691,172937,173184,173426,173747,173946,174251,174474,174646,175187,175456,175950,176211,176651,176810,177094,177839,178204,178509,178667,179664,180062,180290,180510,180652,182352,182458,182588,182726,182850,183080,183249,183349,183808,183922,184805,185560,185999,186123,186436,186719,186853,187044,187823,188041,188332,188611,188928,189150,189445,189728,189832,190115,190847,191163,191789,192518,193179,193368,194015,194580,194700,195197,195731,197355,198066,200114,200956,203803,205727,205967,209954,215284,216562,217805,217989,218200,224841,225549,226326,226710,228880,229111,229415,229732,230254,231710,232017,232447,232606,236083,236701,237283,237778,239286,239777,240271,240644,240873,241081,241217,241903,244712,245575,249176,249397,249690,249827,250062,251916,252906,255461,255902,257132,257553,257869,263172,263437,277438,278507,278841" ++ }, ++ "to": { ++ "startLines": "3,9,20,21,22,23,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,77,78,79,80,81,82,140,142,144,145,146,147,148,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,310,311,329,331,332,333,334,335,336,337,338,340,341,342,343,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,373,381,382,405,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,488,489,490,491,492,493,494,495,599,600,604,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,921,922,923,924,925,926,927,928,929,930,931,932,941,942,990,991,993,994,995,996,997,998,999,1000,1001,1002,1006,1009,1010,1011,1029,1030,1031,1032,1033,1034,1035,1043,1050,1051,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1076,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1187,1193,1197,1240,1247,1254,1424,1434,1443,1452,1521,1522,1523,1528,1529,1533,1534,1540,1544,1545,1546,1547,1557,1558,1559,1563,1564,1570,1574,1644,1645,1646,1647,1703,1785,1830,1910,1965,2047,2111,2156,2236,2247,2251,2255,3026,3042,3057,3058,3106,3110,3114,3115,3116,3119,3133,3140,3154,3196,3205,3206,3218,3222,3227,3232,3237,3240,3243,3246,3250,3393,3394,3395,3396,3473,3476,3479,3482,3485,3489,3493,3494,3497,3500,3503,3506,3510,3513,3516,3519,3522,3525,3528,3532,3535,3538,3542,3545,3555,3563,3571,3574,3577,3580,3583,3586,3656,3659,3660,3663,3666,3667,3670,3671,3672,3676,3677,3682,3683,3691,3699,3700,3708,3712,3720,3728,3736,3744,3752,3753,3761,3769,3770,3773,3812,3814,3819,3821,3826,3830,3834,3835,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3864,3865,3866,3872,3873,3877,3879,3880,3883,3888,3889,3890,3891,3892,3893,3897,3898,3899,3905,3906,3910,3912,3915,3919,3923,3927,3943,3944,3945,3946,3954,3962,3965,3970,3975,3980,3985,3989,3993,3994,4002,4003,4004,4005,4006,4014,4019,4024,4025,4026,4027,4051,4055,4060,4063,4067,4070,4074,4081,4084,4088,4092,4206,4214,4223,4236,4240,4255,4263,4266,4277,4282,4286,4321,4325,4326,4333,4337,4338,4339,4342,4347,4352,4353,4357,4362,4377,4381,4382,4394,4404,4405,4417,4422,4446,4449,4455,4458,4467,4475,4479,4482,4485,4488,4492,4495,4512,4516,4519,4534,4537,4545,4550,4557,4562,4563,4568,4569,4575,4581,4587,4618,4629,4646,4653,4657,4660,4672,4681,4685,4690,4694,4698,4702,4705,4709,4713,4716,4725,4730,4739,4743,4750,4751,4755,4764,4770,4774,4775,4791,4797,4801,4805,4806,4824,4825,4826,4827,4828,4832,4835,4836,4842,4843,4855,4867,4874,4875,4880,4885,4886,4890,4904,4909,4915,4921,4927,4932,4938,4944,4945,4950,4964,4969,4978,4991,5002,5006,5015,5023,5024,5031,5188,5203,5213,5741,5761,5807,5841,5845,5934,6043,6063,6084,6090,6098,6190,6359,6373,6379,6423,6427,6487,6542,6592,6630,6636,6643,6646,6700,6709,6721,6733,6760,6766,6772,6778,6783,6788,6794,6983,7017,7033,7104,7109,7142,7145,7184,7222,7240,7289,7297,7417,7421,7429,7536,7540,7760,7823", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "207,449,902,958,1018,1079,1234,1284,1334,1387,1445,1544,1613,1661,1728,1765,1812,1861,1917,1968,2017,2071,2125,2174,2230,3608,3664,3724,3777,3838,3910,6324,6420,6522,6574,6632,6697,6745,12239,12306,12372,12430,12499,12557,12627,12700,12774,12842,12909,12979,13045,13118,13178,13254,13314,13374,13449,13509,13568,13625,13684,13746,13808,13865,13921,13977,14035,14093,14150,14207,14266,14325,14383,14437,14493,14828,14886,15627,15741,15787,15847,15901,15969,16038,16106,16159,16257,16307,16353,16403,16497,16555,16613,16672,16732,16794,16856,16918,16980,17042,17104,17172,17233,17295,17357,17410,17505,17938,18276,18340,19279,21211,21285,21356,21422,21496,21565,21636,21709,21780,21848,21921,21997,22067,22145,22213,22279,22340,22409,22473,22539,22607,22673,22736,22804,22875,22940,23013,23076,23157,23221,23287,23357,23427,23497,23567,24987,25052,25118,25171,25247,25313,25400,25476,32539,32586,32821,33416,33466,33520,33599,33677,33750,33815,33878,33944,34015,34086,34156,34218,34287,34353,34413,34480,34547,34603,34654,34707,34759,34813,34884,34947,35006,35068,35127,35200,35267,35327,35390,35465,35537,35633,35704,35760,35831,35888,35945,36011,36075,36146,36203,36256,36319,36371,36429,37666,37730,37792,37854,37922,37980,38043,38106,38173,38245,38311,38363,38423,38481,38533,38617,38702,38783,38863,38940,39019,39096,39170,39244,39315,39395,39467,39542,39610,39687,39752,39813,39873,39948,40022,40099,40172,40242,40314,40384,40457,40521,40591,40639,40708,40760,40845,40928,40986,41052,41119,41185,41266,41341,41397,41450,41511,41569,41619,41668,41717,41766,41828,41880,41925,42006,42057,42111,42164,42218,42269,42318,42384,42435,42496,42557,42619,42669,42710,42787,42846,42905,42964,43025,43081,43137,43204,43265,43330,43385,43450,43519,43587,43665,43734,43794,43865,43939,44004,44076,44146,44213,44297,44366,44433,44503,44566,44633,44701,44784,44863,44953,45030,45098,45165,45243,45300,45357,45425,45491,45547,45607,45666,45720,45770,45820,45868,45930,45981,46047,46120,46200,46280,46344,46407,46474,46545,46603,46664,46730,46789,46856,46916,46976,47039,47107,47168,47235,47313,47383,47432,47489,47558,47619,47707,47795,47883,47971,48027,48114,48201,48288,48375,48433,48507,48577,48633,48704,48769,48831,48906,48979,49069,49135,49201,49262,49326,49388,49446,49517,49600,49659,49730,49796,49861,49922,49981,50052,50118,50183,50266,50342,50417,50498,50558,50627,50697,50766,50821,50877,50933,50994,51052,51108,51163,51225,51278,51335,51429,51498,51599,51650,51720,51783,51841,51911,51980,52050,52120,52190,52257,52324,52399,52466,52525,52579,52633,52687,52740,52792,53844,53909,53983,54056,54124,54184,54242,54303,54369,54435,54500,54564,55078,55215,58075,58124,58215,58263,58319,58377,58439,58494,58552,58611,58673,58739,58944,59089,59133,59178,60156,60207,60254,60299,60350,60401,60452,60836,61221,61287,61466,61529,61601,61658,61724,61790,61858,61926,61992,62059,62133,62196,62253,62313,62378,62445,62510,62567,62628,62686,62756,62883,65112,65262,65393,65631,65729,65844,65929,65977,66056,66121,66210,66367,66524,66677,66831,66890,66972,67146,67294,67453,67608,67781,67898,68015,68183,68295,68409,68583,68761,68894,69006,69152,69304,69436,69579,69701,69879,70061,70378,70560,70742,70932,71122,71321,71494,71604,71787,71924,72144,72328,72488,72646,72830,73033,73204,73424,73646,73801,74001,74185,74288,74429,74594,74765,74965,75169,75371,75576,75777,75976,76180,76258,76559,76725,76880,77274,77682,77959,80787,81177,81633,92770,93284,93721,94155,98495,98588,98695,99038,99145,99390,99511,99920,100168,100268,100373,100492,101001,101148,101267,101518,101651,102066,102320,107535,107656,107789,107936,111957,117371,120642,125846,129768,135145,139129,142301,147468,148224,148454,148697,196892,197796,198721,198812,201006,201328,201538,201647,201766,201950,202922,203392,204143,206620,207033,207064,207934,208220,208623,209025,209368,209580,209781,209994,210283,221170,221243,221330,221415,226084,226204,226365,226528,226689,226854,227021,227074,227207,227327,227425,227538,227731,227857,228009,228151,228321,228477,228649,228940,229052,229181,229410,229628,230483,231070,231684,231852,231994,232155,232298,232466,239095,239290,239382,239555,239717,239812,239981,240075,240164,240407,240496,240789,240903,241312,241726,241842,242260,242501,242931,243366,243776,244198,244608,244730,245139,245555,245677,245895,248715,248783,249127,249207,249563,249713,249857,249941,250330,250428,250536,250630,250760,250868,250990,251126,251234,251354,251488,251610,251738,251880,252006,252146,252272,252390,252522,252620,252730,253030,253142,253260,253724,253840,254143,254269,254365,254495,254896,255006,255130,255268,255378,255500,255812,255936,256066,256542,256670,256985,257123,257269,257431,257647,257803,259010,259078,259162,259266,259753,260309,260467,260686,260917,261140,261375,261597,261863,262001,262600,262714,262852,262964,263088,263659,264154,264700,264845,264938,265030,266837,267225,267523,267712,267918,268111,268321,268926,269071,269288,269549,278217,278649,279173,279817,280014,280962,281519,281642,282415,282636,282836,284813,285048,285172,285584,285798,285901,286031,286206,286458,286654,286794,286988,287258,288139,288427,288557,289334,289991,290137,290843,291081,292621,292771,293188,293353,294039,294509,294705,294796,294880,295024,295258,295425,296353,296639,296799,297414,297573,297901,298128,298640,299002,299081,299420,299525,299890,300261,300622,302444,303073,304149,304573,304826,304978,305968,306705,306908,307154,307401,307643,307964,308163,308468,308691,308863,309404,309673,310167,310428,310868,311027,311311,312056,312421,312726,312884,313881,314279,314507,314727,314869,316159,316265,316395,316533,316657,316887,317056,317156,317441,317555,318438,319193,319632,319756,320002,320195,320329,320520,321299,321517,321808,322087,322404,322626,322921,323204,323308,323591,324323,324639,325200,325929,326590,326779,327330,327800,327920,328322,333928,334401,334700,352560,353337,354931,356035,356184,359570,361865,362305,363057,363241,363452,367678,388106,388478,388680,389815,389965,392552,394365,401788,403240,403547,403977,404136,405884,406104,406686,407181,407800,407953,408109,408302,408531,408739,408875,416159,417197,417894,421161,421277,422501,422638,423867,425005,425536,427015,427263,432055,432171,432346,436026,436173,444031,446405", ++ "endLines": "3,9,20,21,22,23,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,77,78,79,80,81,82,140,142,144,145,146,147,148,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,305,310,311,329,331,332,333,334,335,336,337,338,340,341,342,343,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,373,381,382,405,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,488,489,490,491,492,493,494,495,599,600,604,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,921,922,923,924,925,926,927,928,929,930,931,932,941,942,990,991,993,994,995,996,997,998,999,1000,1001,1002,1006,1009,1010,1011,1029,1030,1031,1032,1033,1034,1035,1043,1050,1051,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1079,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1189,1196,1200,1246,1253,1261,1433,1442,1451,1460,1521,1522,1527,1528,1532,1533,1539,1543,1544,1545,1546,1556,1557,1558,1562,1563,1569,1573,1574,1644,1645,1646,1702,1784,1829,1909,1964,2046,2110,2155,2235,2246,2250,2254,2266,3041,3056,3057,3105,3109,3113,3114,3115,3118,3132,3139,3153,3195,3196,3205,3217,3221,3226,3231,3236,3239,3242,3245,3249,3253,3393,3394,3395,3396,3475,3478,3481,3484,3488,3492,3493,3496,3499,3502,3505,3509,3512,3515,3518,3521,3524,3527,3531,3534,3537,3541,3544,3554,3562,3570,3573,3576,3579,3582,3585,3588,3658,3659,3662,3665,3666,3669,3670,3671,3675,3676,3681,3682,3690,3698,3699,3707,3711,3719,3727,3735,3743,3751,3752,3760,3768,3769,3772,3775,3813,3818,3820,3825,3829,3833,3834,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3863,3864,3865,3871,3872,3876,3878,3879,3882,3887,3888,3889,3890,3891,3892,3896,3897,3898,3904,3905,3909,3911,3914,3918,3922,3926,3930,3943,3944,3945,3953,3961,3964,3969,3974,3979,3984,3988,3992,3993,4001,4002,4003,4004,4005,4013,4018,4023,4024,4025,4026,4050,4054,4059,4062,4066,4069,4073,4080,4083,4087,4091,4094,4213,4222,4235,4239,4254,4262,4265,4276,4281,4285,4320,4324,4325,4332,4336,4337,4338,4341,4346,4351,4352,4356,4361,4376,4380,4381,4393,4403,4404,4416,4421,4445,4448,4454,4457,4466,4474,4478,4481,4484,4487,4491,4494,4511,4515,4518,4533,4536,4544,4549,4556,4561,4562,4567,4568,4574,4580,4586,4617,4628,4645,4652,4656,4659,4671,4680,4684,4689,4693,4697,4701,4704,4708,4712,4715,4724,4729,4738,4742,4749,4750,4754,4763,4769,4773,4774,4790,4796,4800,4804,4805,4823,4824,4825,4826,4827,4831,4834,4835,4841,4842,4854,4866,4873,4874,4879,4884,4885,4889,4903,4908,4914,4920,4926,4931,4937,4943,4944,4949,4963,4968,4977,4990,5001,5005,5014,5022,5023,5030,5038,5202,5212,5250,5760,5806,5840,5844,5895,6042,6062,6083,6089,6097,6189,6203,6372,6378,6422,6426,6432,6492,6548,6623,6635,6642,6645,6699,6708,6720,6732,6759,6765,6771,6777,6782,6787,6793,6801,7016,7032,7073,7108,7114,7144,7148,7221,7239,7288,7296,7316,7420,7428,7515,7539,7759,7767,7831", ++ "endColumns": "55,48,55,59,60,54,49,49,52,57,47,68,47,66,36,46,48,55,50,48,53,53,48,55,46,55,59,52,60,71,63,50,52,51,57,64,47,50,66,65,57,68,57,69,72,73,67,66,69,65,72,59,75,59,59,74,59,58,56,58,61,61,56,55,55,57,57,56,56,58,58,57,53,55,9,57,57,57,45,59,53,67,68,67,52,51,49,45,49,46,57,57,58,59,61,61,61,61,61,61,67,60,61,61,52,53,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,64,65,52,75,65,86,75,75,46,64,54,49,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,63,61,61,67,57,62,62,66,71,65,51,59,57,51,83,84,80,79,76,78,76,73,73,70,79,71,74,67,76,64,60,59,74,73,76,72,69,71,69,72,63,69,47,68,51,84,82,57,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,65,72,79,79,63,62,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,55,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,54,61,52,56,93,68,100,50,69,62,57,69,68,69,69,69,66,66,74,66,58,53,53,53,52,51,73,64,73,72,67,59,57,60,65,65,64,63,60,136,139,48,49,47,55,57,61,54,57,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,69,56,12,149,130,237,97,114,84,47,78,64,88,156,156,152,153,58,81,173,147,158,154,172,116,116,167,111,113,173,177,132,111,145,151,131,142,121,177,181,316,181,181,189,189,198,172,109,182,136,219,183,159,157,183,202,170,219,221,154,199,183,102,140,164,170,199,203,201,204,200,198,203,77,300,165,154,101,10,10,10,10,10,10,10,10,10,10,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,90,10,10,10,108,118,10,10,10,10,10,94,30,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,10,10,10,10,10,52,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22", ++ "endOffsets": "258,493,953,1013,1074,1129,1279,1329,1382,1440,1488,1608,1656,1723,1760,1807,1856,1912,1963,2012,2066,2120,2169,2225,2272,3659,3719,3772,3833,3905,3969,6370,6468,6569,6627,6692,6740,6791,12301,12367,12425,12494,12552,12622,12695,12769,12837,12904,12974,13040,13113,13173,13249,13309,13369,13444,13504,13563,13620,13679,13741,13803,13860,13916,13972,14030,14088,14145,14202,14261,14320,14378,14432,14488,14617,14881,14939,15680,15782,15842,15896,15964,16033,16101,16154,16206,16302,16348,16398,16445,16550,16608,16667,16727,16789,16851,16913,16975,17037,17099,17167,17228,17290,17352,17405,17459,17551,17978,18335,18394,19336,21280,21351,21417,21491,21560,21631,21704,21775,21843,21916,21992,22062,22140,22208,22274,22335,22404,22468,22534,22602,22668,22731,22799,22870,22935,23008,23071,23152,23216,23282,23352,23422,23492,23562,23629,25047,25113,25166,25242,25308,25395,25471,25547,32581,32646,32871,33461,33515,33594,33672,33745,33810,33873,33939,34010,34081,34151,34213,34282,34348,34408,34475,34542,34598,34649,34702,34754,34808,34879,34942,35001,35063,35122,35195,35262,35322,35385,35460,35532,35628,35699,35755,35826,35883,35940,36006,36070,36141,36198,36251,36314,36366,36424,36491,37725,37787,37849,37917,37975,38038,38101,38168,38240,38306,38358,38418,38476,38528,38612,38697,38778,38858,38935,39014,39091,39165,39239,39310,39390,39462,39537,39605,39682,39747,39808,39868,39943,40017,40094,40167,40237,40309,40379,40452,40516,40586,40634,40703,40755,40840,40923,40981,41047,41114,41180,41261,41336,41392,41445,41506,41564,41614,41663,41712,41761,41823,41875,41920,42001,42052,42106,42159,42213,42264,42313,42379,42430,42491,42552,42614,42664,42705,42782,42841,42900,42959,43020,43076,43132,43199,43260,43325,43380,43445,43514,43582,43660,43729,43789,43860,43934,43999,44071,44141,44208,44292,44361,44428,44498,44561,44628,44696,44779,44858,44948,45025,45093,45160,45238,45295,45352,45420,45486,45542,45602,45661,45715,45765,45815,45863,45925,45976,46042,46115,46195,46275,46339,46402,46469,46540,46598,46659,46725,46784,46851,46911,46971,47034,47102,47163,47230,47308,47378,47427,47484,47553,47614,47702,47790,47878,47966,48022,48109,48196,48283,48370,48428,48502,48572,48628,48699,48764,48826,48901,48974,49064,49130,49196,49257,49321,49383,49441,49512,49595,49654,49725,49791,49856,49917,49976,50047,50113,50178,50261,50337,50412,50493,50553,50622,50692,50761,50816,50872,50928,50989,51047,51103,51158,51220,51273,51330,51424,51493,51594,51645,51715,51778,51836,51906,51975,52045,52115,52185,52252,52319,52394,52461,52520,52574,52628,52682,52735,52787,52861,53904,53978,54051,54119,54179,54237,54298,54364,54430,54495,54559,54620,55210,55350,58119,58169,58258,58314,58372,58434,58489,58547,58606,58668,58734,58800,58982,59128,59173,59216,60202,60249,60294,60345,60396,60447,60498,60879,61282,61344,61524,61596,61653,61719,61785,61853,61921,61987,62054,62128,62191,62248,62308,62373,62440,62505,62562,62623,62681,62751,62808,63198,65257,65388,65626,65724,65839,65924,65972,66051,66116,66205,66362,66519,66672,66826,66885,66967,67141,67289,67448,67603,67776,67893,68010,68178,68290,68404,68578,68756,68889,69001,69147,69299,69431,69574,69696,69874,70056,70373,70555,70737,70927,71117,71316,71489,71599,71782,71919,72139,72323,72483,72641,72825,73028,73199,73419,73641,73796,73996,74180,74283,74424,74589,74760,74960,75164,75366,75571,75772,75971,76175,76253,76554,76720,76875,76977,77403,77954,78239,81172,81628,82137,93279,93716,94150,94593,98583,98690,99033,99140,99385,99506,99915,100163,100263,100368,100487,100996,101143,101262,101513,101646,102061,102315,102427,107651,107784,107931,111952,117366,120637,125841,129763,135140,139124,142296,147463,148219,148449,148692,149730,197791,198716,198807,201001,201323,201533,201642,201761,201945,202917,203387,204138,206615,206710,207059,207929,208215,208618,209020,209363,209575,209776,209989,210278,210563,221238,221325,221410,221509,226199,226360,226523,226684,226849,227016,227069,227202,227322,227420,227533,227726,227852,228004,228146,228316,228472,228644,228935,229047,229176,229405,229623,230478,231065,231679,231847,231989,232150,232293,232461,232618,239285,239377,239550,239712,239807,239976,240070,240159,240402,240491,240784,240898,241307,241721,241837,242255,242496,242926,243361,243771,244193,244603,244725,245134,245550,245672,245890,246074,248778,249122,249202,249558,249708,249852,249936,250325,250423,250531,250625,250755,250863,250985,251121,251229,251349,251483,251605,251733,251875,252001,252141,252267,252385,252517,252615,252725,253025,253137,253255,253719,253835,254138,254264,254360,254490,254891,255001,255125,255263,255373,255495,255807,255931,256061,256537,256665,256980,257118,257264,257426,257642,257798,258002,259073,259157,259261,259748,260304,260462,260681,260912,261135,261370,261592,261858,261996,262595,262709,262847,262959,263083,263654,264149,264695,264840,264933,265025,266832,267220,267518,267707,267913,268106,268316,268921,269066,269283,269544,269675,278644,279168,279812,280009,280957,281514,281637,282410,282631,282831,284808,285043,285167,285579,285793,285896,286026,286201,286453,286649,286789,286983,287253,288134,288422,288552,289329,289986,290132,290838,291076,292616,292766,293183,293348,294034,294504,294700,294791,294875,295019,295253,295420,296348,296634,296794,297409,297568,297896,298123,298635,298997,299076,299415,299520,299885,300256,300617,302439,303068,304144,304568,304821,304973,305963,306700,306903,307149,307396,307638,307959,308158,308463,308686,308858,309399,309668,310162,310423,310863,311022,311306,312051,312416,312721,312879,313876,314274,314502,314722,314864,316154,316260,316390,316528,316652,316882,317051,317151,317436,317550,318433,319188,319627,319751,319997,320190,320324,320515,321294,321512,321803,322082,322399,322621,322916,323199,323303,323586,324318,324634,325195,325924,326585,326774,327325,327795,327915,328317,328851,334396,334695,336634,353332,354926,356030,356179,358303,361860,362300,363052,363236,363447,367673,368256,388473,388675,389810,389960,390135,392772,394692,403035,403542,403972,404131,405879,406099,406681,407176,407795,407948,408104,408297,408526,408734,408870,409111,417192,417889,419117,421272,421441,422633,422779,425000,425531,427010,427258,427941,432166,432341,435277,436168,444026,444269,446734" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7cf662db696d7c0bf4b24c08fd87c12c/transformed/viewpager2-1.0.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "4", ++ "endColumns": "24", ++ "endOffsets": "160" ++ }, ++ "to": { ++ "startLines": "7889", ++ "startColumns": "4", ++ "startOffsets": "450299", ++ "endLines": "7891", ++ "endColumns": "24", ++ "endOffsets": "450404" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ffe1920c397f0b305742d655a3e2f95/transformed/coordinatorlayout-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,6,16", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,116,261,869", ++ "endLines": "2,5,15,104", ++ "endColumns": "60,12,24,24", ++ "endOffsets": "111,256,864,6075" ++ }, ++ "to": { ++ "startLines": "49,5039,6246,6252", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "2436,328856,382193,382404", ++ "endLines": "49,5041,6251,6335", ++ "endColumns": "60,12,24,24", ++ "endOffsets": "2492,328996,382399,386915" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4dd5b2b5dff266b02e3d542070c12c10/transformed/lifecycle-runtime-2.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "42", ++ "endOffsets": "93" ++ }, ++ "to": { ++ "startLines": "1044", ++ "startColumns": "4", ++ "startOffsets": "60884", ++ "endColumns": "42", ++ "endOffsets": "60922" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/bc43dd7f4418060d7e97eafa583bae0e/transformed/savedstate-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "53", ++ "endOffsets": "104" ++ }, ++ "to": { ++ "startLines": "1045", ++ "startColumns": "4", ++ "startOffsets": "60927", ++ "endColumns": "53", ++ "endOffsets": "60976" ++ } ++ }, ++ { ++ "source": "/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/packaged_res/fullDebug/packageFullDebugResources/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "42", ++ "endOffsets": "93" ++ }, ++ "to": { ++ "startLines": "1107", ++ "startColumns": "4", ++ "startOffsets": "65069", ++ "endColumns": "42", ++ "endOffsets": "65107" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9db7760b0deff7e4ab8d80cd4aa38e52/transformed/drawerlayout-1.1.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,111,159,211", ++ "endLines": "2,3,4,8", ++ "endColumns": "55,47,51,24", ++ "endOffsets": "106,154,206,426" ++ }, ++ "to": { ++ "startLines": "74,76,612,6355", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "3459,3560,33364,387995", ++ "endLines": "74,76,612,6358", ++ "endColumns": "55,47,51,24", ++ "endOffsets": "3510,3603,33411,388101" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/fe7845793de81b169cc70f2cabd7542f/transformed/constraintlayout-2.0.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,8,9,17,18,19,20,21,22,23,27,28,29,30,38,46,47,48,53,54,59,64,65,66,71,72,77,78,83,84,85,91,92,93,98,103,104,105,109,110,111,112,115,116,119,122,123,124,125,126,129,132,133,134,135,140,143,146,147,148,153,154,155,158,161,162,165,168,171,174,175,176,179,182,183,188,189,194,197,200,201,202,203,204,205,206,207,208,209,221,222,223,224,225,231,232,233,236,241,242,243,244,253,259,260,264,265,266,267,276,356,280,281,282,283,284,285,286,287,288,289,290,291,296,297,298,299,300,301,302,308,309,315,322,334,335,336,337,338,355", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,112,298,359,650,702,750,801,853,914,960,1093,1145,1195,1246,1555,1867,1912,1971,2168,2225,2420,2602,2656,2713,2905,2963,3159,3215,3409,3466,3517,3739,3791,3846,4036,4212,4262,4318,4478,4539,4599,4669,4802,4870,4999,5125,5187,5252,5320,5387,5510,5635,5702,5767,5832,6013,6134,6255,6321,6388,6598,6667,6733,6858,6984,7051,7177,7304,7429,7556,7612,7677,7803,7926,7991,8199,8266,8446,8566,8686,8751,8813,8875,8937,8996,9056,9117,9178,9237,9738,9789,9838,9886,9944,10174,10221,10281,10387,10567,10613,10660,10712,11042,11280,11335,11474,11520,11575,11620,11961,36954,12098,16317,19922,20066,24372,24875,25295,25926,26578,26619,26673,26723,27345,27998,28496,31373,31719,31951,32091,32596,32726,33153,33548,34580,34812,34939,35045,35529,36651", ++ "endLines": "2,7,8,16,17,18,19,20,21,22,26,27,28,29,37,45,46,47,52,53,58,63,64,65,70,71,76,77,82,83,84,90,91,92,97,102,103,104,108,109,110,111,114,115,118,121,122,123,124,125,128,131,132,133,134,139,142,145,146,147,152,153,154,157,160,161,164,167,170,173,174,175,178,181,182,187,188,193,196,199,200,201,202,203,204,205,206,207,208,220,221,222,223,224,230,231,232,235,240,241,242,243,252,258,259,263,264,265,266,275,279,356,280,281,282,283,284,285,286,287,288,289,290,295,296,297,298,299,300,301,307,308,314,321,333,334,335,336,337,354,355", ++ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302", ++ "endOffsets": "107,293,354,645,697,745,796,848,909,955,1088,1140,1190,1241,1550,1862,1907,1966,2163,2220,2415,2597,2651,2708,2900,2958,3154,3210,3404,3461,3512,3734,3786,3841,4031,4207,4257,4313,4473,4534,4594,4664,4797,4865,4994,5120,5182,5247,5315,5382,5505,5630,5697,5762,5827,6008,6129,6250,6316,6383,6593,6662,6728,6853,6979,7046,7172,7299,7424,7551,7607,7672,7798,7921,7986,8194,8261,8441,8561,8681,8746,8808,8870,8932,8991,9051,9112,9173,9232,9733,9784,9833,9881,9939,10169,10216,10276,10382,10562,10608,10655,10707,11037,11275,11330,11469,11515,11570,11615,11956,12093,36990,16312,19917,20061,24367,24870,25290,25921,26573,26614,26668,26718,27340,27993,28491,31368,31714,31946,32086,32591,32721,33148,33543,34575,34807,34934,35040,35524,36646,36949" ++ }, ++ "to": { ++ "startLines": "2,4,10,11,19,25,31,46,47,48,50,54,55,56,57,65,75,83,84,89,90,95,100,101,102,107,108,113,114,119,120,121,127,128,129,134,139,149,150,154,155,156,157,160,161,164,167,168,169,170,171,174,177,178,179,180,185,188,191,192,193,198,199,200,203,206,207,210,213,216,219,220,221,224,227,228,233,234,239,242,245,246,247,248,249,250,251,252,253,254,306,307,308,309,313,319,320,321,324,339,344,363,364,374,380,383,387,388,389,390,399,992,6242,6243,6244,6245,6336,6541,6549,6550,6551,6552,6553,6554,6559,6560,6561,6967,6968,6969,6970,6976,6977,7074,7081,7103,7329,7350,7832,7833,7850", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "150,263,498,559,850,1186,1493,2277,2329,2390,2497,2630,2682,2732,2783,3092,3515,3974,4033,4230,4287,4482,4664,4718,4775,4967,5025,5221,5277,5471,5528,5579,5801,5853,5908,6098,6274,6796,6852,7012,7073,7133,7203,7336,7404,7533,7659,7721,7786,7854,7921,8044,8169,8236,8301,8366,8547,8668,8789,8855,8922,9132,9201,9267,9392,9518,9585,9711,9838,9963,10090,10146,10211,10337,10460,10525,10733,10800,10980,11100,11220,11285,11347,11409,11471,11530,11590,11651,11712,11771,14622,14673,14722,14770,15004,15234,15281,15341,15447,16211,16450,17556,17608,17983,18221,18399,18538,18584,18639,18684,19025,58174,369919,374138,377743,377887,386920,393945,394697,395328,395980,396021,396075,396125,396747,397400,397898,414379,414725,414957,415097,415602,415732,419122,419517,420929,428258,428923,446739,447223,448345", ++ "endLines": "2,8,10,18,19,25,31,46,47,48,53,54,55,56,64,72,75,83,88,89,94,99,100,101,106,107,112,113,118,119,120,126,127,128,133,138,139,149,153,154,155,156,159,160,163,166,167,168,169,170,173,176,177,178,179,184,187,190,191,192,197,198,199,202,205,206,209,212,215,218,219,220,223,226,227,232,233,238,241,244,245,246,247,248,249,250,251,252,253,265,306,307,308,309,318,319,320,323,328,339,344,363,372,379,380,386,387,388,389,398,402,992,6242,6243,6244,6245,6336,6541,6549,6550,6551,6552,6553,6558,6559,6560,6561,6967,6968,6969,6975,6976,6982,7080,7092,7103,7329,7350,7832,7849,7850", ++ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302", ++ "endOffsets": "202,444,554,845,897,1229,1539,2324,2385,2431,2625,2677,2727,2778,3087,3399,3555,4028,4225,4282,4477,4659,4713,4770,4962,5020,5216,5272,5466,5523,5574,5796,5848,5903,6093,6269,6319,6847,7007,7068,7128,7198,7331,7399,7528,7654,7716,7781,7849,7916,8039,8164,8231,8296,8361,8542,8663,8784,8850,8917,9127,9196,9262,9387,9513,9580,9706,9833,9958,10085,10141,10206,10332,10455,10520,10728,10795,10975,11095,11215,11280,11342,11404,11466,11525,11585,11646,11707,11766,12234,14668,14717,14765,14823,15229,15276,15336,15442,15622,16252,16492,17603,17933,18216,18271,18533,18579,18634,18679,19020,19157,58210,374133,377738,377882,382188,387418,394360,395323,395975,396016,396070,396120,396742,397395,397893,400770,414720,414952,415092,415597,415727,416154,419512,420544,421156,428380,429024,447218,448340,448643" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ac2b811be8f6b6e801e40541beb0df8/transformed/cardview-1.0.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356", ++ "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34", ++ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", ++ "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174" ++ }, ++ "to": { ++ "startLines": "24,427,428,429,430,601,602,603,1222,3197,3199,3202,5906", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "1134,20962,21023,21085,21147,32651,32710,32767,79695,206715,206779,206905,358646", ++ "endLines": "24,427,428,429,430,601,602,603,1228,3198,3201,3204,5933", ++ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", ++ "endOffsets": "1181,21018,21080,21142,21206,32705,32762,32816,80104,206774,206900,207028,359565" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/fef64e29f65a0374786979b4dd8facf7/transformed/lifecycle-viewmodel-2.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "49", ++ "endOffsets": "100" ++ }, ++ "to": { ++ "startLines": "1046", ++ "startColumns": "4", ++ "startOffsets": "60981", ++ "endColumns": "49", ++ "endOffsets": "61026" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-af.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-af.json +new file mode 100644 +index 0000000..885b5b9 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-af.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-af/values-af.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,229,307,407,521,602,666,754,820,883,969,1030,1088,1154,1217,1272,1390,1447,1509,1564,1633,1752,1840,1923,2032,2115,2196,2283,2350,2416,2485,2561,2647,2721,2800,2873,2944,3031,3102,3191,3281,3353,3428,3515,3566,3633,3714,3798,3860,3924,3987,4091,4200,4296,4407", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,113,80,63,87,65,62,85,60,57,65,62,54,117,56,61,54,68,118,87,82,108,82,80,86,66,65,68,75,85,73,78,72,70,86,70,88,89,71,74,86,50,66,80,83,61,63,62,103,108,95,110,76", ++ "endOffsets": "224,302,402,516,597,661,749,815,878,964,1025,1083,1149,1212,1267,1385,1442,1504,1559,1628,1747,1835,1918,2027,2110,2191,2278,2345,2411,2480,2556,2642,2716,2795,2868,2939,3026,3097,3186,3276,3348,3423,3510,3561,3628,3709,3793,3855,3919,3982,4086,4195,4291,4402,4479" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2951,3029,3129,3243,3324,3388,3476,3542,3605,3691,3752,3810,3876,3939,3994,4112,4169,4231,4286,4355,4474,4562,4645,4754,4837,4918,5005,5072,5138,5207,5283,5369,5443,5522,5595,5666,5753,5824,5913,6003,6075,6150,6237,6288,6355,6436,6520,6582,6646,6709,6813,6922,7018,7129", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,113,80,63,87,65,62,85,60,57,65,62,54,117,56,61,54,68,118,87,82,108,82,80,86,66,65,68,75,85,73,78,72,70,86,70,88,89,71,74,86,50,66,80,83,61,63,62,103,108,95,110,76", ++ "endOffsets": "274,3024,3124,3238,3319,3383,3471,3537,3600,3686,3747,3805,3871,3934,3989,4107,4164,4226,4281,4350,4469,4557,4640,4749,4832,4913,5000,5067,5133,5202,5278,5364,5438,5517,5590,5661,5748,5819,5908,5998,6070,6145,6232,6283,6350,6431,6515,6577,6641,6704,6808,6917,7013,7124,7201" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,2777", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,2853" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "279,387,483,589,674,777,895,972,1048,1139,1232,1327,1421,1520,1613,1708,1807,1902,1996,2077,2184,2289,2386,2494,2597,2699,2853,7206", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "382,478,584,669,772,890,967,1043,1134,1227,1322,1416,1515,1608,1703,1802,1897,1991,2072,2179,2284,2381,2489,2592,2694,2848,2946,7282" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7287", ++ "endColumns": "100", ++ "endOffsets": "7383" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-am.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-am.json +new file mode 100644 +index 0000000..4c2225c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-am.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-am/values-am.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6978", ++ "endColumns": "100", ++ "endOffsets": "7074" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,216,291,380,482,559,623,708,770,828,913,975,1033,1099,1161,1216,1312,1369,1428,1484,1551,1656,1736,1817,1916,1989,2060,2142,2209,2275,2341,2414,2495,2563,2636,2707,2774,2859,2926,3013,3101,3175,3243,3328,3379,3443,3523,3605,3667,3731,3794,3889,3978,4063,4154", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,74,88,101,76,63,84,61,57,84,61,57,65,61,54,95,56,58,55,66,104,79,80,98,72,70,81,66,65,65,72,80,67,72,70,66,84,66,86,87,73,67,84,50,63,79,81,61,63,62,94,88,84,90,75", ++ "endOffsets": "211,286,375,477,554,618,703,765,823,908,970,1028,1094,1156,1211,1307,1364,1423,1479,1546,1651,1731,1812,1911,1984,2055,2137,2204,2270,2336,2409,2490,2558,2631,2702,2769,2854,2921,3008,3096,3170,3238,3323,3374,3438,3518,3600,3662,3726,3789,3884,3973,4058,4149,4225" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2884,2959,3048,3150,3227,3291,3376,3438,3496,3581,3643,3701,3767,3829,3884,3980,4037,4096,4152,4219,4324,4404,4485,4584,4657,4728,4810,4877,4943,5009,5082,5163,5231,5304,5375,5442,5527,5594,5681,5769,5843,5911,5996,6047,6111,6191,6273,6335,6399,6462,6557,6646,6731,6822", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,74,88,101,76,63,84,61,57,84,61,57,65,61,54,95,56,58,55,66,104,79,80,98,72,70,81,66,65,65,72,80,67,72,70,66,84,66,86,87,73,67,84,50,63,79,81,61,63,62,94,88,84,90,75", ++ "endOffsets": "261,2954,3043,3145,3222,3286,3371,3433,3491,3576,3638,3696,3762,3824,3879,3975,4032,4091,4147,4214,4319,4399,4480,4579,4652,4723,4805,4872,4938,5004,5077,5158,5226,5299,5370,5437,5522,5589,5676,5764,5838,5906,5991,6042,6106,6186,6268,6330,6394,6457,6552,6641,6726,6817,6893" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,203,301,407,493,596,713,791,867,958,1051,1143,1237,1337,1430,1525,1618,1709,1800,1880,1980,2080,2176,2278,2378,2477,2627,2723", ++ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", ++ "endOffsets": "198,296,402,488,591,708,786,862,953,1046,1138,1232,1332,1425,1520,1613,1704,1795,1875,1975,2075,2171,2273,2373,2472,2622,2718,2798" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "266,364,462,568,654,757,874,952,1028,1119,1212,1304,1398,1498,1591,1686,1779,1870,1961,2041,2141,2241,2337,2439,2539,2638,2788,6898", ++ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", ++ "endOffsets": "359,457,563,649,752,869,947,1023,1114,1207,1299,1393,1493,1586,1681,1774,1865,1956,2036,2136,2236,2332,2434,2534,2633,2783,2879,6973" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ar.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ar.json +new file mode 100644 +index 0000000..ebc65c1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ar.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ar/values-ar.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "92", ++ "startColumns": "4", ++ "startOffsets": "7518", ++ "endColumns": "100", ++ "endOffsets": "7614" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,420,504,605,724,801,864,955,1024,1091,1191,1256,1317,1385,1447,1505,1619,1679,1740,1797,1870,1993,2074,2154,2272,2353,2434,2523,2590,2656,2734,2814,2898,2970,3044,3117,3187,3278,3349,3439,3534,3608,3691,3784,3833,3902,3988,4073,4135,4199,4262,4371,4463,4560,4653", ++ "endLines": "9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63", ++ "endColumns": "12,83,100,118,76,62,90,68,66,99,64,60,67,61,57,113,59,60,56,72,122,80,79,117,80,80,88,66,65,77,79,83,71,73,72,69,90,70,89,94,73,82,92,48,68,85,84,61,63,62,108,91,96,92,79", ++ "endOffsets": "415,499,600,719,796,859,950,1019,1086,1186,1251,1312,1380,1442,1500,1614,1674,1735,1792,1865,1988,2069,2149,2267,2348,2429,2518,2585,2651,2729,2809,2893,2965,3039,3112,3182,3273,3344,3434,3529,3603,3686,3779,3828,3897,3983,4068,4130,4194,4257,4366,4458,4555,4648,4728" ++ }, ++ "to": { ++ "startLines": "2,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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,90", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3123,3207,3308,3427,3504,3567,3658,3727,3794,3894,3959,4020,4088,4150,4208,4322,4382,4443,4500,4573,4696,4777,4857,4975,5056,5137,5226,5293,5359,5437,5517,5601,5673,5747,5820,5890,5981,6052,6142,6237,6311,6394,6487,6536,6605,6691,6776,6838,6902,6965,7074,7166,7263,7356", ++ "endLines": "9,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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,90", ++ "endColumns": "12,83,100,118,76,62,90,68,66,99,64,60,67,61,57,113,59,60,56,72,122,80,79,117,80,80,88,66,65,77,79,83,71,73,72,69,90,70,89,94,73,82,92,48,68,85,84,61,63,62,108,91,96,92,79", ++ "endOffsets": "465,3202,3303,3422,3499,3562,3653,3722,3789,3889,3954,4015,4083,4145,4203,4317,4377,4438,4495,4568,4691,4772,4852,4970,5051,5132,5221,5288,5354,5432,5512,5596,5668,5742,5815,5885,5976,6047,6137,6232,6306,6389,6482,6531,6600,6686,6771,6833,6897,6960,7069,7161,7258,7351,7431" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,424,506,607,721,801,879,970,1063,1155,1249,1349,1442,1537,1630,1721,1815,1894,1999,2097,2195,2303,2403,2506,2661,2758", ++ "endColumns": "107,103,106,81,100,113,79,77,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "208,312,419,501,602,716,796,874,965,1058,1150,1244,1344,1437,1532,1625,1716,1810,1889,1994,2092,2190,2298,2398,2501,2656,2753,2835" ++ }, ++ "to": { ++ "startLines": "10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,91", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "470,578,682,789,871,972,1086,1166,1244,1335,1428,1520,1614,1714,1807,1902,1995,2086,2180,2259,2364,2462,2560,2668,2768,2871,3026,7436", ++ "endColumns": "107,103,106,81,100,113,79,77,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "573,677,784,866,967,1081,1161,1239,1330,1423,1515,1609,1709,1802,1897,1990,2081,2175,2254,2359,2457,2555,2663,2763,2866,3021,3118,7513" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-as.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-as.json +new file mode 100644 +index 0000000..3a545f8 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-as.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-as/values-as.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,406,529,608,673,762,827,886,972,1036,1099,1169,1233,1287,1392,1450,1512,1566,1638,1755,1842,1925,2035,2112,2193,2284,2351,2417,2487,2564,2651,2722,2799,2868,2937,3028,3100,3189,3278,3352,3424,3510,3560,3626,3706,3790,3852,3916,3979,4079,4176,4268,4367", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,101,122,78,64,88,64,58,85,63,62,69,63,53,104,57,61,53,71,116,86,82,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,80", ++ "endOffsets": "222,299,401,524,603,668,757,822,881,967,1031,1094,1164,1228,1282,1387,1445,1507,1561,1633,1750,1837,1920,2030,2107,2188,2279,2346,2412,2482,2559,2646,2717,2794,2863,2932,3023,3095,3184,3273,3347,3419,3505,3555,3621,3701,3785,3847,3911,3974,4074,4171,4263,4362,4443" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3013,3090,3192,3315,3394,3459,3548,3613,3672,3758,3822,3885,3955,4019,4073,4178,4236,4298,4352,4424,4541,4628,4711,4821,4898,4979,5070,5137,5203,5273,5350,5437,5508,5585,5654,5723,5814,5886,5975,6064,6138,6210,6296,6346,6412,6492,6576,6638,6702,6765,6865,6962,7054,7153", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,101,122,78,64,88,64,58,85,63,62,69,63,53,104,57,61,53,71,116,86,82,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,80", ++ "endOffsets": "272,3085,3187,3310,3389,3454,3543,3608,3667,3753,3817,3880,3950,4014,4068,4173,4231,4293,4347,4419,4536,4623,4706,4816,4893,4974,5065,5132,5198,5268,5345,5432,5503,5580,5649,5718,5809,5881,5970,6059,6133,6205,6291,6341,6407,6487,6571,6633,6697,6760,6860,6957,7049,7148,7229" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,312,419,510,612,732,809,884,975,1068,1163,1257,1357,1450,1545,1639,1730,1821,1907,2020,2128,2227,2336,2452,2572,2739,2841", ++ "endColumns": "107,98,106,90,101,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,98,108,115,119,166,101,82", ++ "endOffsets": "208,307,414,505,607,727,804,879,970,1063,1158,1252,1352,1445,1540,1634,1725,1816,1902,2015,2123,2222,2331,2447,2567,2734,2836,2919" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,385,484,591,682,784,904,981,1056,1147,1240,1335,1429,1529,1622,1717,1811,1902,1993,2079,2192,2300,2399,2508,2624,2744,2911,7234", ++ "endColumns": "107,98,106,90,101,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,98,108,115,119,166,101,82", ++ "endOffsets": "380,479,586,677,779,899,976,1051,1142,1235,1330,1424,1524,1617,1712,1806,1897,1988,2074,2187,2295,2394,2503,2619,2739,2906,3008,7312" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7317", ++ "endColumns": "100", ++ "endOffsets": "7413" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-az.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-az.json +new file mode 100644 +index 0000000..4d1334e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-az.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-az/values-az.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,300,396,512,592,656,750,818,877,972,1036,1095,1162,1225,1279,1394,1452,1514,1568,1639,1771,1855,1935,2039,2115,2191,2275,2342,2408,2478,2556,2639,2709,2785,2863,2934,3020,3103,3196,3289,3362,3434,3528,3582,3649,3733,3821,3885,3950,4014,4116,4213,4309,4406", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,95,115,79,63,93,67,58,94,63,58,66,62,53,114,57,61,53,70,131,83,79,103,75,75,83,66,65,69,77,82,69,75,77,70,85,82,92,92,72,71,93,53,66,83,87,63,64,63,101,96,95,96,79", ++ "endOffsets": "215,295,391,507,587,651,745,813,872,967,1031,1090,1157,1220,1274,1389,1447,1509,1563,1634,1766,1850,1930,2034,2110,2186,2270,2337,2403,2473,2551,2634,2704,2780,2858,2929,3015,3098,3191,3284,3357,3429,3523,3577,3644,3728,3816,3880,3945,4009,4111,4208,4304,4401,4481" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2978,3058,3154,3270,3350,3414,3508,3576,3635,3730,3794,3853,3920,3983,4037,4152,4210,4272,4326,4397,4529,4613,4693,4797,4873,4949,5033,5100,5166,5236,5314,5397,5467,5543,5621,5692,5778,5861,5954,6047,6120,6192,6286,6340,6407,6491,6579,6643,6708,6772,6874,6971,7067,7164", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,95,115,79,63,93,67,58,94,63,58,66,62,53,114,57,61,53,70,131,83,79,103,75,75,83,66,65,69,77,82,69,75,77,70,85,82,92,92,72,71,93,53,66,83,87,63,64,63,101,96,95,96,79", ++ "endOffsets": "265,3053,3149,3265,3345,3409,3503,3571,3630,3725,3789,3848,3915,3978,4032,4147,4205,4267,4321,4392,4524,4608,4688,4792,4868,4944,5028,5095,5161,5231,5309,5392,5462,5538,5616,5687,5773,5856,5949,6042,6115,6187,6281,6335,6402,6486,6574,6638,6703,6767,6869,6966,7062,7159,7239" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,2813", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,2892" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,380,481,591,679,786,900,982,1060,1151,1244,1338,1437,1537,1630,1725,1819,1910,2002,2087,2192,2298,2398,2507,2612,2714,2872,7244", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "375,476,586,674,781,895,977,1055,1146,1239,1333,1432,1532,1625,1720,1814,1905,1997,2082,2187,2293,2393,2502,2607,2709,2867,2973,7323" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7328", ++ "endColumns": "100", ++ "endOffsets": "7424" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-b+es+419.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-b+es+419.json +new file mode 100644 +index 0000000..d826eb4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-b+es+419.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-b+es+419/values-b+es+419.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-b+es+419/values-b+es+419.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,319,421,549,630,695,790,860,923,1016,1088,1151,1225,1289,1346,1464,1522,1584,1641,1721,1855,1944,2025,2136,2217,2297,2387,2454,2520,2596,2678,2766,2839,2916,2986,3063,3152,3226,3320,3422,3494,3575,3679,3732,3799,3892,3981,4043,4107,4170,4281,4378,4480,4578", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "228,314,416,544,625,690,785,855,918,1011,1083,1146,1220,1284,1341,1459,1517,1579,1636,1716,1850,1939,2020,2131,2212,2292,2382,2449,2515,2591,2673,2761,2834,2911,2981,3058,3147,3221,3315,3417,3489,3570,3674,3727,3794,3887,3976,4038,4102,4165,4276,4373,4475,4573,4656" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-b+sr+Latn.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-b+sr+Latn.json +new file mode 100644 +index 0000000..563f5c5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-b+sr+Latn.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,816,898,989,1082,1177,1271,1371,1464,1559,1664,1755,1846,1932,2037,2143,2246,2353,2462,2569,2739,2836", ++ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,811,893,984,1077,1172,1266,1366,1459,1554,1659,1750,1841,1927,2032,2138,2241,2348,2457,2564,2734,2831,2918" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "329,436,537,643,729,833,955,1040,1122,1213,1306,1401,1495,1595,1688,1783,1888,1979,2070,2156,2261,2367,2470,2577,2686,2793,2963,7407", ++ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", ++ "endOffsets": "431,532,638,724,828,950,1035,1117,1208,1301,1396,1490,1590,1683,1778,1883,1974,2065,2151,2256,2362,2465,2572,2681,2788,2958,3055,7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7494", ++ "endColumns": "100", ++ "endOffsets": "7590" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,279,359,453,585,666,732,825,893,956,1059,1125,1181,1252,1312,1366,1478,1535,1596,1650,1726,1851,1938,2021,2130,2212,2295,2383,2450,2516,2590,2668,2757,2833,2909,2984,3056,3146,3219,3311,3407,3479,3555,3651,3704,3771,3858,3945,4007,4071,4134,4239,4343,4439,4546", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,79,93,131,80,65,92,67,62,102,65,55,70,59,53,111,56,60,53,75,124,86,82,108,81,82,87,66,65,73,77,88,75,75,74,71,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "274,354,448,580,661,727,820,888,951,1054,1120,1176,1247,1307,1361,1473,1530,1591,1645,1721,1846,1933,2016,2125,2207,2290,2378,2445,2511,2585,2663,2752,2828,2904,2979,3051,3141,3214,3306,3402,3474,3550,3646,3699,3766,3853,3940,4002,4066,4129,4234,4338,4434,4541,4621" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3060,3140,3234,3366,3447,3513,3606,3674,3737,3840,3906,3962,4033,4093,4147,4259,4316,4377,4431,4507,4632,4719,4802,4911,4993,5076,5164,5231,5297,5371,5449,5538,5614,5690,5765,5837,5927,6000,6092,6188,6260,6336,6432,6485,6552,6639,6726,6788,6852,6915,7020,7124,7220,7327", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,93,131,80,65,92,67,62,102,65,55,70,59,53,111,56,60,53,75,124,86,82,108,81,82,87,66,65,73,77,88,75,75,74,71,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "324,3135,3229,3361,3442,3508,3601,3669,3732,3835,3901,3957,4028,4088,4142,4254,4311,4372,4426,4502,4627,4714,4797,4906,4988,5071,5159,5226,5292,5366,5444,5533,5609,5685,5760,5832,5922,5995,6087,6183,6255,6331,6427,6480,6547,6634,6721,6783,6847,6910,7015,7119,7215,7322,7402" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-be.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-be.json +new file mode 100644 +index 0000000..4a15cd8 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-be.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-be/values-be.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,2835", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,2912" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "387,507,610,726,812,917,1036,1116,1193,1285,1379,1474,1568,1663,1757,1853,1948,2040,2132,2213,2319,2424,2522,2630,2736,2844,3017,7549", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "502,605,721,807,912,1031,1111,1188,1280,1374,1469,1563,1658,1752,1848,1943,2035,2127,2208,2314,2419,2517,2625,2731,2839,3012,3112,7626" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,337,419,516,632,715,782,875,952,1015,1131,1200,1259,1330,1389,1443,1564,1625,1688,1742,1815,1937,2025,2108,2230,2316,2403,2494,2561,2627,2699,2776,2860,2935,3012,3094,3170,3259,3341,3432,3528,3602,3683,3778,3832,3898,3985,4071,4133,4197,4260,4370,4477,4580,4689", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,81,96,115,82,66,92,76,62,115,68,58,70,58,53,120,60,62,53,72,121,87,82,121,85,86,90,66,65,71,76,83,74,76,81,75,88,81,90,95,73,80,94,53,65,86,85,61,63,62,109,106,102,108,79", ++ "endOffsets": "332,414,511,627,710,777,870,947,1010,1126,1195,1254,1325,1384,1438,1559,1620,1683,1737,1810,1932,2020,2103,2225,2311,2398,2489,2556,2622,2694,2771,2855,2930,3007,3089,3165,3254,3336,3427,3523,3597,3678,3773,3827,3893,3980,4066,4128,4192,4255,4365,4472,4575,4684,4764" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3117,3199,3296,3412,3495,3562,3655,3732,3795,3911,3980,4039,4110,4169,4223,4344,4405,4468,4522,4595,4717,4805,4888,5010,5096,5183,5274,5341,5407,5479,5556,5640,5715,5792,5874,5950,6039,6121,6212,6308,6382,6463,6558,6612,6678,6765,6851,6913,6977,7040,7150,7257,7360,7469", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,96,115,82,66,92,76,62,115,68,58,70,58,53,120,60,62,53,72,121,87,82,121,85,86,90,66,65,71,76,83,74,76,81,75,88,81,90,95,73,80,94,53,65,86,85,61,63,62,109,106,102,108,79", ++ "endOffsets": "382,3194,3291,3407,3490,3557,3650,3727,3790,3906,3975,4034,4105,4164,4218,4339,4400,4463,4517,4590,4712,4800,4883,5005,5091,5178,5269,5336,5402,5474,5551,5635,5710,5787,5869,5945,6034,6116,6207,6303,6377,6458,6553,6607,6673,6760,6846,6908,6972,7035,7145,7252,7355,7464,7544" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7631", ++ "endColumns": "100", ++ "endOffsets": "7727" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-bg.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-bg.json +new file mode 100644 +index 0000000..b1e28ac +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-bg.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-bg/values-bg.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7565", ++ "endColumns": "100", ++ "endOffsets": "7661" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,303,398,531,620,686,783,863,925,1014,1079,1138,1211,1274,1328,1456,1513,1575,1629,1702,1845,1929,2017,2123,2211,2299,2384,2451,2517,2592,2668,2754,2831,2907,2984,3058,3149,3224,3315,3407,3481,3568,3659,3714,3780,3863,3949,4011,4075,4138,4255,4368,4479,4596", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,94,132,88,65,96,79,61,88,64,58,72,62,53,127,56,61,53,72,142,83,87,105,87,87,84,66,65,74,75,85,76,75,76,73,90,74,90,91,73,86,90,54,65,82,85,61,63,62,116,112,110,116,85", ++ "endOffsets": "215,298,393,526,615,681,778,858,920,1009,1074,1133,1206,1269,1323,1451,1508,1570,1624,1697,1840,1924,2012,2118,2206,2294,2379,2446,2512,2587,2663,2749,2826,2902,2979,3053,3144,3219,3310,3402,3476,3563,3654,3709,3775,3858,3944,4006,4070,4133,4250,4363,4474,4591,4677" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3019,3102,3197,3330,3419,3485,3582,3662,3724,3813,3878,3937,4010,4073,4127,4255,4312,4374,4428,4501,4644,4728,4816,4922,5010,5098,5183,5250,5316,5391,5467,5553,5630,5706,5783,5857,5948,6023,6114,6206,6280,6367,6458,6513,6579,6662,6748,6810,6874,6937,7054,7167,7278,7395", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,94,132,88,65,96,79,61,88,64,58,72,62,53,127,56,61,53,72,142,83,87,105,87,87,84,66,65,74,75,85,76,75,76,73,90,74,90,91,73,86,90,54,65,82,85,61,63,62,116,112,110,116,85", ++ "endOffsets": "265,3097,3192,3325,3414,3480,3577,3657,3719,3808,3873,3932,4005,4068,4122,4250,4307,4369,4423,4496,4639,4723,4811,4917,5005,5093,5178,5245,5311,5386,5462,5548,5625,5701,5778,5852,5943,6018,6109,6201,6275,6362,6453,6508,6574,6657,6743,6805,6869,6932,7049,7162,7273,7390,7476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,2854", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,2933" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,390,496,601,687,797,918,998,1075,1166,1259,1354,1448,1548,1641,1736,1844,1935,2026,2109,2223,2331,2431,2545,2652,2760,2920,7481", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "385,491,596,682,792,913,993,1070,1161,1254,1349,1443,1543,1636,1731,1839,1930,2021,2104,2218,2326,2426,2540,2647,2755,2915,3014,7560" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-bn.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-bn.json +new file mode 100644 +index 0000000..be47dbb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-bn.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-bn/values-bn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,2835", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,2917" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,490,596,685,790,911,994,1076,1167,1260,1354,1448,1548,1641,1736,1830,1921,2012,2098,2208,2312,2415,2523,2631,2736,2901,7301", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "379,485,591,680,785,906,989,1071,1162,1255,1349,1443,1543,1636,1731,1825,1916,2007,2093,2203,2307,2410,2518,2626,2731,2896,3001,7383" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7388", ++ "endColumns": "100", ++ "endOffsets": "7484" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,309,413,530,611,677,768,834,895,985,1052,1113,1182,1244,1298,1405,1464,1525,1579,1653,1773,1858,1942,2047,2118,2188,2275,2342,2408,2481,2561,2656,2725,2801,2881,2950,3045,3128,3218,3313,3387,3461,3554,3608,3675,3761,3846,3908,3972,4035,4137,4242,4335,4441", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,103,116,80,65,90,65,60,89,66,60,68,61,53,106,58,60,53,73,119,84,83,104,70,69,86,66,65,72,79,94,68,75,79,68,94,82,89,94,73,73,92,53,66,85,84,61,63,62,101,104,92,105,79", ++ "endOffsets": "221,304,408,525,606,672,763,829,890,980,1047,1108,1177,1239,1293,1400,1459,1520,1574,1648,1768,1853,1937,2042,2113,2183,2270,2337,2403,2476,2556,2651,2720,2796,2876,2945,3040,3123,3213,3308,3382,3456,3549,3603,3670,3756,3841,3903,3967,4030,4132,4237,4330,4436,4516" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3006,3089,3193,3310,3391,3457,3548,3614,3675,3765,3832,3893,3962,4024,4078,4185,4244,4305,4359,4433,4553,4638,4722,4827,4898,4968,5055,5122,5188,5261,5341,5436,5505,5581,5661,5730,5825,5908,5998,6093,6167,6241,6334,6388,6455,6541,6626,6688,6752,6815,6917,7022,7115,7221", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,103,116,80,65,90,65,60,89,66,60,68,61,53,106,58,60,53,73,119,84,83,104,70,69,86,66,65,72,79,94,68,75,79,68,94,82,89,94,73,73,92,53,66,85,84,61,63,62,101,104,92,105,79", ++ "endOffsets": "271,3084,3188,3305,3386,3452,3543,3609,3670,3760,3827,3888,3957,4019,4073,4180,4239,4300,4354,4428,4548,4633,4717,4822,4893,4963,5050,5117,5183,5256,5336,5431,5500,5576,5656,5725,5820,5903,5993,6088,6162,6236,6329,6383,6450,6536,6621,6683,6747,6810,6912,7017,7110,7216,7296" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-bs.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-bs.json +new file mode 100644 +index 0000000..4f012a3 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-bs.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-bs/values-bs.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,282,364,460,586,667,733,825,902,965,1073,1139,1195,1266,1326,1380,1499,1556,1618,1672,1747,1871,1959,2042,2157,2242,2328,2416,2483,2549,2623,2701,2788,2860,2937,3010,3080,3173,3245,3337,3433,3507,3583,3679,3732,3799,3886,3973,4035,4099,4162,4270,4372,4473,4578", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,81,95,125,80,65,91,76,62,107,65,55,70,59,53,118,56,61,53,74,123,87,82,114,84,85,87,66,65,73,77,86,71,76,72,69,92,71,91,95,73,75,95,52,66,86,86,61,63,62,107,101,100,104,79", ++ "endOffsets": "277,359,455,581,662,728,820,897,960,1068,1134,1190,1261,1321,1375,1494,1551,1613,1667,1742,1866,1954,2037,2152,2237,2323,2411,2478,2544,2618,2696,2783,2855,2932,3005,3075,3168,3240,3332,3428,3502,3578,3674,3727,3794,3881,3968,4030,4094,4157,4265,4367,4468,4573,4653" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3057,3139,3235,3361,3442,3508,3600,3677,3740,3848,3914,3970,4041,4101,4155,4274,4331,4393,4447,4522,4646,4734,4817,4932,5017,5103,5191,5258,5324,5398,5476,5563,5635,5712,5785,5855,5948,6020,6112,6208,6282,6358,6454,6507,6574,6661,6748,6810,6874,6937,7045,7147,7248,7353", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,95,125,80,65,91,76,62,107,65,55,70,59,53,118,56,61,53,74,123,87,82,114,84,85,87,66,65,73,77,86,71,76,72,69,92,71,91,95,73,75,95,52,66,86,86,61,63,62,107,101,100,104,79", ++ "endOffsets": "327,3134,3230,3356,3437,3503,3595,3672,3735,3843,3909,3965,4036,4096,4150,4269,4326,4388,4442,4517,4641,4729,4812,4927,5012,5098,5186,5253,5319,5393,5471,5558,5630,5707,5780,5850,5943,6015,6107,6203,6277,6353,6449,6502,6569,6656,6743,6805,6869,6932,7040,7142,7243,7348,7428" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,323,430,516,620,742,827,909,1000,1093,1188,1282,1382,1475,1570,1665,1756,1847,1935,2038,2142,2243,2348,2462,2565,2734,2830", ++ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", ++ "endOffsets": "221,318,425,511,615,737,822,904,995,1088,1183,1277,1377,1470,1565,1660,1751,1842,1930,2033,2137,2238,2343,2457,2560,2729,2825,2912" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "332,453,550,657,743,847,969,1054,1136,1227,1320,1415,1509,1609,1702,1797,1892,1983,2074,2162,2265,2369,2470,2575,2689,2792,2961,7433", ++ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", ++ "endOffsets": "448,545,652,738,842,964,1049,1131,1222,1315,1410,1504,1604,1697,1792,1887,1978,2069,2157,2260,2364,2465,2570,2684,2787,2956,3052,7515" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7520", ++ "endColumns": "100", ++ "endOffsets": "7616" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ca.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ca.json +new file mode 100644 +index 0000000..08e1df2 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ca.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ca/values-ca.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,229,317,418,546,630,695,792,872,937,1032,1104,1166,1242,1305,1362,1483,1541,1602,1659,1739,1876,1963,2047,2156,2234,2313,2402,2469,2535,2613,2694,2782,2860,2937,3011,3090,3180,3272,3364,3465,3539,3621,3722,3772,3838,3930,4017,4079,4143,4206,4329,4432,4536,4642", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,87,100,127,83,64,96,79,64,94,71,61,75,62,56,120,57,60,56,79,136,86,83,108,77,78,88,66,65,77,80,87,77,76,73,78,89,91,91,100,73,81,100,49,65,91,86,61,63,62,122,102,103,105,85", ++ "endOffsets": "224,312,413,541,625,690,787,867,932,1027,1099,1161,1237,1300,1357,1478,1536,1597,1654,1734,1871,1958,2042,2151,2229,2308,2397,2464,2530,2608,2689,2777,2855,2932,3006,3085,3175,3267,3359,3460,3534,3616,3717,3767,3833,3925,4012,4074,4138,4201,4324,4427,4531,4637,4723" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3004,3092,3193,3321,3405,3470,3567,3647,3712,3807,3879,3941,4017,4080,4137,4258,4316,4377,4434,4514,4651,4738,4822,4931,5009,5088,5177,5244,5310,5388,5469,5557,5635,5712,5786,5865,5955,6047,6139,6240,6314,6396,6497,6547,6613,6705,6792,6854,6918,6981,7104,7207,7311,7417", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,100,127,83,64,96,79,64,94,71,61,75,62,56,120,57,60,56,79,136,86,83,108,77,78,88,66,65,77,80,87,77,76,73,78,89,91,91,100,73,81,100,49,65,91,86,61,63,62,122,102,103,105,85", ++ "endOffsets": "274,3087,3188,3316,3400,3465,3562,3642,3707,3802,3874,3936,4012,4075,4132,4253,4311,4372,4429,4509,4646,4733,4817,4926,5004,5083,5172,5239,5305,5383,5464,5552,5630,5707,5781,5860,5950,6042,6134,6235,6309,6391,6492,6542,6608,6700,6787,6849,6913,6976,7099,7202,7306,7412,7498" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,228,333,440,523,629,755,839,918,1009,1102,1195,1290,1388,1481,1574,1668,1759,1850,1931,2042,2150,2248,2358,2463,2571,2731,2830", ++ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", ++ "endOffsets": "223,328,435,518,624,750,834,913,1004,1097,1190,1285,1383,1476,1569,1663,1754,1845,1926,2037,2145,2243,2353,2458,2566,2726,2825,2907" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "279,402,507,614,697,803,929,1013,1092,1183,1276,1369,1464,1562,1655,1748,1842,1933,2024,2105,2216,2324,2422,2532,2637,2745,2905,7503", ++ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", ++ "endOffsets": "397,502,609,692,798,924,1008,1087,1178,1271,1364,1459,1557,1650,1743,1837,1928,2019,2100,2211,2319,2417,2527,2632,2740,2900,2999,7580" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7585", ++ "endColumns": "100", ++ "endOffsets": "7681" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-cs.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-cs.json +new file mode 100644 +index 0000000..18e4f2b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-cs.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-cs/values-cs.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7452", ++ "endColumns": "100", ++ "endOffsets": "7548" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,323,400,492,618,699,764,863,939,1000,1089,1156,1210,1278,1338,1392,1509,1569,1631,1685,1757,1879,1963,2055,2162,2240,2322,2410,2477,2543,2615,2692,2776,2848,2925,2999,3070,3158,3229,3322,3417,3491,3565,3661,3713,3780,3866,3954,4016,4080,4143,4253,4349,4448,4546", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,76,91,125,80,64,98,75,60,88,66,53,67,59,53,116,59,61,53,71,121,83,91,106,77,81,87,66,65,71,76,83,71,76,73,70,87,70,92,94,73,73,95,51,66,85,87,61,63,62,109,95,98,97,78", ++ "endOffsets": "318,395,487,613,694,759,858,934,995,1084,1151,1205,1273,1333,1387,1504,1564,1626,1680,1752,1874,1958,2050,2157,2235,2317,2405,2472,2538,2610,2687,2771,2843,2920,2994,3065,3153,3224,3317,3412,3486,3560,3656,3708,3775,3861,3949,4011,4075,4138,4248,4344,4443,4541,4620" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3067,3144,3236,3362,3443,3508,3607,3683,3744,3833,3900,3954,4022,4082,4136,4253,4313,4375,4429,4501,4623,4707,4799,4906,4984,5066,5154,5221,5287,5359,5436,5520,5592,5669,5743,5814,5902,5973,6066,6161,6235,6309,6405,6457,6524,6610,6698,6760,6824,6887,6997,7093,7192,7290", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,91,125,80,64,98,75,60,88,66,53,67,59,53,116,59,61,53,71,121,83,91,106,77,81,87,66,65,71,76,83,71,76,73,70,87,70,92,94,73,73,95,51,66,85,87,61,63,62,109,95,98,97,78", ++ "endOffsets": "368,3139,3231,3357,3438,3503,3602,3678,3739,3828,3895,3949,4017,4077,4131,4248,4308,4370,4424,4496,4618,4702,4794,4901,4979,5061,5149,5216,5282,5354,5431,5515,5587,5664,5738,5809,5897,5968,6061,6156,6230,6304,6400,6452,6519,6605,6693,6755,6819,6882,6992,7088,7187,7285,7364" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,2799", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,2877" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "373,480,582,692,778,883,1000,1078,1154,1245,1338,1433,1527,1621,1714,1809,1906,1997,2088,2172,2276,2388,2487,2593,2704,2806,2969,7369", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "475,577,687,773,878,995,1073,1149,1240,1333,1428,1522,1616,1709,1804,1901,1992,2083,2167,2271,2383,2482,2588,2699,2801,2964,3062,7447" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-da.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-da.json +new file mode 100644 +index 0000000..a57825c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-da.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-da/values-da.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,305,405,554,632,696,782,855,915,1002,1064,1126,1194,1259,1315,1433,1491,1552,1608,1683,1809,1895,1975,2086,2164,2244,2330,2397,2463,2531,2605,2694,2766,2844,2914,2987,3071,3148,3236,3325,3399,3472,3557,3606,3672,3752,3835,3897,3961,4024,4132,4227,4328,4423", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,148,77,63,85,72,59,86,61,61,67,64,55,117,57,60,55,74,125,85,79,110,77,79,85,66,65,67,73,88,71,77,69,72,83,76,87,88,73,72,84,48,65,79,82,61,63,62,107,94,100,94,79", ++ "endOffsets": "222,300,400,549,627,691,777,850,910,997,1059,1121,1189,1254,1310,1428,1486,1547,1603,1678,1804,1890,1970,2081,2159,2239,2325,2392,2458,2526,2600,2689,2761,2839,2909,2982,3066,3143,3231,3320,3394,3467,3552,3601,3667,3747,3830,3892,3956,4019,4127,4222,4323,4418,4498" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2929,3007,3107,3256,3334,3398,3484,3557,3617,3704,3766,3828,3896,3961,4017,4135,4193,4254,4310,4385,4511,4597,4677,4788,4866,4946,5032,5099,5165,5233,5307,5396,5468,5546,5616,5689,5773,5850,5938,6027,6101,6174,6259,6308,6374,6454,6537,6599,6663,6726,6834,6929,7030,7125", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,148,77,63,85,72,59,86,61,61,67,64,55,117,57,60,55,74,125,85,79,110,77,79,85,66,65,67,73,88,71,77,69,72,83,76,87,88,73,72,84,48,65,79,82,61,63,62,107,94,100,94,79", ++ "endOffsets": "272,3002,3102,3251,3329,3393,3479,3552,3612,3699,3761,3823,3891,3956,4012,4130,4188,4249,4305,4380,4506,4592,4672,4783,4861,4941,5027,5094,5160,5228,5302,5391,5463,5541,5611,5684,5768,5845,5933,6022,6096,6169,6254,6303,6369,6449,6532,6594,6658,6721,6829,6924,7025,7120,7200" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,2757", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,2832" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,377,471,587,672,772,885,963,1039,1130,1223,1316,1410,1504,1597,1692,1790,1881,1972,2051,2159,2266,2362,2475,2578,2679,2832,7205", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "372,466,582,667,767,880,958,1034,1125,1218,1311,1405,1499,1592,1687,1785,1876,1967,2046,2154,2261,2357,2470,2573,2674,2827,2924,7280" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7285", ++ "endColumns": "100", ++ "endOffsets": "7381" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-de.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-de.json +new file mode 100644 +index 0000000..85bb61d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-de.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-de/values-de.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,2832", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,2909" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,393,491,603,689,795,910,988,1063,1155,1249,1345,1446,1553,1653,1757,1855,1953,2050,2132,2243,2345,2443,2550,2653,2757,2913,7430", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "388,486,598,684,790,905,983,1058,1150,1244,1340,1441,1548,1648,1752,1850,1948,2045,2127,2238,2340,2438,2545,2648,2752,2908,3010,7507" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,322,423,545,626,692,786,856,915,1023,1092,1150,1222,1286,1340,1468,1528,1590,1644,1722,1859,1951,2035,2150,2234,2320,2410,2477,2543,2617,2699,2792,2866,2944,3016,3090,3182,3264,3353,3442,3516,3594,3680,3735,3802,3882,3966,4028,4092,4155,4262,4366,4465,4571", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,100,121,80,65,93,69,58,107,68,57,71,63,53,127,59,61,53,77,136,91,83,114,83,85,89,66,65,73,81,92,73,77,71,73,91,81,88,88,73,77,85,54,66,79,83,61,63,62,106,103,98,105,81", ++ "endOffsets": "233,317,418,540,621,687,781,851,910,1018,1087,1145,1217,1281,1335,1463,1523,1585,1639,1717,1854,1946,2030,2145,2229,2315,2405,2472,2538,2612,2694,2787,2861,2939,3011,3085,3177,3259,3348,3437,3511,3589,3675,3730,3797,3877,3961,4023,4087,4150,4257,4361,4460,4566,4648" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3015,3099,3200,3322,3403,3469,3563,3633,3692,3800,3869,3927,3999,4063,4117,4245,4305,4367,4421,4499,4636,4728,4812,4927,5011,5097,5187,5254,5320,5394,5476,5569,5643,5721,5793,5867,5959,6041,6130,6219,6293,6371,6457,6512,6579,6659,6743,6805,6869,6932,7039,7143,7242,7348", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,100,121,80,65,93,69,58,107,68,57,71,63,53,127,59,61,53,77,136,91,83,114,83,85,89,66,65,73,81,92,73,77,71,73,91,81,88,88,73,77,85,54,66,79,83,61,63,62,106,103,98,105,81", ++ "endOffsets": "283,3094,3195,3317,3398,3464,3558,3628,3687,3795,3864,3922,3994,4058,4112,4240,4300,4362,4416,4494,4631,4723,4807,4922,5006,5092,5182,5249,5315,5389,5471,5564,5638,5716,5788,5862,5954,6036,6125,6214,6288,6366,6452,6507,6574,6654,6738,6800,6864,6927,7034,7138,7237,7343,7425" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7512", ++ "endColumns": "100", ++ "endOffsets": "7608" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-el.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-el.json +new file mode 100644 +index 0000000..cc0a9f3 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-el.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-el/values-el.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,225,310,412,529,615,681,781,863,926,1017,1082,1144,1213,1275,1329,1467,1524,1585,1639,1712,1865,1950,2034,2143,2224,2309,2399,2466,2532,2610,2695,2780,2852,2932,3012,3083,3175,3247,3344,3441,3515,3589,3691,3747,3819,3907,3999,4061,4125,4188,4304,4412,4521,4629", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,101,116,85,65,99,81,62,90,64,61,68,61,53,137,56,60,53,72,152,84,83,108,80,84,89,66,65,77,84,84,71,79,79,70,91,71,96,96,73,73,101,55,71,87,91,61,63,62,115,107,108,107,90", ++ "endOffsets": "220,305,407,524,610,676,776,858,921,1012,1077,1139,1208,1270,1324,1462,1519,1580,1634,1707,1860,1945,2029,2138,2219,2304,2394,2461,2527,2605,2690,2775,2847,2927,3007,3078,3170,3242,3339,3436,3510,3584,3686,3742,3814,3902,3994,4056,4120,4183,4299,4407,4516,4624,4715" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3056,3141,3243,3360,3446,3512,3612,3694,3757,3848,3913,3975,4044,4106,4160,4298,4355,4416,4470,4543,4696,4781,4865,4974,5055,5140,5230,5297,5363,5441,5526,5611,5683,5763,5843,5914,6006,6078,6175,6272,6346,6420,6522,6578,6650,6738,6830,6892,6956,7019,7135,7243,7352,7460", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,101,116,85,65,99,81,62,90,64,61,68,61,53,137,56,60,53,72,152,84,83,108,80,84,89,66,65,77,84,84,71,79,79,70,91,71,96,96,73,73,101,55,71,87,91,61,63,62,115,107,108,107,90", ++ "endOffsets": "270,3136,3238,3355,3441,3507,3607,3689,3752,3843,3908,3970,4039,4101,4155,4293,4350,4411,4465,4538,4691,4776,4860,4969,5050,5135,5225,5292,5358,5436,5521,5606,5678,5758,5838,5909,6001,6073,6170,6267,6341,6415,6517,6573,6645,6733,6825,6887,6951,7014,7130,7238,7347,7455,7546" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7637", ++ "endColumns": "100", ++ "endOffsets": "7733" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,2886", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,2967" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "275,393,504,621,706,812,935,1024,1109,1200,1293,1388,1482,1582,1675,1770,1867,1958,2049,2134,2245,2354,2456,2567,2677,2785,2956,7551", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "388,499,616,701,807,930,1019,1104,1195,1288,1383,1477,1577,1670,1765,1862,1953,2044,2129,2240,2349,2451,2562,2672,2780,2951,3051,7632" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rAU.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rAU.json +new file mode 100644 +index 0000000..13fddff +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rAU.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-en-rAU/values-en-rAU.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rCA.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rCA.json +new file mode 100644 +index 0000000..ac3e18a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rCA.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-en-rCA/values-en-rCA.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rGB.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rGB.json +new file mode 100644 +index 0000000..4b0c082 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rGB.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-en-rGB/values-en-rGB.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,402,517,596,661,751,818,877,967,1031,1094,1163,1227,1281,1393,1451,1513,1567,1639,1761,1848,1929,2039,2116,2197,2288,2355,2421,2491,2568,2655,2726,2803,2872,2941,3032,3104,3193,3282,3356,3428,3514,3564,3630,3710,3794,3856,3920,3983,4083,4180,4272,4371", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,97,114,78,64,89,66,58,89,63,62,68,63,53,111,57,61,53,71,121,86,80,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,77", ++ "endOffsets": "222,299,397,512,591,656,746,813,872,962,1026,1089,1158,1222,1276,1388,1446,1508,1562,1634,1756,1843,1924,2034,2111,2192,2283,2350,2416,2486,2563,2650,2721,2798,2867,2936,3027,3099,3188,3277,3351,3423,3509,3559,3625,3705,3789,3851,3915,3978,4078,4175,4267,4366,4444" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2934,3011,3109,3224,3303,3368,3458,3525,3584,3674,3738,3801,3870,3934,3988,4100,4158,4220,4274,4346,4468,4555,4636,4746,4823,4904,4995,5062,5128,5198,5275,5362,5433,5510,5579,5648,5739,5811,5900,5989,6063,6135,6221,6271,6337,6417,6501,6563,6627,6690,6790,6887,6979,7078", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,97,114,78,64,89,66,58,89,63,62,68,63,53,111,57,61,53,71,121,86,80,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,77", ++ "endOffsets": "272,3006,3104,3219,3298,3363,3453,3520,3579,3669,3733,3796,3865,3929,3983,4095,4153,4215,4269,4341,4463,4550,4631,4741,4818,4899,4990,5057,5123,5193,5270,5357,5428,5505,5574,5643,5734,5806,5895,5984,6058,6130,6216,6266,6332,6412,6496,6558,6622,6685,6785,6882,6974,7073,7151" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,381,481,589,673,773,888,966,1041,1132,1225,1320,1414,1514,1607,1702,1796,1887,1978,2060,2163,2266,2365,2470,2574,2678,2834,7156", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "376,476,584,668,768,883,961,1036,1127,1220,1315,1409,1509,1602,1697,1791,1882,1973,2055,2158,2261,2360,2465,2569,2673,2829,2929,7234" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7239", ++ "endColumns": "100", ++ "endOffsets": "7335" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rIN.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rIN.json +new file mode 100644 +index 0000000..12a1d70 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rIN.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-en-rIN/values-en-rIN.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rXC.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rXC.json +new file mode 100644 +index 0000000..b69655e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-en-rXC.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-en-rXC/values-en-rXC.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,5528", ++ "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185", ++ "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,5709" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "203", ++ "endOffsets": "254" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "5714", ++ "endColumns": "203", ++ "endOffsets": "5913" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-es-rUS.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-es-rUS.json +new file mode 100644 +index 0000000..04a7f2f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-es-rUS.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-es-rUS/values-es-rUS.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,334,442,527,629,745,830,910,1001,1094,1189,1283,1382,1475,1574,1670,1761,1852,1934,2041,2140,2239,2347,2455,2562,2721,2821", ++ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", ++ "endOffsets": "220,329,437,522,624,740,825,905,996,1089,1184,1278,1377,1470,1569,1665,1756,1847,1929,2036,2135,2234,2342,2450,2557,2716,2816,2899" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "283,403,512,620,705,807,923,1008,1088,1179,1272,1367,1461,1560,1653,1752,1848,1939,2030,2112,2219,2318,2417,2525,2633,2740,2899,7427", ++ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", ++ "endOffsets": "398,507,615,700,802,918,1003,1083,1174,1267,1362,1456,1555,1648,1747,1843,1934,2025,2107,2214,2313,2412,2520,2628,2735,2894,2994,7505" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7510", ++ "endColumns": "100", ++ "endOffsets": "7606" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,319,421,549,630,695,790,860,923,1016,1088,1151,1225,1289,1346,1464,1522,1584,1641,1721,1855,1944,2025,2136,2217,2297,2387,2454,2520,2596,2678,2766,2839,2916,2986,3063,3152,3226,3320,3422,3494,3575,3679,3732,3799,3892,3981,4043,4107,4170,4281,4378,4480,4578", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "228,314,416,544,625,690,785,855,918,1011,1083,1146,1220,1284,1341,1459,1517,1579,1636,1716,1850,1939,2020,2131,2212,2292,2382,2449,2515,2591,2673,2761,2834,2911,2981,3058,3147,3221,3315,3417,3489,3570,3674,3727,3794,3887,3976,4038,4102,4165,4276,4373,4475,4573,4656" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2999,3085,3187,3315,3396,3461,3556,3626,3689,3782,3854,3917,3991,4055,4112,4230,4288,4350,4407,4487,4621,4710,4791,4902,4983,5063,5153,5220,5286,5362,5444,5532,5605,5682,5752,5829,5918,5992,6086,6188,6260,6341,6445,6498,6565,6658,6747,6809,6873,6936,7047,7144,7246,7344", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,101,127,80,64,94,69,62,92,71,62,73,63,56,117,57,61,56,79,133,88,80,110,80,79,89,66,65,75,81,87,72,76,69,76,88,73,93,101,71,80,103,52,66,92,88,61,63,62,110,96,101,97,82", ++ "endOffsets": "278,3080,3182,3310,3391,3456,3551,3621,3684,3777,3849,3912,3986,4050,4107,4225,4283,4345,4402,4482,4616,4705,4786,4897,4978,5058,5148,5215,5281,5357,5439,5527,5600,5677,5747,5824,5913,5987,6081,6183,6255,6336,6440,6493,6560,6653,6742,6804,6868,6931,7042,7139,7241,7339,7422" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-es.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-es.json +new file mode 100644 +index 0000000..1b5a16b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-es.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-es/values-es.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7533", ++ "endColumns": "100", ++ "endOffsets": "7629" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,233,320,424,546,627,692,787,868,931,1020,1089,1152,1226,1290,1346,1464,1522,1584,1640,1720,1859,1948,2030,2141,2222,2302,2392,2459,2525,2604,2686,2774,2848,2925,2995,3074,3158,3242,3334,3434,3508,3589,3691,3744,3811,3904,3993,4055,4119,4182,4295,4388,4492,4586", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,103,121,80,64,94,80,62,88,68,62,73,63,55,117,57,61,55,79,138,88,81,110,80,79,89,66,65,78,81,87,73,76,69,78,83,83,91,99,73,80,101,52,66,92,88,61,63,62,112,92,103,93,82", ++ "endOffsets": "228,315,419,541,622,687,782,863,926,1015,1084,1147,1221,1285,1341,1459,1517,1579,1635,1715,1854,1943,2025,2136,2217,2297,2387,2454,2520,2599,2681,2769,2843,2920,2990,3069,3153,3237,3329,3429,3503,3584,3686,3739,3806,3899,3988,4050,4114,4177,4290,4383,4487,4581,4664" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3014,3101,3205,3327,3408,3473,3568,3649,3712,3801,3870,3933,4007,4071,4127,4245,4303,4365,4421,4501,4640,4729,4811,4922,5003,5083,5173,5240,5306,5385,5467,5555,5629,5706,5776,5855,5939,6023,6115,6215,6289,6370,6472,6525,6592,6685,6774,6836,6900,6963,7076,7169,7273,7367", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,103,121,80,64,94,80,62,88,68,62,73,63,55,117,57,61,55,79,138,88,81,110,80,79,89,66,65,78,81,87,73,76,69,78,83,83,91,99,73,80,101,52,66,92,88,61,63,62,112,92,103,93,82", ++ "endOffsets": "278,3096,3200,3322,3403,3468,3563,3644,3707,3796,3865,3928,4002,4066,4122,4240,4298,4360,4416,4496,4635,4724,4806,4917,4998,5078,5168,5235,5301,5380,5462,5550,5624,5701,5771,5850,5934,6018,6110,6210,6284,6365,6467,6520,6587,6680,6769,6831,6895,6958,7071,7164,7268,7362,7445" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,2836", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,2914" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "283,385,498,606,691,792,920,1006,1087,1179,1273,1370,1464,1564,1658,1754,1850,1942,2034,2116,2223,2334,2433,2541,2649,2756,2915,7450", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "380,493,601,686,787,915,1001,1082,1174,1268,1365,1459,1559,1653,1749,1845,1937,2029,2111,2218,2329,2428,2536,2644,2751,2910,3009,7528" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-et.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-et.json +new file mode 100644 +index 0000000..4155424 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-et.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-et/values-et.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,2827", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,2905" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "271,377,476,587,673,775,892,973,1050,1142,1236,1332,1434,1543,1637,1738,1832,1924,2017,2100,2211,2315,2414,2524,2626,2725,2891,7310", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "372,471,582,668,770,887,968,1045,1137,1231,1327,1429,1538,1632,1733,1827,1919,2012,2095,2206,2310,2409,2519,2621,2720,2886,2988,7388" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7393", ++ "endColumns": "100", ++ "endOffsets": "7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,221,306,405,522,604,668,753,821,885,972,1036,1095,1167,1231,1285,1404,1464,1525,1579,1652,1785,1869,1962,2070,2150,2229,2317,2384,2450,2523,2602,2688,2761,2836,2910,2982,3070,3147,3238,3330,3402,3476,3567,3621,3690,3773,3859,3921,3985,4048,4151,4255,4352,4457", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,98,116,81,63,84,67,63,86,63,58,71,63,53,118,59,60,53,72,132,83,92,107,79,78,87,66,65,72,78,85,72,74,73,71,87,76,90,91,71,73,90,53,68,82,85,61,63,62,102,103,96,104,80", ++ "endOffsets": "216,301,400,517,599,663,748,816,880,967,1031,1090,1162,1226,1280,1399,1459,1520,1574,1647,1780,1864,1957,2065,2145,2224,2312,2379,2445,2518,2597,2683,2756,2831,2905,2977,3065,3142,3233,3325,3397,3471,3562,3616,3685,3768,3854,3916,3980,4043,4146,4250,4347,4452,4533" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2993,3078,3177,3294,3376,3440,3525,3593,3657,3744,3808,3867,3939,4003,4057,4176,4236,4297,4351,4424,4557,4641,4734,4842,4922,5001,5089,5156,5222,5295,5374,5460,5533,5608,5682,5754,5842,5919,6010,6102,6174,6248,6339,6393,6462,6545,6631,6693,6757,6820,6923,7027,7124,7229", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,98,116,81,63,84,67,63,86,63,58,71,63,53,118,59,60,53,72,132,83,92,107,79,78,87,66,65,72,78,85,72,74,73,71,87,76,90,91,71,73,90,53,68,82,85,61,63,62,102,103,96,104,80", ++ "endOffsets": "266,3073,3172,3289,3371,3435,3520,3588,3652,3739,3803,3862,3934,3998,4052,4171,4231,4292,4346,4419,4552,4636,4729,4837,4917,4996,5084,5151,5217,5290,5369,5455,5528,5603,5677,5749,5837,5914,6005,6097,6169,6243,6334,6388,6457,6540,6626,6688,6752,6815,6918,7022,7119,7224,7305" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-eu.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-eu.json +new file mode 100644 +index 0000000..07a0240 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-eu.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-eu/values-eu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7453", ++ "endColumns": "100", ++ "endOffsets": "7549" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,312,422,508,614,738,824,905,997,1091,1187,1281,1382,1476,1572,1669,1761,1854,1936,2045,2154,2253,2362,2469,2580,2751,2850", ++ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", ++ "endOffsets": "209,307,417,503,609,733,819,900,992,1086,1182,1276,1377,1471,1567,1664,1756,1849,1931,2040,2149,2248,2357,2464,2575,2746,2845,2928" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "280,389,487,597,683,789,913,999,1080,1172,1266,1362,1456,1557,1651,1747,1844,1936,2029,2111,2220,2329,2428,2537,2644,2755,2926,7370", ++ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", ++ "endOffsets": "384,482,592,678,784,908,994,1075,1167,1261,1357,1451,1552,1646,1742,1839,1931,2024,2106,2215,2324,2423,2532,2639,2750,2921,3020,7448" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,230,310,408,523,606,673,772,840,901,989,1055,1119,1190,1253,1307,1416,1475,1538,1592,1666,1791,1881,1961,2076,2159,2241,2330,2397,2463,2534,2614,2700,2778,2856,2929,3004,3091,3178,3269,3362,3434,3510,3602,3653,3719,3803,3889,3951,4015,4078,4185,4290,4386,4492", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,97,114,82,66,98,67,60,87,65,63,70,62,53,108,58,62,53,73,124,89,79,114,82,81,88,66,65,70,79,85,77,77,72,74,86,86,90,92,71,75,91,50,65,83,85,61,63,62,106,104,95,105,82", ++ "endOffsets": "225,305,403,518,601,668,767,835,896,984,1050,1114,1185,1248,1302,1411,1470,1533,1587,1661,1786,1876,1956,2071,2154,2236,2325,2392,2458,2529,2609,2695,2773,2851,2924,2999,3086,3173,3264,3357,3429,3505,3597,3648,3714,3798,3884,3946,4010,4073,4180,4285,4381,4487,4570" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3105,3203,3318,3401,3468,3567,3635,3696,3784,3850,3914,3985,4048,4102,4211,4270,4333,4387,4461,4586,4676,4756,4871,4954,5036,5125,5192,5258,5329,5409,5495,5573,5651,5724,5799,5886,5973,6064,6157,6229,6305,6397,6448,6514,6598,6684,6746,6810,6873,6980,7085,7181,7287", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,97,114,82,66,98,67,60,87,65,63,70,62,53,108,58,62,53,73,124,89,79,114,82,81,88,66,65,70,79,85,77,77,72,74,86,86,90,92,71,75,91,50,65,83,85,61,63,62,106,104,95,105,82", ++ "endOffsets": "275,3100,3198,3313,3396,3463,3562,3630,3691,3779,3845,3909,3980,4043,4097,4206,4265,4328,4382,4456,4581,4671,4751,4866,4949,5031,5120,5187,5253,5324,5404,5490,5568,5646,5719,5794,5881,5968,6059,6152,6224,6300,6392,6443,6509,6593,6679,6741,6805,6868,6975,7080,7176,7282,7365" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fa.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fa.json +new file mode 100644 +index 0000000..2c4f3e7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fa.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-fa/values-fa.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7292", ++ "endColumns": "100", ++ "endOffsets": "7388" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,296,393,522,606,669,759,828,888,979,1043,1102,1169,1231,1286,1409,1467,1528,1583,1655,1792,1873,1955,2055,2129,2203,2289,2356,2422,2493,2570,2651,2724,2798,2868,2942,3028,3102,3191,3283,3357,3430,3519,3570,3637,3720,3804,3866,3930,3993,4087,4194,4287,4392", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,96,128,83,62,89,68,59,90,63,58,66,61,54,122,57,60,54,71,136,80,81,99,73,73,85,66,65,70,76,80,72,73,69,73,85,73,88,91,73,72,88,50,66,82,83,61,63,62,93,106,92,104,77", ++ "endOffsets": "209,291,388,517,601,664,754,823,883,974,1038,1097,1164,1226,1281,1404,1462,1523,1578,1650,1787,1868,1950,2050,2124,2198,2284,2351,2417,2488,2565,2646,2719,2793,2863,2937,3023,3097,3186,3278,3352,3425,3514,3565,3632,3715,3799,3861,3925,3988,4082,4189,4282,4387,4465" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2954,3036,3133,3262,3346,3409,3499,3568,3628,3719,3783,3842,3909,3971,4026,4149,4207,4268,4323,4395,4532,4613,4695,4795,4869,4943,5029,5096,5162,5233,5310,5391,5464,5538,5608,5682,5768,5842,5931,6023,6097,6170,6259,6310,6377,6460,6544,6606,6670,6733,6827,6934,7027,7132", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,96,128,83,62,89,68,59,90,63,58,66,61,54,122,57,60,54,71,136,80,81,99,73,73,85,66,65,70,76,80,72,73,69,73,85,73,88,91,73,72,88,50,66,82,83,61,63,62,93,106,92,104,77", ++ "endOffsets": "259,3031,3128,3257,3341,3404,3494,3563,3623,3714,3778,3837,3904,3966,4021,4144,4202,4263,4318,4390,4527,4608,4690,4790,4864,4938,5024,5091,5157,5228,5305,5386,5459,5533,5603,5677,5763,5837,5926,6018,6092,6165,6254,6305,6372,6455,6539,6601,6665,6728,6822,6929,7022,7127,7205" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,2795", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,374,475,586,670,771,886,966,1043,1136,1231,1323,1417,1519,1614,1711,1805,1898,1988,2070,2178,2282,2380,2486,2591,2696,2853,7210", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "369,470,581,665,766,881,961,1038,1131,1226,1318,1412,1514,1609,1706,1800,1893,1983,2065,2173,2277,2375,2481,2586,2691,2848,2949,7287" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fi.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fi.json +new file mode 100644 +index 0000000..31d0757 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fi.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-fi/values-fi.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,306,402,510,594,659,752,827,892,980,1046,1104,1175,1241,1295,1405,1465,1529,1583,1656,1772,1856,1937,2040,2125,2210,2300,2367,2433,2510,2592,2676,2750,2829,2906,2978,3067,3140,3231,3326,3400,3473,3567,3621,3693,3779,3865,3927,3991,4054,4155,4257,4352,4455", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,95,107,83,64,92,74,64,87,65,57,70,65,53,109,59,63,53,72,115,83,80,102,84,84,89,66,65,76,81,83,73,78,76,71,88,72,90,94,73,72,93,53,71,85,85,61,63,62,100,101,94,102,78", ++ "endOffsets": "218,301,397,505,589,654,747,822,887,975,1041,1099,1170,1236,1290,1400,1460,1524,1578,1651,1767,1851,1932,2035,2120,2205,2295,2362,2428,2505,2587,2671,2745,2824,2901,2973,3062,3135,3226,3321,3395,3468,3562,3616,3688,3774,3860,3922,3986,4049,4150,4252,4347,4450,4529" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2943,3026,3122,3230,3314,3379,3472,3547,3612,3700,3766,3824,3895,3961,4015,4125,4185,4249,4303,4376,4492,4576,4657,4760,4845,4930,5020,5087,5153,5230,5312,5396,5470,5549,5626,5698,5787,5860,5951,6046,6120,6193,6287,6341,6413,6499,6585,6647,6711,6774,6875,6977,7072,7175", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,95,107,83,64,92,74,64,87,65,57,70,65,53,109,59,63,53,72,115,83,80,102,84,84,89,66,65,76,81,83,73,78,76,71,88,72,90,94,73,72,93,53,71,85,85,61,63,62,100,101,94,102,78", ++ "endOffsets": "268,3021,3117,3225,3309,3374,3467,3542,3607,3695,3761,3819,3890,3956,4010,4120,4180,4244,4298,4371,4487,4571,4652,4755,4840,4925,5015,5082,5148,5225,5307,5391,5465,5544,5621,5693,5782,5855,5946,6041,6115,6188,6282,6336,6408,6494,6580,6642,6706,6769,6870,6972,7067,7170,7249" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,2775", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,2851" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,381,481,590,676,781,899,985,1064,1155,1248,1343,1437,1531,1624,1720,1819,1910,2004,2084,2191,2292,2389,2495,2595,2693,2843,7254", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "376,476,585,671,776,894,980,1059,1150,1243,1338,1432,1526,1619,1715,1814,1905,1999,2079,2186,2287,2384,2490,2590,2688,2838,2938,7330" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7335", ++ "endColumns": "100", ++ "endOffsets": "7431" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fr-rCA.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fr-rCA.json +new file mode 100644 +index 0000000..360fd30 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fr-rCA.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-fr-rCA/values-fr-rCA.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,320,420,542,627,693,790,870,932,1024,1098,1159,1238,1302,1356,1472,1531,1593,1647,1729,1858,1950,2034,2148,2227,2308,2401,2468,2534,2613,2694,2785,2857,2935,3010,3082,3179,3256,3354,3452,3530,3611,3711,3768,3834,3917,4004,4066,4130,4193,4295,4402,4499,4608", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,99,121,84,65,96,79,61,91,73,60,78,63,53,115,58,61,53,81,128,91,83,113,78,80,92,66,65,78,80,90,71,77,74,71,96,76,97,97,77,80,99,56,65,82,86,61,63,62,101,106,96,108,88", ++ "endOffsets": "233,315,415,537,622,688,785,865,927,1019,1093,1154,1233,1297,1351,1467,1526,1588,1642,1724,1853,1945,2029,2143,2222,2303,2396,2463,2529,2608,2689,2780,2852,2930,3005,3077,3174,3251,3349,3447,3525,3606,3706,3763,3829,3912,3999,4061,4125,4188,4290,4397,4494,4603,4692" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3038,3120,3220,3342,3427,3493,3590,3670,3732,3824,3898,3959,4038,4102,4156,4272,4331,4393,4447,4529,4658,4750,4834,4948,5027,5108,5201,5268,5334,5413,5494,5585,5657,5735,5810,5882,5979,6056,6154,6252,6330,6411,6511,6568,6634,6717,6804,6866,6930,6993,7095,7202,7299,7408", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,99,121,84,65,96,79,61,91,73,60,78,63,53,115,58,61,53,81,128,91,83,113,78,80,92,66,65,78,80,90,71,77,74,71,96,76,97,97,77,80,99,56,65,82,86,61,63,62,101,106,96,108,88", ++ "endOffsets": "283,3115,3215,3337,3422,3488,3585,3665,3727,3819,3893,3954,4033,4097,4151,4267,4326,4388,4442,4524,4653,4745,4829,4943,5022,5103,5196,5263,5329,5408,5489,5580,5652,5730,5805,5877,5974,6051,6149,6247,6325,6406,6506,6563,6629,6712,6799,6861,6925,6988,7090,7197,7294,7403,7492" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,2855", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,2937" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,399,506,616,703,809,939,1024,1104,1195,1288,1386,1481,1581,1674,1767,1862,1953,2044,2130,2240,2351,2454,2565,2673,2780,2939,7497", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "394,501,611,698,804,934,1019,1099,1190,1283,1381,1476,1576,1669,1762,1857,1948,2039,2125,2235,2346,2449,2560,2668,2775,2934,3033,7579" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7584", ++ "endColumns": "100", ++ "endOffsets": "7680" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fr.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fr.json +new file mode 100644 +index 0000000..054f85b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-fr.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-fr/values-fr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7572", ++ "endColumns": "100", ++ "endOffsets": "7668" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,321,419,549,634,700,797,880,946,1048,1123,1179,1258,1318,1372,1494,1553,1615,1669,1751,1886,1978,2062,2176,2255,2336,2429,2496,2562,2642,2723,2826,2899,2977,3050,3122,3215,3290,3382,3474,3548,3632,3724,3781,3847,3930,4017,4079,4143,4206,4308,4406,4503,4604", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,97,129,84,65,96,82,65,101,74,55,78,59,53,121,58,61,53,81,134,91,83,113,78,80,92,66,65,79,80,102,72,77,72,71,92,74,91,91,73,83,91,56,65,82,86,61,63,62,101,97,96,100,88", ++ "endOffsets": "233,316,414,544,629,695,792,875,941,1043,1118,1174,1253,1313,1367,1489,1548,1610,1664,1746,1881,1973,2057,2171,2250,2331,2424,2491,2557,2637,2718,2821,2894,2972,3045,3117,3210,3285,3377,3469,3543,3627,3719,3776,3842,3925,4012,4074,4138,4201,4303,4401,4498,4599,4688" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3030,3113,3211,3341,3426,3492,3589,3672,3738,3840,3915,3971,4050,4110,4164,4286,4345,4407,4461,4543,4678,4770,4854,4968,5047,5128,5221,5288,5354,5434,5515,5618,5691,5769,5842,5914,6007,6082,6174,6266,6340,6424,6516,6573,6639,6722,6809,6871,6935,6998,7100,7198,7295,7396", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,97,129,84,65,96,82,65,101,74,55,78,59,53,121,58,61,53,81,134,91,83,113,78,80,92,66,65,79,80,102,72,77,72,71,92,74,91,91,73,83,91,56,65,82,86,61,63,62,101,97,96,100,88", ++ "endOffsets": "283,3108,3206,3336,3421,3487,3584,3667,3733,3835,3910,3966,4045,4105,4159,4281,4340,4402,4456,4538,4673,4765,4849,4963,5042,5123,5216,5283,5349,5429,5510,5613,5686,5764,5837,5909,6002,6077,6169,6261,6335,6419,6511,6568,6634,6717,6804,6866,6930,6993,7095,7193,7290,7391,7480" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,2847", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,2929" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,399,514,624,706,812,942,1020,1096,1187,1280,1378,1473,1573,1666,1759,1854,1945,2036,2122,2232,2343,2446,2557,2665,2772,2931,7485", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "394,509,619,701,807,937,1015,1091,1182,1275,1373,1468,1568,1661,1754,1849,1940,2031,2117,2227,2338,2441,2552,2660,2767,2926,3025,7567" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-gl.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-gl.json +new file mode 100644 +index 0000000..067ce8b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-gl.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-gl/values-gl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7632", ++ "endColumns": "100", ++ "endOffsets": "7728" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,230,315,420,553,633,711,807,886,949,1044,1113,1176,1250,1314,1370,1491,1549,1611,1667,1744,1883,1971,2051,2161,2241,2321,2411,2478,2544,2623,2704,2792,2871,2948,3030,3119,3203,3295,3388,3489,3563,3655,3757,3809,3875,3967,4055,4117,4181,4244,4355,4457,4563,4666", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,104,132,79,77,95,78,62,94,68,62,73,63,55,120,57,61,55,76,138,87,79,109,79,79,89,66,65,78,80,87,78,76,81,88,83,91,92,100,73,91,101,51,65,91,87,61,63,62,110,101,105,102,84", ++ "endOffsets": "225,310,415,548,628,706,802,881,944,1039,1108,1171,1245,1309,1365,1486,1544,1606,1662,1739,1878,1966,2046,2156,2236,2316,2406,2473,2539,2618,2699,2787,2866,2943,3025,3114,3198,3290,3383,3484,3558,3650,3752,3804,3870,3962,4050,4112,4176,4239,4350,4452,4558,4661,4746" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3028,3113,3218,3351,3431,3509,3605,3684,3747,3842,3911,3974,4048,4112,4168,4289,4347,4409,4465,4542,4681,4769,4849,4959,5039,5119,5209,5276,5342,5421,5502,5590,5669,5746,5828,5917,6001,6093,6186,6287,6361,6453,6555,6607,6673,6765,6853,6915,6979,7042,7153,7255,7361,7464", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,104,132,79,77,95,78,62,94,68,62,73,63,55,120,57,61,55,76,138,87,79,109,79,79,89,66,65,78,80,87,78,76,81,88,83,91,92,100,73,91,101,51,65,91,87,61,63,62,110,101,105,102,84", ++ "endOffsets": "275,3108,3213,3346,3426,3504,3600,3679,3742,3837,3906,3969,4043,4107,4163,4284,4342,4404,4460,4537,4676,4764,4844,4954,5034,5114,5204,5271,5337,5416,5497,5585,5664,5741,5823,5912,5996,6088,6181,6282,6356,6448,6550,6602,6668,6760,6848,6910,6974,7037,7148,7250,7356,7459,7544" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,313,421,506,607,735,820,900,992,1086,1183,1277,1377,1471,1567,1662,1754,1846,1927,2035,2142,2249,2358,2463,2577,2754,2853", ++ "endColumns": "103,103,107,84,100,127,84,79,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", ++ "endOffsets": "204,308,416,501,602,730,815,895,987,1081,1178,1272,1372,1466,1562,1657,1749,1841,1922,2030,2137,2244,2353,2458,2572,2749,2848,2931" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "280,384,488,596,681,782,910,995,1075,1167,1261,1358,1452,1552,1646,1742,1837,1929,2021,2102,2210,2317,2424,2533,2638,2752,2929,7549", ++ "endColumns": "103,103,107,84,100,127,84,79,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", ++ "endOffsets": "379,483,591,676,777,905,990,1070,1162,1256,1353,1447,1547,1641,1737,1832,1924,2016,2097,2205,2312,2419,2528,2633,2747,2924,3023,7627" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-gu.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-gu.json +new file mode 100644 +index 0000000..f88677b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-gu.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-gu/values-gu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7355", ++ "endColumns": "100", ++ "endOffsets": "7451" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,305,404,524,608,671,762,829,888,978,1043,1107,1176,1238,1292,1407,1465,1526,1580,1653,1780,1866,1950,2053,2128,2204,2290,2357,2423,2496,2576,2661,2732,2808,2887,2956,3052,3130,3225,3321,3395,3470,3569,3620,3687,3774,3864,3926,3990,4053,4155,4260,4357,4463", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,98,119,83,62,90,66,58,89,64,63,68,61,53,114,57,60,53,72,126,85,83,102,74,75,85,66,65,72,79,84,70,75,78,68,95,77,94,95,73,74,98,50,66,86,89,61,63,62,101,104,96,105,77", ++ "endOffsets": "218,300,399,519,603,666,757,824,883,973,1038,1102,1171,1233,1287,1402,1460,1521,1575,1648,1775,1861,1945,2048,2123,2199,2285,2352,2418,2491,2571,2656,2727,2803,2882,2951,3047,3125,3220,3316,3390,3465,3564,3615,3682,3769,3859,3921,3985,4048,4150,4255,4352,4458,4536" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2956,3038,3137,3257,3341,3404,3495,3562,3621,3711,3776,3840,3909,3971,4025,4140,4198,4259,4313,4386,4513,4599,4683,4786,4861,4937,5023,5090,5156,5229,5309,5394,5465,5541,5620,5689,5785,5863,5958,6054,6128,6203,6302,6353,6420,6507,6597,6659,6723,6786,6888,6993,7090,7196", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,98,119,83,62,90,66,58,89,64,63,68,61,53,114,57,60,53,72,126,85,83,102,74,75,85,66,65,72,79,84,70,75,78,68,95,77,94,95,73,74,98,50,66,86,89,61,63,62,101,104,96,105,77", ++ "endOffsets": "268,3033,3132,3252,3336,3399,3490,3557,3616,3706,3771,3835,3904,3966,4020,4135,4193,4254,4308,4381,4508,4594,4678,4781,4856,4932,5018,5085,5151,5224,5304,5389,5460,5536,5615,5684,5780,5858,5953,6049,6123,6198,6297,6348,6415,6502,6592,6654,6718,6781,6883,6988,7085,7191,7269" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,2788", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,2864" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,380,484,591,678,778,898,976,1053,1144,1237,1332,1426,1526,1619,1714,1808,1899,1990,2070,2176,2277,2374,2483,2583,2693,2853,7274", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "375,479,586,673,773,893,971,1048,1139,1232,1327,1421,1521,1614,1709,1803,1894,1985,2065,2171,2272,2369,2478,2578,2688,2848,2951,7350" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h320dp-port-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h320dp-port-v13.json +new file mode 100644 +index 0000000..dc77598 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h320dp-port-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-h320dp-port-v13/values-h320dp-port-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h320dp-port-v13/values-h320dp-port-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "75", ++ "endOffsets": "126" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h360dp-land-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h360dp-land-v13.json +new file mode 100644 +index 0000000..9168064 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h360dp-land-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-h360dp-land-v13/values-h360dp-land-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h360dp-land-v13/values-h360dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478,547", ++ "endColumns": "58,55,55,66,64,54,64,68,68", ++ "endOffsets": "109,165,221,288,353,408,473,542,611" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h480dp-land-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h480dp-land-v13.json +new file mode 100644 +index 0000000..8fac386 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h480dp-land-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-h480dp-land-v13/values-h480dp-land-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h480dp-land-v13/values-h480dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478,547", ++ "endColumns": "58,55,55,66,64,54,64,68,68", ++ "endOffsets": "109,165,221,288,353,408,473,542,611" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h550dp-port-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h550dp-port-v13.json +new file mode 100644 +index 0000000..0fb2d8b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h550dp-port-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-h550dp-port-v13/values-h550dp-port-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-h550dp-port-v13/values-h550dp-port-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "76", ++ "endOffsets": "127" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h720dp-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h720dp-v13.json +new file mode 100644 +index 0000000..771db0d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-h720dp-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-h720dp-v13/values-h720dp-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-h720dp-v13/values-h720dp-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "66", ++ "endOffsets": "117" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hdpi-v4.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hdpi-v4.json +new file mode 100644 +index 0000000..8a9986b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hdpi-v4.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-hdpi-v4/values-hdpi-v4.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hdpi-v4/values-hdpi-v4.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "6", ++ "endColumns": "13", ++ "endOffsets": "327" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hi.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hi.json +new file mode 100644 +index 0000000..8cda217 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hi.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-hi/values-hi.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,2787", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,2864" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,370,468,578,664,766,887,965,1042,1133,1226,1321,1415,1515,1608,1703,1797,1888,1979,2060,2165,2267,2365,2475,2578,2687,2845,7289", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "365,463,573,659,761,882,960,1037,1128,1221,1316,1410,1510,1603,1698,1792,1883,1974,2055,2160,2262,2360,2470,2573,2682,2840,2941,7366" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,295,402,534,617,682,776,845,904,989,1052,1110,1175,1236,1297,1403,1461,1521,1580,1650,1766,1845,1925,2029,2104,2180,2277,2344,2410,2480,2557,2643,2711,2787,2868,2946,3032,3119,3216,3315,3389,3459,3563,3617,3684,3774,3866,3928,3992,4055,4160,4268,4369,4478", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,106,131,82,64,93,68,58,84,62,57,64,60,60,105,57,59,58,69,115,78,79,103,74,75,96,66,65,69,76,85,67,75,80,77,85,86,96,98,73,69,103,53,66,89,91,61,63,62,104,107,100,108,78", ++ "endOffsets": "209,290,397,529,612,677,771,840,899,984,1047,1105,1170,1231,1292,1398,1456,1516,1575,1645,1761,1840,1920,2024,2099,2175,2272,2339,2405,2475,2552,2638,2706,2782,2863,2941,3027,3114,3211,3310,3384,3454,3558,3612,3679,3769,3861,3923,3987,4050,4155,4263,4364,4473,4552" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2946,3027,3134,3266,3349,3414,3508,3577,3636,3721,3784,3842,3907,3968,4029,4135,4193,4253,4312,4382,4498,4577,4657,4761,4836,4912,5009,5076,5142,5212,5289,5375,5443,5519,5600,5678,5764,5851,5948,6047,6121,6191,6295,6349,6416,6506,6598,6660,6724,6787,6892,7000,7101,7210", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,106,131,82,64,93,68,58,84,62,57,64,60,60,105,57,59,58,69,115,78,79,103,74,75,96,66,65,69,76,85,67,75,80,77,85,86,96,98,73,69,103,53,66,89,91,61,63,62,104,107,100,108,78", ++ "endOffsets": "259,3022,3129,3261,3344,3409,3503,3572,3631,3716,3779,3837,3902,3963,4024,4130,4188,4248,4307,4377,4493,4572,4652,4756,4831,4907,5004,5071,5137,5207,5284,5370,5438,5514,5595,5673,5759,5846,5943,6042,6116,6186,6290,6344,6411,6501,6593,6655,6719,6782,6887,6995,7096,7205,7284" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7371", ++ "endColumns": "100", ++ "endOffsets": "7467" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hr.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hr.json +new file mode 100644 +index 0000000..13a784c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hr.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-hr/values-hr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7514", ++ "endColumns": "100", ++ "endOffsets": "7610" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,2816", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,2896" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "325,430,525,632,718,822,941,1026,1108,1199,1292,1387,1481,1581,1674,1769,1864,1955,2046,2132,2236,2348,2449,2554,2668,2770,2939,7429", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "425,520,627,713,817,936,1021,1103,1194,1287,1382,1476,1576,1669,1764,1859,1950,2041,2127,2231,2343,2444,2549,2663,2765,2934,3031,7509" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,275,360,456,586,670,738,834,902,965,1073,1139,1195,1266,1326,1380,1506,1563,1625,1679,1754,1888,1973,2054,2161,2245,2331,2422,2489,2555,2629,2707,2795,2867,2944,3024,3098,3191,3264,3356,3452,3526,3602,3698,3750,3817,3904,3991,4053,4117,4180,4286,4387,4484,4588", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,84,95,129,83,67,95,67,62,107,65,55,70,59,53,125,56,61,53,74,133,84,80,106,83,85,90,66,65,73,77,87,71,76,79,73,92,72,91,95,73,75,95,51,66,86,86,61,63,62,105,100,96,103,79", ++ "endOffsets": "270,355,451,581,665,733,829,897,960,1068,1134,1190,1261,1321,1375,1501,1558,1620,1674,1749,1883,1968,2049,2156,2240,2326,2417,2484,2550,2624,2702,2790,2862,2939,3019,3093,3186,3259,3351,3447,3521,3597,3693,3745,3812,3899,3986,4048,4112,4175,4281,4382,4479,4583,4663" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3036,3121,3217,3347,3431,3499,3595,3663,3726,3834,3900,3956,4027,4087,4141,4267,4324,4386,4440,4515,4649,4734,4815,4922,5006,5092,5183,5250,5316,5390,5468,5556,5628,5705,5785,5859,5952,6025,6117,6213,6287,6363,6459,6511,6578,6665,6752,6814,6878,6941,7047,7148,7245,7349", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,95,129,83,67,95,67,62,107,65,55,70,59,53,125,56,61,53,74,133,84,80,106,83,85,90,66,65,73,77,87,71,76,79,73,92,72,91,95,73,75,95,51,66,86,86,61,63,62,105,100,96,103,79", ++ "endOffsets": "320,3116,3212,3342,3426,3494,3590,3658,3721,3829,3895,3951,4022,4082,4136,4262,4319,4381,4435,4510,4644,4729,4810,4917,5001,5087,5178,5245,5311,5385,5463,5551,5623,5700,5780,5854,5947,6020,6112,6208,6282,6358,6454,6506,6573,6660,6747,6809,6873,6936,7042,7143,7240,7344,7424" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hu.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hu.json +new file mode 100644 +index 0000000..9a06f94 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hu.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-hu/values-hu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,218,295,394,514,597,661,760,835,894,1004,1073,1131,1203,1264,1319,1422,1479,1539,1594,1675,1795,1878,1966,2071,2154,2234,2328,2395,2461,2537,2619,2705,2782,2857,2936,3013,3109,3186,3278,3375,3449,3534,3631,3683,3750,3838,3925,3987,4051,4114,4212,4309,4403,4501", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,98,119,82,63,98,74,58,109,68,57,71,60,54,102,56,59,54,80,119,82,87,104,82,79,93,66,65,75,81,85,76,74,78,76,95,76,91,96,73,84,96,51,66,87,86,61,63,62,97,96,93,97,84", ++ "endOffsets": "213,290,389,509,592,656,755,830,889,999,1068,1126,1198,1259,1314,1417,1474,1534,1589,1670,1790,1873,1961,2066,2149,2229,2323,2390,2456,2532,2614,2700,2777,2852,2931,3008,3104,3181,3273,3370,3444,3529,3626,3678,3745,3833,3920,3982,4046,4109,4207,4304,4398,4496,4581" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3022,3099,3198,3318,3401,3465,3564,3639,3698,3808,3877,3935,4007,4068,4123,4226,4283,4343,4398,4479,4599,4682,4770,4875,4958,5038,5132,5199,5265,5341,5423,5509,5586,5661,5740,5817,5913,5990,6082,6179,6253,6338,6435,6487,6554,6642,6729,6791,6855,6918,7016,7113,7207,7305", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,98,119,82,63,98,74,58,109,68,57,71,60,54,102,56,59,54,80,119,82,87,104,82,79,93,66,65,75,81,85,76,74,78,76,95,76,91,96,73,84,96,51,66,87,86,61,63,62,97,96,93,97,84", ++ "endOffsets": "263,3094,3193,3313,3396,3460,3559,3634,3693,3803,3872,3930,4002,4063,4118,4221,4278,4338,4393,4474,4594,4677,4765,4870,4953,5033,5127,5194,5260,5336,5418,5504,5581,5656,5735,5812,5908,5985,6077,6174,6248,6333,6430,6482,6549,6637,6724,6786,6850,6913,7011,7108,7202,7300,7385" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7474", ++ "endColumns": "100", ++ "endOffsets": "7570" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,2859", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,2938" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "268,376,468,583,667,782,905,982,1057,1148,1241,1336,1430,1530,1623,1718,1813,1904,1995,2078,2188,2298,2398,2509,2618,2737,2919,7390", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "371,463,578,662,777,900,977,1052,1143,1236,1331,1425,1525,1618,1713,1808,1899,1990,2073,2183,2293,2393,2504,2613,2732,2914,3017,7469" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hy.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hy.json +new file mode 100644 +index 0000000..4476dce +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-hy.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-hy/values-hy.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7447", ++ "endColumns": "100", ++ "endOffsets": "7543" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,300,395,525,606,670,767,852,914,1001,1065,1126,1193,1254,1308,1430,1487,1547,1601,1682,1817,1901,1986,2092,2167,2242,2337,2404,2470,2544,2624,2710,2781,2857,2933,3010,3098,3178,3274,3370,3444,3522,3622,3673,3742,3829,3920,3982,4046,4109,4214,4315,4415,4520", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,94,129,80,63,96,84,61,86,63,60,66,60,53,121,56,59,53,80,134,83,84,105,74,74,94,66,65,73,79,85,70,75,75,76,87,79,95,95,73,77,99,50,68,86,90,61,63,62,104,100,99,104,84", ++ "endOffsets": "215,295,390,520,601,665,762,847,909,996,1060,1121,1188,1249,1303,1425,1482,1542,1596,1677,1812,1896,1981,2087,2162,2237,2332,2399,2465,2539,2619,2705,2776,2852,2928,3005,3093,3173,3269,3365,3439,3517,3617,3668,3737,3824,3915,3977,4041,4104,4209,4310,4410,4515,4600" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2979,3059,3154,3284,3365,3429,3526,3611,3673,3760,3824,3885,3952,4013,4067,4189,4246,4306,4360,4441,4576,4660,4745,4851,4926,5001,5096,5163,5229,5303,5383,5469,5540,5616,5692,5769,5857,5937,6033,6129,6203,6281,6381,6432,6501,6588,6679,6741,6805,6868,6973,7074,7174,7279", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,94,129,80,63,96,84,61,86,63,60,66,60,53,121,56,59,53,80,134,83,84,105,74,74,94,66,65,73,79,85,70,75,75,76,87,79,95,95,73,77,99,50,68,86,90,61,63,62,104,100,99,104,84", ++ "endOffsets": "265,3054,3149,3279,3360,3424,3521,3606,3668,3755,3819,3880,3947,4008,4062,4184,4241,4301,4355,4436,4571,4655,4740,4846,4921,4996,5091,5158,5224,5298,5378,5464,5535,5611,5687,5764,5852,5932,6028,6124,6198,6276,6376,6427,6496,6583,6674,6736,6800,6863,6968,7069,7169,7274,7359" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,2814", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,2892" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,378,478,588,677,783,900,982,1062,1153,1246,1341,1435,1535,1628,1723,1817,1908,1999,2082,2188,2294,2393,2503,2611,2712,2882,7364", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "373,473,583,672,778,895,977,1057,1148,1241,1336,1430,1530,1623,1718,1812,1903,1994,2077,2183,2289,2388,2498,2606,2707,2877,2974,7442" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-in.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-in.json +new file mode 100644 +index 0000000..05c323d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-in.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-in/values-in.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7354", ++ "endColumns": "100", ++ "endOffsets": "7450" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,303,409,525,608,673,767,832,891,978,1040,1100,1166,1228,1282,1394,1451,1512,1566,1638,1764,1850,1934,2043,2124,2205,2295,2362,2428,2500,2584,2667,2742,2818,2891,2966,3051,3126,3218,3312,3386,3459,3553,3605,3674,3759,3846,3908,3972,4035,4138,4238,4333,4435", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,105,115,82,64,93,64,58,86,61,59,65,61,53,111,56,60,53,71,125,85,83,108,80,80,89,66,65,71,83,82,74,75,72,74,84,74,91,93,73,72,93,51,68,84,86,61,63,62,102,99,94,101,79", ++ "endOffsets": "219,298,404,520,603,668,762,827,886,973,1035,1095,1161,1223,1277,1389,1446,1507,1561,1633,1759,1845,1929,2038,2119,2200,2290,2357,2423,2495,2579,2662,2737,2813,2886,2961,3046,3121,3213,3307,3381,3454,3548,3600,3669,3754,3841,3903,3967,4030,4133,4233,4328,4430,4510" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2978,3057,3163,3279,3362,3427,3521,3586,3645,3732,3794,3854,3920,3982,4036,4148,4205,4266,4320,4392,4518,4604,4688,4797,4878,4959,5049,5116,5182,5254,5338,5421,5496,5572,5645,5720,5805,5880,5972,6066,6140,6213,6307,6359,6428,6513,6600,6662,6726,6789,6892,6992,7087,7189", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,105,115,82,64,93,64,58,86,61,59,65,61,53,111,56,60,53,71,125,85,83,108,80,80,89,66,65,71,83,82,74,75,72,74,84,74,91,93,73,72,93,51,68,84,86,61,63,62,102,99,94,101,79", ++ "endOffsets": "269,3052,3158,3274,3357,3422,3516,3581,3640,3727,3789,3849,3915,3977,4031,4143,4200,4261,4315,4387,4513,4599,4683,4792,4873,4954,5044,5111,5177,5249,5333,5416,5491,5567,5640,5715,5800,5875,5967,6061,6135,6208,6302,6354,6423,6508,6595,6657,6721,6784,6887,6987,7082,7184,7264" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,324,429,516,620,736,819,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1920,2023,2128,2229,2333,2442,2550,2710,2809", ++ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", ++ "endOffsets": "215,319,424,511,615,731,814,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1915,2018,2123,2224,2328,2437,2545,2705,2804,2889" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,389,493,598,685,789,905,988,1066,1157,1250,1345,1439,1539,1632,1727,1821,1912,2003,2089,2192,2297,2398,2502,2611,2719,2879,7269", ++ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", ++ "endOffsets": "384,488,593,680,784,900,983,1061,1152,1245,1340,1434,1534,1627,1722,1816,1907,1998,2084,2187,2292,2393,2497,2606,2714,2874,2973,7349" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-is.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-is.json +new file mode 100644 +index 0000000..c0c8d78 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-is.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-is/values-is.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,225,304,401,516,598,663,751,815,876,966,1029,1091,1159,1223,1279,1402,1467,1529,1585,1656,1783,1867,1951,2057,2134,2211,2298,2365,2431,2507,2587,2676,2743,2817,2887,2953,3039,3109,3200,3290,3364,3437,3526,3577,3649,3730,3816,3878,3942,4005,4119,4222,4330,4433", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,96,114,81,64,87,63,60,89,62,61,67,63,55,122,64,61,55,70,126,83,83,105,76,76,86,66,65,75,79,88,66,73,69,65,85,69,90,89,73,72,88,50,71,80,85,61,63,62,113,102,107,102,79", ++ "endOffsets": "220,299,396,511,593,658,746,810,871,961,1024,1086,1154,1218,1274,1397,1462,1524,1580,1651,1778,1862,1946,2052,2129,2206,2293,2360,2426,2502,2582,2671,2738,2812,2882,2948,3034,3104,3195,3285,3359,3432,3521,3572,3644,3725,3811,3873,3937,4000,4114,4217,4325,4428,4508" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2949,3028,3125,3240,3322,3387,3475,3539,3600,3690,3753,3815,3883,3947,4003,4126,4191,4253,4309,4380,4507,4591,4675,4781,4858,4935,5022,5089,5155,5231,5311,5400,5467,5541,5611,5677,5763,5833,5924,6014,6088,6161,6250,6301,6373,6454,6540,6602,6666,6729,6843,6946,7054,7157", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,96,114,81,64,87,63,60,89,62,61,67,63,55,122,64,61,55,70,126,83,83,105,76,76,86,66,65,75,79,88,66,73,69,65,85,69,90,89,73,72,88,50,71,80,85,61,63,62,113,102,107,102,79", ++ "endOffsets": "270,3023,3120,3235,3317,3382,3470,3534,3595,3685,3748,3810,3878,3942,3998,4121,4186,4248,4304,4375,4502,4586,4670,4776,4853,4930,5017,5084,5150,5226,5306,5395,5462,5536,5606,5672,5758,5828,5919,6009,6083,6156,6245,6296,6368,6449,6535,6597,6661,6724,6838,6941,7049,7152,7232" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,302,414,499,600,714,795,874,965,1058,1151,1245,1351,1444,1539,1634,1725,1819,1900,2010,2117,2214,2323,2423,2526,2681,2779", ++ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", ++ "endOffsets": "200,297,409,494,595,709,790,869,960,1053,1146,1240,1346,1439,1534,1629,1720,1814,1895,2005,2112,2209,2318,2418,2521,2676,2774,2855" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "275,375,472,584,669,770,884,965,1044,1135,1228,1321,1415,1521,1614,1709,1804,1895,1989,2070,2180,2287,2384,2493,2593,2696,2851,7237", ++ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", ++ "endOffsets": "370,467,579,664,765,879,960,1039,1130,1223,1316,1410,1516,1609,1704,1799,1890,1984,2065,2175,2282,2379,2488,2588,2691,2846,2944,7313" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7318", ++ "endColumns": "100", ++ "endOffsets": "7414" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-it.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-it.json +new file mode 100644 +index 0000000..8834fd1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-it.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-it/values-it.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7483", ++ "endColumns": "100", ++ "endOffsets": "7579" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,223,300,399,539,622,688,783,868,930,1018,1087,1150,1223,1286,1340,1461,1518,1580,1634,1711,1848,1933,2015,2120,2201,2282,2373,2440,2506,2579,2659,2750,2825,2902,2971,3048,3136,3225,3318,3411,3485,3565,3659,3710,3776,3860,3948,4010,4074,4137,4252,4362,4468,4577", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,98,139,82,65,94,84,61,87,68,62,72,62,53,120,56,61,53,76,136,84,81,104,80,80,90,66,65,72,79,90,74,76,68,76,87,88,92,92,73,79,93,50,65,83,87,61,63,62,114,109,105,108,79", ++ "endOffsets": "218,295,394,534,617,683,778,863,925,1013,1082,1145,1218,1281,1335,1456,1513,1575,1629,1706,1843,1928,2010,2115,2196,2277,2368,2435,2501,2574,2654,2745,2820,2897,2966,3043,3131,3220,3313,3406,3480,3560,3654,3705,3771,3855,3943,4005,4069,4132,4247,4357,4463,4572,4652" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2967,3044,3143,3283,3366,3432,3527,3612,3674,3762,3831,3894,3967,4030,4084,4205,4262,4324,4378,4455,4592,4677,4759,4864,4945,5026,5117,5184,5250,5323,5403,5494,5569,5646,5715,5792,5880,5969,6062,6155,6229,6309,6403,6454,6520,6604,6692,6754,6818,6881,6996,7106,7212,7321", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,98,139,82,65,94,84,61,87,68,62,72,62,53,120,56,61,53,76,136,84,81,104,80,80,90,66,65,72,79,90,74,76,68,76,87,88,92,92,73,79,93,50,65,83,87,61,63,62,114,109,105,108,79", ++ "endOffsets": "268,3039,3138,3278,3361,3427,3522,3607,3669,3757,3826,3889,3962,4025,4079,4200,4257,4319,4373,4450,4587,4672,4754,4859,4940,5021,5112,5179,5245,5318,5398,5489,5564,5641,5710,5787,5875,5964,6057,6150,6224,6304,6398,6449,6515,6599,6687,6749,6813,6876,6991,7101,7207,7316,7396" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,2799", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "273,378,481,590,674,779,898,976,1051,1143,1237,1330,1424,1525,1619,1716,1811,1903,1995,2076,2182,2289,2387,2491,2597,2704,2867,7401", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "373,476,585,669,774,893,971,1046,1138,1232,1325,1419,1520,1614,1711,1806,1898,1990,2071,2177,2284,2382,2486,2592,2699,2862,2962,7478" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-iw.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-iw.json +new file mode 100644 +index 0000000..01a6775 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-iw.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-iw/values-iw.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,2761", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,2838" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "369,474,574,682,766,868,984,1063,1141,1232,1326,1420,1514,1614,1707,1802,1895,1986,2078,2159,2264,2367,2465,2570,2672,2774,2928,7179", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "469,569,677,761,863,979,1058,1136,1227,1321,1415,1509,1609,1702,1797,1890,1981,2073,2154,2259,2362,2460,2565,2667,2769,2923,3020,7256" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,319,396,489,602,682,747,835,905,968,1060,1120,1179,1242,1303,1362,1464,1521,1580,1638,1706,1817,1898,1980,2082,2153,2226,2314,2381,2447,2520,2596,2682,2752,2827,2909,2977,3062,3132,3222,3313,3387,3460,3549,3600,3667,3749,3834,3896,3960,4023,4117,4212,4302,4398", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,76,92,112,79,64,87,69,62,91,59,58,62,60,58,101,56,58,57,67,110,80,81,101,70,72,87,66,65,72,75,85,69,74,81,67,84,69,89,90,73,72,88,50,66,81,84,61,63,62,93,94,89,95,74", ++ "endOffsets": "314,391,484,597,677,742,830,900,963,1055,1115,1174,1237,1298,1357,1459,1516,1575,1633,1701,1812,1893,1975,2077,2148,2221,2309,2376,2442,2515,2591,2677,2747,2822,2904,2972,3057,3127,3217,3308,3382,3455,3544,3595,3662,3744,3829,3891,3955,4018,4112,4207,4297,4393,4468" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3102,3195,3308,3388,3453,3541,3611,3674,3766,3826,3885,3948,4009,4068,4170,4227,4286,4344,4412,4523,4604,4686,4788,4859,4932,5020,5087,5153,5226,5302,5388,5458,5533,5615,5683,5768,5838,5928,6019,6093,6166,6255,6306,6373,6455,6540,6602,6666,6729,6823,6918,7008,7104", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,92,112,79,64,87,69,62,91,59,58,62,60,58,101,56,58,57,67,110,80,81,101,70,72,87,66,65,72,75,85,69,74,81,67,84,69,89,90,73,72,88,50,66,81,84,61,63,62,93,94,89,95,74", ++ "endOffsets": "364,3097,3190,3303,3383,3448,3536,3606,3669,3761,3821,3880,3943,4004,4063,4165,4222,4281,4339,4407,4518,4599,4681,4783,4854,4927,5015,5082,5148,5221,5297,5383,5453,5528,5610,5678,5763,5833,5923,6014,6088,6161,6250,6301,6368,6450,6535,6597,6661,6724,6818,6913,7003,7099,7174" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7261", ++ "endColumns": "100", ++ "endOffsets": "7357" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ja.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ja.json +new file mode 100644 +index 0000000..a213c79 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ja.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ja/values-ja.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,2691", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,2765" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "258,355,448,553,635,733,841,919,994,1085,1178,1273,1367,1467,1560,1655,1749,1840,1931,2009,2111,2209,2304,2407,2503,2599,2747,6692", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "350,443,548,630,728,836,914,989,1080,1173,1268,1362,1462,1555,1650,1744,1835,1926,2004,2106,2204,2299,2402,2498,2594,2742,2839,6766" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6771", ++ "endColumns": "100", ++ "endOffsets": "6867" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,208,277,362,466,542,605,689,753,811,892,956,1011,1070,1127,1181,1274,1330,1387,1441,1507,1607,1683,1764,1856,1918,1980,2059,2126,2192,2262,2332,2409,2473,2544,2612,2675,2754,2817,2897,2979,3051,3122,3194,3242,3306,3381,3458,3520,3584,3647,3733,3817,3898,3983", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,68,84,103,75,62,83,63,57,80,63,54,58,56,53,92,55,56,53,65,99,75,80,91,61,61,78,66,65,69,69,76,63,70,67,62,78,62,79,81,71,70,71,47,63,74,76,61,63,62,85,83,80,84,72", ++ "endOffsets": "203,272,357,461,537,600,684,748,806,887,951,1006,1065,1122,1176,1269,1325,1382,1436,1502,1602,1678,1759,1851,1913,1975,2054,2121,2187,2257,2327,2404,2468,2539,2607,2670,2749,2812,2892,2974,3046,3117,3189,3237,3301,3376,3453,3515,3579,3642,3728,3812,3893,3978,4051" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2844,2913,2998,3102,3178,3241,3325,3389,3447,3528,3592,3647,3706,3763,3817,3910,3966,4023,4077,4143,4243,4319,4400,4492,4554,4616,4695,4762,4828,4898,4968,5045,5109,5180,5248,5311,5390,5453,5533,5615,5687,5758,5830,5878,5942,6017,6094,6156,6220,6283,6369,6453,6534,6619", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,68,84,103,75,62,83,63,57,80,63,54,58,56,53,92,55,56,53,65,99,75,80,91,61,61,78,66,65,69,69,76,63,70,67,62,78,62,79,81,71,70,71,47,63,74,76,61,63,62,85,83,80,84,72", ++ "endOffsets": "253,2908,2993,3097,3173,3236,3320,3384,3442,3523,3587,3642,3701,3758,3812,3905,3961,4018,4072,4138,4238,4314,4395,4487,4549,4611,4690,4757,4823,4893,4963,5040,5104,5175,5243,5306,5385,5448,5528,5610,5682,5753,5825,5873,5937,6012,6089,6151,6215,6278,6364,6448,6529,6614,6687" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ka.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ka.json +new file mode 100644 +index 0000000..4efc47f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ka.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ka/values-ka.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,312,411,536,624,691,788,857,920,1007,1073,1133,1202,1263,1317,1432,1491,1551,1605,1677,1807,1895,1979,2087,2165,2241,2335,2402,2468,2541,2619,2705,2778,2856,2934,3009,3099,3174,3268,3366,3440,3517,3617,3670,3738,3827,3916,3978,4043,4106,4213,4311,4411,4510", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,98,124,87,66,96,68,62,86,65,59,68,60,53,114,58,59,53,71,129,87,83,107,77,75,93,66,65,72,77,85,72,77,77,74,89,74,93,97,73,76,99,52,67,88,88,61,64,62,106,97,99,98,79", ++ "endOffsets": "223,307,406,531,619,686,783,852,915,1002,1068,1128,1197,1258,1312,1427,1486,1546,1600,1672,1802,1890,1974,2082,2160,2236,2330,2397,2463,2536,2614,2700,2773,2851,2929,3004,3094,3169,3263,3361,3435,3512,3612,3665,3733,3822,3911,3973,4038,4101,4208,4306,4406,4505,4585" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2981,3065,3164,3289,3377,3444,3541,3610,3673,3760,3826,3886,3955,4016,4070,4185,4244,4304,4358,4430,4560,4648,4732,4840,4918,4994,5088,5155,5221,5294,5372,5458,5531,5609,5687,5762,5852,5927,6021,6119,6193,6270,6370,6423,6491,6580,6669,6731,6796,6859,6966,7064,7164,7263", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,98,124,87,66,96,68,62,86,65,59,68,60,53,114,58,59,53,71,129,87,83,107,77,75,93,66,65,72,77,85,72,77,77,74,89,74,93,97,73,76,99,52,67,88,88,61,64,62,106,97,99,98,79", ++ "endOffsets": "273,3060,3159,3284,3372,3439,3536,3605,3668,3755,3821,3881,3950,4011,4065,4180,4239,4299,4353,4425,4555,4643,4727,4835,4913,4989,5083,5150,5216,5289,5367,5453,5526,5604,5682,5757,5847,5922,6016,6114,6188,6265,6365,6418,6486,6575,6664,6726,6791,6854,6961,7059,7159,7258,7338" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,2808", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,2885" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,489,600,686,791,904,987,1066,1157,1250,1345,1439,1539,1632,1727,1822,1913,2004,2085,2198,2304,2402,2515,2620,2724,2882,7343", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "381,484,595,681,786,899,982,1061,1152,1245,1340,1434,1534,1627,1722,1817,1908,1999,2080,2193,2299,2397,2510,2615,2719,2877,2976,7420" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7425", ++ "endColumns": "100", ++ "endOffsets": "7521" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-kk.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-kk.json +new file mode 100644 +index 0000000..73b296f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-kk.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-kk/values-kk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,2796", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,2873" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,491,601,686,792,911,991,1068,1159,1252,1347,1441,1541,1634,1729,1826,1917,2008,2089,2194,2297,2395,2502,2608,2708,2874,7266", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "381,486,596,681,787,906,986,1063,1154,1247,1342,1436,1536,1629,1724,1821,1912,2003,2084,2189,2292,2390,2497,2603,2703,2869,2964,7343" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,307,399,511,593,657,752,822,885,992,1059,1120,1187,1249,1303,1417,1476,1537,1591,1666,1792,1880,1969,2081,2153,2226,2315,2382,2448,2519,2596,2682,2754,2830,2911,2981,3068,3140,3231,3324,3398,3473,3565,3617,3683,3767,3853,3915,3979,4042,4146,4246,4340,4441", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,91,111,81,63,94,69,62,106,66,60,66,61,53,113,58,60,53,74,125,87,88,111,71,72,88,66,65,70,76,85,71,75,80,69,86,71,90,92,73,74,91,51,65,83,85,61,63,62,103,99,93,100,83", ++ "endOffsets": "223,302,394,506,588,652,747,817,880,987,1054,1115,1182,1244,1298,1412,1471,1532,1586,1661,1787,1875,1964,2076,2148,2221,2310,2377,2443,2514,2591,2677,2749,2825,2906,2976,3063,3135,3226,3319,3393,3468,3560,3612,3678,3762,3848,3910,3974,4037,4141,4241,4335,4436,4520" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2969,3048,3140,3252,3334,3398,3493,3563,3626,3733,3800,3861,3928,3990,4044,4158,4217,4278,4332,4407,4533,4621,4710,4822,4894,4967,5056,5123,5189,5260,5337,5423,5495,5571,5652,5722,5809,5881,5972,6065,6139,6214,6306,6358,6424,6508,6594,6656,6720,6783,6887,6987,7081,7182", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,91,111,81,63,94,69,62,106,66,60,66,61,53,113,58,60,53,74,125,87,88,111,71,72,88,66,65,70,76,85,71,75,80,69,86,71,90,92,73,74,91,51,65,83,85,61,63,62,103,99,93,100,83", ++ "endOffsets": "273,3043,3135,3247,3329,3393,3488,3558,3621,3728,3795,3856,3923,3985,4039,4153,4212,4273,4327,4402,4528,4616,4705,4817,4889,4962,5051,5118,5184,5255,5332,5418,5490,5566,5647,5717,5804,5876,5967,6060,6134,6209,6301,6353,6419,6503,6589,6651,6715,6778,6882,6982,7076,7177,7261" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7348", ++ "endColumns": "100", ++ "endOffsets": "7444" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-km.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-km.json +new file mode 100644 +index 0000000..3c8af86 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-km.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-km/values-km.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7393", ++ "endColumns": "100", ++ "endOffsets": "7489" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,304,404,516,596,661,755,825,887,974,1039,1098,1163,1224,1281,1400,1458,1519,1576,1647,1777,1863,1941,2049,2124,2195,2292,2359,2425,2505,2595,2681,2760,2837,2907,2982,3070,3140,3240,3339,3413,3489,3596,3650,3723,3814,3910,3972,4036,4099,4198,4296,4388,4488", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,79,99,111,79,64,93,69,61,86,64,58,64,60,56,118,57,60,56,70,129,85,77,107,74,70,96,66,65,79,89,85,78,76,69,74,87,69,99,98,73,75,106,53,72,90,95,61,63,62,98,97,91,99,82", ++ "endOffsets": "219,299,399,511,591,656,750,820,882,969,1034,1093,1158,1219,1276,1395,1453,1514,1571,1642,1772,1858,1936,2044,2119,2190,2287,2354,2420,2500,2590,2676,2755,2832,2902,2977,3065,3135,3235,3334,3408,3484,3591,3645,3718,3809,3905,3967,4031,4094,4193,4291,4383,4483,4566" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3042,3142,3254,3334,3399,3493,3563,3625,3712,3777,3836,3901,3962,4019,4138,4196,4257,4314,4385,4515,4601,4679,4787,4862,4933,5030,5097,5163,5243,5333,5419,5498,5575,5645,5720,5808,5878,5978,6077,6151,6227,6334,6388,6461,6552,6648,6710,6774,6837,6936,7034,7126,7226", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,99,111,79,64,93,69,61,86,64,58,64,60,56,118,57,60,56,70,129,85,77,107,74,70,96,66,65,79,89,85,78,76,69,74,87,69,99,98,73,75,106,53,72,90,95,61,63,62,98,97,91,99,82", ++ "endOffsets": "269,3037,3137,3249,3329,3394,3488,3558,3620,3707,3772,3831,3896,3957,4014,4133,4191,4252,4309,4380,4510,4596,4674,4782,4857,4928,5025,5092,5158,5238,5328,5414,5493,5570,5640,5715,5803,5873,5973,6072,6146,6222,6329,6383,6456,6547,6643,6705,6769,6832,6931,7029,7121,7221,7304" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,2793", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,376,475,585,672,775,896,974,1050,1141,1234,1326,1420,1520,1613,1708,1802,1893,1984,2067,2171,2275,2375,2484,2593,2702,2864,7309", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "371,470,580,667,770,891,969,1045,1136,1229,1321,1415,1515,1608,1703,1797,1888,1979,2062,2166,2270,2370,2479,2588,2697,2859,2957,7388" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-kn.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-kn.json +new file mode 100644 +index 0000000..4988681 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-kn.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-kn/values-kn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,2859", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,2937" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,388,500,613,701,808,934,1012,1088,1179,1272,1367,1461,1561,1654,1749,1843,1934,2025,2107,2223,2333,2432,2545,2650,2764,2928,7417", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "383,495,608,696,803,929,1007,1083,1174,1267,1362,1456,1556,1649,1744,1838,1929,2020,2102,2218,2328,2427,2540,2645,2759,2923,3023,7495" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7500", ++ "endColumns": "100", ++ "endOffsets": "7596" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,306,413,526,611,674,768,834,896,999,1070,1129,1205,1270,1324,1437,1495,1556,1610,1689,1805,1888,1979,2091,2170,2249,2337,2404,2470,2550,2640,2724,2801,2878,2955,3024,3123,3200,3293,3388,3462,3543,3639,3690,3758,3844,3932,3995,4060,4123,4228,4331,4426,4531", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,106,112,84,62,93,65,61,102,70,58,75,64,53,112,57,60,53,78,115,82,90,111,78,78,87,66,65,79,89,83,76,76,76,68,98,76,92,94,73,80,95,50,67,85,87,62,64,62,104,102,94,104,81", ++ "endOffsets": "219,301,408,521,606,669,763,829,891,994,1065,1124,1200,1265,1319,1432,1490,1551,1605,1684,1800,1883,1974,2086,2165,2244,2332,2399,2465,2545,2635,2719,2796,2873,2950,3019,3118,3195,3288,3383,3457,3538,3634,3685,3753,3839,3927,3990,4055,4118,4223,4326,4421,4526,4608" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3028,3110,3217,3330,3415,3478,3572,3638,3700,3803,3874,3933,4009,4074,4128,4241,4299,4360,4414,4493,4609,4692,4783,4895,4974,5053,5141,5208,5274,5354,5444,5528,5605,5682,5759,5828,5927,6004,6097,6192,6266,6347,6443,6494,6562,6648,6736,6799,6864,6927,7032,7135,7230,7335", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,106,112,84,62,93,65,61,102,70,58,75,64,53,112,57,60,53,78,115,82,90,111,78,78,87,66,65,79,89,83,76,76,76,68,98,76,92,94,73,80,95,50,67,85,87,62,64,62,104,102,94,104,81", ++ "endOffsets": "269,3105,3212,3325,3410,3473,3567,3633,3695,3798,3869,3928,4004,4069,4123,4236,4294,4355,4409,4488,4604,4687,4778,4890,4969,5048,5136,5203,5269,5349,5439,5523,5600,5677,5754,5823,5922,5999,6092,6187,6261,6342,6438,6489,6557,6643,6731,6794,6859,6922,7027,7130,7225,7330,7412" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ko.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ko.json +new file mode 100644 +index 0000000..71babf4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ko.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ko/values-ko.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6761", ++ "endColumns": "100", ++ "endOffsets": "6857" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,2685", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,2759" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "254,351,445,546,628,726,832,912,987,1078,1171,1266,1360,1460,1553,1648,1742,1833,1924,2004,2102,2196,2291,2391,2488,2588,2740,6682", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "346,440,541,623,721,827,907,982,1073,1166,1261,1355,1455,1548,1643,1737,1828,1919,1999,2097,2191,2286,2386,2483,2583,2735,2829,6756" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,204,273,356,462,537,599,680,742,799,886,944,1002,1061,1118,1172,1267,1323,1380,1434,1500,1604,1679,1756,1847,1912,1977,2056,2123,2189,2253,2323,2400,2468,2539,2606,2676,2756,2833,2913,2995,3067,3132,3204,3252,3316,3391,3468,3530,3594,3657,3741,3820,3900,3980", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,68,82,105,74,61,80,61,56,86,57,57,58,56,53,94,55,56,53,65,103,74,76,90,64,64,78,66,65,63,69,76,67,70,66,69,79,76,79,81,71,64,71,47,63,74,76,61,63,62,83,78,79,79,71", ++ "endOffsets": "199,268,351,457,532,594,675,737,794,881,939,997,1056,1113,1167,1262,1318,1375,1429,1495,1599,1674,1751,1842,1907,1972,2051,2118,2184,2248,2318,2395,2463,2534,2601,2671,2751,2828,2908,2990,3062,3127,3199,3247,3311,3386,3463,3525,3589,3652,3736,3815,3895,3975,4047" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2834,2903,2986,3092,3167,3229,3310,3372,3429,3516,3574,3632,3691,3748,3802,3897,3953,4010,4064,4130,4234,4309,4386,4477,4542,4607,4686,4753,4819,4883,4953,5030,5098,5169,5236,5306,5386,5463,5543,5625,5697,5762,5834,5882,5946,6021,6098,6160,6224,6287,6371,6450,6530,6610", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,68,82,105,74,61,80,61,56,86,57,57,58,56,53,94,55,56,53,65,103,74,76,90,64,64,78,66,65,63,69,76,67,70,66,69,79,76,79,81,71,64,71,47,63,74,76,61,63,62,83,78,79,79,71", ++ "endOffsets": "249,2898,2981,3087,3162,3224,3305,3367,3424,3511,3569,3627,3686,3743,3797,3892,3948,4005,4059,4125,4229,4304,4381,4472,4537,4602,4681,4748,4814,4878,4948,5025,5093,5164,5231,5301,5381,5458,5538,5620,5692,5757,5829,5877,5941,6016,6093,6155,6219,6282,6366,6445,6525,6605,6677" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ky.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ky.json +new file mode 100644 +index 0000000..6ce132f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ky.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ky/values-ky.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,2817", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,2894" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,381,490,602,687,792,909,988,1066,1157,1250,1345,1439,1539,1632,1727,1822,1913,2004,2085,2191,2296,2394,2501,2604,2719,2880,7321", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "376,485,597,682,787,904,983,1061,1152,1245,1340,1434,1534,1627,1722,1817,1908,1999,2080,2186,2291,2389,2496,2599,2714,2875,2977,7398" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,305,406,547,631,695,789,859,920,1007,1071,1130,1204,1266,1320,1437,1495,1556,1610,1684,1806,1890,1986,2088,2166,2244,2333,2400,2466,2535,2612,2699,2771,2847,2929,3002,3087,3166,3256,3348,3422,3507,3597,3649,3714,3797,3882,3944,4008,4071,4188,4282,4382,4477", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,84,100,140,83,63,93,69,60,86,63,58,73,61,53,116,57,60,53,73,121,83,95,101,77,77,88,66,65,68,76,86,71,75,81,72,84,78,89,91,73,84,89,51,64,82,84,61,63,62,116,93,99,94,81", ++ "endOffsets": "215,300,401,542,626,690,784,854,915,1002,1066,1125,1199,1261,1315,1432,1490,1551,1605,1679,1801,1885,1981,2083,2161,2239,2328,2395,2461,2530,2607,2694,2766,2842,2924,2997,3082,3161,3251,3343,3417,3502,3592,3644,3709,3792,3877,3939,4003,4066,4183,4277,4377,4472,4554" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2982,3067,3168,3309,3393,3457,3551,3621,3682,3769,3833,3892,3966,4028,4082,4199,4257,4318,4372,4446,4568,4652,4748,4850,4928,5006,5095,5162,5228,5297,5374,5461,5533,5609,5691,5764,5849,5928,6018,6110,6184,6269,6359,6411,6476,6559,6644,6706,6770,6833,6950,7044,7144,7239", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,84,100,140,83,63,93,69,60,86,63,58,73,61,53,116,57,60,53,73,121,83,95,101,77,77,88,66,65,68,76,86,71,75,81,72,84,78,89,91,73,84,89,51,64,82,84,61,63,62,116,93,99,94,81", ++ "endOffsets": "265,3062,3163,3304,3388,3452,3546,3616,3677,3764,3828,3887,3961,4023,4077,4194,4252,4313,4367,4441,4563,4647,4743,4845,4923,5001,5090,5157,5223,5292,5369,5456,5528,5604,5686,5759,5844,5923,6013,6105,6179,6264,6354,6406,6471,6554,6639,6701,6765,6828,6945,7039,7139,7234,7316" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7403", ++ "endColumns": "100", ++ "endOffsets": "7499" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-land.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-land.json +new file mode 100644 +index 0000000..7ab47c6 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-land.json +@@ -0,0 +1,38 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-land/values-land.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-land/values-land.xml", ++ "from": { ++ "startLines": "2,3,4", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,125,196", ++ "endColumns": "69,70,67", ++ "endOffsets": "120,191,259" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-land/values-land.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,26,32", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,204,277,347,419,489,554,621,691,763,832,901,983,1073,1149,1217,1284,1362,1427,1494,1666,2061", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,25,31,36", ++ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10", ++ "endOffsets": "125,199,272,342,414,484,549,616,686,758,827,896,978,1068,1144,1212,1279,1357,1422,1489,1661,2056,2325" ++ }, ++ "to": { ++ "startLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,29,35", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,339,413,486,556,628,698,763,830,900,972,1041,1110,1192,1282,1358,1426,1493,1571,1636,1703,1875,2270", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,28,34,39", ++ "endColumns": "74,73,72,69,71,69,64,66,69,71,68,68,81,89,75,67,66,77,64,66,10,10,10", ++ "endOffsets": "334,408,481,551,623,693,758,825,895,967,1036,1105,1187,1277,1353,1421,1488,1566,1631,1698,1870,2265,2534" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-large-v4.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-large-v4.json +new file mode 100644 +index 0000000..c33af56 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-large-v4.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-large-v4/values-large-v4.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-large-v4/values-large-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,185,256,326,396,464,532,636", ++ "endColumns": "58,70,70,69,69,67,67,103,115", ++ "endOffsets": "109,180,251,321,391,459,527,631,747" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-large-v4/values-large-v4.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,177", ++ "endColumns": "121,133", ++ "endOffsets": "172,306" ++ }, ++ "to": { ++ "startLines": "11,12", ++ "startColumns": "4,4", ++ "startOffsets": "752,874", ++ "endColumns": "121,133", ++ "endOffsets": "869,1003" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ldltr-v21.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ldltr-v21.json +new file mode 100644 +index 0000000..c22c2f2 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ldltr-v21.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ldltr-v21/values-ldltr-v21.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ldltr-v21/values-ldltr-v21.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "112", ++ "endOffsets": "163" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ldrtl-v17.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ldrtl-v17.json +new file mode 100644 +index 0000000..cc2d528 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ldrtl-v17.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ldrtl-v17/values-ldrtl-v17.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ldrtl-v17/values-ldrtl-v17.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,191", ++ "endColumns": "135,140", ++ "endOffsets": "186,327" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-lo.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-lo.json +new file mode 100644 +index 0000000..84a1082 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-lo.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-lo/values-lo.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7265", ++ "endColumns": "100", ++ "endOffsets": "7361" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,305,420,539,622,688,777,846,905,1000,1065,1123,1188,1249,1309,1415,1476,1536,1594,1665,1784,1870,1952,2065,2140,2216,2306,2373,2439,2508,2582,2661,2734,2811,2880,2950,3035,3110,3203,3296,3370,3439,3533,3585,3652,3736,3820,3882,3946,4009,4108,4200,4295,4387", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,114,118,82,65,88,68,58,94,64,57,64,60,59,105,60,59,57,70,118,85,81,112,74,75,89,66,65,68,73,78,72,76,68,69,84,74,92,92,73,68,93,51,66,83,83,61,63,62,98,91,94,91,78", ++ "endOffsets": "219,300,415,534,617,683,772,841,900,995,1060,1118,1183,1244,1304,1410,1471,1531,1589,1660,1779,1865,1947,2060,2135,2211,2301,2368,2434,2503,2577,2656,2729,2806,2875,2945,3030,3105,3198,3291,3365,3434,3528,3580,3647,3731,3815,3877,3941,4004,4103,4195,4290,4382,4461" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2941,3022,3137,3256,3339,3405,3494,3563,3622,3717,3782,3840,3905,3966,4026,4132,4193,4253,4311,4382,4501,4587,4669,4782,4857,4933,5023,5090,5156,5225,5299,5378,5451,5528,5597,5667,5752,5827,5920,6013,6087,6156,6250,6302,6369,6453,6537,6599,6663,6726,6825,6917,7012,7104", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,114,118,82,65,88,68,58,94,64,57,64,60,59,105,60,59,57,70,118,85,81,112,74,75,89,66,65,68,73,78,72,76,68,69,84,74,92,92,73,68,93,51,66,83,83,61,63,62,98,91,94,91,78", ++ "endOffsets": "269,3017,3132,3251,3334,3400,3489,3558,3617,3712,3777,3835,3900,3961,4021,4127,4188,4248,4306,4377,4496,4582,4664,4777,4852,4928,5018,5085,5151,5220,5294,5373,5446,5523,5592,5662,5747,5822,5915,6008,6082,6151,6245,6297,6364,6448,6532,6594,6658,6721,6820,6912,7007,7099,7178" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,2772", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,2849" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,377,480,593,678,782,893,971,1048,1139,1232,1324,1418,1518,1611,1706,1802,1893,1984,2065,2172,2276,2374,2477,2581,2685,2842,7183", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "372,475,588,673,777,888,966,1043,1134,1227,1319,1413,1513,1606,1701,1797,1888,1979,2060,2167,2271,2369,2472,2576,2680,2837,2936,7260" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-lt.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-lt.json +new file mode 100644 +index 0000000..86ee7f3 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-lt.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-lt/values-lt.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,2874", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,2953" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "380,496,600,713,800,902,1024,1107,1187,1281,1377,1474,1570,1673,1769,1867,1963,2057,2151,2234,2343,2451,2551,2661,2766,2872,3048,7603", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "491,595,708,795,897,1019,1102,1182,1276,1372,1469,1565,1668,1764,1862,1958,2052,2146,2229,2338,2446,2546,2656,2761,2867,3043,3144,7682" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7687", ++ "endColumns": "100", ++ "endOffsets": "7783" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,330,413,509,627,711,777,876,954,1019,1129,1201,1260,1334,1395,1449,1573,1634,1696,1750,1828,1962,2050,2134,2245,2324,2408,2505,2572,2638,2713,2792,2880,2956,3034,3107,3184,3271,3352,3442,3534,3606,3687,3779,3834,3900,3985,4072,4134,4198,4261,4372,4487,4588,4702", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,82,95,117,83,65,98,77,64,109,71,58,73,60,53,123,60,61,53,77,133,87,83,110,78,83,96,66,65,74,78,87,75,77,72,76,86,80,89,91,71,80,91,54,65,84,86,61,63,62,110,114,100,113,81", ++ "endOffsets": "325,408,504,622,706,772,871,949,1014,1124,1196,1255,1329,1390,1444,1568,1629,1691,1745,1823,1957,2045,2129,2240,2319,2403,2500,2567,2633,2708,2787,2875,2951,3029,3102,3179,3266,3347,3437,3529,3601,3682,3774,3829,3895,3980,4067,4129,4193,4256,4367,4482,4583,4697,4779" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3149,3232,3328,3446,3530,3596,3695,3773,3838,3948,4020,4079,4153,4214,4268,4392,4453,4515,4569,4647,4781,4869,4953,5064,5143,5227,5324,5391,5457,5532,5611,5699,5775,5853,5926,6003,6090,6171,6261,6353,6425,6506,6598,6653,6719,6804,6891,6953,7017,7080,7191,7306,7407,7521", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,95,117,83,65,98,77,64,109,71,58,73,60,53,123,60,61,53,77,133,87,83,110,78,83,96,66,65,74,78,87,75,77,72,76,86,80,89,91,71,80,91,54,65,84,86,61,63,62,110,114,100,113,81", ++ "endOffsets": "375,3227,3323,3441,3525,3591,3690,3768,3833,3943,4015,4074,4148,4209,4263,4387,4448,4510,4564,4642,4776,4864,4948,5059,5138,5222,5319,5386,5452,5527,5606,5694,5770,5848,5921,5998,6085,6166,6256,6348,6420,6501,6593,6648,6714,6799,6886,6948,7012,7075,7186,7301,7402,7516,7598" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-lv.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-lv.json +new file mode 100644 +index 0000000..a05acc4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-lv.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-lv/values-lv.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7727", ++ "endColumns": "100", ++ "endOffsets": "7823" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,279,360,461,595,678,743,837,910,971,1096,1164,1225,1297,1357,1411,1531,1591,1653,1707,1784,1914,2001,2083,2194,2274,2359,2450,2517,2583,2657,2738,2822,2895,2972,3049,3123,3216,3291,3381,3472,3544,3622,3713,3767,3835,3919,4006,4068,4132,4195,4305,4418,4521,4633", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,80,100,133,82,64,93,72,60,124,67,60,71,59,53,119,59,61,53,76,129,86,81,110,79,84,90,66,65,73,80,83,72,76,76,73,92,74,89,90,71,77,90,53,67,83,86,61,63,62,109,112,102,111,76", ++ "endOffsets": "274,355,456,590,673,738,832,905,966,1091,1159,1220,1292,1352,1406,1526,1586,1648,1702,1779,1909,1996,2078,2189,2269,2354,2445,2512,2578,2652,2733,2817,2890,2967,3044,3118,3211,3286,3376,3467,3539,3617,3708,3762,3830,3914,4001,4063,4127,4190,4300,4413,4516,4628,4705" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3213,3294,3395,3529,3612,3677,3771,3844,3905,4030,4098,4159,4231,4291,4345,4465,4525,4587,4641,4718,4848,4935,5017,5128,5208,5293,5384,5451,5517,5591,5672,5756,5829,5906,5983,6057,6150,6225,6315,6406,6478,6556,6647,6701,6769,6853,6940,7002,7066,7129,7239,7352,7455,7567", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,100,133,82,64,93,72,60,124,67,60,71,59,53,119,59,61,53,76,129,86,81,110,79,84,90,66,65,73,80,83,72,76,76,73,92,74,89,90,71,77,90,53,67,83,86,61,63,62,109,112,102,111,76", ++ "endOffsets": "324,3289,3390,3524,3607,3672,3766,3839,3900,4025,4093,4154,4226,4286,4340,4460,4520,4582,4636,4713,4843,4930,5012,5123,5203,5288,5379,5446,5512,5586,5667,5751,5824,5901,5978,6052,6145,6220,6310,6401,6473,6551,6642,6696,6764,6848,6935,6997,7061,7124,7234,7347,7450,7562,7639" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,2989", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,3067" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "329,449,559,668,754,858,980,1062,1142,1252,1360,1466,1575,1686,1789,1901,2008,2113,2213,2298,2407,2518,2617,2728,2835,2940,3114,7644", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "444,554,663,749,853,975,1057,1137,1247,1355,1461,1570,1681,1784,1896,2003,2108,2208,2293,2402,2513,2612,2723,2830,2935,3109,3208,7722" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-mk.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-mk.json +new file mode 100644 +index 0000000..1deabd5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-mk.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-mk/values-mk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,2820", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,2900" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,488,596,682,790,909,993,1074,1165,1258,1354,1448,1548,1641,1736,1832,1923,2014,2101,2207,2313,2414,2521,2633,2737,2893,7379", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "379,483,591,677,785,904,988,1069,1160,1253,1349,1443,1543,1636,1731,1827,1918,2009,2096,2202,2308,2409,2516,2628,2732,2888,2986,7459" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,308,404,528,615,681,772,842,906,1009,1074,1134,1202,1265,1320,1448,1505,1567,1622,1697,1837,1924,2007,2110,2192,2277,2364,2431,2497,2570,2646,2735,2808,2884,2959,3029,3117,3192,3284,3376,3450,3524,3616,3669,3736,3819,3906,3968,4032,4095,4209,4316,4418,4529", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,95,123,86,65,90,69,63,102,64,59,67,62,54,127,56,61,54,74,139,86,82,102,81,84,86,66,65,72,75,88,72,75,74,69,87,74,91,91,73,73,91,52,66,82,86,61,63,62,113,106,101,110,84", ++ "endOffsets": "221,303,399,523,610,676,767,837,901,1004,1069,1129,1197,1260,1315,1443,1500,1562,1617,1692,1832,1919,2002,2105,2187,2272,2359,2426,2492,2565,2641,2730,2803,2879,2954,3024,3112,3187,3279,3371,3445,3519,3611,3664,3731,3814,3901,3963,4027,4090,4204,4311,4413,4524,4609" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2991,3073,3169,3293,3380,3446,3537,3607,3671,3774,3839,3899,3967,4030,4085,4213,4270,4332,4387,4462,4602,4689,4772,4875,4957,5042,5129,5196,5262,5335,5411,5500,5573,5649,5724,5794,5882,5957,6049,6141,6215,6289,6381,6434,6501,6584,6671,6733,6797,6860,6974,7081,7183,7294", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,95,123,86,65,90,69,63,102,64,59,67,62,54,127,56,61,54,74,139,86,82,102,81,84,86,66,65,72,75,88,72,75,74,69,87,74,91,91,73,73,91,52,66,82,86,61,63,62,113,106,101,110,84", ++ "endOffsets": "271,3068,3164,3288,3375,3441,3532,3602,3666,3769,3834,3894,3962,4025,4080,4208,4265,4327,4382,4457,4597,4684,4767,4870,4952,5037,5124,5191,5257,5330,5406,5495,5568,5644,5719,5789,5877,5952,6044,6136,6210,6284,6376,6429,6496,6579,6666,6728,6792,6855,6969,7076,7178,7289,7374" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7464", ++ "endColumns": "100", ++ "endOffsets": "7560" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ml.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ml.json +new file mode 100644 +index 0000000..7fef400 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ml.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ml/values-ml.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,313,407,517,609,674,773,839,899,1001,1077,1135,1213,1278,1332,1449,1513,1577,1631,1711,1845,1931,2020,2126,2211,2299,2394,2461,2527,2606,2688,2779,2855,2932,3009,3080,3187,3267,3364,3464,3538,3619,3724,3782,3849,3940,4032,4094,4158,4221,4324,4440,4545,4661", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,93,109,91,64,98,65,59,101,75,57,77,64,53,116,63,63,53,79,133,85,88,105,84,87,94,66,65,78,81,90,75,76,76,70,106,79,96,99,73,80,104,57,66,90,91,61,63,62,102,115,104,115,83", ++ "endOffsets": "221,308,402,512,604,669,768,834,894,996,1072,1130,1208,1273,1327,1444,1508,1572,1626,1706,1840,1926,2015,2121,2206,2294,2389,2456,2522,2601,2683,2774,2850,2927,3004,3075,3182,3262,3359,3459,3533,3614,3719,3777,3844,3935,4027,4089,4153,4216,4319,4435,4540,4656,4740" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3112,3206,3316,3408,3473,3572,3638,3698,3800,3876,3934,4012,4077,4131,4248,4312,4376,4430,4510,4644,4730,4819,4925,5010,5098,5193,5260,5326,5405,5487,5578,5654,5731,5808,5879,5986,6066,6163,6263,6337,6418,6523,6581,6648,6739,6831,6893,6957,7020,7123,7239,7344,7460", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,93,109,91,64,98,65,59,101,75,57,77,64,53,116,63,63,53,79,133,85,88,105,84,87,94,66,65,78,81,90,75,76,76,70,106,79,96,99,73,80,104,57,66,90,91,61,63,62,102,115,104,115,83", ++ "endOffsets": "271,3107,3201,3311,3403,3468,3567,3633,3693,3795,3871,3929,4007,4072,4126,4243,4307,4371,4425,4505,4639,4725,4814,4920,5005,5093,5188,5255,5321,5400,5482,5573,5649,5726,5803,5874,5981,6061,6158,6258,6332,6413,6518,6576,6643,6734,6826,6888,6952,7015,7118,7234,7339,7455,7539" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7627", ++ "endColumns": "100", ++ "endOffsets": "7723" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,2854", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,2932" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,383,489,600,691,796,918,996,1071,1162,1255,1356,1450,1550,1644,1739,1838,1929,2020,2102,2211,2315,2414,2526,2638,2759,2924,7544", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "378,484,595,686,791,913,991,1066,1157,1250,1351,1445,1545,1639,1734,1833,1924,2015,2097,2206,2310,2409,2521,2633,2754,2919,3020,7622" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-mn.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-mn.json +new file mode 100644 +index 0000000..329821e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-mn.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-mn/values-mn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,299,397,516,601,666,764,845,904,997,1060,1118,1189,1251,1305,1426,1483,1544,1598,1669,1802,1886,1969,2072,2154,2232,2322,2389,2455,2526,2604,2690,2765,2843,2923,3006,3094,3173,3263,3356,3430,3500,3591,3645,3712,3796,3881,3943,4007,4070,4174,4280,4377,4482", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,78,97,118,84,64,97,80,58,92,62,57,70,61,53,120,56,60,53,70,132,83,82,102,81,77,89,66,65,70,77,85,74,77,79,82,87,78,89,92,73,69,90,53,66,83,84,61,63,62,103,105,96,104,83", ++ "endOffsets": "215,294,392,511,596,661,759,840,899,992,1055,1113,1184,1246,1300,1421,1478,1539,1593,1664,1797,1881,1964,2067,2149,2227,2317,2384,2450,2521,2599,2685,2760,2838,2918,3001,3089,3168,3258,3351,3425,3495,3586,3640,3707,3791,3876,3938,4002,4065,4169,4275,4372,4477,4561" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3041,3139,3258,3343,3408,3506,3587,3646,3739,3802,3860,3931,3993,4047,4168,4225,4286,4340,4411,4544,4628,4711,4814,4896,4974,5064,5131,5197,5268,5346,5432,5507,5585,5665,5748,5836,5915,6005,6098,6172,6242,6333,6387,6454,6538,6623,6685,6749,6812,6916,7022,7119,7224", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,97,118,84,64,97,80,58,92,62,57,70,61,53,120,56,60,53,70,132,83,82,102,81,77,89,66,65,70,77,85,74,77,79,82,87,78,89,92,73,69,90,53,66,83,84,61,63,62,103,105,96,104,83", ++ "endOffsets": "265,3036,3134,3253,3338,3403,3501,3582,3641,3734,3797,3855,3926,3988,4042,4163,4220,4281,4335,4406,4539,4623,4706,4809,4891,4969,5059,5126,5192,5263,5341,5427,5502,5580,5660,5743,5831,5910,6000,6093,6167,6237,6328,6382,6449,6533,6618,6680,6744,6807,6911,7017,7114,7219,7303" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,2797", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,2873" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,384,484,593,679,785,899,982,1063,1154,1247,1342,1438,1535,1628,1722,1814,1905,1995,2075,2182,2285,2382,2489,2591,2704,2863,7308", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "379,479,588,674,780,894,977,1058,1149,1242,1337,1433,1530,1623,1717,1809,1900,1990,2070,2177,2280,2377,2484,2586,2699,2858,2957,7384" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7389", ++ "endColumns": "100", ++ "endOffsets": "7485" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-mr.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-mr.json +new file mode 100644 +index 0000000..d5f6dd3 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-mr.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-mr/values-mr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,322,429,519,621,733,811,888,979,1072,1165,1262,1362,1455,1550,1644,1735,1826,1906,2013,2114,2213,2322,2424,2538,2695,2798", ++ "endColumns": "110,105,106,89,101,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,98,108,101,113,156,102,82", ++ "endOffsets": "211,317,424,514,616,728,806,883,974,1067,1160,1257,1357,1450,1545,1639,1730,1821,1901,2008,2109,2208,2317,2419,2533,2690,2793,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,375,481,588,678,780,892,970,1047,1138,1231,1324,1421,1521,1614,1709,1803,1894,1985,2065,2172,2273,2372,2481,2583,2697,2854,7231", ++ "endColumns": "110,105,106,89,101,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,98,108,101,113,156,102,82", ++ "endOffsets": "370,476,583,673,775,887,965,1042,1133,1226,1319,1416,1516,1609,1704,1798,1889,1980,2060,2167,2268,2367,2476,2578,2692,2849,2952,7309" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,297,397,513,595,658,749,814,873,961,1023,1083,1150,1213,1267,1381,1438,1499,1553,1623,1742,1823,1908,2013,2090,2167,2253,2320,2386,2456,2534,2621,2691,2767,2838,2907,3003,3077,3175,3271,3345,3415,3517,3572,3639,3726,3819,3882,3946,4009,4109,4212,4306,4410", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,99,115,81,62,90,64,58,87,61,59,66,62,53,113,56,60,53,69,118,80,84,104,76,76,85,66,65,69,77,86,69,75,70,68,95,73,97,95,73,69,101,54,66,86,92,62,63,62,99,102,93,103,77", ++ "endOffsets": "209,292,392,508,590,653,744,809,868,956,1018,1078,1145,1208,1262,1376,1433,1494,1548,1618,1737,1818,1903,2008,2085,2162,2248,2315,2381,2451,2529,2616,2686,2762,2833,2902,2998,3072,3170,3266,3340,3410,3512,3567,3634,3721,3814,3877,3941,4004,4104,4207,4301,4405,4483" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2957,3040,3140,3256,3338,3401,3492,3557,3616,3704,3766,3826,3893,3956,4010,4124,4181,4242,4296,4366,4485,4566,4651,4756,4833,4910,4996,5063,5129,5199,5277,5364,5434,5510,5581,5650,5746,5820,5918,6014,6088,6158,6260,6315,6382,6469,6562,6625,6689,6752,6852,6955,7049,7153", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,99,115,81,62,90,64,58,87,61,59,66,62,53,113,56,60,53,69,118,80,84,104,76,76,85,66,65,69,77,86,69,75,70,68,95,73,97,95,73,69,101,54,66,86,92,62,63,62,99,102,93,103,77", ++ "endOffsets": "259,3035,3135,3251,3333,3396,3487,3552,3611,3699,3761,3821,3888,3951,4005,4119,4176,4237,4291,4361,4480,4561,4646,4751,4828,4905,4991,5058,5124,5194,5272,5359,5429,5505,5576,5645,5741,5815,5913,6009,6083,6153,6255,6310,6377,6464,6557,6620,6684,6747,6847,6950,7044,7148,7226" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7314", ++ "endColumns": "100", ++ "endOffsets": "7410" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ms.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ms.json +new file mode 100644 +index 0000000..2a3958f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ms.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ms/values-ms.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7369", ++ "endColumns": "100", ++ "endOffsets": "7465" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,2800", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,2876" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "284,395,500,608,695,799,910,989,1067,1158,1251,1346,1440,1538,1631,1726,1820,1911,2002,2082,2194,2302,2399,2508,2612,2719,2878,7288", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "390,495,603,690,794,905,984,1062,1153,1246,1341,1435,1533,1626,1721,1815,1906,1997,2077,2189,2297,2394,2503,2607,2714,2873,2974,7364" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,234,321,424,540,623,688,781,846,905,992,1054,1114,1180,1242,1296,1404,1461,1522,1577,1648,1768,1859,1945,2063,2149,2235,2323,2390,2456,2527,2605,2688,2761,2837,2910,2981,3073,3146,3236,3329,3403,3474,3565,3617,3685,3769,3854,3916,3980,4043,4147,4253,4349,4457", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,102,115,82,64,92,64,58,86,61,59,65,61,53,107,56,60,54,70,119,90,85,117,85,85,87,66,65,70,77,82,72,75,72,70,91,72,89,92,73,70,90,51,67,83,84,61,63,62,103,105,95,107,85", ++ "endOffsets": "229,316,419,535,618,683,776,841,900,987,1049,1109,1175,1237,1291,1399,1456,1517,1572,1643,1763,1854,1940,2058,2144,2230,2318,2385,2451,2522,2600,2683,2756,2832,2905,2976,3068,3141,3231,3324,3398,3469,3560,3612,3680,3764,3849,3911,3975,4038,4142,4248,4344,4452,4538" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2979,3066,3169,3285,3368,3433,3526,3591,3650,3737,3799,3859,3925,3987,4041,4149,4206,4267,4322,4393,4513,4604,4690,4808,4894,4980,5068,5135,5201,5272,5350,5433,5506,5582,5655,5726,5818,5891,5981,6074,6148,6219,6310,6362,6430,6514,6599,6661,6725,6788,6892,6998,7094,7202", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,102,115,82,64,92,64,58,86,61,59,65,61,53,107,56,60,54,70,119,90,85,117,85,85,87,66,65,70,77,82,72,75,72,70,91,72,89,92,73,70,90,51,67,83,84,61,63,62,103,105,95,107,85", ++ "endOffsets": "279,3061,3164,3280,3363,3428,3521,3586,3645,3732,3794,3854,3920,3982,4036,4144,4201,4262,4317,4388,4508,4599,4685,4803,4889,4975,5063,5130,5196,5267,5345,5428,5501,5577,5650,5721,5813,5886,5976,6069,6143,6214,6305,6357,6425,6509,6594,6656,6720,6783,6887,6993,7089,7197,7283" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-my.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-my.json +new file mode 100644 +index 0000000..de43096 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-my.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-my/values-my.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7514", ++ "endColumns": "100", ++ "endOffsets": "7610" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,240,316,422,551,636,701,791,866,925,1016,1081,1140,1211,1273,1330,1449,1507,1568,1623,1696,1828,1919,2008,2119,2197,2274,2366,2433,2499,2571,2653,2735,2810,2884,2956,3035,3132,3213,3299,3391,3465,3544,3630,3684,3752,3835,3916,3978,4042,4105,4217,4320,4424,4529", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,75,105,128,84,64,89,74,58,90,64,58,70,61,56,118,57,60,54,72,131,90,88,110,77,76,91,66,65,71,81,81,74,73,71,78,96,80,85,91,73,78,85,53,67,82,80,61,63,62,111,102,103,104,81", ++ "endOffsets": "235,311,417,546,631,696,786,861,920,1011,1076,1135,1206,1268,1325,1444,1502,1563,1618,1691,1823,1914,2003,2114,2192,2269,2361,2428,2494,2566,2648,2730,2805,2879,2951,3030,3127,3208,3294,3386,3460,3539,3625,3679,3747,3830,3911,3973,4037,4100,4212,4315,4419,4524,4606" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3057,3133,3239,3368,3453,3518,3608,3683,3742,3833,3898,3957,4028,4090,4147,4266,4324,4385,4440,4513,4645,4736,4825,4936,5014,5091,5183,5250,5316,5388,5470,5552,5627,5701,5773,5852,5949,6030,6116,6208,6282,6361,6447,6501,6569,6652,6733,6795,6859,6922,7034,7137,7241,7346", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,75,105,128,84,64,89,74,58,90,64,58,70,61,56,118,57,60,54,72,131,90,88,110,77,76,91,66,65,71,81,81,74,73,71,78,96,80,85,91,73,78,85,53,67,82,80,61,63,62,111,102,103,104,81", ++ "endOffsets": "285,3128,3234,3363,3448,3513,3603,3678,3737,3828,3893,3952,4023,4085,4142,4261,4319,4380,4435,4508,4640,4731,4820,4931,5009,5086,5178,5245,5311,5383,5465,5547,5622,5696,5768,5847,5944,6025,6111,6203,6277,6356,6442,6496,6564,6647,6728,6790,6854,6917,7029,7132,7236,7341,7423" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,325,441,528,637,760,842,923,1014,1107,1202,1296,1396,1489,1584,1678,1769,1860,1945,2060,2169,2268,2394,2501,2609,2769,2872", ++ "endColumns": "112,106,115,86,108,122,81,80,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "213,320,436,523,632,755,837,918,1009,1102,1197,1291,1391,1484,1579,1673,1764,1855,1940,2055,2164,2263,2389,2496,2604,2764,2867,2953" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "290,403,510,626,713,822,945,1027,1108,1199,1292,1387,1481,1581,1674,1769,1863,1954,2045,2130,2245,2354,2453,2579,2686,2794,2954,7428", ++ "endColumns": "112,106,115,86,108,122,81,80,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "398,505,621,708,817,940,1022,1103,1194,1287,1382,1476,1576,1669,1764,1858,1949,2040,2125,2240,2349,2448,2574,2681,2789,2949,3052,7509" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-nb.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-nb.json +new file mode 100644 +index 0000000..9e94845 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-nb.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-nb/values-nb.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,303,417,503,603,716,793,868,959,1052,1146,1240,1340,1433,1528,1626,1717,1808,1886,1989,2087,2183,2287,2386,2487,2640,2737", ++ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", ++ "endOffsets": "203,298,412,498,598,711,788,863,954,1047,1141,1235,1335,1428,1523,1621,1712,1803,1881,1984,2082,2178,2282,2381,2482,2635,2732,2812" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "266,369,464,578,664,764,877,954,1029,1120,1213,1307,1401,1501,1594,1689,1787,1878,1969,2047,2150,2248,2344,2448,2547,2648,2801,7123", ++ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", ++ "endOffsets": "364,459,573,659,759,872,949,1024,1115,1208,1302,1396,1496,1589,1684,1782,1873,1964,2042,2145,2243,2339,2443,2542,2643,2796,2893,7198" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7203", ++ "endColumns": "100", ++ "endOffsets": "7299" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,216,303,402,521,603,667,759,827,887,974,1036,1100,1168,1233,1287,1396,1454,1516,1570,1645,1765,1847,1927,2031,2109,2189,2277,2344,2410,2478,2552,2642,2713,2791,2861,2931,3020,3098,3186,3276,3348,3420,3504,3555,3621,3702,3785,3847,3911,3974,4074,4172,4265,4363", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,86,98,118,81,63,91,67,59,86,61,63,67,64,53,108,57,61,53,74,119,81,79,103,77,79,87,66,65,67,73,89,70,77,69,69,88,77,87,89,71,71,83,50,65,80,82,61,63,62,99,97,92,97,77", ++ "endOffsets": "211,298,397,516,598,662,754,822,882,969,1031,1095,1163,1228,1282,1391,1449,1511,1565,1640,1760,1842,1922,2026,2104,2184,2272,2339,2405,2473,2547,2637,2708,2786,2856,2926,3015,3093,3181,3271,3343,3415,3499,3550,3616,3697,3780,3842,3906,3969,4069,4167,4260,4358,4436" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2898,2985,3084,3203,3285,3349,3441,3509,3569,3656,3718,3782,3850,3915,3969,4078,4136,4198,4252,4327,4447,4529,4609,4713,4791,4871,4959,5026,5092,5160,5234,5324,5395,5473,5543,5613,5702,5780,5868,5958,6030,6102,6186,6237,6303,6384,6467,6529,6593,6656,6756,6854,6947,7045", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,98,118,81,63,91,67,59,86,61,63,67,64,53,108,57,61,53,74,119,81,79,103,77,79,87,66,65,67,73,89,70,77,69,69,88,77,87,89,71,71,83,50,65,80,82,61,63,62,99,97,92,97,77", ++ "endOffsets": "261,2980,3079,3198,3280,3344,3436,3504,3564,3651,3713,3777,3845,3910,3964,4073,4131,4193,4247,4322,4442,4524,4604,4708,4786,4866,4954,5021,5087,5155,5229,5319,5390,5468,5538,5608,5697,5775,5863,5953,6025,6097,6181,6232,6298,6379,6462,6524,6588,6651,6751,6849,6942,7040,7118" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ne.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ne.json +new file mode 100644 +index 0000000..c88749c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ne.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ne/values-ne.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,217,299,401,511,598,664,760,826,887,992,1064,1122,1196,1258,1312,1425,1485,1546,1605,1683,1807,1888,1973,2079,2160,2243,2326,2393,2459,2536,2615,2703,2772,2848,2929,2997,3088,3166,3259,3356,3430,3509,3607,3667,3733,3821,3909,3971,4039,4102,4207,4325,4420,4540", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,101,109,86,65,95,65,60,104,71,57,73,61,53,112,59,60,58,77,123,80,84,105,80,82,82,66,65,76,78,87,68,75,80,67,90,77,92,96,73,78,97,59,65,87,87,61,67,62,104,117,94,119,83", ++ "endOffsets": "212,294,396,506,593,659,755,821,882,987,1059,1117,1191,1253,1307,1420,1480,1541,1600,1678,1802,1883,1968,2074,2155,2238,2321,2388,2454,2531,2610,2698,2767,2843,2924,2992,3083,3161,3254,3351,3425,3504,3602,3662,3728,3816,3904,3966,4034,4097,4202,4320,4415,4535,4619" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3029,3111,3213,3323,3410,3476,3572,3638,3699,3804,3876,3934,4008,4070,4124,4237,4297,4358,4417,4495,4619,4700,4785,4891,4972,5055,5138,5205,5271,5348,5427,5515,5584,5660,5741,5809,5900,5978,6071,6168,6242,6321,6419,6479,6545,6633,6721,6783,6851,6914,7019,7137,7232,7352", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,101,109,86,65,95,65,60,104,71,57,73,61,53,112,59,60,58,77,123,80,84,105,80,82,82,66,65,76,78,87,68,75,80,67,90,77,92,96,73,78,97,59,65,87,87,61,67,62,104,117,94,119,83", ++ "endOffsets": "262,3106,3208,3318,3405,3471,3567,3633,3694,3799,3871,3929,4003,4065,4119,4232,4292,4353,4412,4490,4614,4695,4780,4886,4967,5050,5133,5200,5266,5343,5422,5510,5579,5655,5736,5804,5895,5973,6066,6163,6237,6316,6414,6474,6540,6628,6716,6778,6846,6909,7014,7132,7227,7347,7431" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7516", ++ "endColumns": "100", ++ "endOffsets": "7612" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,327,435,526,633,753,837,916,1007,1100,1195,1289,1389,1482,1577,1671,1762,1853,1939,2052,2153,2249,2362,2472,2589,2756,2867", ++ "endColumns": "110,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "211,322,430,521,628,748,832,911,1002,1095,1190,1284,1384,1477,1572,1666,1757,1848,1934,2047,2148,2244,2357,2467,2584,2751,2862,2942" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "267,378,489,597,688,795,915,999,1078,1169,1262,1357,1451,1551,1644,1739,1833,1924,2015,2101,2214,2315,2411,2524,2634,2751,2918,7436", ++ "endColumns": "110,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "373,484,592,683,790,910,994,1073,1164,1257,1352,1446,1546,1639,1734,1828,1919,2010,2096,2209,2310,2406,2519,2629,2746,2913,3024,7511" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-night-v8.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-night-v8.json +new file mode 100644 +index 0000000..d4a25d8 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-night-v8.json +@@ -0,0 +1,43 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-night-v8/values-night-v8.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-night-v8/values-night-v8.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,293,389,491,593,687", ++ "endColumns": "69,83,83,95,101,101,93,88", ++ "endOffsets": "120,204,288,384,486,588,682,771" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,25", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,293,389,491,593,2549", ++ "endColumns": "69,83,83,95,101,101,93,88", ++ "endOffsets": "120,204,288,384,486,588,682,2633" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-night-v8/values-night-v8.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,143,267,369,471,587,689,803,931,1047,1169,1305,1425,1559,1679,1791,1917,2041,2171,2293,2431,2565,2681", ++ "endColumns": "87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,123,129,121,137,133,115,119", ++ "endOffsets": "138,262,364,466,582,684,798,926,1042,1164,1300,1420,1554,1674,1786,1912,2036,2166,2288,2426,2560,2676,2796" ++ }, ++ "to": { ++ "startLines": "9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,26,27,28,29,30,31,32", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "687,775,899,1001,1103,1219,1321,1435,1563,1679,1801,1937,2057,2191,2311,2423,2638,2762,2892,3014,3152,3286,3402", ++ "endColumns": "87,123,101,101,115,101,113,127,115,121,135,119,133,119,111,125,123,129,121,137,133,115,119", ++ "endOffsets": "770,894,996,1098,1214,1316,1430,1558,1674,1796,1932,2052,2186,2306,2418,2544,2757,2887,3009,3147,3281,3397,3517" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-nl.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-nl.json +new file mode 100644 +index 0000000..0df2dbf +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-nl.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-nl/values-nl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7451", ++ "endColumns": "100", ++ "endOffsets": "7547" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,328,435,520,628,748,826,902,994,1088,1183,1277,1377,1471,1567,1662,1754,1846,1928,2039,2142,2241,2356,2470,2573,2728,2831", ++ "endColumns": "117,104,106,84,107,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "218,323,430,515,623,743,821,897,989,1083,1178,1272,1372,1466,1562,1657,1749,1841,1923,2034,2137,2236,2351,2465,2568,2723,2826,2909" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,392,497,604,689,797,917,995,1071,1163,1257,1352,1446,1546,1640,1736,1831,1923,2015,2097,2208,2311,2410,2525,2639,2742,2897,7368", ++ "endColumns": "117,104,106,84,107,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "387,492,599,684,792,912,990,1066,1158,1252,1347,1441,1541,1635,1731,1826,1918,2010,2092,2203,2306,2405,2520,2634,2737,2892,2995,7446" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,301,398,520,601,665,758,837,900,993,1059,1117,1190,1254,1310,1432,1489,1551,1607,1683,1817,1902,1988,2096,2177,2256,2346,2413,2479,2557,2640,2728,2803,2882,2955,3026,3120,3198,3287,3377,3451,3532,3619,3672,3739,3820,3904,3966,4030,4093,4201,4302,4404,4507", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,96,121,80,63,92,78,62,92,65,57,72,63,55,121,56,61,55,75,133,84,85,107,80,78,89,66,65,77,82,87,74,78,72,70,93,77,88,89,73,80,86,52,66,80,83,61,63,62,107,100,101,102,84", ++ "endOffsets": "219,296,393,515,596,660,753,832,895,988,1054,1112,1185,1249,1305,1427,1484,1546,1602,1678,1812,1897,1983,2091,2172,2251,2341,2408,2474,2552,2635,2723,2798,2877,2950,3021,3115,3193,3282,3372,3446,3527,3614,3667,3734,3815,3899,3961,4025,4088,4196,4297,4399,4502,4587" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3000,3077,3174,3296,3377,3441,3534,3613,3676,3769,3835,3893,3966,4030,4086,4208,4265,4327,4383,4459,4593,4678,4764,4872,4953,5032,5122,5189,5255,5333,5416,5504,5579,5658,5731,5802,5896,5974,6063,6153,6227,6308,6395,6448,6515,6596,6680,6742,6806,6869,6977,7078,7180,7283", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,96,121,80,63,92,78,62,92,65,57,72,63,55,121,56,61,55,75,133,84,85,107,80,78,89,66,65,77,82,87,74,78,72,70,93,77,88,89,73,80,86,52,66,80,83,61,63,62,107,100,101,102,84", ++ "endOffsets": "269,3072,3169,3291,3372,3436,3529,3608,3671,3764,3830,3888,3961,4025,4081,4203,4260,4322,4378,4454,4588,4673,4759,4867,4948,5027,5117,5184,5250,5328,5411,5499,5574,5653,5726,5797,5891,5969,6058,6148,6222,6303,6390,6443,6510,6591,6675,6737,6801,6864,6972,7073,7175,7278,7363" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-or.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-or.json +new file mode 100644 +index 0000000..e990799 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-or.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-or/values-or.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,304,398,503,582,647,736,801,860,946,1010,1073,1146,1210,1264,1376,1434,1496,1550,1622,1744,1831,1917,2027,2104,2185,2276,2343,2409,2479,2556,2643,2714,2791,2860,2929,3020,3092,3181,3270,3344,3416,3502,3552,3618,3698,3782,3844,3908,3971,4071,4168,4260,4359", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,93,104,78,64,88,64,58,85,63,62,72,63,53,111,57,61,53,71,121,86,85,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,83", ++ "endOffsets": "222,299,393,498,577,642,731,796,855,941,1005,1068,1141,1205,1259,1371,1429,1491,1545,1617,1739,1826,1912,2022,2099,2180,2271,2338,2404,2474,2551,2638,2709,2786,2855,2924,3015,3087,3176,3265,3339,3411,3497,3547,3613,3693,3777,3839,3903,3966,4066,4163,4255,4354,4438" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3022,3099,3193,3298,3377,3442,3531,3596,3655,3741,3805,3868,3941,4005,4059,4171,4229,4291,4345,4417,4539,4626,4712,4822,4899,4980,5071,5138,5204,5274,5351,5438,5509,5586,5655,5724,5815,5887,5976,6065,6139,6211,6297,6347,6413,6493,6577,6639,6703,6766,6866,6963,7055,7154", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,93,104,78,64,88,64,58,85,63,62,72,63,53,111,57,61,53,71,121,86,85,109,76,80,90,66,65,69,76,86,70,76,68,68,90,71,88,88,73,71,85,49,65,79,83,61,63,62,99,96,91,98,83", ++ "endOffsets": "272,3094,3188,3293,3372,3437,3526,3591,3650,3736,3800,3863,3936,4000,4054,4166,4224,4286,4340,4412,4534,4621,4707,4817,4894,4975,5066,5133,5199,5269,5346,5433,5504,5581,5650,5719,5810,5882,5971,6060,6134,6206,6292,6342,6408,6488,6572,6634,6698,6761,6861,6958,7050,7149,7233" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7321", ++ "endColumns": "100", ++ "endOffsets": "7417" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,224,334,441,527,631,751,830,906,997,1090,1186,1281,1381,1474,1569,1665,1756,1846,1935,2045,2149,2248,2359,2463,2581,2744,2850", ++ "endColumns": "118,109,106,85,103,119,78,75,90,92,95,94,99,92,94,95,90,89,88,109,103,98,110,103,117,162,105,82", ++ "endOffsets": "219,329,436,522,626,746,825,901,992,1085,1181,1276,1376,1469,1564,1660,1751,1841,1930,2040,2144,2243,2354,2458,2576,2739,2845,2928" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,396,506,613,699,803,923,1002,1078,1169,1262,1358,1453,1553,1646,1741,1837,1928,2018,2107,2217,2321,2420,2531,2635,2753,2916,7238", ++ "endColumns": "118,109,106,85,103,119,78,75,90,92,95,94,99,92,94,95,90,89,88,109,103,98,110,103,117,162,105,82", ++ "endOffsets": "391,501,608,694,798,918,997,1073,1164,1257,1353,1448,1548,1641,1736,1832,1923,2013,2102,2212,2316,2415,2526,2630,2748,2911,3017,7316" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pa.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pa.json +new file mode 100644 +index 0000000..ea20f31 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pa.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-pa/values-pa.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7223", ++ "endColumns": "100", ++ "endOffsets": "7319" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,218,299,407,519,602,666,758,827,886,971,1033,1091,1155,1216,1270,1384,1442,1502,1556,1626,1753,1834,1913,2018,2094,2171,2255,2322,2388,2457,2534,2620,2688,2764,2834,2899,2994,3067,3161,3254,3328,3397,3491,3547,3614,3698,3786,3848,3912,3975,4072,4167,4258,4354", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,107,111,82,63,91,68,58,84,61,57,63,60,53,113,57,59,53,69,126,80,78,104,75,76,83,66,65,68,76,85,67,75,69,64,94,72,93,92,73,68,93,55,66,83,87,61,63,62,96,94,90,95,76", ++ "endOffsets": "213,294,402,514,597,661,753,822,881,966,1028,1086,1150,1211,1265,1379,1437,1497,1551,1621,1748,1829,1908,2013,2089,2166,2250,2317,2383,2452,2529,2615,2683,2759,2829,2894,2989,3062,3156,3249,3323,3392,3486,3542,3609,3693,3781,3843,3907,3970,4067,4162,4253,4349,4426" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2930,3011,3119,3231,3314,3378,3470,3539,3598,3683,3745,3803,3867,3928,3982,4096,4154,4214,4268,4338,4465,4546,4625,4730,4806,4883,4967,5034,5100,5169,5246,5332,5400,5476,5546,5611,5706,5779,5873,5966,6040,6109,6203,6259,6326,6410,6498,6560,6624,6687,6784,6879,6970,7066", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,107,111,82,63,91,68,58,84,61,57,63,60,53,113,57,59,53,69,126,80,78,104,75,76,83,66,65,68,76,85,67,75,69,64,94,72,93,92,73,68,93,55,66,83,87,61,63,62,96,94,90,95,76", ++ "endOffsets": "263,3006,3114,3226,3309,3373,3465,3534,3593,3678,3740,3798,3862,3923,3977,4091,4149,4209,4263,4333,4460,4541,4620,4725,4801,4878,4962,5029,5095,5164,5241,5327,5395,5471,5541,5606,5701,5774,5868,5961,6035,6104,6198,6254,6321,6405,6493,6555,6619,6682,6779,6874,6965,7061,7138" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,2767", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,2842" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "268,371,468,573,659,759,872,950,1027,1118,1211,1305,1399,1499,1592,1687,1781,1872,1963,2042,2152,2255,2351,2462,2564,2674,2833,7143", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "366,463,568,654,754,867,945,1022,1113,1206,1300,1394,1494,1587,1682,1776,1867,1958,2037,2147,2250,2346,2457,2559,2669,2828,2925,7218" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pl.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pl.json +new file mode 100644 +index 0000000..80ccd06 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pl.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-pl/values-pl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,2817", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,2895" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "391,506,608,716,802,909,1028,1107,1183,1274,1367,1462,1556,1657,1750,1845,1940,2031,2122,2204,2313,2413,2512,2621,2733,2844,3007,7408", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "501,603,711,797,904,1023,1102,1178,1269,1362,1457,1551,1652,1745,1840,1935,2026,2117,2199,2308,2408,2507,2616,2728,2839,3002,3098,7486" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,341,420,505,622,704,768,849,913,974,1085,1153,1207,1276,1338,1392,1503,1564,1626,1680,1752,1881,1970,2052,2171,2253,2336,2423,2490,2556,2627,2703,2792,2869,2947,3025,3101,3191,3264,3359,3456,3528,3602,3702,3754,3820,3908,3998,4060,4124,4187,4294,4383,4482,4570", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,78,84,116,81,63,80,63,60,110,67,53,68,61,53,110,60,61,53,71,128,88,81,118,81,82,86,66,65,70,75,88,76,77,77,75,89,72,94,96,71,73,99,51,65,87,89,61,63,62,106,88,98,87,75", ++ "endOffsets": "336,415,500,617,699,763,844,908,969,1080,1148,1202,1271,1333,1387,1498,1559,1621,1675,1747,1876,1965,2047,2166,2248,2331,2418,2485,2551,2622,2698,2787,2864,2942,3020,3096,3186,3259,3354,3451,3523,3597,3697,3749,3815,3903,3993,4055,4119,4182,4289,4378,4477,4565,4641" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3182,3267,3384,3466,3530,3611,3675,3736,3847,3915,3969,4038,4100,4154,4265,4326,4388,4442,4514,4643,4732,4814,4933,5015,5098,5185,5252,5318,5389,5465,5554,5631,5709,5787,5863,5953,6026,6121,6218,6290,6364,6464,6516,6582,6670,6760,6822,6886,6949,7056,7145,7244,7332", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,78,84,116,81,63,80,63,60,110,67,53,68,61,53,110,60,61,53,71,128,88,81,118,81,82,86,66,65,70,75,88,76,77,77,75,89,72,94,96,71,73,99,51,65,87,89,61,63,62,106,88,98,87,75", ++ "endOffsets": "386,3177,3262,3379,3461,3525,3606,3670,3731,3842,3910,3964,4033,4095,4149,4260,4321,4383,4437,4509,4638,4727,4809,4928,5010,5093,5180,5247,5313,5384,5460,5549,5626,5704,5782,5858,5948,6021,6116,6213,6285,6359,6459,6511,6577,6665,6755,6817,6881,6944,7051,7140,7239,7327,7403" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7491", ++ "endColumns": "100", ++ "endOffsets": "7587" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-port.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-port.json +new file mode 100644 +index 0000000..4806f68 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-port.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-port/values-port.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-port/values-port.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "55", ++ "endOffsets": "106" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pt-rBR.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pt-rBR.json +new file mode 100644 +index 0000000..8ae00b1 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pt-rBR.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-pt-rBR/values-pt-rBR.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,398,504,611,700,801,920,1005,1085,1176,1269,1364,1458,1558,1651,1746,1841,1932,2023,2108,2215,2326,2428,2536,2644,2754,2916,7436", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "393,499,606,695,796,915,1000,1080,1171,1264,1359,1453,1553,1646,1741,1836,1927,2018,2103,2210,2321,2423,2531,2639,2749,2911,3011,7517" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7522", ++ "endColumns": "100", ++ "endOffsets": "7618" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,312,413,533,614,678,770,849,909,999,1070,1133,1208,1272,1326,1453,1511,1573,1627,1706,1847,1934,2016,2125,2208,2292,2379,2446,2512,2586,2666,2753,2826,2903,2972,3046,3134,3211,3304,3400,3474,3554,3651,3703,3769,3856,3944,4006,4070,4133,4245,4354,4461,4571", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,100,119,80,63,91,78,59,89,70,62,74,63,53,126,57,61,53,78,140,86,81,108,82,83,86,66,65,73,79,86,72,76,68,73,87,76,92,95,73,79,96,51,65,86,87,61,63,62,111,108,106,109,76", ++ "endOffsets": "223,307,408,528,609,673,765,844,904,994,1065,1128,1203,1267,1321,1448,1506,1568,1622,1701,1842,1929,2011,2120,2203,2287,2374,2441,2507,2581,2661,2748,2821,2898,2967,3041,3129,3206,3299,3395,3469,3549,3646,3698,3764,3851,3939,4001,4065,4128,4240,4349,4456,4566,4643" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3016,3100,3201,3321,3402,3466,3558,3637,3697,3787,3858,3921,3996,4060,4114,4241,4299,4361,4415,4494,4635,4722,4804,4913,4996,5080,5167,5234,5300,5374,5454,5541,5614,5691,5760,5834,5922,5999,6092,6188,6262,6342,6439,6491,6557,6644,6732,6794,6858,6921,7033,7142,7249,7359", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,100,119,80,63,91,78,59,89,70,62,74,63,53,126,57,61,53,78,140,86,81,108,82,83,86,66,65,73,79,86,72,76,68,73,87,76,92,95,73,79,96,51,65,86,87,61,63,62,111,108,106,109,76", ++ "endOffsets": "273,3095,3196,3316,3397,3461,3553,3632,3692,3782,3853,3916,3991,4055,4109,4236,4294,4356,4410,4489,4630,4717,4799,4908,4991,5075,5162,5229,5295,5369,5449,5536,5609,5686,5755,5829,5917,5994,6087,6183,6257,6337,6434,6486,6552,6639,6727,6789,6853,6916,7028,7137,7244,7354,7431" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pt-rPT.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pt-rPT.json +new file mode 100644 +index 0000000..f236ac6 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pt-rPT.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-pt-rPT/values-pt-rPT.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,310,413,533,614,678,770,849,914,1004,1072,1134,1207,1271,1325,1451,1509,1571,1625,1701,1844,1931,2013,2122,2204,2286,2373,2440,2506,2581,2661,2748,2821,2898,2971,3045,3138,3215,3308,3406,3480,3561,3660,3713,3779,3868,3956,4018,4082,4145,4261,4364,4471,4575", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,81,102,119,80,63,91,78,64,89,67,61,72,63,53,125,57,61,53,75,142,86,81,108,81,81,86,66,65,74,79,86,72,76,72,73,92,76,92,97,73,80,98,52,65,88,87,61,63,62,115,102,106,103,85", ++ "endOffsets": "223,305,408,528,609,673,765,844,909,999,1067,1129,1202,1266,1320,1446,1504,1566,1620,1696,1839,1926,2008,2117,2199,2281,2368,2435,2501,2576,2656,2743,2816,2893,2966,3040,3133,3210,3303,3401,3475,3556,3655,3708,3774,3863,3951,4013,4077,4140,4256,4359,4466,4570,4656" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3009,3091,3194,3314,3395,3459,3551,3630,3695,3785,3853,3915,3988,4052,4106,4232,4290,4352,4406,4482,4625,4712,4794,4903,4985,5067,5154,5221,5287,5362,5442,5529,5602,5679,5752,5826,5919,5996,6089,6187,6261,6342,6441,6494,6560,6649,6737,6799,6863,6926,7042,7145,7252,7356", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,81,102,119,80,63,91,78,64,89,67,61,72,63,53,125,57,61,53,75,142,86,81,108,81,81,86,66,65,74,79,86,72,76,72,73,92,76,92,97,73,80,98,52,65,88,87,61,63,62,115,102,106,103,85", ++ "endOffsets": "273,3086,3189,3309,3390,3454,3546,3625,3690,3780,3848,3910,3983,4047,4101,4227,4285,4347,4401,4477,4620,4707,4789,4898,4980,5062,5149,5216,5282,5357,5437,5524,5597,5674,5747,5821,5914,5991,6084,6182,6256,6337,6436,6489,6555,6644,6732,6794,6858,6921,7037,7140,7247,7351,7437" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,2836", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,2917" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "278,386,492,599,688,789,907,992,1072,1164,1258,1355,1449,1548,1642,1738,1833,1925,2017,2102,2209,2320,2422,2530,2638,2745,2910,7442", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "381,487,594,683,784,902,987,1067,1159,1253,1350,1444,1543,1637,1733,1828,1920,2012,2097,2204,2315,2417,2525,2633,2740,2905,3004,7523" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7528", ++ "endColumns": "100", ++ "endOffsets": "7624" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pt.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pt.json +new file mode 100644 +index 0000000..9f52057 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-pt.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-pt/values-pt.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2929", ++ "endColumns": "100", ++ "endOffsets": "3025" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ro.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ro.json +new file mode 100644 +index 0000000..99a96d2 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ro.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ro/values-ro.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,276,363,464,585,669,735,830,904,964,1048,1114,1172,1245,1308,1364,1483,1540,1601,1657,1731,1876,1962,2046,2149,2231,2314,2404,2471,2537,2610,2688,2776,2847,2924,2998,3070,3161,3235,3330,3428,3502,3582,3683,3736,3802,3891,3981,4043,4107,4170,4282,4395,4505,4617", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,86,100,120,83,65,94,73,59,83,65,57,72,62,55,118,56,60,55,73,144,85,83,102,81,82,89,66,65,72,77,87,70,76,73,71,90,73,94,97,73,79,100,52,65,88,89,61,63,62,111,112,109,111,78", ++ "endOffsets": "271,358,459,580,664,730,825,899,959,1043,1109,1167,1240,1303,1359,1478,1535,1596,1652,1726,1871,1957,2041,2144,2226,2309,2399,2466,2532,2605,2683,2771,2842,2919,2993,3065,3156,3230,3325,3423,3497,3577,3678,3731,3797,3886,3976,4038,4102,4165,4277,4390,4500,4612,4691" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3072,3159,3260,3381,3465,3531,3626,3700,3760,3844,3910,3968,4041,4104,4160,4279,4336,4397,4453,4527,4672,4758,4842,4945,5027,5110,5200,5267,5333,5406,5484,5572,5643,5720,5794,5866,5957,6031,6126,6224,6298,6378,6479,6532,6598,6687,6777,6839,6903,6966,7078,7191,7301,7413", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,86,100,120,83,65,94,73,59,83,65,57,72,62,55,118,56,60,55,73,144,85,83,102,81,82,89,66,65,72,77,87,70,76,73,71,90,73,94,97,73,79,100,52,65,88,89,61,63,62,111,112,109,111,78", ++ "endOffsets": "321,3154,3255,3376,3460,3526,3621,3695,3755,3839,3905,3963,4036,4099,4155,4274,4331,4392,4448,4522,4667,4753,4837,4940,5022,5105,5195,5262,5328,5401,5479,5567,5638,5715,5789,5861,5952,6026,6121,6219,6293,6373,6474,6527,6593,6682,6772,6834,6898,6961,7073,7186,7296,7408,7487" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,2851", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,2930" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "326,447,551,664,748,852,973,1058,1138,1229,1322,1417,1511,1611,1704,1799,1893,1984,2076,2159,2271,2379,2479,2593,2699,2805,2969,7492", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "442,546,659,743,847,968,1053,1133,1224,1317,1412,1506,1606,1699,1794,1888,1979,2071,2154,2266,2374,2474,2588,2694,2800,2964,3067,7571" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7576", ++ "endColumns": "100", ++ "endOffsets": "7672" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ru.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ru.json +new file mode 100644 +index 0000000..a931cb3 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ru.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ru/values-ru.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,2822", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,2899" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "386,501,603,702,788,893,1014,1093,1169,1261,1355,1450,1543,1638,1732,1828,1923,2015,2107,2196,2302,2409,2507,2616,2723,2837,3003,7515", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "496,598,697,783,888,1009,1088,1164,1256,1350,1445,1538,1633,1727,1823,1918,2010,2102,2191,2297,2404,2502,2611,2718,2832,2998,3098,7592" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7597", ++ "endColumns": "100", ++ "endOffsets": "7693" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,336,420,517,654,746,812,911,988,1051,1169,1234,1291,1361,1422,1476,1592,1649,1711,1765,1839,1967,2055,2141,2248,2332,2417,2508,2575,2641,2713,2791,2887,2967,3043,3120,3197,3286,3359,3449,3544,3618,3699,3792,3847,3913,3999,4084,4146,4210,4273,4371,4471,4566,4668", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,83,96,136,91,65,98,76,62,117,64,56,69,60,53,115,56,61,53,73,127,87,85,106,83,84,90,66,65,71,77,95,79,75,76,76,88,72,89,94,73,80,92,54,65,85,84,61,63,62,97,99,94,101,79", ++ "endOffsets": "331,415,512,649,741,807,906,983,1046,1164,1229,1286,1356,1417,1471,1587,1644,1706,1760,1834,1962,2050,2136,2243,2327,2412,2503,2570,2636,2708,2786,2882,2962,3038,3115,3192,3281,3354,3444,3539,3613,3694,3787,3842,3908,3994,4079,4141,4205,4268,4366,4466,4561,4663,4743" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3187,3284,3421,3513,3579,3678,3755,3818,3936,4001,4058,4128,4189,4243,4359,4416,4478,4532,4606,4734,4822,4908,5015,5099,5184,5275,5342,5408,5480,5558,5654,5734,5810,5887,5964,6053,6126,6216,6311,6385,6466,6559,6614,6680,6766,6851,6913,6977,7040,7138,7238,7333,7435", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,96,136,91,65,98,76,62,117,64,56,69,60,53,115,56,61,53,73,127,87,85,106,83,84,90,66,65,71,77,95,79,75,76,76,88,72,89,94,73,80,92,54,65,85,84,61,63,62,97,99,94,101,79", ++ "endOffsets": "381,3182,3279,3416,3508,3574,3673,3750,3813,3931,3996,4053,4123,4184,4238,4354,4411,4473,4527,4601,4729,4817,4903,5010,5094,5179,5270,5337,5403,5475,5553,5649,5729,5805,5882,5959,6048,6121,6211,6306,6380,6461,6554,6609,6675,6761,6846,6908,6972,7035,7133,7233,7328,7430,7510" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-si.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-si.json +new file mode 100644 +index 0000000..596dbda +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-si.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-si/values-si.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7331", ++ "endColumns": "100", ++ "endOffsets": "7427" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,224,302,404,519,602,666,755,822,882,976,1039,1095,1165,1232,1287,1406,1463,1527,1581,1654,1776,1859,1944,2046,2124,2204,2290,2357,2423,2493,2566,2648,2720,2797,2869,2939,3032,3105,3195,3288,3362,3434,3525,3579,3645,3729,3814,3876,3940,4003,4108,4208,4303,4403", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,101,114,82,63,88,66,59,93,62,55,69,66,54,118,56,63,53,72,121,82,84,101,77,79,85,66,65,69,72,81,71,76,71,69,92,72,89,92,73,71,90,53,65,83,84,61,63,62,104,99,94,99,79", ++ "endOffsets": "219,297,399,514,597,661,750,817,877,971,1034,1090,1160,1227,1282,1401,1458,1522,1576,1649,1771,1854,1939,2041,2119,2199,2285,2352,2418,2488,2561,2643,2715,2792,2864,2934,3027,3100,3190,3283,3357,3429,3520,3574,3640,3724,3809,3871,3935,3998,4103,4203,4298,4398,4478" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2990,3068,3170,3285,3368,3432,3521,3588,3648,3742,3805,3861,3931,3998,4053,4172,4229,4293,4347,4420,4542,4625,4710,4812,4890,4970,5056,5123,5189,5259,5332,5414,5486,5563,5635,5705,5798,5871,5961,6054,6128,6200,6291,6345,6411,6495,6580,6642,6706,6769,6874,6974,7069,7169", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,101,114,82,63,88,66,59,93,62,55,69,66,54,118,56,63,53,72,121,82,84,101,77,79,85,66,65,69,72,81,71,76,71,69,92,72,89,92,73,71,90,53,65,83,84,61,63,62,104,99,94,99,79", ++ "endOffsets": "269,3063,3165,3280,3363,3427,3516,3583,3643,3737,3800,3856,3926,3993,4048,4167,4224,4288,4342,4415,4537,4620,4705,4807,4885,4965,5051,5118,5184,5254,5327,5409,5481,5558,5630,5700,5793,5866,5956,6049,6123,6195,6286,6340,6406,6490,6575,6637,6701,6764,6869,6969,7064,7164,7244" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,2821", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,2898" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "274,390,497,604,687,792,908,998,1084,1175,1268,1362,1456,1556,1649,1744,1838,1929,2020,2104,2213,2317,2415,2525,2625,2732,2891,7249", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "385,492,599,682,787,903,993,1079,1170,1263,1357,1451,1551,1644,1739,1833,1924,2015,2099,2208,2312,2410,2520,2620,2727,2886,2985,7326" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sk.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sk.json +new file mode 100644 +index 0000000..533c5fc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sk.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-sk/values-sk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,2817", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,2895" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "383,490,591,702,788,896,1014,1093,1170,1261,1354,1452,1546,1646,1739,1834,1932,2023,2114,2198,2303,2411,2510,2616,2728,2831,2997,7399", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "485,586,697,783,891,1009,1088,1165,1256,1349,1447,1541,1641,1734,1829,1927,2018,2109,2193,2298,2406,2505,2611,2723,2826,2992,3090,7477" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,333,411,503,631,712,777,876,952,1017,1107,1173,1227,1296,1356,1410,1527,1587,1649,1703,1775,1905,1992,2084,2193,2262,2340,2428,2495,2561,2633,2710,2793,2865,2942,3015,3086,3174,3246,3338,3434,3508,3582,3678,3730,3797,3884,3971,4033,4097,4160,4266,4362,4460,4558", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,77,91,127,80,64,98,75,64,89,65,53,68,59,53,116,59,61,53,71,129,86,91,108,68,77,87,66,65,71,76,82,71,76,72,70,87,71,91,95,73,73,95,51,66,86,86,61,63,62,105,95,97,97,78", ++ "endOffsets": "328,406,498,626,707,772,871,947,1012,1102,1168,1222,1291,1351,1405,1522,1582,1644,1698,1770,1900,1987,2079,2188,2257,2335,2423,2490,2556,2628,2705,2788,2860,2937,3010,3081,3169,3241,3333,3429,3503,3577,3673,3725,3792,3879,3966,4028,4092,4155,4261,4357,4455,4553,4632" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3095,3173,3265,3393,3474,3539,3638,3714,3779,3869,3935,3989,4058,4118,4172,4289,4349,4411,4465,4537,4667,4754,4846,4955,5024,5102,5190,5257,5323,5395,5472,5555,5627,5704,5777,5848,5936,6008,6100,6196,6270,6344,6440,6492,6559,6646,6733,6795,6859,6922,7028,7124,7222,7320", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,91,127,80,64,98,75,64,89,65,53,68,59,53,116,59,61,53,71,129,86,91,108,68,77,87,66,65,71,76,82,71,76,72,70,87,71,91,95,73,73,95,51,66,86,86,61,63,62,105,95,97,97,78", ++ "endOffsets": "378,3168,3260,3388,3469,3534,3633,3709,3774,3864,3930,3984,4053,4113,4167,4284,4344,4406,4460,4532,4662,4749,4841,4950,5019,5097,5185,5252,5318,5390,5467,5550,5622,5699,5772,5843,5931,6003,6095,6191,6265,6339,6435,6487,6554,6641,6728,6790,6854,6917,7023,7119,7217,7315,7394" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7482", ++ "endColumns": "100", ++ "endOffsets": "7578" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sl.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sl.json +new file mode 100644 +index 0000000..96af7bf +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sl.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-sl/values-sl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2568,2751,2851", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,107,182,99,83", ++ "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2563,2746,2846,2930" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "372,484,586,694,781,884,1003,1084,1162,1254,1348,1443,1537,1632,1726,1822,1922,2014,2106,2190,2298,2406,2506,2619,2727,2835,3018,7466", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,107,182,99,83", ++ "endOffsets": "479,581,689,776,879,998,1079,1157,1249,1343,1438,1532,1627,1721,1817,1917,2009,2101,2185,2293,2401,2501,2614,2722,2830,3013,3113,7545" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,322,410,516,642,726,792,886,962,1025,1137,1202,1256,1326,1386,1442,1554,1611,1673,1729,1802,1936,2021,2106,2219,2303,2386,2475,2542,2608,2681,2758,2842,2916,2992,3067,3140,3228,3301,3391,3482,3554,3628,3719,3771,3838,3922,4009,4071,4135,4198,4301,4398,4496,4593", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,87,105,125,83,65,93,75,62,111,64,53,69,59,55,111,56,61,55,72,133,84,84,112,83,82,88,66,65,72,76,83,73,75,74,72,87,72,89,90,71,73,90,51,66,83,86,61,63,62,102,96,97,96,76", ++ "endOffsets": "317,405,511,637,721,787,881,957,1020,1132,1197,1251,1321,1381,1437,1549,1606,1668,1724,1797,1931,2016,2101,2214,2298,2381,2470,2537,2603,2676,2753,2837,2911,2987,3062,3135,3223,3296,3386,3477,3549,3623,3714,3766,3833,3917,4004,4066,4130,4193,4296,4393,4491,4588,4665" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3118,3206,3312,3438,3522,3588,3682,3758,3821,3933,3998,4052,4122,4182,4238,4350,4407,4469,4525,4598,4732,4817,4902,5015,5099,5182,5271,5338,5404,5477,5554,5638,5712,5788,5863,5936,6024,6097,6187,6278,6350,6424,6515,6567,6634,6718,6805,6867,6931,6994,7097,7194,7292,7389", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,105,125,83,65,93,75,62,111,64,53,69,59,55,111,56,61,55,72,133,84,84,112,83,82,88,66,65,72,76,83,73,75,74,72,87,72,89,90,71,73,90,51,66,83,86,61,63,62,102,96,97,96,76", ++ "endOffsets": "367,3201,3307,3433,3517,3583,3677,3753,3816,3928,3993,4047,4117,4177,4233,4345,4402,4464,4520,4593,4727,4812,4897,5010,5094,5177,5266,5333,5399,5472,5549,5633,5707,5783,5858,5931,6019,6092,6182,6273,6345,6419,6510,6562,6629,6713,6800,6862,6926,6989,7092,7189,7287,7384,7461" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7550", ++ "endColumns": "100", ++ "endOffsets": "7646" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-small-v4.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-small-v4.json +new file mode 100644 +index 0000000..52b2231 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-small-v4.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-small-v4/values-small-v4.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-small-v4/values-small-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,128,198,270", ++ "endColumns": "72,69,71,69", ++ "endOffsets": "123,193,265,335" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sq.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sq.json +new file mode 100644 +index 0000000..00da443 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sq.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-sq/values-sq.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7455", ++ "endColumns": "100", ++ "endOffsets": "7551" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,2801", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,2878" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "272,386,486,598,684,790,913,995,1073,1164,1257,1352,1446,1547,1640,1735,1832,1923,2016,2097,2203,2307,2405,2511,2615,2717,2871,7373", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "381,481,593,679,785,908,990,1068,1159,1252,1347,1441,1542,1635,1730,1827,1918,2011,2092,2198,2302,2400,2506,2610,2712,2866,2963,7450" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,222,308,409,535,618,683,783,853,912,1010,1074,1133,1205,1268,1322,1439,1496,1558,1612,1684,1819,1902,1980,2091,2175,2257,2347,2414,2480,2551,2630,2718,2794,2872,2944,3017,3106,3178,3272,3371,3445,3517,3618,3668,3734,3824,3913,3975,4039,4102,4218,4326,4435,4544", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,100,125,82,64,99,69,58,97,63,58,71,62,53,116,56,61,53,71,134,82,77,110,83,81,89,66,65,70,78,87,75,77,71,72,88,71,93,98,73,71,100,49,65,89,88,61,63,62,115,107,108,108,82", ++ "endOffsets": "217,303,404,530,613,678,778,848,907,1005,1069,1128,1200,1263,1317,1434,1491,1553,1607,1679,1814,1897,1975,2086,2170,2252,2342,2409,2475,2546,2625,2713,2789,2867,2939,3012,3101,3173,3267,3366,3440,3512,3613,3663,3729,3819,3908,3970,4034,4097,4213,4321,4430,4539,4622" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2968,3054,3155,3281,3364,3429,3529,3599,3658,3756,3820,3879,3951,4014,4068,4185,4242,4304,4358,4430,4565,4648,4726,4837,4921,5003,5093,5160,5226,5297,5376,5464,5540,5618,5690,5763,5852,5924,6018,6117,6191,6263,6364,6414,6480,6570,6659,6721,6785,6848,6964,7072,7181,7290", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,100,125,82,64,99,69,58,97,63,58,71,62,53,116,56,61,53,71,134,82,77,110,83,81,89,66,65,70,78,87,75,77,71,72,88,71,93,98,73,71,100,49,65,89,88,61,63,62,115,107,108,108,82", ++ "endOffsets": "267,3049,3150,3276,3359,3424,3524,3594,3653,3751,3815,3874,3946,4009,4063,4180,4237,4299,4353,4425,4560,4643,4721,4832,4916,4998,5088,5155,5221,5292,5371,5459,5535,5613,5685,5758,5847,5919,6013,6112,6186,6258,6359,6409,6475,6565,6654,6716,6780,6843,6959,7067,7176,7285,7368" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sr.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sr.json +new file mode 100644 +index 0000000..b19476c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sr.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-sr/values-sr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,2833", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,2915" ++ }, ++ "to": { ++ "startLines": "7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,88", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "326,433,534,640,726,830,952,1036,1117,1208,1301,1396,1490,1590,1683,1778,1883,1974,2065,2151,2256,2362,2465,2571,2680,2787,2957,7394", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "428,529,635,721,825,947,1031,1112,1203,1296,1391,1485,1585,1678,1773,1878,1969,2060,2146,2251,2357,2460,2566,2675,2782,2952,3049,7476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,276,356,450,581,662,728,820,888,951,1054,1120,1176,1247,1307,1361,1473,1530,1591,1645,1721,1846,1932,2015,2123,2204,2287,2375,2442,2508,2582,2660,2749,2824,2900,2975,3046,3136,3209,3301,3397,3469,3545,3641,3694,3761,3848,3935,3997,4061,4124,4229,4333,4429,4536", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", ++ "endColumns": "12,79,93,130,80,65,91,67,62,102,65,55,70,59,53,111,56,60,53,75,124,85,82,107,80,82,87,66,65,73,77,88,74,75,74,70,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "271,351,445,576,657,723,815,883,946,1049,1115,1171,1242,1302,1356,1468,1525,1586,1640,1716,1841,1927,2010,2118,2199,2282,2370,2437,2503,2577,2655,2744,2819,2895,2970,3041,3131,3204,3296,3392,3464,3540,3636,3689,3756,3843,3930,3992,4056,4119,4224,4328,4424,4531,4611" ++ }, ++ "to": { ++ "startLines": "2,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3054,3134,3228,3359,3440,3506,3598,3666,3729,3832,3898,3954,4025,4085,4139,4251,4308,4369,4423,4499,4624,4710,4793,4901,4982,5065,5153,5220,5286,5360,5438,5527,5602,5678,5753,5824,5914,5987,6079,6175,6247,6323,6419,6472,6539,6626,6713,6775,6839,6902,7007,7111,7207,7314", ++ "endLines": "6,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,79,93,130,80,65,91,67,62,102,65,55,70,59,53,111,56,60,53,75,124,85,82,107,80,82,87,66,65,73,77,88,74,75,74,70,89,72,91,95,71,75,95,52,66,86,86,61,63,62,104,103,95,106,79", ++ "endOffsets": "321,3129,3223,3354,3435,3501,3593,3661,3724,3827,3893,3949,4020,4080,4134,4246,4303,4364,4418,4494,4619,4705,4788,4896,4977,5060,5148,5215,5281,5355,5433,5522,5597,5673,5748,5819,5909,5982,6074,6170,6242,6318,6414,6467,6534,6621,6708,6770,6834,6897,7002,7106,7202,7309,7389" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "89", ++ "startColumns": "4", ++ "startOffsets": "7481", ++ "endColumns": "100", ++ "endOffsets": "7577" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sv.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sv.json +new file mode 100644 +index 0000000..4233948 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sv.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-sv/values-sv.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7280", ++ "endColumns": "100", ++ "endOffsets": "7376" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,221,302,400,522,601,664,756,820,880,972,1035,1097,1164,1228,1282,1387,1446,1507,1561,1630,1749,1832,1916,2022,2101,2185,2271,2338,2404,2473,2547,2636,2708,2785,2856,2930,3021,3100,3187,3275,3347,3421,3506,3557,3624,3705,3789,3851,3915,3978,4085,4192,4291,4399", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,80,97,121,78,62,91,63,59,91,62,61,66,63,53,104,58,60,53,68,118,82,83,105,78,83,85,66,65,68,73,88,71,76,70,73,90,78,86,87,71,73,84,50,66,80,83,61,63,62,106,106,98,107,77", ++ "endOffsets": "216,297,395,517,596,659,751,815,875,967,1030,1092,1159,1223,1277,1382,1441,1502,1556,1625,1744,1827,1911,2017,2096,2180,2266,2333,2399,2468,2542,2631,2703,2780,2851,2925,3016,3095,3182,3270,3342,3416,3501,3552,3619,3700,3784,3846,3910,3973,4080,4187,4286,4394,4472" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2944,3025,3123,3245,3324,3387,3479,3543,3603,3695,3758,3820,3887,3951,4005,4110,4169,4230,4284,4353,4472,4555,4639,4745,4824,4908,4994,5061,5127,5196,5270,5359,5431,5508,5579,5653,5744,5823,5910,5998,6070,6144,6229,6280,6347,6428,6512,6574,6638,6701,6808,6915,7014,7122", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,80,97,121,78,62,91,63,59,91,62,61,66,63,53,104,58,60,53,68,118,82,83,105,78,83,85,66,65,68,73,88,71,76,70,73,90,78,86,87,71,73,84,50,66,80,83,61,63,62,106,106,98,107,77", ++ "endOffsets": "266,3020,3118,3240,3319,3382,3474,3538,3598,3690,3753,3815,3882,3946,4000,4105,4164,4225,4279,4348,4467,4550,4634,4740,4819,4903,4989,5056,5122,5191,5265,5354,5426,5503,5574,5648,5739,5818,5905,5993,6065,6139,6224,6275,6342,6423,6507,6569,6633,6696,6803,6910,7009,7117,7195" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,2778", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,2853" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "271,374,477,588,672,774,887,964,1039,1132,1227,1322,1416,1518,1613,1710,1808,1904,1997,2077,2183,2282,2378,2483,2586,2688,2842,7200", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "369,472,583,667,769,882,959,1034,1127,1222,1317,1411,1513,1608,1705,1803,1899,1992,2072,2178,2277,2373,2478,2581,2683,2837,2939,7275" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sw.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sw.json +new file mode 100644 +index 0000000..9f20116 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sw.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-sw/values-sw.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,287,386,515,598,666,758,831,894,980,1043,1108,1176,1239,1293,1425,1482,1544,1598,1672,1810,1891,1971,2073,2158,2245,2333,2400,2466,2538,2620,2710,2782,2857,2928,3001,3098,3172,3267,3364,3438,3523,3623,3676,3744,3832,3922,3984,4048,4111,4228,4338,4449,4561", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,72,98,128,82,67,91,72,62,85,62,64,67,62,53,131,56,61,53,73,137,80,79,101,84,86,87,66,65,71,81,89,71,74,70,72,96,73,94,96,73,84,99,52,67,87,89,61,63,62,116,109,110,111,80", ++ "endOffsets": "209,282,381,510,593,661,753,826,889,975,1038,1103,1171,1234,1288,1420,1477,1539,1593,1667,1805,1886,1966,2068,2153,2240,2328,2395,2461,2533,2615,2705,2777,2852,2923,2996,3093,3167,3262,3359,3433,3518,3618,3671,3739,3827,3917,3979,4043,4106,4223,4333,4444,4556,4637" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2960,3033,3132,3261,3344,3412,3504,3577,3640,3726,3789,3854,3922,3985,4039,4171,4228,4290,4344,4418,4556,4637,4717,4819,4904,4991,5079,5146,5212,5284,5366,5456,5528,5603,5674,5747,5844,5918,6013,6110,6184,6269,6369,6422,6490,6578,6668,6730,6794,6857,6974,7084,7195,7307", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,72,98,128,82,67,91,72,62,85,62,64,67,62,53,131,56,61,53,73,137,80,79,101,84,86,87,66,65,71,81,89,71,74,70,72,96,73,94,96,73,84,99,52,67,87,89,61,63,62,116,109,110,111,80", ++ "endOffsets": "259,3028,3127,3256,3339,3407,3499,3572,3635,3721,3784,3849,3917,3980,4034,4166,4223,4285,4339,4413,4551,4632,4712,4814,4899,4986,5074,5141,5207,5279,5361,5451,5523,5598,5669,5742,5839,5913,6008,6105,6179,6264,6364,6417,6485,6573,6663,6725,6789,6852,6969,7079,7190,7302,7383" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7471", ++ "endColumns": "100", ++ "endOffsets": "7567" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,2801", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,2879" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,367,466,574,664,769,886,969,1051,1142,1235,1330,1424,1524,1617,1712,1806,1897,1988,2070,2171,2279,2378,2485,2597,2701,2863,7388", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "362,461,569,659,764,881,964,1046,1137,1230,1325,1419,1519,1612,1707,1801,1892,1983,2065,2166,2274,2373,2480,2592,2696,2858,2955,7466" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sw600dp-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sw600dp-v13.json +new file mode 100644 +index 0000000..05065eb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-sw600dp-v13.json +@@ -0,0 +1,38 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,10,11,12,13,14", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,115,185,256,328,386,444,553,617,673,732,795", ++ "endLines": "2,3,4,5,6,7,9,10,11,12,13,17", ++ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10", ++ "endOffsets": "110,180,251,323,381,439,548,612,668,727,790,962" ++ }, ++ "to": { ++ "startLines": "10,11,12,13,14,15,16,18,19,20,21,22", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1229,1288,1351", ++ "endLines": "10,11,12,13,14,15,17,18,19,20,21,25", ++ "endColumns": "59,69,70,71,57,57,10,63,55,58,62,10", ++ "endOffsets": "666,736,807,879,937,995,1104,1168,1224,1283,1346,1518" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,193,263,337,413,472,543", ++ "endColumns": "68,68,69,73,75,58,70,67", ++ "endOffsets": "119,188,258,332,408,467,538,606" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ta.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ta.json +new file mode 100644 +index 0000000..df1990d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ta.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ta/values-ta.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,227,311,420,538,622,686,794,862,923,1031,1117,1175,1259,1326,1380,1503,1565,1628,1682,1770,1898,1984,2066,2168,2248,2329,2418,2485,2551,2636,2724,2816,2885,2962,3042,3110,3209,3292,3384,3478,3552,3638,3732,3782,3848,3933,4020,4083,4148,4211,4319,4422,4520,4625", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,83,108,117,83,63,107,67,60,107,85,57,83,66,53,122,61,62,53,87,127,85,81,101,79,80,88,66,65,84,87,91,68,76,79,67,98,82,91,93,73,85,93,49,65,84,86,62,64,62,107,102,97,104,85", ++ "endOffsets": "222,306,415,533,617,681,789,857,918,1026,1112,1170,1254,1321,1375,1498,1560,1623,1677,1765,1893,1979,2061,2163,2243,2324,2413,2480,2546,2631,2719,2811,2880,2957,3037,3105,3204,3287,3379,3473,3547,3633,3727,3777,3843,3928,4015,4078,4143,4206,4314,4417,4515,4620,4706" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3043,3127,3236,3354,3438,3502,3610,3678,3739,3847,3933,3991,4075,4142,4196,4319,4381,4444,4498,4586,4714,4800,4882,4984,5064,5145,5234,5301,5367,5452,5540,5632,5701,5778,5858,5926,6025,6108,6200,6294,6368,6454,6548,6598,6664,6749,6836,6899,6964,7027,7135,7238,7336,7441", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,83,108,117,83,63,107,67,60,107,85,57,83,66,53,122,61,62,53,87,127,85,81,101,79,80,88,66,65,84,87,91,68,76,79,67,98,82,91,93,73,85,93,49,65,84,86,62,64,62,107,102,97,104,85", ++ "endOffsets": "272,3122,3231,3349,3433,3497,3605,3673,3734,3842,3928,3986,4070,4137,4191,4314,4376,4439,4493,4581,4709,4795,4877,4979,5059,5140,5229,5296,5362,5447,5535,5627,5696,5773,5853,5921,6020,6103,6195,6289,6363,6449,6543,6593,6659,6744,6831,6894,6959,7022,7130,7233,7331,7436,7522" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,2871", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,2948" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "277,390,492,607,696,807,928,1007,1083,1181,1281,1376,1470,1577,1677,1779,1873,1971,2069,2150,2258,2361,2460,2576,2679,2784,2941,7527", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "385,487,602,691,802,923,1002,1078,1176,1276,1371,1465,1572,1672,1774,1868,1966,2064,2145,2253,2356,2455,2571,2674,2779,2936,3038,7604" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7609", ++ "endColumns": "100", ++ "endOffsets": "7705" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-te.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-te.json +new file mode 100644 +index 0000000..4d0019c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-te.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-te/values-te.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,222,334,445,535,640,759,837,913,1004,1097,1192,1286,1386,1479,1574,1669,1760,1851,1934,2048,2150,2249,2364,2467,2582,2744,2847", ++ "endColumns": "116,111,110,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,82,113,101,98,114,102,114,161,102,82", ++ "endOffsets": "217,329,440,530,635,754,832,908,999,1092,1187,1281,1381,1474,1569,1664,1755,1846,1929,2043,2145,2244,2359,2462,2577,2739,2842,2925" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "281,398,510,621,711,816,935,1013,1089,1180,1273,1368,1462,1562,1655,1750,1845,1936,2027,2110,2224,2326,2425,2540,2643,2758,2920,7460", ++ "endColumns": "116,111,110,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,82,113,101,98,114,102,114,161,102,82", ++ "endOffsets": "393,505,616,706,811,930,1008,1084,1175,1268,1363,1457,1557,1650,1745,1840,1931,2022,2105,2219,2321,2420,2535,2638,2753,2915,3018,7538" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,231,317,421,537,626,692,786,853,915,1008,1076,1139,1213,1278,1332,1453,1510,1572,1626,1705,1833,1921,2013,2128,2208,2290,2378,2445,2511,2586,2664,2754,2827,2903,2984,3053,3158,3235,3326,3419,3493,3570,3662,3717,3783,3867,3953,4016,4081,4145,4255,4367,4466,4585", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,103,115,88,65,93,66,61,92,67,62,73,64,53,120,56,61,53,78,127,87,91,114,79,81,87,66,65,74,77,89,72,75,80,68,104,76,90,92,73,76,91,54,65,83,85,62,64,63,109,111,98,118,82", ++ "endOffsets": "226,312,416,532,621,687,781,848,910,1003,1071,1134,1208,1273,1327,1448,1505,1567,1621,1700,1828,1916,2008,2123,2203,2285,2373,2440,2506,2581,2659,2749,2822,2898,2979,3048,3153,3230,3321,3414,3488,3565,3657,3712,3778,3862,3948,4011,4076,4140,4250,4362,4461,4580,4663" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3023,3109,3213,3329,3418,3484,3578,3645,3707,3800,3868,3931,4005,4070,4124,4245,4302,4364,4418,4497,4625,4713,4805,4920,5000,5082,5170,5237,5303,5378,5456,5546,5619,5695,5776,5845,5950,6027,6118,6211,6285,6362,6454,6509,6575,6659,6745,6808,6873,6937,7047,7159,7258,7377", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,103,115,88,65,93,66,61,92,67,62,73,64,53,120,56,61,53,78,127,87,91,114,79,81,87,66,65,74,77,89,72,75,80,68,104,76,90,92,73,76,91,54,65,83,85,62,64,63,109,111,98,118,82", ++ "endOffsets": "276,3104,3208,3324,3413,3479,3573,3640,3702,3795,3863,3926,4000,4065,4119,4240,4297,4359,4413,4492,4620,4708,4800,4915,4995,5077,5165,5232,5298,5373,5451,5541,5614,5690,5771,5840,5945,6022,6113,6206,6280,6357,6449,6504,6570,6654,6740,6803,6868,6932,7042,7154,7253,7372,7455" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7543", ++ "endColumns": "100", ++ "endOffsets": "7639" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-th.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-th.json +new file mode 100644 +index 0000000..bef913d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-th.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-th/values-th.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7241", ++ "endColumns": "100", ++ "endOffsets": "7337" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,240,323,422,535,615,685,775,845,905,992,1057,1118,1182,1243,1297,1398,1459,1519,1573,1643,1754,1841,1922,2035,2114,2196,2288,2355,2421,2491,2569,2655,2727,2805,2874,2943,3025,3113,3206,3300,3374,3443,3538,3590,3658,3743,3831,3893,3957,4020,4120,4213,4310,4403", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,98,112,79,69,89,69,59,86,64,60,63,60,53,100,60,59,53,69,110,86,80,112,78,81,91,66,65,69,77,85,71,77,68,68,81,87,92,93,73,68,94,51,67,84,87,61,63,62,99,92,96,92,76", ++ "endOffsets": "235,318,417,530,610,680,770,840,900,987,1052,1113,1177,1238,1292,1393,1454,1514,1568,1638,1749,1836,1917,2030,2109,2191,2283,2350,2416,2486,2564,2650,2722,2800,2869,2938,3020,3108,3201,3295,3369,3438,3533,3585,3653,3738,3826,3888,3952,4015,4115,4208,4305,4398,4475" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2919,3002,3101,3214,3294,3364,3454,3524,3584,3671,3736,3797,3861,3922,3976,4077,4138,4198,4252,4322,4433,4520,4601,4714,4793,4875,4967,5034,5100,5170,5248,5334,5406,5484,5553,5622,5704,5792,5885,5979,6053,6122,6217,6269,6337,6422,6510,6572,6636,6699,6799,6892,6989,7082", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,98,112,79,69,89,69,59,86,64,60,63,60,53,100,60,59,53,69,110,86,80,112,78,81,91,66,65,69,77,85,71,77,68,68,81,87,92,93,73,68,94,51,67,84,87,61,63,62,99,92,96,92,76", ++ "endOffsets": "285,2997,3096,3209,3289,3359,3449,3519,3579,3666,3731,3792,3856,3917,3971,4072,4133,4193,4247,4317,4428,4515,4596,4709,4788,4870,4962,5029,5095,5165,5243,5329,5401,5479,5548,5617,5699,5787,5880,5974,6048,6117,6212,6264,6332,6417,6505,6567,6631,6694,6794,6887,6984,7077,7154" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,2734", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,2811" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "290,395,488,596,681,783,893,971,1048,1139,1232,1323,1417,1517,1610,1705,1799,1890,1981,2062,2165,2263,2361,2464,2570,2671,2824,7159", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "390,483,591,676,778,888,966,1043,1134,1227,1318,1412,1512,1605,1700,1794,1885,1976,2057,2160,2258,2356,2459,2565,2666,2819,2914,7236" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-tl.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-tl.json +new file mode 100644 +index 0000000..37afa41 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-tl.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-tl/values-tl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,235,321,426,562,647,712,811,879,938,1027,1094,1157,1232,1300,1354,1474,1532,1594,1648,1723,1865,1955,2040,2155,2239,2322,2418,2485,2551,2625,2703,2794,2868,2947,3020,3092,3196,3269,3368,3468,3542,3617,3724,3776,3843,3934,4028,4090,4154,4217,4336,4438,4547,4650", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,85,104,135,84,64,98,67,58,88,66,62,74,67,53,119,57,61,53,74,141,89,84,114,83,82,95,66,65,73,77,90,73,78,72,71,103,72,98,99,73,74,106,51,66,90,93,61,63,62,118,101,108,102,84", ++ "endOffsets": "230,316,421,557,642,707,806,874,933,1022,1089,1152,1227,1295,1349,1469,1527,1589,1643,1718,1860,1950,2035,2150,2234,2317,2413,2480,2546,2620,2698,2789,2863,2942,3015,3087,3191,3264,3363,3463,3537,3612,3719,3771,3838,3929,4023,4085,4149,4212,4331,4433,4542,4645,4730" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3025,3111,3216,3352,3437,3502,3601,3669,3728,3817,3884,3947,4022,4090,4144,4264,4322,4384,4438,4513,4655,4745,4830,4945,5029,5112,5208,5275,5341,5415,5493,5584,5658,5737,5810,5882,5986,6059,6158,6258,6332,6407,6514,6566,6633,6724,6818,6880,6944,7007,7126,7228,7337,7440", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,85,104,135,84,64,98,67,58,88,66,62,74,67,53,119,57,61,53,74,141,89,84,114,83,82,95,66,65,73,77,90,73,78,72,71,103,72,98,99,73,74,106,51,66,90,93,61,63,62,118,101,108,102,84", ++ "endOffsets": "280,3106,3211,3347,3432,3497,3596,3664,3723,3812,3879,3942,4017,4085,4139,4259,4317,4379,4433,4508,4650,4740,4825,4940,5024,5107,5203,5270,5336,5410,5488,5579,5653,5732,5805,5877,5981,6054,6153,6253,6327,6402,6509,6561,6628,6719,6813,6875,6939,7002,7121,7223,7332,7435,7520" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7610", ++ "endColumns": "100", ++ "endOffsets": "7706" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,324,437,525,631,746,826,903,994,1087,1182,1276,1376,1469,1564,1658,1749,1840,1924,2033,2143,2244,2354,2472,2580,2743,2845", ++ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", ++ "endOffsets": "211,319,432,520,626,741,821,898,989,1082,1177,1271,1371,1464,1559,1653,1744,1835,1919,2028,2138,2239,2349,2467,2575,2738,2840,2925" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "285,396,504,617,705,811,926,1006,1083,1174,1267,1362,1456,1556,1649,1744,1838,1929,2020,2104,2213,2323,2424,2534,2652,2760,2923,7525", ++ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", ++ "endOffsets": "391,499,612,700,806,921,1001,1078,1169,1262,1357,1451,1551,1644,1739,1833,1924,2015,2099,2208,2318,2419,2529,2647,2755,2918,3020,7605" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-tr.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-tr.json +new file mode 100644 +index 0000000..42ab602 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-tr.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-tr/values-tr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,2797", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,2872" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,384,483,595,680,786,906,986,1061,1152,1245,1337,1431,1531,1624,1726,1821,1912,2003,2082,2189,2293,2389,2496,2599,2708,2864,7219", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "379,478,590,675,781,901,981,1056,1147,1240,1332,1426,1526,1619,1721,1816,1907,1998,2077,2184,2288,2384,2491,2594,2703,2859,2957,7294" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,297,393,505,587,651,742,819,880,971,1034,1093,1162,1225,1279,1387,1445,1507,1561,1634,1755,1839,1930,2040,2117,2193,2280,2347,2413,2483,2560,2643,2714,2789,2867,2938,3023,3112,3207,3300,3372,3444,3540,3592,3659,3743,3833,3895,3959,4022,4116,4212,4301,4398", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,95,111,81,63,90,76,60,90,62,58,68,62,53,107,57,61,53,72,120,83,90,109,76,75,86,66,65,69,76,82,70,74,77,70,84,88,94,92,71,71,95,51,66,83,89,61,63,62,93,95,88,96,78", ++ "endOffsets": "215,292,388,500,582,646,737,814,875,966,1029,1088,1157,1220,1274,1382,1440,1502,1556,1629,1750,1834,1925,2035,2112,2188,2275,2342,2408,2478,2555,2638,2709,2784,2862,2933,3018,3107,3202,3295,3367,3439,3535,3587,3654,3738,3828,3890,3954,4017,4111,4207,4296,4393,4472" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3039,3135,3247,3329,3393,3484,3561,3622,3713,3776,3835,3904,3967,4021,4129,4187,4249,4303,4376,4497,4581,4672,4782,4859,4935,5022,5089,5155,5225,5302,5385,5456,5531,5609,5680,5765,5854,5949,6042,6114,6186,6282,6334,6401,6485,6575,6637,6701,6764,6858,6954,7043,7140", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,95,111,81,63,90,76,60,90,62,58,68,62,53,107,57,61,53,72,120,83,90,109,76,75,86,66,65,69,76,82,70,74,77,70,84,88,94,92,71,71,95,51,66,83,89,61,63,62,93,95,88,96,78", ++ "endOffsets": "265,3034,3130,3242,3324,3388,3479,3556,3617,3708,3771,3830,3899,3962,4016,4124,4182,4244,4298,4371,4492,4576,4667,4777,4854,4930,5017,5084,5150,5220,5297,5380,5451,5526,5604,5675,5760,5849,5944,6037,6109,6181,6277,6329,6396,6480,6570,6632,6696,6759,6853,6949,7038,7135,7214" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7299", ++ "endColumns": "100", ++ "endOffsets": "7395" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-uk.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-uk.json +new file mode 100644 +index 0000000..cc3d703 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-uk.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-uk/values-uk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,2829", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,2906" ++ }, ++ "to": { ++ "startLines": "8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,89", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "379,488,590,698,784,889,1007,1088,1167,1258,1351,1446,1540,1640,1733,1828,1923,2014,2105,2204,2310,2416,2514,2621,2728,2833,3003,7426", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "483,585,693,779,884,1002,1083,1162,1253,1346,1441,1535,1635,1728,1823,1918,2009,2100,2199,2305,2411,2509,2616,2723,2828,2998,3098,7503" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,329,417,513,629,712,779,870,936,999,1087,1154,1212,1283,1342,1396,1510,1570,1633,1687,1760,1879,1965,2048,2157,2242,2329,2417,2484,2550,2622,2698,2788,2861,2938,3019,3093,3183,3262,3353,3449,3523,3604,3699,3753,3819,3906,3992,4054,4118,4181,4288,4380,4478,4570", ++ "endLines": "7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61", ++ "endColumns": "12,87,95,115,82,66,90,65,62,87,66,57,70,58,53,113,59,62,53,72,118,85,82,108,84,86,87,66,65,71,75,89,72,76,80,73,89,78,90,95,73,80,94,53,65,86,85,61,63,62,106,91,97,91,81", ++ "endOffsets": "324,412,508,624,707,774,865,931,994,1082,1149,1207,1278,1337,1391,1505,1565,1628,1682,1755,1874,1960,2043,2152,2237,2324,2412,2479,2545,2617,2693,2783,2856,2933,3014,3088,3178,3257,3348,3444,3518,3599,3694,3748,3814,3901,3987,4049,4113,4176,4283,4375,4473,4565,4647" ++ }, ++ "to": { ++ "startLines": "2,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,3103,3191,3287,3403,3486,3553,3644,3710,3773,3861,3928,3986,4057,4116,4170,4284,4344,4407,4461,4534,4653,4739,4822,4931,5016,5103,5191,5258,5324,5396,5472,5562,5635,5712,5793,5867,5957,6036,6127,6223,6297,6378,6473,6527,6593,6680,6766,6828,6892,6955,7062,7154,7252,7344", ++ "endLines": "7,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,87,95,115,82,66,90,65,62,87,66,57,70,58,53,113,59,62,53,72,118,85,82,108,84,86,87,66,65,71,75,89,72,76,80,73,89,78,90,95,73,80,94,53,65,86,85,61,63,62,106,91,97,91,81", ++ "endOffsets": "374,3186,3282,3398,3481,3548,3639,3705,3768,3856,3923,3981,4052,4111,4165,4279,4339,4402,4456,4529,4648,4734,4817,4926,5011,5098,5186,5253,5319,5391,5467,5557,5630,5707,5788,5862,5952,6031,6122,6218,6292,6373,6468,6522,6588,6675,6761,6823,6887,6950,7057,7149,7247,7339,7421" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "90", ++ "startColumns": "4", ++ "startOffsets": "7508", ++ "endColumns": "100", ++ "endOffsets": "7604" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ur.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ur.json +new file mode 100644 +index 0000000..c07e9dc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-ur.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-ur/values-ur.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,2832", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,2913" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "264,378,484,593,679,783,903,980,1055,1147,1241,1336,1430,1531,1625,1721,1815,1907,1999,2084,2192,2298,2400,2511,2612,2728,2893,7279", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "373,479,588,674,778,898,975,1050,1142,1236,1331,1425,1526,1620,1716,1810,1902,1994,2079,2187,2293,2395,2506,2607,2723,2888,2986,7360" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,214,292,392,511,594,659,752,822,881,971,1040,1098,1167,1227,1291,1403,1462,1521,1576,1651,1774,1854,1938,2041,2123,2204,2291,2358,2424,2499,2579,2664,2731,2806,2883,2947,3041,3111,3200,3293,3367,3442,3532,3588,3655,3739,3823,3885,3949,4012,4112,4219,4313,4422", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,99,118,82,64,92,69,58,89,68,57,68,59,63,111,58,58,54,74,122,79,83,102,81,80,86,66,65,74,79,84,66,74,76,63,93,69,88,92,73,74,89,55,66,83,83,61,63,62,99,106,93,108,79", ++ "endOffsets": "209,287,387,506,589,654,747,817,876,966,1035,1093,1162,1222,1286,1398,1457,1516,1571,1646,1769,1849,1933,2036,2118,2199,2286,2353,2419,2494,2574,2659,2726,2801,2878,2942,3036,3106,3195,3288,3362,3437,3527,3583,3650,3734,3818,3880,3944,4007,4107,4214,4308,4417,4497" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2991,3069,3169,3288,3371,3436,3529,3599,3658,3748,3817,3875,3944,4004,4068,4180,4239,4298,4353,4428,4551,4631,4715,4818,4900,4981,5068,5135,5201,5276,5356,5441,5508,5583,5660,5724,5818,5888,5977,6070,6144,6219,6309,6365,6432,6516,6600,6662,6726,6789,6889,6996,7090,7199", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,99,118,82,64,92,69,58,89,68,57,68,59,63,111,58,58,54,74,122,79,83,102,81,80,86,66,65,74,79,84,66,74,76,63,93,69,88,92,73,74,89,55,66,83,83,61,63,62,99,106,93,108,79", ++ "endOffsets": "259,3064,3164,3283,3366,3431,3524,3594,3653,3743,3812,3870,3939,3999,4063,4175,4234,4293,4348,4423,4546,4626,4710,4813,4895,4976,5063,5130,5196,5271,5351,5436,5503,5578,5655,5719,5813,5883,5972,6065,6139,6214,6304,6360,6427,6511,6595,6657,6721,6784,6884,6991,7085,7194,7274" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7365", ++ "endColumns": "100", ++ "endOffsets": "7461" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-uz.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-uz.json +new file mode 100644 +index 0000000..3db6a8b +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-uz.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-uz/values-uz.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7407", ++ "endColumns": "100", ++ "endOffsets": "7503" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,238,321,416,543,627,691,794,864,931,1040,1107,1166,1240,1303,1357,1472,1530,1592,1646,1721,1850,1940,2029,2140,2222,2304,2390,2457,2523,2596,2674,2760,2832,2909,2984,3055,3149,3228,3324,3418,3492,3568,3654,3707,3773,3858,3949,4011,4075,4138,4240,4331,4427,4519", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,82,94,126,83,63,102,69,66,108,66,58,73,62,53,114,57,61,53,74,128,89,88,110,81,81,85,66,65,72,77,85,71,76,74,70,93,78,95,93,73,75,85,52,65,84,90,61,63,62,101,90,95,91,82", ++ "endOffsets": "233,316,411,538,622,686,789,859,926,1035,1102,1161,1235,1298,1352,1467,1525,1587,1641,1716,1845,1935,2024,2135,2217,2299,2385,2452,2518,2591,2669,2755,2827,2904,2979,3050,3144,3223,3319,3413,3487,3563,3649,3702,3768,3853,3944,4006,4070,4133,4235,4326,4422,4514,4597" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2959,3042,3137,3264,3348,3412,3515,3585,3652,3761,3828,3887,3961,4024,4078,4193,4251,4313,4367,4442,4571,4661,4750,4861,4943,5025,5111,5178,5244,5317,5395,5481,5553,5630,5705,5776,5870,5949,6045,6139,6213,6289,6375,6428,6494,6579,6670,6732,6796,6859,6961,7052,7148,7240", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,82,94,126,83,63,102,69,66,108,66,58,73,62,53,114,57,61,53,74,128,89,88,110,81,81,85,66,65,72,77,85,71,76,74,70,93,78,95,93,73,75,85,52,65,84,90,61,63,62,101,90,95,91,82", ++ "endOffsets": "283,3037,3132,3259,3343,3407,3510,3580,3647,3756,3823,3882,3956,4019,4073,4188,4246,4308,4362,4437,4566,4656,4745,4856,4938,5020,5106,5173,5239,5312,5390,5476,5548,5625,5700,5771,5865,5944,6040,6134,6208,6284,6370,6423,6489,6574,6665,6727,6791,6854,6956,7047,7143,7235,7318" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,405,487,587,704,789,867,958,1051,1146,1240,1334,1427,1522,1617,1708,1800,1884,1994,2100,2200,2308,2414,2516,2677,2776", ++ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", ++ "endOffsets": "205,300,400,482,582,699,784,862,953,1046,1141,1235,1329,1422,1517,1612,1703,1795,1879,1989,2095,2195,2303,2409,2511,2672,2771,2855" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "288,393,488,588,670,770,887,972,1050,1141,1234,1329,1423,1517,1610,1705,1800,1891,1983,2067,2177,2283,2383,2491,2597,2699,2860,7323", ++ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", ++ "endOffsets": "388,483,583,665,765,882,967,1045,1136,1229,1324,1418,1512,1605,1700,1795,1886,1978,2062,2172,2278,2378,2486,2592,2694,2855,2954,7402" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v16.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v16.json +new file mode 100644 +index 0000000..0a71898 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v16.json +@@ -0,0 +1,38 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-v16/values-v16.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "5", ++ "endColumns": "12", ++ "endOffsets": "223" ++ }, ++ "to": { ++ "startLines": "3", ++ "startColumns": "4", ++ "startOffsets": "121", ++ "endLines": "6", ++ "endColumns": "12", ++ "endOffsets": "289" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "65", ++ "endOffsets": "116" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v17.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v17.json +new file mode 100644 +index 0000000..a674f9d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v17.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-v17/values-v17.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v17/values-v17.xml", ++ "from": { ++ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", ++ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", ++ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", ++ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v18.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v18.json +new file mode 100644 +index 0000000..f968fe6 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v18.json +@@ -0,0 +1,38 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-v18/values-v18.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v18/values-v18.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "48", ++ "endOffsets": "99" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v18/values.xml", ++ "from": { ++ "startLines": "4,12", ++ "startColumns": "0,0", ++ "startOffsets": "146,562", ++ "endLines": "11,19", ++ "endColumns": "8,8", ++ "endOffsets": "561,975" ++ }, ++ "to": { ++ "startLines": "3,11", ++ "startColumns": "4,4", ++ "startOffsets": "104,524", ++ "endLines": "10,18", ++ "endColumns": "8,8", ++ "endOffsets": "519,937" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v21.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v21.json +new file mode 100644 +index 0000000..058fc45 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v21.json +@@ -0,0 +1,85 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-v21/values-v21.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,106,109,152,155,158,160,162,164,167,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,220,222,223,224,234,235,236,248", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4213,4362,4511,4623,4770,4923,5070,5145,5234,5321,5422,5525,8499,8684,11670,11867,12066,12189,12312,12425,12608,12863,13064,13153,13264,13497,13598,13693,13816,13945,14062,14239,14338,14473,14616,14751,14870,15071,15190,15283,15394,15450,15557,15752,15863,15996,16091,16182,16273,16366,16483,16622,16693,16776,17456,17513,17571,18265", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,105,108,151,154,157,159,161,163,166,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,219,221,222,223,233,234,235,247,259", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4208,4357,4506,4618,4765,4918,5065,5140,5229,5316,5417,5520,8494,8679,11665,11862,12061,12184,12307,12420,12603,12858,13059,13148,13259,13492,13593,13688,13811,13940,14057,14234,14333,14468,14611,14746,14865,15066,15185,15278,15389,15445,15552,15747,15858,15991,16086,16177,16268,16361,16478,16617,16688,16771,17451,17508,17566,18260,18966" ++ }, ++ "to": { ++ "startLines": "16,17,18,19,20,21,22,23,24,25,26,27,28,29,31,33,34,35,36,38,40,41,42,43,44,46,48,50,52,54,56,57,62,64,66,67,68,70,72,73,74,75,80,90,133,136,179,194,200,202,204,206,209,213,216,217,218,221,222,223,224,225,226,229,230,232,234,236,238,242,244,245,246,247,249,253,255,257,258,259,260,261,262,290,291,292,302,303,304,316", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "1215,1306,1409,1512,1617,1724,1833,1942,2051,2160,2269,2376,2479,2598,2753,2908,3013,3134,3235,3382,3523,3626,3745,3852,3955,4110,4281,4430,4595,4752,4903,5022,5373,5522,5671,5783,5930,6083,6230,6305,6394,6481,7006,7852,10610,10795,13565,14698,15128,15251,15374,15487,15670,15925,16126,16215,16326,16559,16660,16755,16878,17007,17124,17301,17400,17535,17678,17813,17932,18133,18252,18345,18456,18512,18619,18814,18925,19058,19153,19244,19335,19428,19545,21777,21848,21931,22554,22611,22669,23293", ++ "endLines": "16,17,18,19,20,21,22,23,24,25,26,27,28,30,32,33,34,35,37,39,40,41,42,43,45,47,49,51,53,55,56,61,63,65,66,67,69,71,72,73,74,75,80,132,135,178,181,196,201,203,205,208,212,215,216,217,220,221,222,223,224,225,228,229,231,233,235,237,241,243,244,245,246,248,252,254,256,257,258,259,260,261,263,290,291,301,302,303,315,327", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "1301,1404,1507,1612,1719,1828,1937,2046,2155,2264,2371,2474,2593,2748,2903,3008,3129,3230,3377,3518,3621,3740,3847,3950,4105,4276,4425,4590,4747,4898,5017,5368,5517,5666,5778,5925,6078,6225,6300,6389,6476,6577,7104,10605,10790,13560,13757,14892,15246,15369,15482,15665,15920,16121,16210,16321,16554,16655,16750,16873,17002,17119,17296,17395,17530,17673,17808,17927,18128,18247,18340,18451,18507,18614,18809,18920,19053,19148,19239,19330,19423,19540,19679,21843,21926,22549,22606,22664,23288,23924" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,13", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,173,237,304,368,484,610,736,864,1036", ++ "endLines": "2,3,4,5,6,7,8,9,12,17", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" ++ }, ++ "to": { ++ "startLines": "2,13,14,15,328,329,330,331,393,396", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,1020,1084,1151,23929,24045,24171,24297,28280,28452", ++ "endLines": "2,13,14,15,328,329,330,331,395,400", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,1079,1146,1210,24040,24166,24292,24420,28447,28799" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,19,22,25,28,31,34,37,40,41,44,49,60,66,72,78,84,90,91,92,93,97,100,103,106,109,113,117", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,123,202,290,378,466,554,641,728,815,902,995,1102,1207,1326,1539,1798,2069,2287,2519,2755,3005,3236,3352,3522,3843,4872,5329,5671,6015,6365,6715,6853,6997,7153,7546,7764,7986,8212,8428,8669,8928", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,18,21,24,27,30,33,36,39,40,43,48,59,65,71,77,83,89,90,91,92,96,99,102,105,108,112,116,119", ++ "endColumns": "67,78,87,87,87,87,86,86,86,86,92,106,104,118,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,137,143,155,10,10,10,10,10,10,10,10", ++ "endOffsets": "118,197,285,373,461,549,636,723,810,897,990,1097,1202,1321,1534,1793,2064,2282,2514,2750,3000,3231,3347,3517,3838,4867,5324,5666,6010,6360,6710,6848,6992,7148,7541,7759,7981,8207,8423,8664,8923,9100" ++ }, ++ "to": { ++ "startLines": "3,4,5,6,7,8,9,10,11,12,76,77,78,79,81,84,87,182,185,188,191,197,264,265,268,273,284,332,338,344,350,356,357,358,359,363,366,369,372,401,405,409", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "173,241,320,408,496,584,672,759,846,933,6582,6675,6782,6887,7109,7322,7581,13762,13980,14212,14448,14897,19684,19800,19970,20291,21320,24425,24717,25011,25311,25611,25749,25893,26049,26442,26660,26882,27108,28804,29045,29304", ++ "endLines": "3,4,5,6,7,8,9,10,11,12,76,77,78,79,83,86,89,184,187,190,193,199,264,267,272,283,289,337,343,349,355,356,357,358,362,365,368,371,374,404,408,411", ++ "endColumns": "67,78,87,87,87,87,86,86,86,86,92,106,104,118,10,10,10,10,10,10,10,10,115,10,12,10,10,10,10,10,10,137,143,155,10,10,10,10,10,10,10,10", ++ "endOffsets": "236,315,403,491,579,667,754,841,928,1015,6670,6777,6882,7001,7317,7576,7847,13975,14207,14443,14693,15123,19795,19965,20286,21315,21772,24712,25006,25306,25606,25744,25888,26044,26437,26655,26877,27103,27319,29040,29299,29476" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v21/values.xml", ++ "from": { ++ "startLines": "4,13", ++ "startColumns": "0,0", ++ "startOffsets": "146,621", ++ "endLines": "12,21", ++ "endColumns": "8,8", ++ "endOffsets": "620,1093" ++ }, ++ "to": { ++ "startLines": "375,384", ++ "startColumns": "4,4", ++ "startOffsets": "27324,27803", ++ "endLines": "383,392", ++ "endColumns": "8,8", ++ "endOffsets": "27798,28275" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v22.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v22.json +new file mode 100644 +index 0000000..687afbb +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v22.json +@@ -0,0 +1,28 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-v22/values-v22.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v22/values-v22.xml", ++ "from": { ++ "startLines": "2,3,4,9", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,553", ++ "endLines": "2,3,8,13", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,548,896" ++ }, ++ "to": { ++ "startLines": "2,3,4,9", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,487", ++ "endLines": "2,3,8,13", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,482,764" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v23.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v23.json +new file mode 100644 +index 0000000..bd4e12f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v23.json +@@ -0,0 +1,66 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-v23/values-v23.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,190,325,400,487,1371,2267,2386,2513,2735,2959,3074,3181,3294", ++ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", ++ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", ++ "endOffsets": "185,320,395,482,1366,2262,2381,2508,2730,2954,3069,3176,3289,3519" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,190,325,400,487,1225,1975,2094,2221,2443,2667,2782,2889,3002", ++ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", ++ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", ++ "endOffsets": "185,320,395,482,1220,1970,2089,2216,2438,2662,2777,2884,2997,3227" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ac2b811be8f6b6e801e40541beb0df8/transformed/cardview-1.0.0/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "4", ++ "endColumns": "12", ++ "endOffsets": "200" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "3232", ++ "endLines": "52", ++ "endColumns": "12", ++ "endOffsets": "3377" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2,6", ++ "startColumns": "4,4", ++ "startOffsets": "55,320", ++ "endLines": "5,9", ++ "endColumns": "10,10", ++ "endOffsets": "315,588" ++ }, ++ "to": { ++ "startLines": "53,57", ++ "startColumns": "4,4", ++ "startOffsets": "3382,3647", ++ "endLines": "56,60", ++ "endColumns": "10,10", ++ "endOffsets": "3642,3915" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v24.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v24.json +new file mode 100644 +index 0000000..2a64f0d +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v24.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-v24/values-v24.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v24/values-v24.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,212", ++ "endColumns": "156,134", ++ "endOffsets": "207,342" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v25.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v25.json +new file mode 100644 +index 0000000..eb21c4e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v25.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-v25/values-v25.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v25/values-v25.xml", ++ "from": { ++ "startLines": "2,3,4,6", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,126,209,308", ++ "endLines": "2,3,5,7", ++ "endColumns": "70,82,12,12", ++ "endOffsets": "121,204,303,414" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v26.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v26.json +new file mode 100644 +index 0000000..76a570c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v26.json +@@ -0,0 +1,28 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-v26/values-v26.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v26/values-v26.xml", ++ "from": { ++ "startLines": "2,3,4,8,12,16", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,130,217,431,657,896", ++ "endLines": "2,3,7,11,15,16", ++ "endColumns": "74,86,12,12,12,92", ++ "endOffsets": "125,212,426,652,891,984" ++ }, ++ "to": { ++ "startLines": "2,3,4,8,12,16", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,130,217,381,557,796", ++ "endLines": "2,3,7,11,15,16", ++ "endColumns": "74,86,12,12,12,92", ++ "endOffsets": "125,212,376,552,791,884" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v28.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v28.json +new file mode 100644 +index 0000000..d4e6bd4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-v28.json +@@ -0,0 +1,57 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-v28/values-v28.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-v28/values-v28.xml", ++ "from": { ++ "startLines": "2,3,4,8", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,447", ++ "endLines": "2,3,7,11", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,442,684" ++ }, ++ "to": { ++ "startLines": "10,11,12,16", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "755,830,917,1097", ++ "endLines": "10,11,15,19", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "825,912,1092,1284" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values-v28/values.xml", ++ "from": { ++ "startLines": "4,13", ++ "startColumns": "0,0", ++ "startOffsets": "146,625", ++ "endLines": "12,21", ++ "endColumns": "8,8", ++ "endOffsets": "624,1101" ++ }, ++ "to": { ++ "startLines": "20,29", ++ "startColumns": "4,4", ++ "startOffsets": "1289,1772", ++ "endLines": "28,37", ++ "endColumns": "8,8", ++ "endOffsets": "1767,2248" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-v28/values-v28.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,143,231,319,407,494,581,668", ++ "endColumns": "87,87,87,87,86,86,86,86", ++ "endOffsets": "138,226,314,402,489,576,663,750" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-vi.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-vi.json +new file mode 100644 +index 0000000..c0e9960 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-vi.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-vi/values-vi.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,2798", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,2878" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "270,377,479,588,672,775,894,972,1048,1139,1232,1327,1421,1521,1614,1709,1803,1894,1985,2069,2173,2281,2382,2487,2602,2707,2864,7226", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "372,474,583,667,770,889,967,1043,1134,1227,1322,1416,1516,1609,1704,1798,1889,1980,2064,2168,2276,2377,2482,2597,2702,2859,2958,7306" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7311", ++ "endColumns": "100", ++ "endOffsets": "7407" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,220,298,397,511,591,654,748,822,881,967,1028,1086,1150,1211,1265,1382,1439,1499,1553,1628,1755,1839,1917,2017,2101,2179,2270,2337,2403,2471,2547,2628,2707,2782,2855,2931,3020,3097,3188,3282,3356,3426,3519,3568,3634,3719,3805,3867,3931,3994,4093,4198,4296,4401", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,77,98,113,79,62,93,73,58,85,60,57,63,60,53,116,56,59,53,74,126,83,77,99,83,77,90,66,65,67,75,80,78,74,72,75,88,76,90,93,73,69,92,48,65,84,85,61,63,62,98,104,97,104,81", ++ "endOffsets": "215,293,392,506,586,649,743,817,876,962,1023,1081,1145,1206,1260,1377,1434,1494,1548,1623,1750,1834,1912,2012,2096,2174,2265,2332,2398,2466,2542,2623,2702,2777,2850,2926,3015,3092,3183,3277,3351,3421,3514,3563,3629,3714,3800,3862,3926,3989,4088,4193,4291,4396,4478" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2963,3041,3140,3254,3334,3397,3491,3565,3624,3710,3771,3829,3893,3954,4008,4125,4182,4242,4296,4371,4498,4582,4660,4760,4844,4922,5013,5080,5146,5214,5290,5371,5450,5525,5598,5674,5763,5840,5931,6025,6099,6169,6262,6311,6377,6462,6548,6610,6674,6737,6836,6941,7039,7144", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,77,98,113,79,62,93,73,58,85,60,57,63,60,53,116,56,59,53,74,126,83,77,99,83,77,90,66,65,67,75,80,78,74,72,75,88,76,90,93,73,69,92,48,65,84,85,61,63,62,98,104,97,104,81", ++ "endOffsets": "265,3036,3135,3249,3329,3392,3486,3560,3619,3705,3766,3824,3888,3949,4003,4120,4177,4237,4291,4366,4493,4577,4655,4755,4839,4917,5008,5075,5141,5209,5285,5366,5445,5520,5593,5669,5758,5835,5926,6020,6094,6164,6257,6306,6372,6457,6543,6605,6669,6732,6831,6936,7034,7139,7221" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w320dp-land-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w320dp-land-v13.json +new file mode 100644 +index 0000000..6b9d273 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w320dp-land-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-w320dp-land-v13/values-w320dp-land-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w320dp-land-v13/values-w320dp-land-v13.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,110", ++ "endColumns": "54,61", ++ "endOffsets": "105,167" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w360dp-port-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w360dp-port-v13.json +new file mode 100644 +index 0000000..d564f96 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w360dp-port-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-w360dp-port-v13/values-w360dp-port-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w360dp-port-v13/values-w360dp-port-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478", ++ "endColumns": "58,55,55,66,64,54,64,68", ++ "endOffsets": "109,165,221,288,353,408,473,542" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w480dp-port-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w480dp-port-v13.json +new file mode 100644 +index 0000000..7f09765 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w480dp-port-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-w480dp-port-v13/values-w480dp-port-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w480dp-port-v13/values-w480dp-port-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,170,226,293,358,413,478", ++ "endColumns": "58,55,55,66,64,54,64,68", ++ "endOffsets": "109,165,221,288,353,408,473,542" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w600dp-land-v13.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w600dp-land-v13.json +new file mode 100644 +index 0000000..246b03c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-w600dp-land-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-w600dp-land-v13/values-w600dp-land-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-w600dp-land-v13/values-w600dp-land-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "54", ++ "endOffsets": "105" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-watch-v20.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-watch-v20.json +new file mode 100644 +index 0000000..e0b1240 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-watch-v20.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-watch-v20/values-watch-v20.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-watch-v20/values-watch-v20.xml", ++ "from": { ++ "startLines": "2,5,8", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,214,385", ++ "endLines": "4,7,10", ++ "endColumns": "12,12,12", ++ "endOffsets": "209,380,553" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-watch-v21.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-watch-v21.json +new file mode 100644 +index 0000000..851ff9c +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-watch-v21.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-watch-v21/values-watch-v21.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-watch-v21/values-watch-v21.xml", ++ "from": { ++ "startLines": "2,6,10", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,271,499", ++ "endLines": "5,9,13", ++ "endColumns": "12,12,12", ++ "endOffsets": "266,494,724" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-xlarge-v4.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-xlarge-v4.json +new file mode 100644 +index 0000000..e207559 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-xlarge-v4.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-xlarge-v4/values-xlarge-v4.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-xlarge-v4/values-xlarge-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,126,197,267,337,405", ++ "endColumns": "70,70,69,69,67,67", ++ "endOffsets": "121,192,262,332,400,468" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zh-rCN.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zh-rCN.json +new file mode 100644 +index 0000000..4078e7a +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zh-rCN.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-zh-rCN/values-zh-rCN.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,272,363,469,542,604,681,740,799,877,934,990,1049,1107,1161,1246,1302,1360,1414,1479,1571,1645,1721,1813,1875,1937,2016,2083,2149,2213,2282,2360,2421,2492,2559,2619,2698,2765,2848,2933,3007,3072,3148,3196,3260,3336,3414,3476,3540,3603,3683,3759,3837,3914", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,69,90,105,72,61,76,58,58,77,56,55,58,57,53,84,55,57,53,64,91,73,75,91,61,61,78,66,65,63,68,77,60,70,66,59,78,66,82,84,73,64,75,47,63,75,77,61,63,62,79,75,77,76,68", ++ "endOffsets": "197,267,358,464,537,599,676,735,794,872,929,985,1044,1102,1156,1241,1297,1355,1409,1474,1566,1640,1716,1808,1870,1932,2011,2078,2144,2208,2277,2355,2416,2487,2554,2614,2693,2760,2843,2928,3002,3067,3143,3191,3255,3331,3409,3471,3535,3598,3678,3754,3832,3909,3978" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2809,2879,2970,3076,3149,3211,3288,3347,3406,3484,3541,3597,3656,3714,3768,3853,3909,3967,4021,4086,4178,4252,4328,4420,4482,4544,4623,4690,4756,4820,4889,4967,5028,5099,5166,5226,5305,5372,5455,5540,5614,5679,5755,5803,5867,5943,6021,6083,6147,6210,6290,6366,6444,6521", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,69,90,105,72,61,76,58,58,77,56,55,58,57,53,84,55,57,53,64,91,73,75,91,61,61,78,66,65,63,68,77,60,70,66,59,78,66,82,84,73,64,75,47,63,75,77,61,63,62,79,75,77,76,68", ++ "endOffsets": "247,2874,2965,3071,3144,3206,3283,3342,3401,3479,3536,3592,3651,3709,3763,3848,3904,3962,4016,4081,4173,4247,4323,4415,4477,4539,4618,4685,4751,4815,4884,4962,5023,5094,5161,5221,5300,5367,5450,5535,5609,5674,5750,5798,5862,5938,6016,6078,6142,6205,6285,6361,6439,6516,6585" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,2662", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,2736" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,442,542,624,721,827,904,979,1070,1163,1260,1356,1450,1543,1638,1730,1821,1912,1990,2086,2181,2276,2373,2469,2567,2715,6590", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "342,437,537,619,716,822,899,974,1065,1158,1255,1351,1445,1538,1633,1725,1816,1907,1985,2081,2176,2271,2368,2464,2562,2710,2804,6664" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6669", ++ "endColumns": "100", ++ "endOffsets": "6765" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zh-rHK.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zh-rHK.json +new file mode 100644 +index 0000000..c9c90e5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zh-rHK.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-zh-rHK/values-zh-rHK.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,2666", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,2740" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,440,540,622,719,827,904,979,1071,1165,1256,1352,1447,1541,1637,1729,1821,1913,1991,2087,2182,2277,2374,2470,2568,2719,6583", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "342,435,535,617,714,822,899,974,1066,1160,1251,1347,1442,1536,1632,1724,1816,1908,1986,2082,2177,2272,2369,2465,2563,2714,2808,6657" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6662", ++ "endColumns": "100", ++ "endOffsets": "6758" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,269,359,466,539,601,679,738,796,874,931,987,1046,1104,1158,1244,1300,1358,1412,1477,1570,1644,1722,1812,1875,1938,2015,2082,2148,2212,2281,2356,2417,2488,2555,2615,2695,2758,2841,2926,3000,3065,3141,3189,3253,3329,3407,3469,3533,3596,3676,3751,3827,3903", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,66,89,106,72,61,77,58,57,77,56,55,58,57,53,85,55,57,53,64,92,73,77,89,62,62,76,66,65,63,68,74,60,70,66,59,79,62,82,84,73,64,75,47,63,75,77,61,63,62,79,74,75,75,68", ++ "endOffsets": "197,264,354,461,534,596,674,733,791,869,926,982,1041,1099,1153,1239,1295,1353,1407,1472,1565,1639,1717,1807,1870,1933,2010,2077,2143,2207,2276,2351,2412,2483,2550,2610,2690,2753,2836,2921,2995,3060,3136,3184,3248,3324,3402,3464,3528,3591,3671,3746,3822,3898,3967" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2813,2880,2970,3077,3150,3212,3290,3349,3407,3485,3542,3598,3657,3715,3769,3855,3911,3969,4023,4088,4181,4255,4333,4423,4486,4549,4626,4693,4759,4823,4892,4967,5028,5099,5166,5226,5306,5369,5452,5537,5611,5676,5752,5800,5864,5940,6018,6080,6144,6207,6287,6362,6438,6514", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,66,89,106,72,61,77,58,57,77,56,55,58,57,53,85,55,57,53,64,92,73,77,89,62,62,76,66,65,63,68,74,60,70,66,59,79,62,82,84,73,64,75,47,63,75,77,61,63,62,79,74,75,75,68", ++ "endOffsets": "247,2875,2965,3072,3145,3207,3285,3344,3402,3480,3537,3593,3652,3710,3764,3850,3906,3964,4018,4083,4176,4250,4328,4418,4481,4544,4621,4688,4754,4818,4887,4962,5023,5094,5161,5221,5301,5364,5447,5532,5606,5671,5747,5795,5859,5935,6013,6075,6139,6202,6282,6357,6433,6509,6578" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zh-rTW.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zh-rTW.json +new file mode 100644 +index 0000000..8621cde +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zh-rTW.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-zh-rTW/values-zh-rTW.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,202,269,363,470,543,605,683,743,803,881,939,995,1055,1113,1167,1252,1308,1366,1420,1485,1577,1651,1728,1818,1881,1944,2021,2088,2154,2217,2285,2363,2424,2495,2562,2624,2703,2768,2851,2936,3010,3074,3150,3198,3262,3338,3416,3478,3542,3605,3685,3762,3838,3915", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,66,93,106,72,61,77,59,59,77,57,55,59,57,53,84,55,57,53,64,91,73,76,89,62,62,76,66,65,62,67,77,60,70,66,61,78,64,82,84,73,63,75,47,63,75,77,61,63,62,79,76,75,76,68", ++ "endOffsets": "197,264,358,465,538,600,678,738,798,876,934,990,1050,1108,1162,1247,1303,1361,1415,1480,1572,1646,1723,1813,1876,1939,2016,2083,2149,2212,2280,2358,2419,2490,2557,2619,2698,2763,2846,2931,3005,3069,3145,3193,3257,3333,3411,3473,3537,3600,3680,3757,3833,3910,3979" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2818,2885,2979,3086,3159,3221,3299,3359,3419,3497,3555,3611,3671,3729,3783,3868,3924,3982,4036,4101,4193,4267,4344,4434,4497,4560,4637,4704,4770,4833,4901,4979,5040,5111,5178,5240,5319,5384,5467,5552,5626,5690,5766,5814,5878,5954,6032,6094,6158,6221,6301,6378,6454,6531", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,66,93,106,72,61,77,59,59,77,57,55,59,57,53,84,55,57,53,64,91,73,76,89,62,62,76,66,65,62,67,77,60,70,66,61,78,64,82,84,73,63,75,47,63,75,77,61,63,62,79,76,75,76,68", ++ "endOffsets": "247,2880,2974,3081,3154,3216,3294,3354,3414,3492,3550,3606,3666,3724,3778,3863,3919,3977,4031,4096,4188,4262,4339,4429,4492,4555,4632,4699,4765,4828,4896,4974,5035,5106,5173,5235,5314,5379,5462,5547,5621,5685,5761,5809,5873,5949,6027,6089,6153,6216,6296,6373,6449,6526,6595" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "6679", ++ "endColumns": "100", ++ "endOffsets": "6775" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,2671", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,2745" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "252,347,440,540,622,719,827,904,979,1071,1165,1262,1358,1453,1547,1643,1735,1827,1919,1997,2093,2188,2283,2380,2476,2574,2724,6600", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "342,435,535,617,714,822,899,974,1066,1160,1257,1353,1448,1542,1638,1730,1822,1914,1992,2088,2183,2278,2375,2471,2569,2719,2813,6674" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zu.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zu.json +new file mode 100644 +index 0000000..b435022 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values-zu.json +@@ -0,0 +1,62 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values-zu/values-zu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,320,432,520,623,738,817,894,985,1078,1173,1267,1367,1460,1555,1649,1740,1833,1914,2018,2121,2219,2326,2433,2538,2695,2791", ++ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", ++ "endOffsets": "208,315,427,515,618,733,812,889,980,1073,1168,1262,1362,1455,1550,1644,1735,1828,1909,2013,2116,2214,2321,2428,2533,2690,2786,2868" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,87", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "276,384,491,603,691,794,909,988,1065,1156,1249,1344,1438,1538,1631,1726,1820,1911,2004,2085,2189,2292,2390,2497,2604,2709,2866,7425", ++ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", ++ "endOffsets": "379,486,598,686,789,904,983,1060,1151,1244,1339,1433,1533,1626,1721,1815,1906,1999,2080,2184,2287,2385,2492,2599,2704,2861,2957,7502" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "88", ++ "startColumns": "4", ++ "startOffsets": "7507", ++ "endColumns": "100", ++ "endOffsets": "7603" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,226,303,415,541,622,689,792,867,930,1022,1087,1154,1226,1298,1352,1473,1532,1596,1650,1727,1859,1944,2025,2144,2231,2314,2406,2473,2539,2611,2688,2779,2859,2938,3013,3092,3182,3255,3349,3446,3520,3593,3692,3747,3815,3903,3992,4054,4118,4181,4290,4395,4498,4607", ++ "endLines": "5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59", ++ "endColumns": "12,76,111,125,80,66,102,74,62,91,64,66,71,71,53,120,58,63,53,76,131,84,80,118,86,82,91,66,65,71,76,90,79,78,74,78,89,72,93,96,73,72,98,54,67,87,88,61,63,62,108,104,102,108,81", ++ "endOffsets": "221,298,410,536,617,684,787,862,925,1017,1082,1149,1221,1293,1347,1468,1527,1591,1645,1722,1854,1939,2020,2139,2226,2309,2401,2468,2534,2606,2683,2774,2854,2933,3008,3087,3177,3250,3344,3441,3515,3588,3687,3742,3810,3898,3987,4049,4113,4176,4285,4390,4493,4602,4684" ++ }, ++ "to": { ++ "startLines": "2,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,2962,3039,3151,3277,3358,3425,3528,3603,3666,3758,3823,3890,3962,4034,4088,4209,4268,4332,4386,4463,4595,4680,4761,4880,4967,5050,5142,5209,5275,5347,5424,5515,5595,5674,5749,5828,5918,5991,6085,6182,6256,6329,6428,6483,6551,6639,6728,6790,6854,6917,7026,7131,7234,7343", ++ "endLines": "5,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,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", ++ "endColumns": "12,76,111,125,80,66,102,74,62,91,64,66,71,71,53,120,58,63,53,76,131,84,80,118,86,82,91,66,65,71,76,90,79,78,74,78,89,72,93,96,73,72,98,54,67,87,88,61,63,62,108,104,102,108,81", ++ "endOffsets": "271,3034,3146,3272,3353,3420,3523,3598,3661,3753,3818,3885,3957,4029,4083,4204,4263,4327,4381,4458,4590,4675,4756,4875,4962,5045,5137,5204,5270,5342,5419,5510,5590,5669,5744,5823,5913,5986,6080,6177,6251,6324,6423,6478,6546,6634,6723,6785,6849,6912,7021,7126,7229,7338,7420" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values.json b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values.json +new file mode 100644 +index 0000000..f180ea5 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/merged_res_blame_folder/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/out/multi-v2/values.json +@@ -0,0 +1,339 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20:/values/values.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/113a9edb5eab6212082ea70ac0555d5e/transformed/appcompat-resources-1.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,29,36,47,74", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,1702,2087,2684,4317", ++ "endLines": "28,35,46,73,78", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "1697,2082,2679,4312,4582" ++ }, ++ "to": { ++ "startLines": "5156,5172,5178,7330,7346", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "333041,333466,333644,428385,428796", ++ "endLines": "5171,5177,5187,7345,7349", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "333461,333639,333923,428791,428918" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/461d7c19ef38b4f9b46fbdeb7e398449/transformed/espresso-contrib-3.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "5", ++ "startColumns": "0", ++ "startOffsets": "164", ++ "endColumns": "73", ++ "endOffsets": "237" ++ }, ++ "to": { ++ "startLines": "982", ++ "startColumns": "4", ++ "startOffsets": "57683", ++ "endColumns": "77", ++ "endOffsets": "57756" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,89,90,94,95,96,97,103,113,146,167,200", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,115,187,275,344,407,477,545,617,687,748,822,895,956,1017,1079,1143,1205,1266,1334,1434,1494,1560,1633,1702,1759,1811,1873,1945,2021,2086,2145,2204,2264,2324,2384,2444,2504,2564,2624,2684,2744,2804,2863,2923,2983,3043,3103,3163,3223,3283,3343,3403,3463,3522,3582,3642,3701,3760,3819,3878,3937,3996,4031,4066,4121,4184,4239,4297,4355,4416,4479,4536,4587,4637,4698,4755,4821,4855,4890,4925,4995,5066,5183,5384,5494,5695,5824,5896,5963,6166,6467,8198,8879,9561", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,88,89,93,94,95,96,102,112,145,166,199,205", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "110,182,270,339,402,472,540,612,682,743,817,890,951,1012,1074,1138,1200,1261,1329,1429,1489,1555,1628,1697,1754,1806,1868,1940,2016,2081,2140,2199,2259,2319,2379,2439,2499,2559,2619,2679,2739,2799,2858,2918,2978,3038,3098,3158,3218,3278,3338,3398,3458,3517,3577,3637,3696,3755,3814,3873,3932,3991,4026,4061,4116,4179,4234,4292,4350,4411,4474,4531,4582,4632,4693,4750,4816,4850,4885,4920,4990,5061,5178,5379,5489,5690,5819,5891,5958,6161,6462,8193,8874,9556,9723" ++ }, ++ "to": { ++ "startLines": "312,413,414,496,497,605,606,607,608,609,610,611,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,988,989,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1036,1075,1184,3645,3646,3650,3651,3655,4204,4205,5900,6204,6433,6466,6502,6535", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "14944,19842,19914,25552,25621,32876,32946,33014,33086,33156,33217,33291,52866,52927,52988,53050,53114,53176,53237,53305,53405,53465,53531,53604,53673,53730,53782,55355,55427,55503,55568,55627,55686,55746,55806,55866,55926,55986,56046,56106,56166,56226,56286,56345,56405,56465,56525,56585,56645,56705,56765,56825,56885,56945,57004,57064,57124,57183,57242,57301,57360,57419,58005,58040,59332,59387,59450,59505,59563,59621,59682,59745,59802,59853,59903,59964,60021,60087,60121,60503,62813,77035,238337,238454,238655,238765,238966,278078,278150,358443,368261,390140,391871,393096,393778", ++ "endLines": "312,413,414,496,497,605,606,607,608,609,610,611,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,988,989,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1036,1075,1184,3645,3649,3650,3654,3655,4204,4205,5905,6213,6465,6486,6534,6540", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "14999,19909,19997,25616,25679,32941,33009,33081,33151,33212,33286,33359,52922,52983,53045,53109,53171,53232,53300,53400,53460,53526,53599,53668,53725,53777,53839,55422,55498,55563,55622,55681,55741,55801,55861,55921,55981,56041,56101,56161,56221,56281,56340,56400,56460,56520,56580,56640,56700,56760,56820,56880,56940,56999,57059,57119,57178,57237,57296,57355,57414,57473,58035,58070,59382,59445,59500,59558,59616,59677,59740,59797,59848,59898,59959,60016,60082,60116,60151,60533,62878,77101,238449,238650,238760,238961,239090,278145,278212,358641,368557,391866,392547,393773,393940" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/6193ccf8266fe7e7acf873e6a6e33027/transformed/recyclerview-1.2.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,111,170,218,274,349,425,497,563", ++ "endLines": "2,3,4,5,6,7,8,9,38", ++ "endColumns": "55,58,47,55,74,75,71,65,24", ++ "endOffsets": "106,165,213,269,344,420,492,558,2084" ++ }, ++ "to": { ++ "startLines": "330,663,664,665,673,674,675,987,7121", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "15685,36669,36728,36776,37443,37518,37594,57939,421661", ++ "endLines": "330,663,664,665,673,674,675,987,7141", ++ "endColumns": "55,58,47,55,74,75,71,65,24", ++ "endOffsets": "15736,36723,36771,36827,37513,37589,37661,58000,422496" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/aab319f82c96efbdcc73962788b25c1d/transformed/fragment-1.3.6/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,10", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,112,177,241,411", ++ "endLines": "2,3,4,9,13", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "107,172,236,406,555" ++ }, ++ "to": { ++ "startLines": "983,1012,1047,6493,6498", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "57761,59221,61031,392777,392947", ++ "endLines": "983,1012,1047,6497,6501", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "57813,59281,61090,392942,393091" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,221,222,226,230,234,239,245,252,256,260,265,269,273,277,281,285,289,295,299,305,309,315,319,324,328,331,335,341,345,351,355,361,364,368,372,376,380,384,385,386,387,390,393,396,399,403,404,405,406,407,410,412,414,416,421,422,426,432,436,437,439,451,452,456,462,466,467,468,472,499,503,504,508,536,708,734,906,932,963,971,977,993,1015,1020,1025,1035,1044,1053,1057,1064,1083,1090,1091,1100,1103,1106,1110,1114,1118,1121,1122,1127,1132,1142,1147,1154,1160,1161,1164,1168,1173,1175,1177,1180,1183,1185,1189,1192,1199,1202,1205,1209,1211,1215,1217,1219,1221,1225,1233,1241,1253,1259,1268,1271,1282,1285,1286,1291,1292,1297,1366,1436,1437,1447,1456,1457,1459,1463,1466,1469,1472,1475,1478,1481,1484,1488,1491,1494,1497,1501,1504,1508,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1534,1536,1537,1538,1539,1540,1541,1542,1543,1545,1546,1548,1549,1551,1553,1554,1556,1557,1558,1559,1560,1561,1563,1564,1565,1566,1567,1568,1570,1572,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1588,1589,1590,1591,1592,1593,1594,1596,1600,1604,1605,1606,1607,1608,1609,1613,1614,1615,1616,1618,1620,1622,1624,1626,1627,1628,1629,1631,1633,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1649,1650,1651,1652,1654,1656,1657,1659,1660,1662,1664,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1684,1685,1686,1687,1688,1690,1692,1694,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1794,1797,1800,1803,1817,1828,1838,1868,1895,1904,1979,2382,2387,2415,2433,2469,2475,2481,2504,2645,2665,2671,2675,2681,2718,2730,2796,2820,2889,2908,2934", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,160,205,254,295,350,412,476,546,607,682,758,835,913,998,1080,1156,1232,1309,1387,1493,1599,1678,1758,1815,1873,1947,2022,2087,2153,2213,2274,2346,2419,2486,2554,2613,2672,2731,2790,2849,2903,2957,3010,3064,3118,3172,3226,3300,3379,3452,3526,3597,3669,3741,3814,3871,3929,4002,4076,4150,4225,4297,4370,4440,4511,4571,4632,4701,4770,4840,4914,4990,5054,5131,5207,5284,5349,5418,5495,5570,5639,5707,5784,5850,5911,6008,6073,6142,6241,6312,6371,6429,6486,6545,6609,6680,6752,6824,6896,6968,7035,7103,7171,7230,7293,7357,7447,7538,7598,7664,7731,7797,7867,7931,7984,8051,8112,8179,8292,8350,8413,8478,8543,8618,8691,8763,8807,8854,8900,8949,9010,9071,9132,9194,9258,9322,9386,9451,9514,9574,9635,9701,9760,9820,9882,9953,10013,10081,10167,10254,10344,10431,10519,10601,10684,10774,10865,10917,10975,11020,11086,11150,11207,11264,11318,11375,11423,11472,11523,11557,11604,11653,11699,11731,11795,11857,11917,11974,12048,12118,12196,12250,12320,12405,12453,12499,12560,12623,12689,12753,12824,12887,12952,13016,13077,13138,13190,13263,13337,13406,13481,13555,13629,13770,13840,13893,13971,14061,14149,14245,14335,14917,15006,15253,15534,15786,16071,16464,16941,17163,17385,17661,17888,18118,18348,18578,18808,19035,19454,19680,20105,20335,20763,20982,21265,21473,21604,21831,22257,22482,22909,23130,23555,23675,23951,24252,24576,24867,25181,25318,25449,25554,25796,25963,26167,26375,26646,26758,26870,26975,27092,27306,27452,27592,27678,28026,28114,28360,28778,29027,29109,29207,29889,29989,30241,30665,30920,31014,31103,31340,33392,33634,33736,33989,36173,47362,48878,60165,61693,63450,64076,64496,65757,67022,67278,67514,68061,68555,69160,69358,69938,71306,71681,71799,72337,72494,72690,72963,73219,73389,73530,73594,73959,74326,75002,75266,75604,75957,76051,76237,76543,76805,76930,77057,77296,77507,77626,77819,77996,78451,78632,78754,79013,79126,79313,79415,79522,79651,79926,80434,80930,81807,82101,82671,82820,83552,83724,83808,84144,84236,84514,89908,95442,95504,96134,96748,96839,96952,97181,97341,97493,97664,97830,97999,98166,98329,98572,98742,98915,99086,99360,99559,99764,100094,100178,100274,100370,100468,100568,100670,100772,100874,100976,101078,101178,101274,101386,101515,101638,101769,101900,101998,102112,102206,102346,102480,102576,102688,102788,102904,103000,103112,103212,103352,103488,103652,103782,103940,104090,104231,104375,104510,104622,104772,104900,105028,105164,105296,105426,105556,105668,105808,105954,106098,106236,106302,106392,106468,106572,106662,106764,106872,106980,107080,107160,107252,107350,107460,107512,107590,107696,107788,107892,108002,108124,108287,108444,108524,108624,108714,108824,108914,109155,109249,109355,109447,109547,109659,109773,109889,110005,110099,110213,110325,110427,110547,110669,110751,110855,110975,111101,111199,111293,111381,111493,111609,111731,111843,112018,112134,112220,112312,112424,112548,112615,112741,112809,112937,113081,113209,113278,113373,113488,113601,113700,113809,113920,114031,114132,114237,114337,114467,114558,114681,114775,114887,114973,115077,115173,115261,115379,115483,115587,115713,115801,115909,116009,116099,116209,116293,116395,116479,116533,116597,116703,116789,116899,116983,117103,122247,122365,122480,122612,123327,124019,124536,126135,127668,128056,132791,153454,153714,155224,156257,158270,158532,158888,159718,166500,167634,167928,168151,168478,170528,171176,175027,176229,180308,181523,182932", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,220,221,225,229,233,238,244,251,255,259,264,268,272,276,280,284,288,294,298,304,308,314,318,323,327,330,334,340,344,350,354,360,363,367,371,375,379,383,384,385,386,389,392,395,398,402,403,404,405,406,409,411,413,415,420,421,425,431,435,436,438,450,451,455,461,465,466,467,471,498,502,503,507,535,707,733,905,931,962,970,976,992,1014,1019,1024,1034,1043,1052,1056,1063,1082,1089,1090,1099,1102,1105,1109,1113,1117,1120,1121,1126,1131,1141,1146,1153,1159,1160,1163,1167,1172,1174,1176,1179,1182,1184,1188,1191,1198,1201,1204,1208,1210,1214,1216,1218,1220,1224,1232,1240,1252,1258,1267,1270,1281,1284,1285,1290,1291,1296,1365,1435,1436,1446,1455,1456,1458,1462,1465,1468,1471,1474,1477,1480,1483,1487,1490,1493,1496,1500,1503,1507,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1533,1535,1536,1537,1538,1539,1540,1541,1542,1544,1545,1547,1548,1550,1552,1553,1555,1556,1557,1558,1559,1560,1562,1563,1564,1565,1566,1567,1569,1571,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1587,1588,1589,1590,1591,1592,1593,1595,1599,1603,1604,1605,1606,1607,1608,1612,1613,1614,1615,1617,1619,1621,1623,1625,1626,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1648,1649,1650,1651,1653,1655,1656,1658,1659,1661,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1678,1679,1680,1681,1683,1684,1685,1686,1687,1689,1691,1693,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1793,1796,1799,1802,1816,1827,1837,1867,1894,1903,1978,2381,2386,2414,2432,2468,2474,2480,2503,2644,2664,2670,2674,2680,2717,2729,2795,2819,2888,2907,2933,2942", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "155,200,249,290,345,407,471,541,602,677,753,830,908,993,1075,1151,1227,1304,1382,1488,1594,1673,1753,1810,1868,1942,2017,2082,2148,2208,2269,2341,2414,2481,2549,2608,2667,2726,2785,2844,2898,2952,3005,3059,3113,3167,3221,3295,3374,3447,3521,3592,3664,3736,3809,3866,3924,3997,4071,4145,4220,4292,4365,4435,4506,4566,4627,4696,4765,4835,4909,4985,5049,5126,5202,5279,5344,5413,5490,5565,5634,5702,5779,5845,5906,6003,6068,6137,6236,6307,6366,6424,6481,6540,6604,6675,6747,6819,6891,6963,7030,7098,7166,7225,7288,7352,7442,7533,7593,7659,7726,7792,7862,7926,7979,8046,8107,8174,8287,8345,8408,8473,8538,8613,8686,8758,8802,8849,8895,8944,9005,9066,9127,9189,9253,9317,9381,9446,9509,9569,9630,9696,9755,9815,9877,9948,10008,10076,10162,10249,10339,10426,10514,10596,10679,10769,10860,10912,10970,11015,11081,11145,11202,11259,11313,11370,11418,11467,11518,11552,11599,11648,11694,11726,11790,11852,11912,11969,12043,12113,12191,12245,12315,12400,12448,12494,12555,12618,12684,12748,12819,12882,12947,13011,13072,13133,13185,13258,13332,13401,13476,13550,13624,13765,13835,13888,13966,14056,14144,14240,14330,14912,15001,15248,15529,15781,16066,16459,16936,17158,17380,17656,17883,18113,18343,18573,18803,19030,19449,19675,20100,20330,20758,20977,21260,21468,21599,21826,22252,22477,22904,23125,23550,23670,23946,24247,24571,24862,25176,25313,25444,25549,25791,25958,26162,26370,26641,26753,26865,26970,27087,27301,27447,27587,27673,28021,28109,28355,28773,29022,29104,29202,29884,29984,30236,30660,30915,31009,31098,31335,33387,33629,33731,33984,36168,47357,48873,60160,61688,63445,64071,64491,65752,67017,67273,67509,68056,68550,69155,69353,69933,71301,71676,71794,72332,72489,72685,72958,73214,73384,73525,73589,73954,74321,74997,75261,75599,75952,76046,76232,76538,76800,76925,77052,77291,77502,77621,77814,77991,78446,78627,78749,79008,79121,79308,79410,79517,79646,79921,80429,80925,81802,82096,82666,82815,83547,83719,83803,84139,84231,84509,89903,95437,95499,96129,96743,96834,96947,97176,97336,97488,97659,97825,97994,98161,98324,98567,98737,98910,99081,99355,99554,99759,100089,100173,100269,100365,100463,100563,100665,100767,100869,100971,101073,101173,101269,101381,101510,101633,101764,101895,101993,102107,102201,102341,102475,102571,102683,102783,102899,102995,103107,103207,103347,103483,103647,103777,103935,104085,104226,104370,104505,104617,104767,104895,105023,105159,105291,105421,105551,105663,105803,105949,106093,106231,106297,106387,106463,106567,106657,106759,106867,106975,107075,107155,107247,107345,107455,107507,107585,107691,107783,107887,107997,108119,108282,108439,108519,108619,108709,108819,108909,109150,109244,109350,109442,109542,109654,109768,109884,110000,110094,110208,110320,110422,110542,110664,110746,110850,110970,111096,111194,111288,111376,111488,111604,111726,111838,112013,112129,112215,112307,112419,112543,112610,112736,112804,112932,113076,113204,113273,113368,113483,113596,113695,113804,113915,114026,114127,114232,114332,114462,114553,114676,114770,114882,114968,115072,115168,115256,115374,115478,115582,115708,115796,115904,116004,116094,116204,116288,116390,116474,116528,116592,116698,116784,116894,116978,117098,122242,122360,122475,122607,123322,124014,124531,126130,127663,128051,132786,153449,153709,155219,156252,158265,158527,158883,159713,166495,167629,167923,168146,168473,170523,171171,175022,176224,180303,181518,182927,183401" ++ }, ++ "to": { ++ "startLines": "73,141,143,361,403,404,406,407,408,409,410,411,412,415,416,417,418,419,420,421,422,423,424,425,426,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,661,662,666,667,668,669,670,671,672,933,934,935,936,937,938,939,940,978,979,980,981,986,1004,1005,1013,1042,1048,1049,1052,1053,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1183,1185,1186,1190,1191,1192,1201,1209,1210,1214,1218,1229,1234,1262,1269,1273,1277,1282,1286,1290,1294,1298,1302,1306,1312,1316,1322,1326,1332,1336,1341,1345,1348,1352,1358,1362,1368,1372,1378,1381,1385,1389,1393,1397,1401,1402,1403,1404,1407,1410,1413,1416,1420,1421,1422,1423,1461,1464,1466,1468,1470,1475,1476,1480,1486,1490,1491,1493,1505,1506,1510,1516,1520,1575,1576,1580,1607,1611,1612,1616,2267,2438,2464,2635,2661,2692,2700,2706,2722,2744,2749,2754,2764,2773,2782,2786,2793,2812,2819,2820,2829,2832,2835,2839,2843,2847,2850,2851,2856,2861,2871,2876,2883,2889,2890,2893,2897,2902,2904,2906,2909,2912,2914,2918,2921,2928,2931,2934,2938,2940,2944,2946,2948,2950,2954,2962,2970,2982,2988,2997,3000,3011,3014,3015,3020,3021,3254,3323,3397,3398,3408,3417,3418,3420,3424,3427,3430,3433,3436,3439,3442,3445,3449,3452,3455,3458,3462,3465,3469,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3611,3613,3614,3615,3616,3617,3618,3619,3620,3622,3623,3625,3626,3628,3630,3631,3633,3634,3635,3636,3637,3638,3640,3641,3642,3643,3644,3776,3778,3780,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3796,3797,3798,3799,3800,3801,3802,3804,3808,3931,3932,3933,3934,3935,3936,3940,3941,3942,4109,4111,4113,4115,4117,4119,4120,4121,4122,4124,4126,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4142,4143,4144,4145,4147,4149,4150,4152,4153,4155,4157,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4172,4173,4174,4175,4177,4178,4179,4180,4181,4183,4185,4187,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,5042,5117,5120,5123,5126,5140,5146,5251,5280,5307,5316,5378,5896,6214,6337,6562,6586,6624,6802,6823,6947,7093,7099,7115,7149,7317,7351,7516,7768,7851,7863,7892", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "3404,6375,6473,17464,19162,19217,19341,19405,19475,19536,19611,19687,19764,20002,20087,20169,20245,20321,20398,20476,20582,20688,20767,20847,20904,23634,23708,23783,23848,23914,23974,24035,24107,24180,24247,24315,24374,24433,24492,24551,24610,24664,24718,24771,24825,24879,24933,25684,25758,25837,25910,25984,26055,26127,26199,26272,26329,26387,26460,26534,26608,26683,26755,26828,26898,26969,27029,27090,27159,27228,27298,27372,27448,27512,27589,27665,27742,27807,27876,27953,28028,28097,28165,28242,28308,28369,28466,28531,28600,28699,28770,28829,28887,28944,29003,29067,29138,29210,29282,29354,29426,29493,29561,29629,29688,29751,29815,29905,29996,30056,30122,30189,30255,30325,30389,30442,30509,30570,30637,30750,30808,30871,30936,31001,31076,31149,31221,31265,31312,31358,31407,31468,31529,31590,31652,31716,31780,31844,31909,31972,32032,32093,32159,32218,32278,32340,32411,32471,36496,36582,36832,36922,37009,37097,37179,37262,37352,54625,54677,54735,54780,54846,54910,54967,55024,57478,57535,57583,57632,57905,58848,58895,59286,60804,61095,61159,61349,61409,63203,63277,63347,63425,63479,63549,63634,63682,63728,63789,63852,63918,63982,64053,64116,64181,64245,64306,64367,64419,64492,64566,64635,64710,64784,64858,64999,76982,77106,77184,77408,77496,77592,78244,78826,78915,79162,79443,80109,80394,82142,82619,82841,83063,83339,83566,83796,84026,84256,84486,84713,85132,85358,85783,86013,86441,86660,86943,87151,87282,87509,87935,88160,88587,88808,89233,89353,89629,89930,90254,90545,90859,90996,91127,91232,91474,91641,91845,92053,92324,92436,92548,92653,94598,94812,94958,95098,95184,95532,95620,95866,96284,96533,96615,96713,97370,97470,97722,98146,98401,102432,102521,102758,104782,105024,105126,105379,149735,160332,161848,172543,174071,175828,176454,176874,178135,179400,179656,179892,180439,180933,181538,181736,182316,183684,184059,184177,184715,184872,185068,185341,185597,185767,185908,185972,186337,186704,187380,187644,187982,188335,188429,188615,188921,189183,189308,189435,189674,189885,190004,190197,190374,190829,191010,191132,191391,191504,191691,191793,191900,192029,192304,192812,193308,194185,194479,195049,195198,195930,196102,196186,196522,196614,210568,215799,221514,221576,222154,222738,222829,222942,223171,223331,223483,223654,223820,223989,224156,224319,224562,224732,224905,225076,225350,225549,225754,232623,232707,232803,232899,232997,233097,233199,233301,233403,233505,233607,233707,233803,233915,234044,234167,234298,234429,234527,234641,234735,234875,235009,235105,235217,235317,235433,235529,235641,235741,235881,236017,236181,236311,236469,236619,236760,236904,237039,237151,237301,237429,237557,237693,237825,237955,238085,238197,246079,246225,246369,246507,246573,246663,246739,246843,246933,247035,247143,247251,247351,247431,247523,247621,247731,247783,247861,247967,248059,248163,248273,248395,248558,258007,258087,258187,258277,258387,258477,258718,258812,258918,270422,270522,270634,270748,270864,270980,271074,271188,271300,271402,271522,271644,271726,271830,271950,272076,272174,272268,272356,272468,272584,272706,272818,272993,273109,273195,273287,273399,273523,273590,273716,273784,273912,274056,274184,274253,274348,274463,274576,274675,274784,274895,275006,275107,275212,275312,275442,275533,275656,275750,275862,275948,276052,276148,276236,276354,276458,276562,276688,276776,276884,276984,277074,277184,277268,277370,277454,277508,277572,277678,277764,277874,277958,329001,331617,331735,331850,331930,332291,332524,336639,337983,339344,339732,342507,358308,368562,387423,400775,401526,403040,409116,409495,413773,420549,420778,421446,422784,427946,429029,435282,444274,448648,448988,450409", ++ "endLines": "73,141,143,361,403,404,406,407,408,409,410,411,412,415,416,417,418,419,420,421,422,423,424,425,426,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,661,662,666,667,668,669,670,671,672,933,934,935,936,937,938,939,940,978,979,980,981,986,1004,1005,1013,1042,1048,1049,1052,1053,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1183,1185,1186,1190,1191,1192,1208,1209,1213,1217,1221,1233,1239,1268,1272,1276,1281,1285,1289,1293,1297,1301,1305,1311,1315,1321,1325,1331,1335,1340,1344,1347,1351,1357,1361,1367,1371,1377,1380,1384,1388,1392,1396,1400,1401,1402,1403,1406,1409,1412,1415,1419,1420,1421,1422,1423,1463,1465,1467,1469,1474,1475,1479,1485,1489,1490,1492,1504,1505,1509,1515,1519,1520,1575,1579,1606,1610,1611,1615,1643,2437,2463,2634,2660,2691,2699,2705,2721,2743,2748,2753,2763,2772,2781,2785,2792,2811,2818,2819,2828,2831,2834,2838,2842,2846,2849,2850,2855,2860,2870,2875,2882,2888,2889,2892,2896,2901,2903,2905,2908,2911,2913,2917,2920,2927,2930,2933,2937,2939,2943,2945,2947,2949,2953,2961,2969,2981,2987,2996,2999,3010,3013,3014,3019,3020,3025,3322,3392,3397,3407,3416,3417,3419,3423,3426,3429,3432,3435,3438,3441,3444,3448,3451,3454,3457,3461,3464,3468,3472,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3610,3612,3613,3614,3615,3616,3617,3618,3619,3621,3622,3624,3625,3627,3629,3630,3632,3633,3634,3635,3636,3637,3639,3640,3641,3642,3643,3644,3777,3779,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3795,3796,3797,3798,3799,3800,3801,3803,3807,3811,3931,3932,3933,3934,3935,3939,3940,3941,3942,4110,4112,4114,4116,4118,4119,4120,4121,4123,4125,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4141,4142,4143,4144,4146,4148,4149,4151,4152,4154,4156,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4171,4172,4173,4174,4176,4177,4178,4179,4180,4182,4184,4186,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,5116,5119,5122,5125,5139,5145,5155,5279,5306,5315,5377,5740,5899,6241,6354,6585,6591,6629,6822,6946,6966,7098,7102,7120,7183,7328,7416,7535,7822,7862,7888,7898", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "3454,6415,6517,17500,19212,19274,19400,19470,19531,19606,19682,19759,19837,20082,20164,20240,20316,20393,20471,20577,20683,20762,20842,20899,20957,23703,23778,23843,23909,23969,24030,24102,24175,24242,24310,24369,24428,24487,24546,24605,24659,24713,24766,24820,24874,24928,24982,25753,25832,25905,25979,26050,26122,26194,26267,26324,26382,26455,26529,26603,26678,26750,26823,26893,26964,27024,27085,27154,27223,27293,27367,27443,27507,27584,27660,27737,27802,27871,27948,28023,28092,28160,28237,28303,28364,28461,28526,28595,28694,28765,28824,28882,28939,28998,29062,29133,29205,29277,29349,29421,29488,29556,29624,29683,29746,29810,29900,29991,30051,30117,30184,30250,30320,30384,30437,30504,30565,30632,30745,30803,30866,30931,30996,31071,31144,31216,31260,31307,31353,31402,31463,31524,31585,31647,31711,31775,31839,31904,31967,32027,32088,32154,32213,32273,32335,32406,32466,32534,36577,36664,36917,37004,37092,37174,37257,37347,37438,54672,54730,54775,54841,54905,54962,55019,55073,57530,57578,57627,57678,57934,58890,58939,59327,60831,61154,61216,61404,61461,63272,63342,63420,63474,63544,63629,63677,63723,63784,63847,63913,63977,64048,64111,64176,64240,64301,64362,64414,64487,64561,64630,64705,64779,64853,64994,65064,77030,77179,77269,77491,77587,77677,78821,78910,79157,79438,79690,80389,80782,82614,82836,83058,83334,83561,83791,84021,84251,84481,84708,85127,85353,85778,86008,86436,86655,86938,87146,87277,87504,87930,88155,88582,88803,89228,89348,89624,89925,90249,90540,90854,90991,91122,91227,91469,91636,91840,92048,92319,92431,92543,92648,92765,94807,94953,95093,95179,95527,95615,95861,96279,96528,96610,96708,97365,97465,97717,98141,98396,98490,102516,102753,104777,105019,105121,105374,107530,160327,161843,172538,174066,175823,176449,176869,178130,179395,179651,179887,180434,180928,181533,181731,182311,183679,184054,184172,184710,184867,185063,185336,185592,185762,185903,185967,186332,186699,187375,187639,187977,188330,188424,188610,188916,189178,189303,189430,189669,189880,189999,190192,190369,190824,191005,191127,191386,191499,191686,191788,191895,192024,192299,192807,193303,194180,194474,195044,195193,195925,196097,196181,196517,196609,196887,215794,221165,221571,222149,222733,222824,222937,223166,223326,223478,223649,223815,223984,224151,224314,224557,224727,224900,225071,225345,225544,225749,226079,232702,232798,232894,232992,233092,233194,233296,233398,233500,233602,233702,233798,233910,234039,234162,234293,234424,234522,234636,234730,234870,235004,235100,235212,235312,235428,235524,235636,235736,235876,236012,236176,236306,236464,236614,236755,236899,237034,237146,237296,237424,237552,237688,237820,237950,238080,238192,238332,246220,246364,246502,246568,246658,246734,246838,246928,247030,247138,247246,247346,247426,247518,247616,247726,247778,247856,247962,248054,248158,248268,248390,248553,248710,258082,258182,258272,258382,258472,258713,258807,258913,259005,270517,270629,270743,270859,270975,271069,271183,271295,271397,271517,271639,271721,271825,271945,272071,272169,272263,272351,272463,272579,272701,272813,272988,273104,273190,273282,273394,273518,273585,273711,273779,273907,274051,274179,274248,274343,274458,274571,274670,274779,274890,275001,275102,275207,275307,275437,275528,275651,275745,275857,275943,276047,276143,276231,276349,276453,276557,276683,276771,276879,276979,277069,277179,277263,277365,277449,277503,277567,277673,277759,277869,277953,278073,331612,331730,331845,331925,332286,332519,333036,337978,339339,339727,342502,352555,358438,369914,387990,401521,401783,403235,409490,413768,414374,420773,420924,421656,423862,428253,432050,436021,446400,448983,450294,450607" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a44dd8dae0f5566110296e3edaa8fb5a/transformed/transition-1.2.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,95,142,185,240,287,341,393,442,503", ++ "endColumns": "39,46,42,54,46,53,51,48,60,49", ++ "endOffsets": "90,137,180,235,282,336,388,437,498,548" ++ }, ++ "to": { ++ "startLines": "984,985,1003,1007,1008,1037,1038,1039,1040,1041", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "57818,57858,58805,58987,59042,60538,60592,60644,60693,60754", ++ "endColumns": "39,46,42,54,46,53,51,48,60,49", ++ "endOffsets": "57853,57900,58843,59037,59084,60587,60639,60688,60749,60799" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "4,11", ++ "startColumns": "0,0", ++ "startOffsets": "142,510", ++ "endLines": "10,17", ++ "endColumns": "8,8", ++ "endOffsets": "509,875" ++ }, ++ "to": { ++ "startLines": "4095,4102", ++ "startColumns": "4,4", ++ "startOffsets": "269680,270052", ++ "endLines": "4101,4108", ++ "endColumns": "8,8", ++ "endOffsets": "270047,270417" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,80,81,82,83,84,85,86,87,88,89,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,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,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,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,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,583,587,591,598,605,613,623,632,641,650,651,652,657,658,662,663,669,673,674,675,676,686,687,688,692,693,699,703,704,705,706,707,763,845,890,970,1025,1107,1171,1216,1296,1307,1311,1315,1327,1343,1359,1360,1408,1412,1416,1417,1418,1421,1435,1444,1459,1501,1502,1503,1515,1519,1524,1529,1534,1537,1540,1543,1547,1551,1552,1553,1554,1555,1558,1561,1564,1567,1571,1575,1576,1579,1582,1585,1588,1592,1595,1598,1601,1604,1607,1610,1614,1617,1620,1624,1627,1637,1645,1653,1656,1659,1662,1665,1668,1671,1674,1675,1678,1681,1682,1685,1686,1687,1691,1692,1697,1698,1706,1714,1715,1723,1727,1735,1743,1751,1759,1767,1768,1776,1784,1785,1788,1791,1793,1798,1800,1805,1809,1813,1814,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1843,1844,1845,1851,1852,1856,1858,1859,1862,1867,1868,1869,1870,1871,1872,1876,1877,1878,1884,1885,1889,1891,1894,1898,1902,1906,1910,1911,1912,1913,1921,1929,1932,1937,1942,1947,1952,1956,1960,1961,1969,1970,1971,1972,1973,1981,1986,1991,1992,1993,1994,2018,2022,2027,2030,2034,2037,2041,2048,2051,2055,2059,2062,2070,2079,2092,2096,2111,2119,2122,2133,2138,2142,2177,2181,2182,2189,2193,2194,2195,2198,2203,2208,2209,2213,2218,2233,2237,2238,2250,2260,2261,2273,2278,2302,2305,2311,2314,2323,2331,2335,2338,2341,2344,2348,2351,2368,2372,2375,2390,2393,2401,2406,2413,2418,2419,2424,2425,2431,2437,2443,2474,2485,2502,2509,2513,2516,2528,2537,2541,2546,2550,2554,2558,2561,2565,2569,2572,2581,2586,2595,2599,2606,2607,2611,2620,2626,2630,2631,2647,2653,2657,2661,2662,2684,2685,2686,2687,2688,2692,2695,2696,2703,2704,2716,2728,2735,2736,2741,2746,2747,2751,2765,2770,2776,2782,2788,2793,2799,2805,2806,2811,2825,2830,2839,2852,2863,2867,2876,2884,2885,2892,2900,2925,2937,2976,2996,3061,3095,3099,3161,3274,3300,3331,3337,3345,3452,3467,3481,3487,3533,3537,3543,3549,3557,3592,3598,3605,3608,3674,3686,3698,3710,3742,3751,3760,3766,3771,3776,3782,3795,3843,3859,3914,3920,3927,3930,3934,3972,3995,4046,4054,4077,4084,4092,4189,4194,4443,4459", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "150,206,255,311,371,432,487,537,587,640,698,746,815,863,930,967,1014,1063,1119,1170,1219,1273,1327,1376,1432,1479,1535,1595,1648,1709,1781,1845,1896,1949,2001,2059,2124,2172,2223,2290,2356,2414,2483,2541,2611,2684,2758,2826,2893,2963,3029,3102,3162,3238,3298,3358,3433,3493,3552,3609,3668,3730,3792,3849,3905,3961,4019,4077,4134,4191,4250,4309,4367,4421,4477,4606,4664,4722,4780,4826,4886,4940,5008,5077,5145,5198,5250,5300,5346,5396,5443,5501,5559,5618,5678,5740,5802,5864,5926,5988,6050,6118,6179,6241,6303,6356,6410,6461,6506,6570,6629,6691,6765,6836,6902,6976,7045,7116,7189,7260,7328,7401,7477,7547,7625,7693,7759,7820,7889,7953,8019,8087,8153,8216,8284,8355,8420,8493,8556,8637,8701,8767,8837,8907,8977,9047,9114,9179,9245,9298,9374,9440,9527,9603,9679,9726,9791,9846,9896,9950,10029,10107,10180,10245,10308,10374,10445,10516,10586,10648,10717,10783,10843,10910,10977,11033,11084,11137,11189,11243,11314,11377,11436,11498,11557,11630,11697,11757,11820,11895,11967,12063,12134,12190,12261,12318,12375,12441,12505,12576,12633,12686,12749,12801,12859,12926,12990,13052,13114,13182,13240,13303,13366,13433,13505,13571,13623,13683,13741,13793,13877,13962,14043,14123,14200,14279,14356,14430,14504,14575,14655,14727,14802,14870,14947,15012,15073,15133,15208,15282,15359,15432,15502,15574,15644,15717,15781,15851,15899,15968,16020,16105,16188,16246,16312,16379,16445,16526,16601,16657,16710,16771,16829,16879,16928,16977,17026,17088,17140,17185,17266,17317,17371,17424,17478,17529,17578,17644,17695,17756,17817,17879,17929,17970,18047,18106,18165,18224,18285,18341,18397,18464,18525,18590,18645,18710,18779,18847,18925,18994,19054,19125,19199,19264,19336,19406,19473,19557,19626,19693,19763,19826,19893,19961,20044,20123,20213,20290,20358,20425,20503,20560,20617,20685,20751,20807,20867,20926,20980,21030,21080,21128,21190,21241,21307,21380,21460,21540,21604,21667,21734,21805,21863,21924,21990,22049,22116,22176,22236,22299,22367,22428,22495,22573,22643,22692,22749,22818,22879,22967,23055,23143,23231,23287,23374,23461,23548,23635,23693,23767,23837,23893,23964,24029,24091,24166,24239,24329,24395,24461,24522,24586,24648,24706,24777,24860,24919,24990,25056,25121,25182,25241,25312,25378,25443,25526,25602,25677,25758,25818,25887,25957,26026,26081,26137,26193,26254,26312,26368,26423,26485,26538,26595,26689,26758,26859,26910,26980,27043,27101,27171,27240,27310,27380,27450,27517,27584,27659,27726,27785,27839,27893,27947,28000,28052,28126,28191,28265,28338,28406,28466,28524,28585,28651,28717,28782,28846,28907,29044,29184,29233,29283,29331,29387,29445,29507,29562,29620,29679,29741,29807,29873,29916,29960,30005,30048,30099,30146,30191,30242,30293,30344,30395,30443,30509,30571,30634,30706,30763,30829,30895,30963,31031,31097,31164,31238,31301,31358,31418,31483,31550,31615,31672,31733,31791,31861,31918,32238,32388,32519,32757,32855,32970,33055,33103,33182,33247,33336,33493,33650,33803,33957,34016,34098,34272,34420,34579,34734,34907,35024,35141,35309,35421,35535,35709,35887,36020,36132,36278,36430,36562,36705,36827,37005,37187,37504,37686,37868,38058,38248,38447,38620,38730,38913,39050,39270,39454,39614,39772,39956,40159,40330,40550,40772,40927,41127,41311,41414,41555,41720,41891,42091,42295,42497,42702,42903,43102,43306,43384,43685,43851,44006,44108,44242,44519,44804,45194,45650,46159,46701,47166,47628,48099,48192,48299,48642,48749,48994,49115,49524,49772,49872,49977,50096,50630,50777,50896,51147,51280,51695,51949,52061,52182,52315,52462,56647,62185,65549,70877,74963,80464,84531,87811,93102,93858,94110,94375,95435,96339,97438,97529,99723,100045,100255,100364,100483,100667,101639,102235,103164,105815,105910,105941,106811,107097,107500,107902,108245,108457,108658,108871,109160,109445,109518,109605,109690,109789,109909,110070,110233,110394,110559,110726,110779,110912,111032,111130,111243,111436,111562,111714,111856,112026,112182,112354,112645,112757,112886,113115,113333,114188,114775,115389,115557,115699,115860,116003,116171,116328,116523,116615,116788,116950,117045,117214,117308,117397,117640,117729,118022,118136,118545,118959,119075,119493,119734,120164,120599,121009,121431,121841,121963,122372,122788,122910,123128,123312,123380,123724,123804,124160,124310,124454,124538,124927,125025,125133,125227,125357,125465,125587,125723,125831,125951,126085,126207,126335,126477,126603,126743,126869,126987,127119,127217,127327,127627,127739,127857,128321,128437,128740,128866,128962,129092,129493,129603,129727,129865,129975,130097,130409,130533,130663,131139,131267,131582,131720,131866,132028,132244,132400,132604,132672,132756,132860,133422,134053,134211,134430,134661,134884,135119,135341,135607,135745,136344,136458,136596,136708,136832,137403,137898,138444,138589,138682,138774,140671,141059,141357,141546,141752,141945,142155,142760,142905,143122,143383,143514,143946,144470,145114,145311,146259,146816,146939,147712,147933,148133,150110,150345,150469,150977,151191,151294,151424,151599,151918,152204,152344,152538,152808,153689,153977,154107,154884,155541,155687,156393,156631,158171,158321,158738,158903,159589,160059,160255,160417,160572,160716,160950,161117,162045,162331,162491,163106,163265,163593,163820,164332,164694,164773,165112,165217,165582,165953,166314,168136,168765,169841,170361,170614,170766,171756,172493,172696,172942,173189,173431,173752,173951,174256,174479,174651,175192,175461,175955,176216,176656,176815,177099,177844,178209,178514,178672,179669,180067,180295,180515,180657,182357,182463,182593,182731,182855,183085,183254,183354,183813,183927,184810,185565,186004,186128,186441,186724,186858,187049,187828,188046,188337,188616,188933,189155,189450,189733,189837,190120,190852,191168,191794,192523,193184,193373,194020,194585,194705,195202,195736,197360,198071,200119,200961,203808,205732,205972,209959,215289,216567,217810,217994,218205,224846,225554,226331,226715,228885,229116,229420,229737,230259,231715,232022,232452,232611,236088,236706,237288,237783,239291,239782,240276,240649,240878,241086,241222,241908,244717,245580,249181,249402,249695,249832,250067,251921,252911,255466,255907,257137,257558,257874,263177,263442,277443,278512", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,79,80,81,82,83,84,85,86,87,88,89,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,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,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,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,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,582,586,590,597,604,612,622,631,640,649,650,651,656,657,661,662,668,672,673,674,675,685,686,687,691,692,698,702,703,704,705,706,762,844,889,969,1024,1106,1170,1215,1295,1306,1310,1314,1326,1342,1358,1359,1407,1411,1415,1416,1417,1420,1434,1443,1458,1500,1501,1502,1514,1518,1523,1528,1533,1536,1539,1542,1546,1550,1551,1552,1553,1554,1557,1560,1563,1566,1570,1574,1575,1578,1581,1584,1587,1591,1594,1597,1600,1603,1606,1609,1613,1616,1619,1623,1626,1636,1644,1652,1655,1658,1661,1664,1667,1670,1673,1674,1677,1680,1681,1684,1685,1686,1690,1691,1696,1697,1705,1713,1714,1722,1726,1734,1742,1750,1758,1766,1767,1775,1783,1784,1787,1790,1792,1797,1799,1804,1808,1812,1813,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1842,1843,1844,1850,1851,1855,1857,1858,1861,1866,1867,1868,1869,1870,1871,1875,1876,1877,1883,1884,1888,1890,1893,1897,1901,1905,1909,1910,1911,1912,1920,1928,1931,1936,1941,1946,1951,1955,1959,1960,1968,1969,1970,1971,1972,1980,1985,1990,1991,1992,1993,2017,2021,2026,2029,2033,2036,2040,2047,2050,2054,2058,2061,2069,2078,2091,2095,2110,2118,2121,2132,2137,2141,2176,2180,2181,2188,2192,2193,2194,2197,2202,2207,2208,2212,2217,2232,2236,2237,2249,2259,2260,2272,2277,2301,2304,2310,2313,2322,2330,2334,2337,2340,2343,2347,2350,2367,2371,2374,2389,2392,2400,2405,2412,2417,2418,2423,2424,2430,2436,2442,2473,2484,2501,2508,2512,2515,2527,2536,2540,2545,2549,2553,2557,2560,2564,2568,2571,2580,2585,2594,2598,2605,2606,2610,2619,2625,2629,2630,2646,2652,2656,2660,2661,2683,2684,2685,2686,2687,2691,2694,2695,2702,2703,2715,2727,2734,2735,2740,2745,2746,2750,2764,2769,2775,2781,2787,2792,2798,2804,2805,2810,2824,2829,2838,2851,2862,2866,2875,2883,2884,2891,2899,2924,2936,2975,2995,3060,3094,3098,3160,3273,3299,3330,3336,3344,3451,3466,3480,3486,3532,3536,3542,3548,3556,3591,3597,3604,3607,3673,3685,3697,3709,3741,3750,3759,3765,3770,3775,3781,3794,3842,3858,3913,3919,3926,3929,3933,3971,3994,4045,4053,4076,4083,4091,4188,4193,4442,4458,4467", ++ "endColumns": "55,48,55,59,60,54,49,49,52,57,47,68,47,66,36,46,48,55,50,48,53,53,48,55,46,55,59,52,60,71,63,50,52,51,57,64,47,50,66,65,57,68,57,69,72,73,67,66,69,65,72,59,75,59,59,74,59,58,56,58,61,61,56,55,55,57,57,56,56,58,58,57,53,55,9,57,57,57,45,59,53,67,68,67,52,51,49,45,49,46,57,57,58,59,61,61,61,61,61,61,67,60,61,61,52,53,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,64,65,52,75,65,86,75,75,46,64,54,49,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,63,61,61,67,57,62,62,66,71,65,51,59,57,51,83,84,80,79,76,78,76,73,73,70,79,71,74,67,76,64,60,59,74,73,76,72,69,71,69,72,63,69,47,68,51,84,82,57,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,65,72,79,79,63,62,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,55,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,54,61,52,56,93,68,100,50,69,62,57,69,68,69,69,69,66,66,74,66,58,53,53,53,52,51,73,64,73,72,67,59,57,60,65,65,64,63,60,136,139,48,49,47,55,57,61,54,57,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,69,56,12,149,130,237,97,114,84,47,78,64,88,156,156,152,153,58,81,173,147,158,154,172,116,116,167,111,113,173,177,132,111,145,151,131,142,121,177,181,316,181,181,189,189,198,172,109,182,136,219,183,159,157,183,202,170,219,221,154,199,183,102,140,164,170,199,203,201,204,200,198,203,77,300,165,154,101,10,10,10,10,10,10,10,10,10,10,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,90,10,10,10,108,118,10,10,10,10,10,94,30,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,10,10,10,10,10,52,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22", ++ "endOffsets": "201,250,306,366,427,482,532,582,635,693,741,810,858,925,962,1009,1058,1114,1165,1214,1268,1322,1371,1427,1474,1530,1590,1643,1704,1776,1840,1891,1944,1996,2054,2119,2167,2218,2285,2351,2409,2478,2536,2606,2679,2753,2821,2888,2958,3024,3097,3157,3233,3293,3353,3428,3488,3547,3604,3663,3725,3787,3844,3900,3956,4014,4072,4129,4186,4245,4304,4362,4416,4472,4601,4659,4717,4775,4821,4881,4935,5003,5072,5140,5193,5245,5295,5341,5391,5438,5496,5554,5613,5673,5735,5797,5859,5921,5983,6045,6113,6174,6236,6298,6351,6405,6456,6501,6565,6624,6686,6760,6831,6897,6971,7040,7111,7184,7255,7323,7396,7472,7542,7620,7688,7754,7815,7884,7948,8014,8082,8148,8211,8279,8350,8415,8488,8551,8632,8696,8762,8832,8902,8972,9042,9109,9174,9240,9293,9369,9435,9522,9598,9674,9721,9786,9841,9891,9945,10024,10102,10175,10240,10303,10369,10440,10511,10581,10643,10712,10778,10838,10905,10972,11028,11079,11132,11184,11238,11309,11372,11431,11493,11552,11625,11692,11752,11815,11890,11962,12058,12129,12185,12256,12313,12370,12436,12500,12571,12628,12681,12744,12796,12854,12921,12985,13047,13109,13177,13235,13298,13361,13428,13500,13566,13618,13678,13736,13788,13872,13957,14038,14118,14195,14274,14351,14425,14499,14570,14650,14722,14797,14865,14942,15007,15068,15128,15203,15277,15354,15427,15497,15569,15639,15712,15776,15846,15894,15963,16015,16100,16183,16241,16307,16374,16440,16521,16596,16652,16705,16766,16824,16874,16923,16972,17021,17083,17135,17180,17261,17312,17366,17419,17473,17524,17573,17639,17690,17751,17812,17874,17924,17965,18042,18101,18160,18219,18280,18336,18392,18459,18520,18585,18640,18705,18774,18842,18920,18989,19049,19120,19194,19259,19331,19401,19468,19552,19621,19688,19758,19821,19888,19956,20039,20118,20208,20285,20353,20420,20498,20555,20612,20680,20746,20802,20862,20921,20975,21025,21075,21123,21185,21236,21302,21375,21455,21535,21599,21662,21729,21800,21858,21919,21985,22044,22111,22171,22231,22294,22362,22423,22490,22568,22638,22687,22744,22813,22874,22962,23050,23138,23226,23282,23369,23456,23543,23630,23688,23762,23832,23888,23959,24024,24086,24161,24234,24324,24390,24456,24517,24581,24643,24701,24772,24855,24914,24985,25051,25116,25177,25236,25307,25373,25438,25521,25597,25672,25753,25813,25882,25952,26021,26076,26132,26188,26249,26307,26363,26418,26480,26533,26590,26684,26753,26854,26905,26975,27038,27096,27166,27235,27305,27375,27445,27512,27579,27654,27721,27780,27834,27888,27942,27995,28047,28121,28186,28260,28333,28401,28461,28519,28580,28646,28712,28777,28841,28902,29039,29179,29228,29278,29326,29382,29440,29502,29557,29615,29674,29736,29802,29868,29911,29955,30000,30043,30094,30141,30186,30237,30288,30339,30390,30438,30504,30566,30629,30701,30758,30824,30890,30958,31026,31092,31159,31233,31296,31353,31413,31478,31545,31610,31667,31728,31786,31856,31913,32233,32383,32514,32752,32850,32965,33050,33098,33177,33242,33331,33488,33645,33798,33952,34011,34093,34267,34415,34574,34729,34902,35019,35136,35304,35416,35530,35704,35882,36015,36127,36273,36425,36557,36700,36822,37000,37182,37499,37681,37863,38053,38243,38442,38615,38725,38908,39045,39265,39449,39609,39767,39951,40154,40325,40545,40767,40922,41122,41306,41409,41550,41715,41886,42086,42290,42492,42697,42898,43097,43301,43379,43680,43846,44001,44103,44237,44514,44799,45189,45645,46154,46696,47161,47623,48094,48187,48294,48637,48744,48989,49110,49519,49767,49867,49972,50091,50625,50772,50891,51142,51275,51690,51944,52056,52177,52310,52457,56642,62180,65544,70872,74958,80459,84526,87806,93097,93853,94105,94370,95430,96334,97433,97524,99718,100040,100250,100359,100478,100662,101634,102230,103159,105810,105905,105936,106806,107092,107495,107897,108240,108452,108653,108866,109155,109440,109513,109600,109685,109784,109904,110065,110228,110389,110554,110721,110774,110907,111027,111125,111238,111431,111557,111709,111851,112021,112177,112349,112640,112752,112881,113110,113328,114183,114770,115384,115552,115694,115855,115998,116166,116323,116518,116610,116783,116945,117040,117209,117303,117392,117635,117724,118017,118131,118540,118954,119070,119488,119729,120159,120594,121004,121426,121836,121958,122367,122783,122905,123123,123307,123375,123719,123799,124155,124305,124449,124533,124922,125020,125128,125222,125352,125460,125582,125718,125826,125946,126080,126202,126330,126472,126598,126738,126864,126982,127114,127212,127322,127622,127734,127852,128316,128432,128735,128861,128957,129087,129488,129598,129722,129860,129970,130092,130404,130528,130658,131134,131262,131577,131715,131861,132023,132239,132395,132599,132667,132751,132855,133417,134048,134206,134425,134656,134879,135114,135336,135602,135740,136339,136453,136591,136703,136827,137398,137893,138439,138584,138677,138769,140666,141054,141352,141541,141747,141940,142150,142755,142900,143117,143378,143509,143941,144465,145109,145306,146254,146811,146934,147707,147928,148128,150105,150340,150464,150972,151186,151289,151419,151594,151913,152199,152339,152533,152803,153684,153972,154102,154879,155536,155682,156388,156626,158166,158316,158733,158898,159584,160054,160250,160412,160567,160711,160945,161112,162040,162326,162486,163101,163260,163588,163815,164327,164689,164768,165107,165212,165577,165948,166309,168131,168760,169836,170356,170609,170761,171751,172488,172691,172937,173184,173426,173747,173946,174251,174474,174646,175187,175456,175950,176211,176651,176810,177094,177839,178204,178509,178667,179664,180062,180290,180510,180652,182352,182458,182588,182726,182850,183080,183249,183349,183808,183922,184805,185560,185999,186123,186436,186719,186853,187044,187823,188041,188332,188611,188928,189150,189445,189728,189832,190115,190847,191163,191789,192518,193179,193368,194015,194580,194700,195197,195731,197355,198066,200114,200956,203803,205727,205967,209954,215284,216562,217805,217989,218200,224841,225549,226326,226710,228880,229111,229415,229732,230254,231710,232017,232447,232606,236083,236701,237283,237778,239286,239777,240271,240644,240873,241081,241217,241903,244712,245575,249176,249397,249690,249827,250062,251916,252906,255461,255902,257132,257553,257869,263172,263437,277438,278507,278841" ++ }, ++ "to": { ++ "startLines": "3,9,20,21,22,23,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,77,78,79,80,81,82,140,142,144,145,146,147,148,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,310,311,329,331,332,333,334,335,336,337,338,340,341,342,343,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,373,381,382,405,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,488,489,490,491,492,493,494,495,599,600,604,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,921,922,923,924,925,926,927,928,929,930,931,932,941,942,990,991,993,994,995,996,997,998,999,1000,1001,1002,1006,1009,1010,1011,1029,1030,1031,1032,1033,1034,1035,1043,1050,1051,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1076,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1187,1193,1197,1240,1247,1254,1424,1434,1443,1452,1521,1522,1523,1528,1529,1533,1534,1540,1544,1545,1546,1547,1557,1558,1559,1563,1564,1570,1574,1644,1645,1646,1647,1703,1785,1830,1910,1965,2047,2111,2156,2236,2247,2251,2255,3026,3042,3057,3058,3106,3110,3114,3115,3116,3119,3133,3140,3154,3196,3205,3206,3218,3222,3227,3232,3237,3240,3243,3246,3250,3393,3394,3395,3396,3473,3476,3479,3482,3485,3489,3493,3494,3497,3500,3503,3506,3510,3513,3516,3519,3522,3525,3528,3532,3535,3538,3542,3545,3555,3563,3571,3574,3577,3580,3583,3586,3656,3659,3660,3663,3666,3667,3670,3671,3672,3676,3677,3682,3683,3691,3699,3700,3708,3712,3720,3728,3736,3744,3752,3753,3761,3769,3770,3773,3812,3814,3819,3821,3826,3830,3834,3835,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3864,3865,3866,3872,3873,3877,3879,3880,3883,3888,3889,3890,3891,3892,3893,3897,3898,3899,3905,3906,3910,3912,3915,3919,3923,3927,3943,3944,3945,3946,3954,3962,3965,3970,3975,3980,3985,3989,3993,3994,4002,4003,4004,4005,4006,4014,4019,4024,4025,4026,4027,4051,4055,4060,4063,4067,4070,4074,4081,4084,4088,4092,4206,4214,4223,4236,4240,4255,4263,4266,4277,4282,4286,4321,4325,4326,4333,4337,4338,4339,4342,4347,4352,4353,4357,4362,4377,4381,4382,4394,4404,4405,4417,4422,4446,4449,4455,4458,4467,4475,4479,4482,4485,4488,4492,4495,4512,4516,4519,4534,4537,4545,4550,4557,4562,4563,4568,4569,4575,4581,4587,4618,4629,4646,4653,4657,4660,4672,4681,4685,4690,4694,4698,4702,4705,4709,4713,4716,4725,4730,4739,4743,4750,4751,4755,4764,4770,4774,4775,4791,4797,4801,4805,4806,4824,4825,4826,4827,4828,4832,4835,4836,4842,4843,4855,4867,4874,4875,4880,4885,4886,4890,4904,4909,4915,4921,4927,4932,4938,4944,4945,4950,4964,4969,4978,4991,5002,5006,5015,5023,5024,5031,5188,5203,5213,5741,5761,5807,5841,5845,5934,6043,6063,6084,6090,6098,6190,6359,6373,6379,6423,6427,6487,6542,6592,6630,6636,6643,6646,6700,6709,6721,6733,6760,6766,6772,6778,6783,6788,6794,6983,7017,7033,7104,7109,7142,7145,7184,7222,7240,7289,7297,7417,7421,7429,7536,7540,7760,7823", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "207,449,902,958,1018,1079,1234,1284,1334,1387,1445,1544,1613,1661,1728,1765,1812,1861,1917,1968,2017,2071,2125,2174,2230,3608,3664,3724,3777,3838,3910,6324,6420,6522,6574,6632,6697,6745,12239,12306,12372,12430,12499,12557,12627,12700,12774,12842,12909,12979,13045,13118,13178,13254,13314,13374,13449,13509,13568,13625,13684,13746,13808,13865,13921,13977,14035,14093,14150,14207,14266,14325,14383,14437,14493,14828,14886,15627,15741,15787,15847,15901,15969,16038,16106,16159,16257,16307,16353,16403,16497,16555,16613,16672,16732,16794,16856,16918,16980,17042,17104,17172,17233,17295,17357,17410,17505,17938,18276,18340,19279,21211,21285,21356,21422,21496,21565,21636,21709,21780,21848,21921,21997,22067,22145,22213,22279,22340,22409,22473,22539,22607,22673,22736,22804,22875,22940,23013,23076,23157,23221,23287,23357,23427,23497,23567,24987,25052,25118,25171,25247,25313,25400,25476,32539,32586,32821,33416,33466,33520,33599,33677,33750,33815,33878,33944,34015,34086,34156,34218,34287,34353,34413,34480,34547,34603,34654,34707,34759,34813,34884,34947,35006,35068,35127,35200,35267,35327,35390,35465,35537,35633,35704,35760,35831,35888,35945,36011,36075,36146,36203,36256,36319,36371,36429,37666,37730,37792,37854,37922,37980,38043,38106,38173,38245,38311,38363,38423,38481,38533,38617,38702,38783,38863,38940,39019,39096,39170,39244,39315,39395,39467,39542,39610,39687,39752,39813,39873,39948,40022,40099,40172,40242,40314,40384,40457,40521,40591,40639,40708,40760,40845,40928,40986,41052,41119,41185,41266,41341,41397,41450,41511,41569,41619,41668,41717,41766,41828,41880,41925,42006,42057,42111,42164,42218,42269,42318,42384,42435,42496,42557,42619,42669,42710,42787,42846,42905,42964,43025,43081,43137,43204,43265,43330,43385,43450,43519,43587,43665,43734,43794,43865,43939,44004,44076,44146,44213,44297,44366,44433,44503,44566,44633,44701,44784,44863,44953,45030,45098,45165,45243,45300,45357,45425,45491,45547,45607,45666,45720,45770,45820,45868,45930,45981,46047,46120,46200,46280,46344,46407,46474,46545,46603,46664,46730,46789,46856,46916,46976,47039,47107,47168,47235,47313,47383,47432,47489,47558,47619,47707,47795,47883,47971,48027,48114,48201,48288,48375,48433,48507,48577,48633,48704,48769,48831,48906,48979,49069,49135,49201,49262,49326,49388,49446,49517,49600,49659,49730,49796,49861,49922,49981,50052,50118,50183,50266,50342,50417,50498,50558,50627,50697,50766,50821,50877,50933,50994,51052,51108,51163,51225,51278,51335,51429,51498,51599,51650,51720,51783,51841,51911,51980,52050,52120,52190,52257,52324,52399,52466,52525,52579,52633,52687,52740,52792,53844,53909,53983,54056,54124,54184,54242,54303,54369,54435,54500,54564,55078,55215,58075,58124,58215,58263,58319,58377,58439,58494,58552,58611,58673,58739,58944,59089,59133,59178,60156,60207,60254,60299,60350,60401,60452,60836,61221,61287,61466,61529,61601,61658,61724,61790,61858,61926,61992,62059,62133,62196,62253,62313,62378,62445,62510,62567,62628,62686,62756,62883,65112,65262,65393,65631,65729,65844,65929,65977,66056,66121,66210,66367,66524,66677,66831,66890,66972,67146,67294,67453,67608,67781,67898,68015,68183,68295,68409,68583,68761,68894,69006,69152,69304,69436,69579,69701,69879,70061,70378,70560,70742,70932,71122,71321,71494,71604,71787,71924,72144,72328,72488,72646,72830,73033,73204,73424,73646,73801,74001,74185,74288,74429,74594,74765,74965,75169,75371,75576,75777,75976,76180,76258,76559,76725,76880,77274,77682,77959,80787,81177,81633,92770,93284,93721,94155,98495,98588,98695,99038,99145,99390,99511,99920,100168,100268,100373,100492,101001,101148,101267,101518,101651,102066,102320,107535,107656,107789,107936,111957,117371,120642,125846,129768,135145,139129,142301,147468,148224,148454,148697,196892,197796,198721,198812,201006,201328,201538,201647,201766,201950,202922,203392,204143,206620,207033,207064,207934,208220,208623,209025,209368,209580,209781,209994,210283,221170,221243,221330,221415,226084,226204,226365,226528,226689,226854,227021,227074,227207,227327,227425,227538,227731,227857,228009,228151,228321,228477,228649,228940,229052,229181,229410,229628,230483,231070,231684,231852,231994,232155,232298,232466,239095,239290,239382,239555,239717,239812,239981,240075,240164,240407,240496,240789,240903,241312,241726,241842,242260,242501,242931,243366,243776,244198,244608,244730,245139,245555,245677,245895,248715,248783,249127,249207,249563,249713,249857,249941,250330,250428,250536,250630,250760,250868,250990,251126,251234,251354,251488,251610,251738,251880,252006,252146,252272,252390,252522,252620,252730,253030,253142,253260,253724,253840,254143,254269,254365,254495,254896,255006,255130,255268,255378,255500,255812,255936,256066,256542,256670,256985,257123,257269,257431,257647,257803,259010,259078,259162,259266,259753,260309,260467,260686,260917,261140,261375,261597,261863,262001,262600,262714,262852,262964,263088,263659,264154,264700,264845,264938,265030,266837,267225,267523,267712,267918,268111,268321,268926,269071,269288,269549,278217,278649,279173,279817,280014,280962,281519,281642,282415,282636,282836,284813,285048,285172,285584,285798,285901,286031,286206,286458,286654,286794,286988,287258,288139,288427,288557,289334,289991,290137,290843,291081,292621,292771,293188,293353,294039,294509,294705,294796,294880,295024,295258,295425,296353,296639,296799,297414,297573,297901,298128,298640,299002,299081,299420,299525,299890,300261,300622,302444,303073,304149,304573,304826,304978,305968,306705,306908,307154,307401,307643,307964,308163,308468,308691,308863,309404,309673,310167,310428,310868,311027,311311,312056,312421,312726,312884,313881,314279,314507,314727,314869,316159,316265,316395,316533,316657,316887,317056,317156,317441,317555,318438,319193,319632,319756,320002,320195,320329,320520,321299,321517,321808,322087,322404,322626,322921,323204,323308,323591,324323,324639,325200,325929,326590,326779,327330,327800,327920,328322,333928,334401,334700,352560,353337,354931,356035,356184,359570,361865,362305,363057,363241,363452,367678,388106,388478,388680,389815,389965,392552,394365,401788,403240,403547,403977,404136,405884,406104,406686,407181,407800,407953,408109,408302,408531,408739,408875,416159,417197,417894,421161,421277,422501,422638,423867,425005,425536,427015,427263,432055,432171,432346,436026,436173,444031,446405", ++ "endLines": "3,9,20,21,22,23,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,77,78,79,80,81,82,140,142,144,145,146,147,148,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,305,310,311,329,331,332,333,334,335,336,337,338,340,341,342,343,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,373,381,382,405,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,488,489,490,491,492,493,494,495,599,600,604,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,921,922,923,924,925,926,927,928,929,930,931,932,941,942,990,991,993,994,995,996,997,998,999,1000,1001,1002,1006,1009,1010,1011,1029,1030,1031,1032,1033,1034,1035,1043,1050,1051,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1079,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1189,1196,1200,1246,1253,1261,1433,1442,1451,1460,1521,1522,1527,1528,1532,1533,1539,1543,1544,1545,1546,1556,1557,1558,1562,1563,1569,1573,1574,1644,1645,1646,1702,1784,1829,1909,1964,2046,2110,2155,2235,2246,2250,2254,2266,3041,3056,3057,3105,3109,3113,3114,3115,3118,3132,3139,3153,3195,3196,3205,3217,3221,3226,3231,3236,3239,3242,3245,3249,3253,3393,3394,3395,3396,3475,3478,3481,3484,3488,3492,3493,3496,3499,3502,3505,3509,3512,3515,3518,3521,3524,3527,3531,3534,3537,3541,3544,3554,3562,3570,3573,3576,3579,3582,3585,3588,3658,3659,3662,3665,3666,3669,3670,3671,3675,3676,3681,3682,3690,3698,3699,3707,3711,3719,3727,3735,3743,3751,3752,3760,3768,3769,3772,3775,3813,3818,3820,3825,3829,3833,3834,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3863,3864,3865,3871,3872,3876,3878,3879,3882,3887,3888,3889,3890,3891,3892,3896,3897,3898,3904,3905,3909,3911,3914,3918,3922,3926,3930,3943,3944,3945,3953,3961,3964,3969,3974,3979,3984,3988,3992,3993,4001,4002,4003,4004,4005,4013,4018,4023,4024,4025,4026,4050,4054,4059,4062,4066,4069,4073,4080,4083,4087,4091,4094,4213,4222,4235,4239,4254,4262,4265,4276,4281,4285,4320,4324,4325,4332,4336,4337,4338,4341,4346,4351,4352,4356,4361,4376,4380,4381,4393,4403,4404,4416,4421,4445,4448,4454,4457,4466,4474,4478,4481,4484,4487,4491,4494,4511,4515,4518,4533,4536,4544,4549,4556,4561,4562,4567,4568,4574,4580,4586,4617,4628,4645,4652,4656,4659,4671,4680,4684,4689,4693,4697,4701,4704,4708,4712,4715,4724,4729,4738,4742,4749,4750,4754,4763,4769,4773,4774,4790,4796,4800,4804,4805,4823,4824,4825,4826,4827,4831,4834,4835,4841,4842,4854,4866,4873,4874,4879,4884,4885,4889,4903,4908,4914,4920,4926,4931,4937,4943,4944,4949,4963,4968,4977,4990,5001,5005,5014,5022,5023,5030,5038,5202,5212,5250,5760,5806,5840,5844,5895,6042,6062,6083,6089,6097,6189,6203,6372,6378,6422,6426,6432,6492,6548,6623,6635,6642,6645,6699,6708,6720,6732,6759,6765,6771,6777,6782,6787,6793,6801,7016,7032,7073,7108,7114,7144,7148,7221,7239,7288,7296,7316,7420,7428,7515,7539,7759,7767,7831", ++ "endColumns": "55,48,55,59,60,54,49,49,52,57,47,68,47,66,36,46,48,55,50,48,53,53,48,55,46,55,59,52,60,71,63,50,52,51,57,64,47,50,66,65,57,68,57,69,72,73,67,66,69,65,72,59,75,59,59,74,59,58,56,58,61,61,56,55,55,57,57,56,56,58,58,57,53,55,9,57,57,57,45,59,53,67,68,67,52,51,49,45,49,46,57,57,58,59,61,61,61,61,61,61,67,60,61,61,52,53,50,44,63,58,61,73,70,65,73,68,70,72,70,67,72,75,69,77,67,65,60,68,63,65,67,65,62,67,70,64,72,62,80,63,65,69,69,69,69,66,64,65,52,75,65,86,75,75,46,64,54,49,53,78,77,72,64,62,65,70,70,69,61,68,65,59,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,95,70,55,70,56,56,65,63,70,56,52,62,51,57,66,63,61,61,67,57,62,62,66,71,65,51,59,57,51,83,84,80,79,76,78,76,73,73,70,79,71,74,67,76,64,60,59,74,73,76,72,69,71,69,72,63,69,47,68,51,84,82,57,65,66,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,50,53,52,53,50,48,65,50,60,60,61,49,40,76,58,58,58,60,55,55,66,60,64,54,64,68,67,77,68,59,70,73,64,71,69,66,83,68,66,69,62,66,67,82,78,89,76,67,66,77,56,56,67,65,55,59,58,53,49,49,47,61,50,65,72,79,79,63,62,66,70,57,60,65,58,66,59,59,62,67,60,66,77,69,48,56,68,60,87,87,87,87,55,86,86,86,86,57,73,69,55,70,64,61,74,72,89,65,65,60,63,61,57,70,82,58,70,65,64,60,58,70,65,64,82,75,74,80,59,68,69,68,54,55,55,60,57,55,54,61,52,56,93,68,100,50,69,62,57,69,68,69,69,69,66,66,74,66,58,53,53,53,52,51,73,64,73,72,67,59,57,60,65,65,64,63,60,136,139,48,49,47,55,57,61,54,57,58,61,65,65,42,43,44,42,50,46,44,50,50,50,50,47,65,61,62,71,56,65,65,67,67,65,66,73,62,56,59,64,66,64,56,60,57,69,56,12,149,130,237,97,114,84,47,78,64,88,156,156,152,153,58,81,173,147,158,154,172,116,116,167,111,113,173,177,132,111,145,151,131,142,121,177,181,316,181,181,189,189,198,172,109,182,136,219,183,159,157,183,202,170,219,221,154,199,183,102,140,164,170,199,203,201,204,200,198,203,77,300,165,154,101,10,10,10,10,10,10,10,10,10,10,92,106,10,106,10,120,10,10,99,104,118,10,146,118,10,132,10,10,111,120,132,146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,90,10,10,10,108,118,10,10,10,10,10,94,30,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,10,10,10,10,10,52,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,91,10,10,94,10,93,88,10,88,10,113,10,10,115,10,10,10,10,10,10,10,121,10,10,121,10,10,10,10,10,10,10,10,83,10,97,107,93,129,107,121,135,107,119,133,121,127,141,125,139,125,117,131,97,109,10,111,117,10,115,10,10,95,10,10,109,123,137,109,121,10,123,129,10,127,10,10,10,10,10,10,10,67,83,103,10,10,10,10,10,10,10,10,10,137,10,113,137,111,123,10,10,10,144,92,91,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,123,10,10,102,129,10,10,10,139,10,10,10,10,129,10,10,145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,78,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,158,10,10,10,10,157,10,10,10,10,141,10,105,129,137,123,10,10,99,10,113,10,10,10,123,10,10,133,10,10,10,10,10,10,10,10,10,103,10,10,10,10,10,10,10,10,10,119,10,10,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22", ++ "endOffsets": "258,493,953,1013,1074,1129,1279,1329,1382,1440,1488,1608,1656,1723,1760,1807,1856,1912,1963,2012,2066,2120,2169,2225,2272,3659,3719,3772,3833,3905,3969,6370,6468,6569,6627,6692,6740,6791,12301,12367,12425,12494,12552,12622,12695,12769,12837,12904,12974,13040,13113,13173,13249,13309,13369,13444,13504,13563,13620,13679,13741,13803,13860,13916,13972,14030,14088,14145,14202,14261,14320,14378,14432,14488,14617,14881,14939,15680,15782,15842,15896,15964,16033,16101,16154,16206,16302,16348,16398,16445,16550,16608,16667,16727,16789,16851,16913,16975,17037,17099,17167,17228,17290,17352,17405,17459,17551,17978,18335,18394,19336,21280,21351,21417,21491,21560,21631,21704,21775,21843,21916,21992,22062,22140,22208,22274,22335,22404,22468,22534,22602,22668,22731,22799,22870,22935,23008,23071,23152,23216,23282,23352,23422,23492,23562,23629,25047,25113,25166,25242,25308,25395,25471,25547,32581,32646,32871,33461,33515,33594,33672,33745,33810,33873,33939,34010,34081,34151,34213,34282,34348,34408,34475,34542,34598,34649,34702,34754,34808,34879,34942,35001,35063,35122,35195,35262,35322,35385,35460,35532,35628,35699,35755,35826,35883,35940,36006,36070,36141,36198,36251,36314,36366,36424,36491,37725,37787,37849,37917,37975,38038,38101,38168,38240,38306,38358,38418,38476,38528,38612,38697,38778,38858,38935,39014,39091,39165,39239,39310,39390,39462,39537,39605,39682,39747,39808,39868,39943,40017,40094,40167,40237,40309,40379,40452,40516,40586,40634,40703,40755,40840,40923,40981,41047,41114,41180,41261,41336,41392,41445,41506,41564,41614,41663,41712,41761,41823,41875,41920,42001,42052,42106,42159,42213,42264,42313,42379,42430,42491,42552,42614,42664,42705,42782,42841,42900,42959,43020,43076,43132,43199,43260,43325,43380,43445,43514,43582,43660,43729,43789,43860,43934,43999,44071,44141,44208,44292,44361,44428,44498,44561,44628,44696,44779,44858,44948,45025,45093,45160,45238,45295,45352,45420,45486,45542,45602,45661,45715,45765,45815,45863,45925,45976,46042,46115,46195,46275,46339,46402,46469,46540,46598,46659,46725,46784,46851,46911,46971,47034,47102,47163,47230,47308,47378,47427,47484,47553,47614,47702,47790,47878,47966,48022,48109,48196,48283,48370,48428,48502,48572,48628,48699,48764,48826,48901,48974,49064,49130,49196,49257,49321,49383,49441,49512,49595,49654,49725,49791,49856,49917,49976,50047,50113,50178,50261,50337,50412,50493,50553,50622,50692,50761,50816,50872,50928,50989,51047,51103,51158,51220,51273,51330,51424,51493,51594,51645,51715,51778,51836,51906,51975,52045,52115,52185,52252,52319,52394,52461,52520,52574,52628,52682,52735,52787,52861,53904,53978,54051,54119,54179,54237,54298,54364,54430,54495,54559,54620,55210,55350,58119,58169,58258,58314,58372,58434,58489,58547,58606,58668,58734,58800,58982,59128,59173,59216,60202,60249,60294,60345,60396,60447,60498,60879,61282,61344,61524,61596,61653,61719,61785,61853,61921,61987,62054,62128,62191,62248,62308,62373,62440,62505,62562,62623,62681,62751,62808,63198,65257,65388,65626,65724,65839,65924,65972,66051,66116,66205,66362,66519,66672,66826,66885,66967,67141,67289,67448,67603,67776,67893,68010,68178,68290,68404,68578,68756,68889,69001,69147,69299,69431,69574,69696,69874,70056,70373,70555,70737,70927,71117,71316,71489,71599,71782,71919,72139,72323,72483,72641,72825,73028,73199,73419,73641,73796,73996,74180,74283,74424,74589,74760,74960,75164,75366,75571,75772,75971,76175,76253,76554,76720,76875,76977,77403,77954,78239,81172,81628,82137,93279,93716,94150,94593,98583,98690,99033,99140,99385,99506,99915,100163,100263,100368,100487,100996,101143,101262,101513,101646,102061,102315,102427,107651,107784,107931,111952,117366,120637,125841,129763,135140,139124,142296,147463,148219,148449,148692,149730,197791,198716,198807,201001,201323,201533,201642,201761,201945,202917,203387,204138,206615,206710,207059,207929,208215,208618,209020,209363,209575,209776,209989,210278,210563,221238,221325,221410,221509,226199,226360,226523,226684,226849,227016,227069,227202,227322,227420,227533,227726,227852,228004,228146,228316,228472,228644,228935,229047,229176,229405,229623,230478,231065,231679,231847,231989,232150,232293,232461,232618,239285,239377,239550,239712,239807,239976,240070,240159,240402,240491,240784,240898,241307,241721,241837,242255,242496,242926,243361,243771,244193,244603,244725,245134,245550,245672,245890,246074,248778,249122,249202,249558,249708,249852,249936,250325,250423,250531,250625,250755,250863,250985,251121,251229,251349,251483,251605,251733,251875,252001,252141,252267,252385,252517,252615,252725,253025,253137,253255,253719,253835,254138,254264,254360,254490,254891,255001,255125,255263,255373,255495,255807,255931,256061,256537,256665,256980,257118,257264,257426,257642,257798,258002,259073,259157,259261,259748,260304,260462,260681,260912,261135,261370,261592,261858,261996,262595,262709,262847,262959,263083,263654,264149,264695,264840,264933,265025,266832,267220,267518,267707,267913,268106,268316,268921,269066,269283,269544,269675,278644,279168,279812,280009,280957,281514,281637,282410,282631,282831,284808,285043,285167,285579,285793,285896,286026,286201,286453,286649,286789,286983,287253,288134,288422,288552,289329,289986,290132,290838,291076,292616,292766,293183,293348,294034,294504,294700,294791,294875,295019,295253,295420,296348,296634,296794,297409,297568,297896,298123,298635,298997,299076,299415,299520,299885,300256,300617,302439,303068,304144,304568,304821,304973,305963,306700,306903,307149,307396,307638,307959,308158,308463,308686,308858,309399,309668,310162,310423,310863,311022,311306,312051,312416,312721,312879,313876,314274,314502,314722,314864,316154,316260,316390,316528,316652,316882,317051,317151,317436,317550,318433,319188,319627,319751,319997,320190,320324,320515,321294,321512,321803,322082,322399,322621,322916,323199,323303,323586,324318,324634,325195,325924,326585,326774,327325,327795,327915,328317,328851,334396,334695,336634,353332,354926,356030,356179,358303,361860,362300,363052,363236,363447,367673,368256,388473,388675,389810,389960,390135,392772,394692,403035,403542,403972,404131,405879,406099,406681,407176,407795,407948,408104,408297,408526,408734,408870,409111,417192,417889,419117,421272,421441,422633,422779,425000,425531,427010,427258,427941,432166,432341,435277,436168,444026,444269,446734" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7cf662db696d7c0bf4b24c08fd87c12c/transformed/viewpager2-1.0.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "4", ++ "endColumns": "24", ++ "endOffsets": "160" ++ }, ++ "to": { ++ "startLines": "7889", ++ "startColumns": "4", ++ "startOffsets": "450299", ++ "endLines": "7891", ++ "endColumns": "24", ++ "endOffsets": "450404" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ffe1920c397f0b305742d655a3e2f95/transformed/coordinatorlayout-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,6,16", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,116,261,869", ++ "endLines": "2,5,15,104", ++ "endColumns": "60,12,24,24", ++ "endOffsets": "111,256,864,6075" ++ }, ++ "to": { ++ "startLines": "49,5039,6246,6252", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "2436,328856,382193,382404", ++ "endLines": "49,5041,6251,6335", ++ "endColumns": "60,12,24,24", ++ "endOffsets": "2492,328996,382399,386915" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4dd5b2b5dff266b02e3d542070c12c10/transformed/lifecycle-runtime-2.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "42", ++ "endOffsets": "93" ++ }, ++ "to": { ++ "startLines": "1044", ++ "startColumns": "4", ++ "startOffsets": "60884", ++ "endColumns": "42", ++ "endOffsets": "60922" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/bc43dd7f4418060d7e97eafa583bae0e/transformed/savedstate-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "53", ++ "endOffsets": "104" ++ }, ++ "to": { ++ "startLines": "1045", ++ "startColumns": "4", ++ "startOffsets": "60927", ++ "endColumns": "53", ++ "endOffsets": "60976" ++ } ++ }, ++ { ++ "source": "/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/packaged_res/fullDebug/packageFullDebugResources/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "42", ++ "endOffsets": "93" ++ }, ++ "to": { ++ "startLines": "1107", ++ "startColumns": "4", ++ "startOffsets": "65069", ++ "endColumns": "42", ++ "endOffsets": "65107" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9db7760b0deff7e4ab8d80cd4aa38e52/transformed/drawerlayout-1.1.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,111,159,211", ++ "endLines": "2,3,4,8", ++ "endColumns": "55,47,51,24", ++ "endOffsets": "106,154,206,426" ++ }, ++ "to": { ++ "startLines": "74,76,612,6355", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "3459,3560,33364,387995", ++ "endLines": "74,76,612,6358", ++ "endColumns": "55,47,51,24", ++ "endOffsets": "3510,3603,33411,388101" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/fe7845793de81b169cc70f2cabd7542f/transformed/constraintlayout-2.0.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,8,9,17,18,19,20,21,22,23,27,28,29,30,38,46,47,48,53,54,59,64,65,66,71,72,77,78,83,84,85,91,92,93,98,103,104,105,109,110,111,112,115,116,119,122,123,124,125,126,129,132,133,134,135,140,143,146,147,148,153,154,155,158,161,162,165,168,171,174,175,176,179,182,183,188,189,194,197,200,201,202,203,204,205,206,207,208,209,221,222,223,224,225,231,232,233,236,241,242,243,244,253,259,260,264,265,266,267,276,356,280,281,282,283,284,285,286,287,288,289,290,291,296,297,298,299,300,301,302,308,309,315,322,334,335,336,337,338,355", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,112,298,359,650,702,750,801,853,914,960,1093,1145,1195,1246,1555,1867,1912,1971,2168,2225,2420,2602,2656,2713,2905,2963,3159,3215,3409,3466,3517,3739,3791,3846,4036,4212,4262,4318,4478,4539,4599,4669,4802,4870,4999,5125,5187,5252,5320,5387,5510,5635,5702,5767,5832,6013,6134,6255,6321,6388,6598,6667,6733,6858,6984,7051,7177,7304,7429,7556,7612,7677,7803,7926,7991,8199,8266,8446,8566,8686,8751,8813,8875,8937,8996,9056,9117,9178,9237,9738,9789,9838,9886,9944,10174,10221,10281,10387,10567,10613,10660,10712,11042,11280,11335,11474,11520,11575,11620,11961,36954,12098,16317,19922,20066,24372,24875,25295,25926,26578,26619,26673,26723,27345,27998,28496,31373,31719,31951,32091,32596,32726,33153,33548,34580,34812,34939,35045,35529,36651", ++ "endLines": "2,7,8,16,17,18,19,20,21,22,26,27,28,29,37,45,46,47,52,53,58,63,64,65,70,71,76,77,82,83,84,90,91,92,97,102,103,104,108,109,110,111,114,115,118,121,122,123,124,125,128,131,132,133,134,139,142,145,146,147,152,153,154,157,160,161,164,167,170,173,174,175,178,181,182,187,188,193,196,199,200,201,202,203,204,205,206,207,208,220,221,222,223,224,230,231,232,235,240,241,242,243,252,258,259,263,264,265,266,275,279,356,280,281,282,283,284,285,286,287,288,289,290,295,296,297,298,299,300,301,307,308,314,321,333,334,335,336,337,354,355", ++ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302", ++ "endOffsets": "107,293,354,645,697,745,796,848,909,955,1088,1140,1190,1241,1550,1862,1907,1966,2163,2220,2415,2597,2651,2708,2900,2958,3154,3210,3404,3461,3512,3734,3786,3841,4031,4207,4257,4313,4473,4534,4594,4664,4797,4865,4994,5120,5182,5247,5315,5382,5505,5630,5697,5762,5827,6008,6129,6250,6316,6383,6593,6662,6728,6853,6979,7046,7172,7299,7424,7551,7607,7672,7798,7921,7986,8194,8261,8441,8561,8681,8746,8808,8870,8932,8991,9051,9112,9173,9232,9733,9784,9833,9881,9939,10169,10216,10276,10382,10562,10608,10655,10707,11037,11275,11330,11469,11515,11570,11615,11956,12093,36990,16312,19917,20061,24367,24870,25290,25921,26573,26614,26668,26718,27340,27993,28491,31368,31714,31946,32086,32591,32721,33148,33543,34575,34807,34934,35040,35524,36646,36949" ++ }, ++ "to": { ++ "startLines": "2,4,10,11,19,25,31,46,47,48,50,54,55,56,57,65,75,83,84,89,90,95,100,101,102,107,108,113,114,119,120,121,127,128,129,134,139,149,150,154,155,156,157,160,161,164,167,168,169,170,171,174,177,178,179,180,185,188,191,192,193,198,199,200,203,206,207,210,213,216,219,220,221,224,227,228,233,234,239,242,245,246,247,248,249,250,251,252,253,254,306,307,308,309,313,319,320,321,324,339,344,363,364,374,380,383,387,388,389,390,399,992,6242,6243,6244,6245,6336,6541,6549,6550,6551,6552,6553,6554,6559,6560,6561,6967,6968,6969,6970,6976,6977,7074,7081,7103,7329,7350,7832,7833,7850", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "150,263,498,559,850,1186,1493,2277,2329,2390,2497,2630,2682,2732,2783,3092,3515,3974,4033,4230,4287,4482,4664,4718,4775,4967,5025,5221,5277,5471,5528,5579,5801,5853,5908,6098,6274,6796,6852,7012,7073,7133,7203,7336,7404,7533,7659,7721,7786,7854,7921,8044,8169,8236,8301,8366,8547,8668,8789,8855,8922,9132,9201,9267,9392,9518,9585,9711,9838,9963,10090,10146,10211,10337,10460,10525,10733,10800,10980,11100,11220,11285,11347,11409,11471,11530,11590,11651,11712,11771,14622,14673,14722,14770,15004,15234,15281,15341,15447,16211,16450,17556,17608,17983,18221,18399,18538,18584,18639,18684,19025,58174,369919,374138,377743,377887,386920,393945,394697,395328,395980,396021,396075,396125,396747,397400,397898,414379,414725,414957,415097,415602,415732,419122,419517,420929,428258,428923,446739,447223,448345", ++ "endLines": "2,8,10,18,19,25,31,46,47,48,53,54,55,56,64,72,75,83,88,89,94,99,100,101,106,107,112,113,118,119,120,126,127,128,133,138,139,149,153,154,155,156,159,160,163,166,167,168,169,170,173,176,177,178,179,184,187,190,191,192,197,198,199,202,205,206,209,212,215,218,219,220,223,226,227,232,233,238,241,244,245,246,247,248,249,250,251,252,253,265,306,307,308,309,318,319,320,323,328,339,344,363,372,379,380,386,387,388,389,398,402,992,6242,6243,6244,6245,6336,6541,6549,6550,6551,6552,6553,6558,6559,6560,6561,6967,6968,6969,6975,6976,6982,7080,7092,7103,7329,7350,7832,7849,7850", ++ "endColumns": "56,11,60,11,51,47,50,51,60,45,11,51,49,50,11,11,44,58,11,56,11,11,53,56,11,57,11,55,11,56,50,11,51,54,11,11,49,55,11,60,59,69,11,67,11,11,61,64,67,66,11,11,66,64,64,11,11,11,65,66,11,68,65,11,11,66,11,11,11,11,55,64,11,11,64,11,66,11,11,11,64,61,61,61,58,59,60,60,58,11,50,48,47,57,11,46,59,11,11,45,46,51,11,11,54,11,45,54,44,11,11,40,4218,3604,143,4305,502,419,630,651,40,53,49,382,652,497,2876,345,231,139,35,129,133,35,35,231,126,105,483,35,302", ++ "endOffsets": "202,444,554,845,897,1229,1539,2324,2385,2431,2625,2677,2727,2778,3087,3399,3555,4028,4225,4282,4477,4659,4713,4770,4962,5020,5216,5272,5466,5523,5574,5796,5848,5903,6093,6269,6319,6847,7007,7068,7128,7198,7331,7399,7528,7654,7716,7781,7849,7916,8039,8164,8231,8296,8361,8542,8663,8784,8850,8917,9127,9196,9262,9387,9513,9580,9706,9833,9958,10085,10141,10206,10332,10455,10520,10728,10795,10975,11095,11215,11280,11342,11404,11466,11525,11585,11646,11707,11766,12234,14668,14717,14765,14823,15229,15276,15336,15442,15622,16252,16492,17603,17933,18216,18271,18533,18579,18634,18679,19020,19157,58210,374133,377738,377882,382188,387418,394360,395323,395975,396016,396070,396120,396742,397395,397893,400770,414720,414952,415092,415597,415727,416154,419512,420544,421156,428380,429024,447218,448340,448643" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/5ac2b811be8f6b6e801e40541beb0df8/transformed/cardview-1.0.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356", ++ "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34", ++ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", ++ "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174" ++ }, ++ "to": { ++ "startLines": "24,427,428,429,430,601,602,603,1222,3197,3199,3202,5906", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "1134,20962,21023,21085,21147,32651,32710,32767,79695,206715,206779,206905,358646", ++ "endLines": "24,427,428,429,430,601,602,603,1228,3198,3201,3204,5933", ++ "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", ++ "endOffsets": "1181,21018,21080,21142,21206,32705,32762,32816,80104,206774,206900,207028,359565" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/fef64e29f65a0374786979b4dd8facf7/transformed/lifecycle-viewmodel-2.3.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "49", ++ "endOffsets": "100" ++ }, ++ "to": { ++ "startLines": "1046", ++ "startColumns": "4", ++ "startOffsets": "60981", ++ "endColumns": "49", ++ "endOffsets": "61026" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/navigation_json/coreNativeDebug/extractDeepLinksCoreNativeDebug/navigation.json b/node_modules/detox/android/detox/build/intermediates/navigation_json/coreNativeDebug/extractDeepLinksCoreNativeDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/navigation_json/coreNativeDebug/extractDeepLinksCoreNativeDebug/navigation.json +@@ -0,0 +1 @@ ++[] +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/navigation_json/fullDebug/extractDeepLinksFullDebug/navigation.json b/node_modules/detox/android/detox/build/intermediates/navigation_json/fullDebug/extractDeepLinksFullDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/navigation_json/fullDebug/extractDeepLinksFullDebug/navigation.json +@@ -0,0 +1 @@ ++[] +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/coreNativeDebug/generateCoreNativeDebugResources/nestedResourcesValidationReport.txt b/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/coreNativeDebug/generateCoreNativeDebugResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/coreNativeDebug/generateCoreNativeDebugResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/coreNativeDebugAndroidTest/generateCoreNativeDebugAndroidTestResources/nestedResourcesValidationReport.txt b/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/coreNativeDebugAndroidTest/generateCoreNativeDebugAndroidTestResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/coreNativeDebugAndroidTest/generateCoreNativeDebugAndroidTestResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/fullDebug/generateFullDebugResources/nestedResourcesValidationReport.txt b/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/fullDebug/generateFullDebugResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/fullDebug/generateFullDebugResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/fullDebugAndroidTest/generateFullDebugAndroidTestResources/nestedResourcesValidationReport.txt b/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/fullDebugAndroidTest/generateFullDebugAndroidTestResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/nested_resources_validation_report/fullDebugAndroidTest/generateFullDebugAndroidTestResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/packaged_manifests/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestManifest/AndroidManifest.xml b/node_modules/detox/android/detox/build/intermediates/packaged_manifests/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..cc0ecfc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/packaged_manifests/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestManifest/AndroidManifest.xml +@@ -0,0 +1,56 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/packaged_manifests/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestManifest/output-metadata.json b/node_modules/detox/android/detox/build/intermediates/packaged_manifests/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestManifest/output-metadata.json +new file mode 100644 +index 0000000..87fc577 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/packaged_manifests/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestManifest/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "PACKAGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.wix.detox.test", ++ "variantName": "coreNativeDebugAndroidTest", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/packaged_manifests/fullDebugAndroidTest/processFullDebugAndroidTestManifest/AndroidManifest.xml b/node_modules/detox/android/detox/build/intermediates/packaged_manifests/fullDebugAndroidTest/processFullDebugAndroidTestManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..cc0ecfc +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/packaged_manifests/fullDebugAndroidTest/processFullDebugAndroidTestManifest/AndroidManifest.xml +@@ -0,0 +1,56 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/packaged_manifests/fullDebugAndroidTest/processFullDebugAndroidTestManifest/output-metadata.json b/node_modules/detox/android/detox/build/intermediates/packaged_manifests/fullDebugAndroidTest/processFullDebugAndroidTestManifest/output-metadata.json +new file mode 100644 +index 0000000..6fb48a7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/packaged_manifests/fullDebugAndroidTest/processFullDebugAndroidTestManifest/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "PACKAGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.wix.detox.test", ++ "variantName": "fullDebugAndroidTest", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/packaged_res/coreNativeDebug/packageCoreNativeDebugResources/values/values.xml b/node_modules/detox/android/detox/build/intermediates/packaged_res/coreNativeDebug/packageCoreNativeDebugResources/values/values.xml +new file mode 100644 +index 0000000..26205e7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/packaged_res/coreNativeDebug/packageCoreNativeDebugResources/values/values.xml +@@ -0,0 +1,4 @@ ++ ++ ++ Detox ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/packaged_res/fullDebug/packageFullDebugResources/values/values.xml b/node_modules/detox/android/detox/build/intermediates/packaged_res/fullDebug/packageFullDebugResources/values/values.xml +new file mode 100644 +index 0000000..26205e7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/packaged_res/fullDebug/packageFullDebugResources/values/values.xml +@@ -0,0 +1,4 @@ ++ ++ ++ Detox ++ +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/com/wix/detox/test/BuildConfig.dex b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/com/wix/detox/test/BuildConfig.dex +new file mode 100644 +index 0000000..0bba1ff +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/com/wix/detox/test/BuildConfig.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_0.jar b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_0.jar +new file mode 100644 +index 0000000..becc7b3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_0.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_1.jar b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_1.jar +new file mode 100644 +index 0000000..5fa8570 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_1.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_2.jar b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_2.jar +new file mode 100644 +index 0000000..bb58436 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_2.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_3.jar b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_3.jar +new file mode 100644 +index 0000000..b8ab788 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/coreNativeDebugAndroidTest/dexBuilderCoreNativeDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_3.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/com/wix/detox/test/BuildConfig.dex b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/com/wix/detox/test/BuildConfig.dex +new file mode 100644 +index 0000000..05578b5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/com/wix/detox/test/BuildConfig.dex differ +diff --git a/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_0.jar b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_0.jar +new file mode 100644 +index 0000000..becc7b3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_0.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_1.jar b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_1.jar +new file mode 100644 +index 0000000..5fa8570 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_1.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_2.jar b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_2.jar +new file mode 100644 +index 0000000..bb58436 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_2.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_3.jar b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_3.jar +new file mode 100644 +index 0000000..b8ab788 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/project_dex_archive/fullDebugAndroidTest/dexBuilderFullDebugAndroidTest/out/e59acc13063a829717f8185bdb0972dd4a60aa12eb2f05058f776ea59aece350_3.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/META-INF/detox_coreNativeDebug.kotlin_module b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/META-INF/detox_coreNativeDebug.kotlin_module +new file mode 100644 +index 0000000..49a1801 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/META-INF/detox_coreNativeDebug.kotlin_module differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/BuildConfig.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/BuildConfig.class +new file mode 100644 +index 0000000..d0e6629 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/BuildConfig.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/action/common/MotionDefs.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/action/common/MotionDefs.class +new file mode 100644 +index 0000000..6a21dc9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/action/common/MotionDefs.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/action/common/MotionDir.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/action/common/MotionDir.class +new file mode 100644 +index 0000000..d347ff9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/action/common/MotionDir.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/actions/DetoxViewActions.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/actions/DetoxViewActions.class +new file mode 100644 +index 0000000..397e114 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/actions/DetoxViewActions.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class +new file mode 100644 +index 0000000..1ef9a86 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class +new file mode 100644 +index 0000000..0158649 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class +new file mode 100644 +index 0000000..60af370 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$StaleActionException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$StaleActionException.class +new file mode 100644 +index 0000000..ed6ce9d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors$StaleActionException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors.class +new file mode 100644 +index 0000000..c37e851 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxErrors.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxLog$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxLog$Companion.class +new file mode 100644 +index 0000000..38926b5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxLog$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxLog.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxLog.class +new file mode 100644 +index 0000000..9683dc3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/DetoxLog.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/ErrorUtilsKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/ErrorUtilsKt.class +new file mode 100644 +index 0000000..b6a432c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/ErrorUtilsKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/JsonConverter.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/JsonConverter.class +new file mode 100644 +index 0000000..8e32a9b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/JsonConverter.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/TextFileReader.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/TextFileReader.class +new file mode 100644 +index 0000000..a6bbdef +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/TextFileReader.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/UIThread.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/UIThread.class +new file mode 100644 +index 0000000..0d11ddb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/UIThread.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/collect/PairsIterator.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/collect/PairsIterator.class +new file mode 100644 +index 0000000..12682cf +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/collect/PairsIterator.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/CallInfo.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/CallInfo.class +new file mode 100644 +index 0000000..7001230 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/CallInfo.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/MethodsSpy$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/MethodsSpy$Companion.class +new file mode 100644 +index 0000000..2ddb569 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/MethodsSpy$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/MethodsSpy.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/MethodsSpy.class +new file mode 100644 +index 0000000..89c9c18 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/MethodsSpy.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.class +new file mode 100644 +index 0000000..fa0334c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/SpyingInvocationHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/SpyingInvocationHandler.class +new file mode 100644 +index 0000000..72c290b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/common/proxy/SpyingInvocationHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/DeviceDisplay.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/DeviceDisplay.class +new file mode 100644 +index 0000000..ecbff82 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/DeviceDisplay.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/EventsInjectorReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/EventsInjectorReflected.class +new file mode 100644 +index 0000000..48f3b7b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/EventsInjectorReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/MultipleViewsAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/MultipleViewsAction.class +new file mode 100644 +index 0000000..c05877b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/MultipleViewsAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/UiControllerSpy$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/UiControllerSpy$Companion.class +new file mode 100644 +index 0000000..e287088 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/UiControllerSpy$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/UiControllerSpy.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/UiControllerSpy.class +new file mode 100644 +index 0000000..5d8ec54 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/UiControllerSpy.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/ViewActionWithResult.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/ViewActionWithResult.class +new file mode 100644 +index 0000000..4a5f11d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/ViewActionWithResult.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/DetoxCustomTapper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/DetoxCustomTapper.class +new file mode 100644 +index 0000000..1d48348 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/DetoxCustomTapper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/DetoxSingleTap.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/DetoxSingleTap.class +new file mode 100644 +index 0000000..5bfc5b7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/DetoxSingleTap.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.class +new file mode 100644 +index 0000000..c6c1971 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/LongPressAndDragAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/LongPressAndDragAction.class +new file mode 100644 +index 0000000..ab13a38 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/LongPressAndDragAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/LongPressAndDragActionKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/LongPressAndDragActionKt.class +new file mode 100644 +index 0000000..be8e09a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/LongPressAndDragActionKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ScreenshotResult.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ScreenshotResult.class +new file mode 100644 +index 0000000..94e1132 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ScreenshotResult.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ScrollToIndexAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ScrollToIndexAction.class +new file mode 100644 +index 0000000..da36786 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ScrollToIndexAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ScrollToIndexActionKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ScrollToIndexActionKt.class +new file mode 100644 +index 0000000..990c672 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ScrollToIndexActionKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/TakeViewScreenshotAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/TakeViewScreenshotAction.class +new file mode 100644 +index 0000000..611243e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/TakeViewScreenshotAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ViewScreenshot.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ViewScreenshot.class +new file mode 100644 +index 0000000..a2d578a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/ViewScreenshot.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.class +new file mode 100644 +index 0000000..605054b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurations.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurations.class +new file mode 100644 +index 0000000..45f57ed +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurations.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/MotionEvents.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/MotionEvents.class +new file mode 100644 +index 0000000..9d82560 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/MotionEvents.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/MotionEventsKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/MotionEventsKt.class +new file mode 100644 +index 0000000..6c82ca4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/MotionEventsKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/ReflectUtils.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/ReflectUtils.class +new file mode 100644 +index 0000000..f1f83f8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/ReflectUtils.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/TapEvents.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/TapEvents.class +new file mode 100644 +index 0000000..9385073 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/TapEvents.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/TapEventsKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/TapEventsKt.class +new file mode 100644 +index 0000000..0b1e9c0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/TapEventsKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/utils/UiControllerUtils.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/utils/UiControllerUtils.class +new file mode 100644 +index 0000000..0cbef59 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/utils/UiControllerUtils.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.class +new file mode 100644 +index 0000000..00a2e98 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.class +new file mode 100644 +index 0000000..8cbc8f7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/AbsListViewBack.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/AbsListViewBack.class +new file mode 100644 +index 0000000..042ba2a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/AbsListViewBack.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/AbsListViewForward.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/AbsListViewForward.class +new file mode 100644 +index 0000000..0e6daf2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/AbsListViewForward.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/AbsScrollableProbe.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/AbsScrollableProbe.class +new file mode 100644 +index 0000000..4973b5c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/AbsScrollableProbe.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxScrollAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxScrollAction.class +new file mode 100644 +index 0000000..abac104 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxScrollAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxScrollActionBase.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxScrollActionBase.class +new file mode 100644 +index 0000000..d8b2d86 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxScrollActionBase.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.class +new file mode 100644 +index 0000000..365d094 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxSwipe.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxSwipe.class +new file mode 100644 +index 0000000..ed123d7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxSwipe.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxSwiper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxSwiper.class +new file mode 100644 +index 0000000..74adfd5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/DetoxSwiper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/LinearSwiper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/LinearSwiper.class +new file mode 100644 +index 0000000..04a524e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/LinearSwiper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/LinearSwiperKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/LinearSwiperKt.class +new file mode 100644 +index 0000000..435cf8f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/LinearSwiperKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollEdgeException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollEdgeException.class +new file mode 100644 +index 0000000..7b886fa +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollEdgeException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollHelper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollHelper.class +new file mode 100644 +index 0000000..3089648 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollProbes.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollProbes.class +new file mode 100644 +index 0000000..c2f7bd6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollProbes.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbe.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbe.class +new file mode 100644 +index 0000000..e1f2baf +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbe.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeHBack.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeHBack.class +new file mode 100644 +index 0000000..560d0fd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeHBack.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeHForward.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeHForward.class +new file mode 100644 +index 0000000..756299c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeHForward.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeVBack.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeVBack.class +new file mode 100644 +index 0000000..a5c7fa7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeVBack.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeVForward.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeVForward.class +new file mode 100644 +index 0000000..a3c5bde +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/ScrollableProbeVForward.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.class +new file mode 100644 +index 0000000..75be44a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion.class +new file mode 100644 +index 0000000..933e489 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelper.class +new file mode 100644 +index 0000000..c976dbb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelperKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelperKt.class +new file mode 100644 +index 0000000..9cbd64a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/scroll/SwipeHelperKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/utils/Vector2D$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/utils/Vector2D$Companion.class +new file mode 100644 +index 0000000..55a895e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/utils/Vector2D$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/utils/Vector2D.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/utils/Vector2D.class +new file mode 100644 +index 0000000..8c6fa5a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/utils/Vector2D.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/utils/Vector2DKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/utils/Vector2DKt.class +new file mode 100644 +index 0000000..6db1069 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/com/wix/detox/espresso/utils/Vector2DKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/Reflect$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/Reflect$1.class +new file mode 100644 +index 0000000..19803cc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/Reflect$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/Reflect$NULL.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/Reflect$NULL.class +new file mode 100644 +index 0000000..7ac2524 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/Reflect$NULL.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/Reflect.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/Reflect.class +new file mode 100644 +index 0000000..d2f6cb9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/Reflect.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/ReflectException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/ReflectException.class +new file mode 100644 +index 0000000..bebde47 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/coreNativeDebug/bundleLibRuntimeToDirCoreNativeDebug/org/joor/ReflectException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/META-INF/detox_fullDebug.kotlin_module b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/META-INF/detox_fullDebug.kotlin_module +new file mode 100644 +index 0000000..a79f7a1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/META-INF/detox_fullDebug.kotlin_module differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/ActivityLaunchHelper$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/ActivityLaunchHelper$1.class +new file mode 100644 +index 0000000..9963b28 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/ActivityLaunchHelper$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/ActivityLaunchHelper$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/ActivityLaunchHelper$Companion.class +new file mode 100644 +index 0000000..e090556 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/ActivityLaunchHelper$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/ActivityLaunchHelper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/ActivityLaunchHelper.class +new file mode 100644 +index 0000000..84cab37 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/ActivityLaunchHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/BuildConfig.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/BuildConfig.class +new file mode 100644 +index 0000000..1d1e1fc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/BuildConfig.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/Delegator.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/Delegator.class +new file mode 100644 +index 0000000..2bb4638 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/Delegator.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/Detox.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/Detox.class +new file mode 100644 +index 0000000..c5e7fa7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/Detox.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxANRHandler$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxANRHandler$Companion.class +new file mode 100644 +index 0000000..bdceb6b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxANRHandler$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxANRHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxANRHandler.class +new file mode 100644 +index 0000000..3347888 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxANRHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxCrashHandler$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxCrashHandler$Companion.class +new file mode 100644 +index 0000000..dc8dcb9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxCrashHandler$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxCrashHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxCrashHandler.class +new file mode 100644 +index 0000000..c6f543f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxCrashHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxJUnitRunner$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxJUnitRunner$1.class +new file mode 100644 +index 0000000..838a72e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxJUnitRunner$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxJUnitRunner.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxJUnitRunner.class +new file mode 100644 +index 0000000..b8b8b7a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxJUnitRunner.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$1$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$1$1.class +new file mode 100644 +index 0000000..1a7f91e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$1$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$1$2.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$1$2.class +new file mode 100644 +index 0000000..fa5f911 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$1$2.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$1$3.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$1$3.class +new file mode 100644 +index 0000000..7e50888 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$1$3.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$SynchronizedActionHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$SynchronizedActionHandler.class +new file mode 100644 +index 0000000..c9c7f4b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain$setupActionHandlers$SynchronizedActionHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain.class +new file mode 100644 +index 0000000..fed232f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMain.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMainKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMainKt.class +new file mode 100644 +index 0000000..93641b2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/DetoxMainKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/LaunchArgs.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/LaunchArgs.class +new file mode 100644 +index 0000000..5c5d9e8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/LaunchArgs.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/LaunchIntentsFactory.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/LaunchIntentsFactory.class +new file mode 100644 +index 0000000..c0ab55f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/LaunchIntentsFactory.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/NotificationDataParser.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/NotificationDataParser.class +new file mode 100644 +index 0000000..3f01902 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/NotificationDataParser.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/TestEngineFacade$awaitIdle$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/TestEngineFacade$awaitIdle$1.class +new file mode 100644 +index 0000000..d4eddd9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/TestEngineFacade$awaitIdle$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/TestEngineFacade.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/TestEngineFacade.class +new file mode 100644 +index 0000000..c952571 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/TestEngineFacade.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/action/common/MotionDefs.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/action/common/MotionDefs.class +new file mode 100644 +index 0000000..b9adefd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/action/common/MotionDefs.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/action/common/MotionDir.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/action/common/MotionDir.class +new file mode 100644 +index 0000000..314d9a7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/action/common/MotionDir.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/ActionsExecutor.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/ActionsExecutor.class +new file mode 100644 +index 0000000..37ba475 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/ActionsExecutor.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/CleanupActionHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/CleanupActionHandler.class +new file mode 100644 +index 0000000..20ae557 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/CleanupActionHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionHandler.class +new file mode 100644 +index 0000000..3d2e6fb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionHandlersKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionHandlersKt.class +new file mode 100644 +index 0000000..67e77dc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionHandlersKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionsDispatcher$associateActionHandler$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionsDispatcher$associateActionHandler$1.class +new file mode 100644 +index 0000000..3b89b27 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionsDispatcher$associateActionHandler$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionsDispatcher.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionsDispatcher.class +new file mode 100644 +index 0000000..2011387 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionsDispatcher.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionsDispatcherKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionsDispatcherKt.class +new file mode 100644 +index 0000000..eb4b8ad +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxActionsDispatcherKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxServerAdapter.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxServerAdapter.class +new file mode 100644 +index 0000000..984dbb1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxServerAdapter.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxServerInfo.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxServerInfo.class +new file mode 100644 +index 0000000..6b18669 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxServerInfo.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxServerInfoKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxServerInfoKt.class +new file mode 100644 +index 0000000..e72a355 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/DetoxServerInfoKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InstrumentsEventsActionsHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InstrumentsEventsActionsHandler.class +new file mode 100644 +index 0000000..71b9c11 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InstrumentsEventsActionsHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler$Companion.class +new file mode 100644 +index 0000000..5ab5879 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler.class +new file mode 100644 +index 0000000..176789d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InstrumentsRecordingStateActionHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InvokeActionHandler$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InvokeActionHandler$1.class +new file mode 100644 +index 0000000..27f5cb0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InvokeActionHandler$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InvokeActionHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InvokeActionHandler.class +new file mode 100644 +index 0000000..6beeecc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/InvokeActionHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/OutboundServerAdapter.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/OutboundServerAdapter.class +new file mode 100644 +index 0000000..250c4c6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/OutboundServerAdapter.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/QueryStatusActionHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/QueryStatusActionHandler.class +new file mode 100644 +index 0000000..0ccfe2d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/QueryStatusActionHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/ReactNativeReloadActionHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/ReactNativeReloadActionHandler.class +new file mode 100644 +index 0000000..3a2ec4f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/ReactNativeReloadActionHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/ReadyActionHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/ReadyActionHandler.class +new file mode 100644 +index 0000000..6459be2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/ReadyActionHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/WebSocketClient$WSEventsHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/WebSocketClient$WSEventsHandler.class +new file mode 100644 +index 0000000..a438b50 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/WebSocketClient$WSEventsHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/WebSocketClient$WebSocketEventsListener.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/WebSocketClient$WebSocketEventsListener.class +new file mode 100644 +index 0000000..04daa08 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/WebSocketClient$WebSocketEventsListener.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/WebSocketClient.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/WebSocketClient.class +new file mode 100644 +index 0000000..661b7f5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/adapters/server/WebSocketClient.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class +new file mode 100644 +index 0000000..1ef9a86 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalArgumentException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class +new file mode 100644 +index 0000000..0158649 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$DetoxIllegalStateException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class +new file mode 100644 +index 0000000..60af370 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$DetoxRuntimeException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$StaleActionException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$StaleActionException.class +new file mode 100644 +index 0000000..ed6ce9d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors$StaleActionException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors.class +new file mode 100644 +index 0000000..c37e851 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxErrors.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxLog$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxLog$Companion.class +new file mode 100644 +index 0000000..e4ae536 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxLog$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxLog.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxLog.class +new file mode 100644 +index 0000000..4ee11c0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/DetoxLog.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/ErrorUtilsKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/ErrorUtilsKt.class +new file mode 100644 +index 0000000..203023f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/ErrorUtilsKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/JsonConverter.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/JsonConverter.class +new file mode 100644 +index 0000000..46e6f0e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/JsonConverter.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/RNDropSupportTodo.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/RNDropSupportTodo.class +new file mode 100644 +index 0000000..b1e2584 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/RNDropSupportTodo.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/TextFileReader.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/TextFileReader.class +new file mode 100644 +index 0000000..e947b75 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/TextFileReader.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/UIExtensionsKt$traverseViewHierarchy$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/UIExtensionsKt$traverseViewHierarchy$1.class +new file mode 100644 +index 0000000..e81d034 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/UIExtensionsKt$traverseViewHierarchy$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/UIExtensionsKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/UIExtensionsKt.class +new file mode 100644 +index 0000000..f92cdea +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/UIExtensionsKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/UIThread.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/UIThread.class +new file mode 100644 +index 0000000..28998e0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/UIThread.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/collect/PairsIterator.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/collect/PairsIterator.class +new file mode 100644 +index 0000000..2df77a4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/collect/PairsIterator.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/CallInfo.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/CallInfo.class +new file mode 100644 +index 0000000..11d9a3c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/CallInfo.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/MethodsSpy$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/MethodsSpy$Companion.class +new file mode 100644 +index 0000000..73a027c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/MethodsSpy$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/MethodsSpy.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/MethodsSpy.class +new file mode 100644 +index 0000000..f45212e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/MethodsSpy.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.class +new file mode 100644 +index 0000000..2c74cfc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/SpyingInvocationHandler$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/SpyingInvocationHandler.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/SpyingInvocationHandler.class +new file mode 100644 +index 0000000..7973925 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/common/proxy/SpyingInvocationHandler.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/config/DetoxConfig$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/config/DetoxConfig$Companion.class +new file mode 100644 +index 0000000..ca97993 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/config/DetoxConfig$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/config/DetoxConfig.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/config/DetoxConfig.class +new file mode 100644 +index 0000000..4366c19 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/config/DetoxConfig.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/config/DetoxIdlePolicyConfig.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/config/DetoxIdlePolicyConfig.class +new file mode 100644 +index 0000000..2802a87 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/config/DetoxIdlePolicyConfig.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction$1.class +new file mode 100644 +index 0000000..5b9265e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction$2.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction$2.class +new file mode 100644 +index 0000000..8f459d5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction$2.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction$3.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction$3.class +new file mode 100644 +index 0000000..7379755 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction$3.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction.class +new file mode 100644 +index 0000000..85cda82 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAssertion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAssertion.class +new file mode 100644 +index 0000000..59dd091 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxAssertion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxMatcher.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxMatcher.class +new file mode 100644 +index 0000000..81f4a69 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxMatcher.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxViewActions.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxViewActions.class +new file mode 100644 +index 0000000..1f71236 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DetoxViewActions.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DeviceDisplay.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DeviceDisplay.class +new file mode 100644 +index 0000000..23f213a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/DeviceDisplay.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$1.class +new file mode 100644 +index 0000000..6858379 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$2.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$2.class +new file mode 100644 +index 0000000..bbddbfa +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$2.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$3.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$3.class +new file mode 100644 +index 0000000..7ebe5bf +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$3.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$4.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$4.class +new file mode 100644 +index 0000000..aab19d5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox$4.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox.class +new file mode 100644 +index 0000000..8344f45 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EspressoDetox.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EventsInjectorReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EventsInjectorReflected.class +new file mode 100644 +index 0000000..2d33a5d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/EventsInjectorReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/MultipleViewsAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/MultipleViewsAction.class +new file mode 100644 +index 0000000..337e77c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/MultipleViewsAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$1.class +new file mode 100644 +index 0000000..6772b38 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$2.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$2.class +new file mode 100644 +index 0000000..e732511 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$2.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$3$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$3$1.class +new file mode 100644 +index 0000000..f1de869 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$3$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$3.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$3.class +new file mode 100644 +index 0000000..3f3e692 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper$3.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper.class +new file mode 100644 +index 0000000..bd1e6d2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiAutomatorHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiControllerSpy$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiControllerSpy$Companion.class +new file mode 100644 +index 0000000..c90b757 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiControllerSpy$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiControllerSpy.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiControllerSpy.class +new file mode 100644 +index 0000000..2cc6dbe +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/UiControllerSpy.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/ViewActionWithResult.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/ViewActionWithResult.class +new file mode 100644 +index 0000000..4b266a2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/ViewActionWithResult.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/AdjustSliderToPositionAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/AdjustSliderToPositionAction.class +new file mode 100644 +index 0000000..aca5345 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/AdjustSliderToPositionAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/AttributeExtractor.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/AttributeExtractor.class +new file mode 100644 +index 0000000..5d8752b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/AttributeExtractor.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/CheckBoxAttributes.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/CheckBoxAttributes.class +new file mode 100644 +index 0000000..e66931e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/CheckBoxAttributes.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/CommonAttributes$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/CommonAttributes$Companion.class +new file mode 100644 +index 0000000..c6dd2e7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/CommonAttributes$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/CommonAttributes.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/CommonAttributes.class +new file mode 100644 +index 0000000..ace89cd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/CommonAttributes.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxCustomTapper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxCustomTapper.class +new file mode 100644 +index 0000000..2cd226c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxCustomTapper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxSingleTap.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxSingleTap.class +new file mode 100644 +index 0000000..20ffea8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxSingleTap.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.class +new file mode 100644 +index 0000000..bac9f7d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxTypeTextAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxTypeTextAction.class +new file mode 100644 +index 0000000..beb9148 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/DetoxTypeTextAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/GetAttributesAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/GetAttributesAction.class +new file mode 100644 +index 0000000..5d0ef51 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/GetAttributesAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/LongPressAndDragAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/LongPressAndDragAction.class +new file mode 100644 +index 0000000..9535623 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/LongPressAndDragAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/LongPressAndDragActionKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/LongPressAndDragActionKt.class +new file mode 100644 +index 0000000..e28934a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/LongPressAndDragActionKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/MaterialSliderAttributes.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/MaterialSliderAttributes.class +new file mode 100644 +index 0000000..6109a2d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/MaterialSliderAttributes.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ProgressBarAttributes.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ProgressBarAttributes.class +new file mode 100644 +index 0000000..a888837 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ProgressBarAttributes.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/RNClickAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/RNClickAction.class +new file mode 100644 +index 0000000..9fcfeb3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/RNClickAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/RNDetoxAccessibilityAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/RNDetoxAccessibilityAction.class +new file mode 100644 +index 0000000..d8b12c4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/RNDetoxAccessibilityAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ScreenshotResult.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ScreenshotResult.class +new file mode 100644 +index 0000000..d5221e4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ScreenshotResult.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ScrollToIndexAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ScrollToIndexAction.class +new file mode 100644 +index 0000000..ec23294 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ScrollToIndexAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ScrollToIndexActionKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ScrollToIndexActionKt.class +new file mode 100644 +index 0000000..1adc6c3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ScrollToIndexActionKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/TakeViewScreenshotAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/TakeViewScreenshotAction.class +new file mode 100644 +index 0000000..8801ada +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/TakeViewScreenshotAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/TextViewAttributes.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/TextViewAttributes.class +new file mode 100644 +index 0000000..4381271 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/TextViewAttributes.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/TopAccessibilityEvent.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/TopAccessibilityEvent.class +new file mode 100644 +index 0000000..a00f19b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/TopAccessibilityEvent.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ViewScreenshot.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ViewScreenshot.class +new file mode 100644 +index 0000000..b5c8cb0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/ViewScreenshot.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.class +new file mode 100644 +index 0000000..6f49fd5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurationKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurations.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurations.class +new file mode 100644 +index 0000000..f05e34f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/DetoxViewConfigurations.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/MotionEvents.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/MotionEvents.class +new file mode 100644 +index 0000000..6f13c1e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/MotionEvents.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/MotionEventsKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/MotionEventsKt.class +new file mode 100644 +index 0000000..41ddbfb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/MotionEventsKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/ReflectUtils.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/ReflectUtils.class +new file mode 100644 +index 0000000..be99239 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/ReflectUtils.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/TapEvents.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/TapEvents.class +new file mode 100644 +index 0000000..f42c1d7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/TapEvents.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/TapEventsKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/TapEventsKt.class +new file mode 100644 +index 0000000..a5a71bf +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/TapEventsKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/utils/UiControllerUtils.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/utils/UiControllerUtils.class +new file mode 100644 +index 0000000..3c4552e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/utils/UiControllerUtils.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.class +new file mode 100644 +index 0000000..5ab7731 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt$getView$viewAction$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.class +new file mode 100644 +index 0000000..9c6e6a5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/assertion/ViewAssertions$MatchesViewAssertion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/assertion/ViewAssertions$MatchesViewAssertion.class +new file mode 100644 +index 0000000..ff11dd1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/assertion/ViewAssertions$MatchesViewAssertion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/assertion/ViewAssertions.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/assertion/ViewAssertions.class +new file mode 100644 +index 0000000..ab85465 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/assertion/ViewAssertions.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/CommunitySliderHelper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/CommunitySliderHelper.class +new file mode 100644 +index 0000000..e1b0407 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/CommunitySliderHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/LegacySliderHelper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/LegacySliderHelper.class +new file mode 100644 +index 0000000..3b8d59a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/LegacySliderHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/MaterialSliderHelper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/MaterialSliderHelper.class +new file mode 100644 +index 0000000..afcfbe1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/MaterialSliderHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/MaterialSliderHelperKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/MaterialSliderHelperKt.class +new file mode 100644 +index 0000000..82d5bea +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/MaterialSliderHelperKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/ReactSliderHelper$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/ReactSliderHelper$Companion.class +new file mode 100644 +index 0000000..2bcf566 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/ReactSliderHelper$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/ReactSliderHelper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/ReactSliderHelper.class +new file mode 100644 +index 0000000..de32190 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/ReactSliderHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/ReactSliderHelperKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/ReactSliderHelperKt.class +new file mode 100644 +index 0000000..a3cb763 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/ReactSliderHelperKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/UiControllerImplReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/UiControllerImplReflected.class +new file mode 100644 +index 0000000..a7b6c6f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/UiControllerImplReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/UiControllerImplReflectedKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/UiControllerImplReflectedKt.class +new file mode 100644 +index 0000000..ceb0976 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/common/UiControllerImplReflectedKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/RootViewsHelper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/RootViewsHelper.class +new file mode 100644 +index 0000000..836bc14 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/RootViewsHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXml$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXml$1.class +new file mode 100644 +index 0000000..fb2a8e9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXml$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXmlFromViews$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXmlFromViews$1.class +new file mode 100644 +index 0000000..ee4909e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$generateXmlFromViews$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2$1$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2$1$1.class +new file mode 100644 +index 0000000..d60de9d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2$1$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2.class +new file mode 100644 +index 0000000..294fbbd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$getWebViewHtml$2.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewGroupChildren$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewGroupChildren$1.class +new file mode 100644 +index 0000000..db7526f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewGroupChildren$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewHierarchy$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewHierarchy$1.class +new file mode 100644 +index 0000000..7f0ad23 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeViewHierarchy$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeWebView$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeWebView$1.class +new file mode 100644 +index 0000000..01b562e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator$serializeWebView$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator.class +new file mode 100644 +index 0000000..b2146f5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGeneratorKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGeneratorKt.class +new file mode 100644 +index 0000000..cf0f266 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/hierarchy/ViewHierarchyGeneratorKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/idlingresources/DescriptiveIdlingResource.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/idlingresources/DescriptiveIdlingResource.class +new file mode 100644 +index 0000000..b5a9161 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/idlingresources/DescriptiveIdlingResource.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/IsAssignableFromMatcher.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/IsAssignableFromMatcher.class +new file mode 100644 +index 0000000..17fd183 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/IsAssignableFromMatcher.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/IsDisplayingAtLeastDetoxMatcher.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/IsDisplayingAtLeastDetoxMatcher.class +new file mode 100644 +index 0000000..2a48527 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/IsDisplayingAtLeastDetoxMatcher.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/RegexMatcher.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/RegexMatcher.class +new file mode 100644 +index 0000000..25346df +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/RegexMatcher.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/RegexMatcherKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/RegexMatcherKt.class +new file mode 100644 +index 0000000..1e40cd4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/RegexMatcherKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewAtIndexMatcher.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewAtIndexMatcher.class +new file mode 100644 +index 0000000..fb1c998 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewAtIndexMatcher.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewMatchers$isOfClassName$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewMatchers$isOfClassName$1.class +new file mode 100644 +index 0000000..a96b00c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewMatchers$isOfClassName$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewMatchers$toHaveSliderPosition$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewMatchers$toHaveSliderPosition$1.class +new file mode 100644 +index 0000000..3a89c24 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewMatchers$toHaveSliderPosition$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewMatchers.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewMatchers.class +new file mode 100644 +index 0000000..e747cd5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/ViewMatchers.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/WithAccessibilityLabelMatcher.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/WithAccessibilityLabelMatcher.class +new file mode 100644 +index 0000000..23038ae +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/matcher/WithAccessibilityLabelMatcher.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/MultipleViewsActionPerformer.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/MultipleViewsActionPerformer.class +new file mode 100644 +index 0000000..86199c0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/MultipleViewsActionPerformer.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/SingleViewActionPerformer.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/SingleViewActionPerformer.class +new file mode 100644 +index 0000000..b44bd3c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/SingleViewActionPerformer.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/ViewActionPerformer$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/ViewActionPerformer$Companion.class +new file mode 100644 +index 0000000..271f5e0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/ViewActionPerformer$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/ViewActionPerformer.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/ViewActionPerformer.class +new file mode 100644 +index 0000000..03bb7e3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/performer/ViewActionPerformer.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/registry/BusyResourcesInquirer$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/registry/BusyResourcesInquirer$Companion.class +new file mode 100644 +index 0000000..7b4894a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/registry/BusyResourcesInquirer$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/registry/BusyResourcesInquirer.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/registry/BusyResourcesInquirer.class +new file mode 100644 +index 0000000..f550114 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/registry/BusyResourcesInquirer.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/registry/BusyResourcesInquirerKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/registry/BusyResourcesInquirerKt.class +new file mode 100644 +index 0000000..34c8aa1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/registry/BusyResourcesInquirerKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/AbsListViewBack.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/AbsListViewBack.class +new file mode 100644 +index 0000000..377dc68 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/AbsListViewBack.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/AbsListViewForward.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/AbsListViewForward.class +new file mode 100644 +index 0000000..1f61b64 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/AbsListViewForward.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/AbsScrollableProbe.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/AbsScrollableProbe.class +new file mode 100644 +index 0000000..9ab6205 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/AbsScrollableProbe.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxScrollAction.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxScrollAction.class +new file mode 100644 +index 0000000..3e2e346 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxScrollAction.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxScrollActionBase.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxScrollActionBase.class +new file mode 100644 +index 0000000..065600b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxScrollActionBase.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.class +new file mode 100644 +index 0000000..6cac8c2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxScrollActionStaleAtEdge.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxSwipe.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxSwipe.class +new file mode 100644 +index 0000000..02ac4e2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxSwipe.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxSwiper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxSwiper.class +new file mode 100644 +index 0000000..4bf6f58 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/DetoxSwiper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/LinearSwiper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/LinearSwiper.class +new file mode 100644 +index 0000000..b262b3f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/LinearSwiper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/LinearSwiperKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/LinearSwiperKt.class +new file mode 100644 +index 0000000..8f07773 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/LinearSwiperKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollEdgeException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollEdgeException.class +new file mode 100644 +index 0000000..e12c069 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollEdgeException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollHelper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollHelper.class +new file mode 100644 +index 0000000..3089648 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollProbes.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollProbes.class +new file mode 100644 +index 0000000..ca824b8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollProbes.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbe.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbe.class +new file mode 100644 +index 0000000..f8ea7af +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbe.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeHBack.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeHBack.class +new file mode 100644 +index 0000000..9286c90 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeHBack.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeHForward.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeHForward.class +new file mode 100644 +index 0000000..1fbb8bb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeHForward.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeVBack.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeVBack.class +new file mode 100644 +index 0000000..032da11 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeVBack.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeVForward.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeVForward.class +new file mode 100644 +index 0000000..f156f9a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/ScrollableProbeVForward.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.class +new file mode 100644 +index 0000000..75be44a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion$default$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion.class +new file mode 100644 +index 0000000..56ec482 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelper$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelper.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelper.class +new file mode 100644 +index 0000000..4355cef +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelper.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelperKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelperKt.class +new file mode 100644 +index 0000000..9da5682 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/scroll/SwipeHelperKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/utils/Vector2D$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/utils/Vector2D$Companion.class +new file mode 100644 +index 0000000..ac8d9e8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/utils/Vector2D$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/utils/Vector2D.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/utils/Vector2D.class +new file mode 100644 +index 0000000..3b1332c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/utils/Vector2D.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/utils/Vector2DKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/utils/Vector2DKt.class +new file mode 100644 +index 0000000..66aba58 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/utils/Vector2DKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/DetoxWebAtomMatcher.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/DetoxWebAtomMatcher.class +new file mode 100644 +index 0000000..5a4c140 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/DetoxWebAtomMatcher.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/EspressoWebDetox.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/EspressoWebDetox.class +new file mode 100644 +index 0000000..994864c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/EspressoWebDetox.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebElement.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebElement.class +new file mode 100644 +index 0000000..2e608a8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebElement.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebExpect.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebExpect.class +new file mode 100644 +index 0000000..62c6256 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebExpect.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebViewElement$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebViewElement$1.class +new file mode 100644 +index 0000000..9e170eb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebViewElement$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebViewElement.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebViewElement.class +new file mode 100644 +index 0000000..00553e0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/espresso/web/WebViewElement.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/genymotion/DetoxGenymotionManager.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/genymotion/DetoxGenymotionManager.class +new file mode 100644 +index 0000000..fecb73f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/genymotion/DetoxGenymotionManager.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResource$BusyAsyncTasks.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResource$BusyAsyncTasks.class +new file mode 100644 +index 0000000..9f3e66a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResource$BusyAsyncTasks.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResource$BusyIdlingResource.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResource$BusyIdlingResource.class +new file mode 100644 +index 0000000..7e7a8a6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResource$BusyIdlingResource.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResource.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResource.class +new file mode 100644 +index 0000000..3455779 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResource.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResourceDescription$Builder.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResourceDescription$Builder.class +new file mode 100644 +index 0000000..f3181df +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResourceDescription$Builder.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResourceDescription.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResourceDescription.class +new file mode 100644 +index 0000000..9f37a32 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/inquiry/DetoxBusyResourceDescription.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/DetoxInstrumentsException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/DetoxInstrumentsException.class +new file mode 100644 +index 0000000..d4bf59d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/DetoxInstrumentsException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/DetoxInstrumentsManager.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/DetoxInstrumentsManager.class +new file mode 100644 +index 0000000..7819103 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/DetoxInstrumentsManager.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/Instruments.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/Instruments.class +new file mode 100644 +index 0000000..5f291c7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/Instruments.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/InstrumentsRecording.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/InstrumentsRecording.class +new file mode 100644 +index 0000000..8e56d7a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/InstrumentsRecording.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/reflected/InstrumentsRecordingReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/reflected/InstrumentsRecordingReflected.class +new file mode 100644 +index 0000000..2473e5b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/reflected/InstrumentsRecordingReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/reflected/InstrumentsReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/reflected/InstrumentsReflected.class +new file mode 100644 +index 0000000..4154eb3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/instruments/reflected/InstrumentsReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/DummyListenerIdentifier.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/DummyListenerIdentifier.class +new file mode 100644 +index 0000000..35ea536 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/DummyListenerIdentifier.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/RNVersion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/RNVersion.class +new file mode 100644 +index 0000000..b85e9fc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/RNVersion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactMarkersLogger.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactMarkersLogger.class +new file mode 100644 +index 0000000..c30230f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactMarkersLogger.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeExtension.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeExtension.class +new file mode 100644 +index 0000000..c50789a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeExtension.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeExtensionKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeExtensionKt.class +new file mode 100644 +index 0000000..8abc15d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeExtensionKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeInfo.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeInfo.class +new file mode 100644 +index 0000000..d1b62b6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeInfo.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeLoadingMonitor$subscribeToNewRNContextUpdates$1$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeLoadingMonitor$subscribeToNewRNContextUpdates$1$1.class +new file mode 100644 +index 0000000..0b96000 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeLoadingMonitor$subscribeToNewRNContextUpdates$1$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeLoadingMonitor.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeLoadingMonitor.class +new file mode 100644 +index 0000000..1f022a7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeLoadingMonitor.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeLoadingMonitorKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeLoadingMonitorKt.class +new file mode 100644 +index 0000000..2d6ef0b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeLoadingMonitorKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeReLoader.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeReLoader.class +new file mode 100644 +index 0000000..039fc8a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ReactNativeReLoader.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/helpers/RNHelpers.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/helpers/RNHelpers.class +new file mode 100644 +index 0000000..a9b568f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/helpers/RNHelpers.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/helpers/RNHelpersKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/helpers/RNHelpersKt.class +new file mode 100644 +index 0000000..7df0764 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/helpers/RNHelpersKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/DetoxIdlingResource.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/DetoxIdlingResource.class +new file mode 100644 +index 0000000..aeff777 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/DetoxIdlingResource.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$WhenMappings.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$WhenMappings.class +new file mode 100644 +index 0000000..d791a80 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$WhenMappings.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$registerAll$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$registerAll$1.class +new file mode 100644 +index 0000000..e61b09f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$registerAll$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$setupIdlingResources$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$setupIdlingResources$1.class +new file mode 100644 +index 0000000..0737e40 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$setupIdlingResources$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources.class +new file mode 100644 +index 0000000..7a3625d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResourcesKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResourcesKt.class +new file mode 100644 +index 0000000..6f2400f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResourcesKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResource.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResource.class +new file mode 100644 +index 0000000..277c4cc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResource.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResourceKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResourceKt.class +new file mode 100644 +index 0000000..b8c082f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResourceKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource$Companion.class +new file mode 100644 +index 0000000..6ed9b8a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource.class +new file mode 100644 +index 0000000..c49402a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory$create$2.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory$create$2.class +new file mode 100644 +index 0000000..0848dd5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory$create$2.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory.class +new file mode 100644 +index 0000000..50964ef +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/IdlingResourcesName.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/IdlingResourcesName.class +new file mode 100644 +index 0000000..594d412 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/IdlingResourcesName.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/LooperName.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/LooperName.class +new file mode 100644 +index 0000000..5e0fc97 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/factory/LooperName.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/looper/MQThreadReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/looper/MQThreadReflected.class +new file mode 100644 +index 0000000..e621613 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/looper/MQThreadReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflector.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflector.class +new file mode 100644 +index 0000000..f74025a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflector.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflectorKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflectorKt.class +new file mode 100644 +index 0000000..700ef92 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflectorKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource$Companion.class +new file mode 100644 +index 0000000..7530024 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource.class +new file mode 100644 +index 0000000..05c1d8e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected$Companion.class +new file mode 100644 +index 0000000..3d57671 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected.class +new file mode 100644 +index 0000000..b1e38af +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource$Companion.class +new file mode 100644 +index 0000000..b1b4e79 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource.class +new file mode 100644 +index 0000000..f6d4970 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt$defaultSExecutorReflectedGenFn$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt$defaultSExecutorReflectedGenFn$1.class +new file mode 100644 +index 0000000..0d1803a +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt$defaultSExecutorReflectedGenFn$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt.class +new file mode 100644 +index 0000000..fea1ab6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResourceKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/ModuleReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/ModuleReflected.class +new file mode 100644 +index 0000000..1353f12 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/ModuleReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/SerialExecutorReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/SerialExecutorReflected.class +new file mode 100644 +index 0000000..3c4ec18 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/storage/SerialExecutorReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$1.class +new file mode 100644 +index 0000000..5592ccf +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$Companion.class +new file mode 100644 +index 0000000..fb1a1bf +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource.class +new file mode 100644 +index 0000000..ea3ab4f +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResourceKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResourceKt.class +new file mode 100644 +index 0000000..4c05610 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResourceKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflected.class +new file mode 100644 +index 0000000..481ffef +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflectedKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflectedKt.class +new file mode 100644 +index 0000000..f3954fb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflectedKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflected.class +new file mode 100644 +index 0000000..9244ad1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflectedKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflectedKt.class +new file mode 100644 +index 0000000..55a73b5 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflectedKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflected.class +new file mode 100644 +index 0000000..a38a974 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflectedKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflectedKt.class +new file mode 100644 +index 0000000..f9ee941 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflectedKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource$Companion.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource$Companion.class +new file mode 100644 +index 0000000..cb2515b +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource$Companion.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource.class +new file mode 100644 +index 0000000..f8e565e +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflected.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflected.class +new file mode 100644 +index 0000000..8de16cb +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflected.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflectedKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflectedKt.class +new file mode 100644 +index 0000000..a4a8f7c +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflectedKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ui/UIExtensionsKt$collectAccessibilityLabelsFromHierarchy$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ui/UIExtensionsKt$collectAccessibilityLabelsFromHierarchy$1.class +new file mode 100644 +index 0000000..4afe674 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ui/UIExtensionsKt$collectAccessibilityLabelsFromHierarchy$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ui/UIExtensionsKt$getAccessibilityLabel$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ui/UIExtensionsKt$getAccessibilityLabel$1.class +new file mode 100644 +index 0000000..2882845 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ui/UIExtensionsKt$getAccessibilityLabel$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ui/UIExtensionsKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ui/UIExtensionsKt.class +new file mode 100644 +index 0000000..71dda76 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/ui/UIExtensionsKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/utils/RNUtilsKt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/utils/RNUtilsKt.class +new file mode 100644 +index 0000000..0215b67 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/reactnative/utils/RNUtilsKt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/uiautomator/UiAutomator.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/uiautomator/UiAutomator.class +new file mode 100644 +index 0000000..a1ed560 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/detox/uiautomator/UiAutomator.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/MethodInvocation.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/MethodInvocation.class +new file mode 100644 +index 0000000..8ffb1c8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/MethodInvocation.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/MethodUtilsExt.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/MethodUtilsExt.class +new file mode 100644 +index 0000000..78425ad +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/MethodUtilsExt.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/exceptions/EmptyInvocationInstructionException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/exceptions/EmptyInvocationInstructionException.class +new file mode 100644 +index 0000000..0616280 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/exceptions/EmptyInvocationInstructionException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/parser/JsonParser.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/parser/JsonParser.class +new file mode 100644 +index 0000000..0144064 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/parser/JsonParser.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/ClassTarget.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/ClassTarget.class +new file mode 100644 +index 0000000..ada4747 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/ClassTarget.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/Invocation.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/Invocation.class +new file mode 100644 +index 0000000..527dcc7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/Invocation.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/InvocationTarget.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/InvocationTarget.class +new file mode 100644 +index 0000000..ac25bbf +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/InvocationTarget.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/ObjectInstanceTarget.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/ObjectInstanceTarget.class +new file mode 100644 +index 0000000..25b11c2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/ObjectInstanceTarget.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/Target.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/Target.class +new file mode 100644 +index 0000000..f7710ff +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/com/wix/invoke/types/Target.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/Reflect$1.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/Reflect$1.class +new file mode 100644 +index 0000000..19803cc +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/Reflect$1.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/Reflect$NULL.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/Reflect$NULL.class +new file mode 100644 +index 0000000..7ac2524 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/Reflect$NULL.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/Reflect.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/Reflect.class +new file mode 100644 +index 0000000..d2f6cb9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/Reflect.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/ReflectException.class b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/ReflectException.class +new file mode 100644 +index 0000000..bebde47 +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_dir/fullDebug/bundleLibRuntimeToDirFullDebug/org/joor/ReflectException.class differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_jar/coreNativeDebug/bundleLibRuntimeToJarCoreNativeDebug/classes.jar b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_jar/coreNativeDebug/bundleLibRuntimeToJarCoreNativeDebug/classes.jar +new file mode 100644 +index 0000000..20fa7fd +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_jar/coreNativeDebug/bundleLibRuntimeToJarCoreNativeDebug/classes.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_jar/fullDebug/bundleLibRuntimeToJarFullDebug/classes.jar b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_jar/fullDebug/bundleLibRuntimeToJarFullDebug/classes.jar +new file mode 100644 +index 0000000..5f4588d +Binary files /dev/null and b/node_modules/detox/android/detox/build/intermediates/runtime_library_classes_jar/fullDebug/bundleLibRuntimeToJarFullDebug/classes.jar differ +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_symbol_list/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/R.txt b/node_modules/detox/android/detox/build/intermediates/runtime_symbol_list/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/R.txt +new file mode 100644 +index 0000000..e3e9ae7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/runtime_symbol_list/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/R.txt +@@ -0,0 +1,4763 @@ ++int anim abc_fade_in 0x7f010000 ++int anim abc_fade_out 0x7f010001 ++int anim abc_grow_fade_in_from_bottom 0x7f010002 ++int anim abc_popup_enter 0x7f010003 ++int anim abc_popup_exit 0x7f010004 ++int anim abc_shrink_fade_out_from_bottom 0x7f010005 ++int anim abc_slide_in_bottom 0x7f010006 ++int anim abc_slide_in_top 0x7f010007 ++int anim abc_slide_out_bottom 0x7f010008 ++int anim abc_slide_out_top 0x7f010009 ++int anim abc_tooltip_enter 0x7f01000a ++int anim abc_tooltip_exit 0x7f01000b ++int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000c ++int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000d ++int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000e ++int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f01000f ++int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010010 ++int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010011 ++int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010012 ++int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010013 ++int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010014 ++int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010015 ++int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010016 ++int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010017 ++int anim design_bottom_sheet_slide_in 0x7f010018 ++int anim design_bottom_sheet_slide_out 0x7f010019 ++int anim design_snackbar_in 0x7f01001a ++int anim design_snackbar_out 0x7f01001b ++int anim fragment_fast_out_extra_slow_in 0x7f01001c ++int anim mtrl_bottom_sheet_slide_in 0x7f01001d ++int anim mtrl_bottom_sheet_slide_out 0x7f01001e ++int anim mtrl_card_lowers_interpolator 0x7f01001f ++int animator design_appbar_state_list_animator 0x7f020000 ++int animator design_fab_hide_motion_spec 0x7f020001 ++int animator design_fab_show_motion_spec 0x7f020002 ++int animator fragment_close_enter 0x7f020003 ++int animator fragment_close_exit 0x7f020004 ++int animator fragment_fade_enter 0x7f020005 ++int animator fragment_fade_exit 0x7f020006 ++int animator fragment_open_enter 0x7f020007 ++int animator fragment_open_exit 0x7f020008 ++int animator linear_indeterminate_line1_head_interpolator 0x7f020009 ++int animator linear_indeterminate_line1_tail_interpolator 0x7f02000a ++int animator linear_indeterminate_line2_head_interpolator 0x7f02000b ++int animator linear_indeterminate_line2_tail_interpolator 0x7f02000c ++int animator mtrl_btn_state_list_anim 0x7f02000d ++int animator mtrl_btn_unelevated_state_list_anim 0x7f02000e ++int animator mtrl_card_state_list_anim 0x7f02000f ++int animator mtrl_chip_state_list_anim 0x7f020010 ++int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020011 ++int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f020012 ++int animator mtrl_extended_fab_hide_motion_spec 0x7f020013 ++int animator mtrl_extended_fab_show_motion_spec 0x7f020014 ++int animator mtrl_extended_fab_state_list_animator 0x7f020015 ++int animator mtrl_fab_hide_motion_spec 0x7f020016 ++int animator mtrl_fab_show_motion_spec 0x7f020017 ++int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020018 ++int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020019 ++int attr actionBarDivider 0x7f030000 ++int attr actionBarItemBackground 0x7f030001 ++int attr actionBarPopupTheme 0x7f030002 ++int attr actionBarSize 0x7f030003 ++int attr actionBarSplitStyle 0x7f030004 ++int attr actionBarStyle 0x7f030005 ++int attr actionBarTabBarStyle 0x7f030006 ++int attr actionBarTabStyle 0x7f030007 ++int attr actionBarTabTextStyle 0x7f030008 ++int attr actionBarTheme 0x7f030009 ++int attr actionBarWidgetTheme 0x7f03000a ++int attr actionButtonStyle 0x7f03000b ++int attr actionDropDownStyle 0x7f03000c ++int attr actionLayout 0x7f03000d ++int attr actionMenuTextAppearance 0x7f03000e ++int attr actionMenuTextColor 0x7f03000f ++int attr actionModeBackground 0x7f030010 ++int attr actionModeCloseButtonStyle 0x7f030011 ++int attr actionModeCloseContentDescription 0x7f030012 ++int attr actionModeCloseDrawable 0x7f030013 ++int attr actionModeCopyDrawable 0x7f030014 ++int attr actionModeCutDrawable 0x7f030015 ++int attr actionModeFindDrawable 0x7f030016 ++int attr actionModePasteDrawable 0x7f030017 ++int attr actionModePopupWindowStyle 0x7f030018 ++int attr actionModeSelectAllDrawable 0x7f030019 ++int attr actionModeShareDrawable 0x7f03001a ++int attr actionModeSplitBackground 0x7f03001b ++int attr actionModeStyle 0x7f03001c ++int attr actionModeTheme 0x7f03001d ++int attr actionModeWebSearchDrawable 0x7f03001e ++int attr actionOverflowButtonStyle 0x7f03001f ++int attr actionOverflowMenuStyle 0x7f030020 ++int attr actionProviderClass 0x7f030021 ++int attr actionTextColorAlpha 0x7f030022 ++int attr actionViewClass 0x7f030023 ++int attr activityChooserViewStyle 0x7f030024 ++int attr alertDialogButtonGroupStyle 0x7f030025 ++int attr alertDialogCenterButtons 0x7f030026 ++int attr alertDialogStyle 0x7f030027 ++int attr alertDialogTheme 0x7f030028 ++int attr allowStacking 0x7f030029 ++int attr alpha 0x7f03002a ++int attr alphabeticModifiers 0x7f03002b ++int attr altSrc 0x7f03002c ++int attr animate_relativeTo 0x7f03002d ++int attr animationMode 0x7f03002e ++int attr appBarLayoutStyle 0x7f03002f ++int attr applyMotionScene 0x7f030030 ++int attr arcMode 0x7f030031 ++int attr arrowHeadLength 0x7f030032 ++int attr arrowShaftLength 0x7f030033 ++int attr attributeName 0x7f030034 ++int attr autoCompleteTextViewStyle 0x7f030035 ++int attr autoSizeMaxTextSize 0x7f030036 ++int attr autoSizeMinTextSize 0x7f030037 ++int attr autoSizePresetSizes 0x7f030038 ++int attr autoSizeStepGranularity 0x7f030039 ++int attr autoSizeTextType 0x7f03003a ++int attr autoTransition 0x7f03003b ++int attr background 0x7f03003c ++int attr backgroundColor 0x7f03003d ++int attr backgroundInsetBottom 0x7f03003e ++int attr backgroundInsetEnd 0x7f03003f ++int attr backgroundInsetStart 0x7f030040 ++int attr backgroundInsetTop 0x7f030041 ++int attr backgroundOverlayColorAlpha 0x7f030042 ++int attr backgroundSplit 0x7f030043 ++int attr backgroundStacked 0x7f030044 ++int attr backgroundTint 0x7f030045 ++int attr backgroundTintMode 0x7f030046 ++int attr badgeGravity 0x7f030047 ++int attr badgeStyle 0x7f030048 ++int attr badgeTextColor 0x7f030049 ++int attr barLength 0x7f03004a ++int attr barrierAllowsGoneWidgets 0x7f03004b ++int attr barrierDirection 0x7f03004c ++int attr barrierMargin 0x7f03004d ++int attr behavior_autoHide 0x7f03004e ++int attr behavior_autoShrink 0x7f03004f ++int attr behavior_draggable 0x7f030050 ++int attr behavior_expandedOffset 0x7f030051 ++int attr behavior_fitToContents 0x7f030052 ++int attr behavior_halfExpandedRatio 0x7f030053 ++int attr behavior_hideable 0x7f030054 ++int attr behavior_overlapTop 0x7f030055 ++int attr behavior_peekHeight 0x7f030056 ++int attr behavior_saveFlags 0x7f030057 ++int attr behavior_skipCollapsed 0x7f030058 ++int attr borderWidth 0x7f030059 ++int attr borderlessButtonStyle 0x7f03005a ++int attr bottomAppBarStyle 0x7f03005b ++int attr bottomNavigationStyle 0x7f03005c ++int attr bottomSheetDialogTheme 0x7f03005d ++int attr bottomSheetStyle 0x7f03005e ++int attr boxBackgroundColor 0x7f03005f ++int attr boxBackgroundMode 0x7f030060 ++int attr boxCollapsedPaddingTop 0x7f030061 ++int attr boxCornerRadiusBottomEnd 0x7f030062 ++int attr boxCornerRadiusBottomStart 0x7f030063 ++int attr boxCornerRadiusTopEnd 0x7f030064 ++int attr boxCornerRadiusTopStart 0x7f030065 ++int attr boxStrokeColor 0x7f030066 ++int attr boxStrokeErrorColor 0x7f030067 ++int attr boxStrokeWidth 0x7f030068 ++int attr boxStrokeWidthFocused 0x7f030069 ++int attr brightness 0x7f03006a ++int attr buttonBarButtonStyle 0x7f03006b ++int attr buttonBarNegativeButtonStyle 0x7f03006c ++int attr buttonBarNeutralButtonStyle 0x7f03006d ++int attr buttonBarPositiveButtonStyle 0x7f03006e ++int attr buttonBarStyle 0x7f03006f ++int attr buttonCompat 0x7f030070 ++int attr buttonGravity 0x7f030071 ++int attr buttonIconDimen 0x7f030072 ++int attr buttonPanelSideLayout 0x7f030073 ++int attr buttonStyle 0x7f030074 ++int attr buttonStyleSmall 0x7f030075 ++int attr buttonTint 0x7f030076 ++int attr buttonTintMode 0x7f030077 ++int attr cardBackgroundColor 0x7f030078 ++int attr cardCornerRadius 0x7f030079 ++int attr cardElevation 0x7f03007a ++int attr cardForegroundColor 0x7f03007b ++int attr cardMaxElevation 0x7f03007c ++int attr cardPreventCornerOverlap 0x7f03007d ++int attr cardUseCompatPadding 0x7f03007e ++int attr cardViewStyle 0x7f03007f ++int attr chainUseRtl 0x7f030080 ++int attr checkboxStyle 0x7f030081 ++int attr checkedButton 0x7f030082 ++int attr checkedChip 0x7f030083 ++int attr checkedIcon 0x7f030084 ++int attr checkedIconEnabled 0x7f030085 ++int attr checkedIconMargin 0x7f030086 ++int attr checkedIconSize 0x7f030087 ++int attr checkedIconTint 0x7f030088 ++int attr checkedIconVisible 0x7f030089 ++int attr checkedTextViewStyle 0x7f03008a ++int attr chipBackgroundColor 0x7f03008b ++int attr chipCornerRadius 0x7f03008c ++int attr chipEndPadding 0x7f03008d ++int attr chipGroupStyle 0x7f03008e ++int attr chipIcon 0x7f03008f ++int attr chipIconEnabled 0x7f030090 ++int attr chipIconSize 0x7f030091 ++int attr chipIconTint 0x7f030092 ++int attr chipIconVisible 0x7f030093 ++int attr chipMinHeight 0x7f030094 ++int attr chipMinTouchTargetSize 0x7f030095 ++int attr chipSpacing 0x7f030096 ++int attr chipSpacingHorizontal 0x7f030097 ++int attr chipSpacingVertical 0x7f030098 ++int attr chipStandaloneStyle 0x7f030099 ++int attr chipStartPadding 0x7f03009a ++int attr chipStrokeColor 0x7f03009b ++int attr chipStrokeWidth 0x7f03009c ++int attr chipStyle 0x7f03009d ++int attr chipSurfaceColor 0x7f03009e ++int attr circleRadius 0x7f03009f ++int attr circularProgressIndicatorStyle 0x7f0300a0 ++int attr clickAction 0x7f0300a1 ++int attr clockFaceBackgroundColor 0x7f0300a2 ++int attr clockHandColor 0x7f0300a3 ++int attr clockIcon 0x7f0300a4 ++int attr clockNumberTextColor 0x7f0300a5 ++int attr closeIcon 0x7f0300a6 ++int attr closeIconEnabled 0x7f0300a7 ++int attr closeIconEndPadding 0x7f0300a8 ++int attr closeIconSize 0x7f0300a9 ++int attr closeIconStartPadding 0x7f0300aa ++int attr closeIconTint 0x7f0300ab ++int attr closeIconVisible 0x7f0300ac ++int attr closeItemLayout 0x7f0300ad ++int attr collapseContentDescription 0x7f0300ae ++int attr collapseIcon 0x7f0300af ++int attr collapsedSize 0x7f0300b0 ++int attr collapsedTitleGravity 0x7f0300b1 ++int attr collapsedTitleTextAppearance 0x7f0300b2 ++int attr collapsingToolbarLayoutStyle 0x7f0300b3 ++int attr color 0x7f0300b4 ++int attr colorAccent 0x7f0300b5 ++int attr colorBackgroundFloating 0x7f0300b6 ++int attr colorButtonNormal 0x7f0300b7 ++int attr colorControlActivated 0x7f0300b8 ++int attr colorControlHighlight 0x7f0300b9 ++int attr colorControlNormal 0x7f0300ba ++int attr colorError 0x7f0300bb ++int attr colorOnBackground 0x7f0300bc ++int attr colorOnError 0x7f0300bd ++int attr colorOnPrimary 0x7f0300be ++int attr colorOnPrimarySurface 0x7f0300bf ++int attr colorOnSecondary 0x7f0300c0 ++int attr colorOnSurface 0x7f0300c1 ++int attr colorPrimary 0x7f0300c2 ++int attr colorPrimaryDark 0x7f0300c3 ++int attr colorPrimarySurface 0x7f0300c4 ++int attr colorPrimaryVariant 0x7f0300c5 ++int attr colorSecondary 0x7f0300c6 ++int attr colorSecondaryVariant 0x7f0300c7 ++int attr colorSurface 0x7f0300c8 ++int attr colorSwitchThumbNormal 0x7f0300c9 ++int attr commitIcon 0x7f0300ca ++int attr constraintSet 0x7f0300cb ++int attr constraintSetEnd 0x7f0300cc ++int attr constraintSetStart 0x7f0300cd ++int attr constraint_referenced_ids 0x7f0300ce ++int attr constraints 0x7f0300cf ++int attr content 0x7f0300d0 ++int attr contentDescription 0x7f0300d1 ++int attr contentInsetEnd 0x7f0300d2 ++int attr contentInsetEndWithActions 0x7f0300d3 ++int attr contentInsetLeft 0x7f0300d4 ++int attr contentInsetRight 0x7f0300d5 ++int attr contentInsetStart 0x7f0300d6 ++int attr contentInsetStartWithNavigation 0x7f0300d7 ++int attr contentPadding 0x7f0300d8 ++int attr contentPaddingBottom 0x7f0300d9 ++int attr contentPaddingEnd 0x7f0300da ++int attr contentPaddingLeft 0x7f0300db ++int attr contentPaddingRight 0x7f0300dc ++int attr contentPaddingStart 0x7f0300dd ++int attr contentPaddingTop 0x7f0300de ++int attr contentScrim 0x7f0300df ++int attr contrast 0x7f0300e0 ++int attr controlBackground 0x7f0300e1 ++int attr coordinatorLayoutStyle 0x7f0300e2 ++int attr cornerFamily 0x7f0300e3 ++int attr cornerFamilyBottomLeft 0x7f0300e4 ++int attr cornerFamilyBottomRight 0x7f0300e5 ++int attr cornerFamilyTopLeft 0x7f0300e6 ++int attr cornerFamilyTopRight 0x7f0300e7 ++int attr cornerRadius 0x7f0300e8 ++int attr cornerSize 0x7f0300e9 ++int attr cornerSizeBottomLeft 0x7f0300ea ++int attr cornerSizeBottomRight 0x7f0300eb ++int attr cornerSizeTopLeft 0x7f0300ec ++int attr cornerSizeTopRight 0x7f0300ed ++int attr counterEnabled 0x7f0300ee ++int attr counterMaxLength 0x7f0300ef ++int attr counterOverflowTextAppearance 0x7f0300f0 ++int attr counterOverflowTextColor 0x7f0300f1 ++int attr counterTextAppearance 0x7f0300f2 ++int attr counterTextColor 0x7f0300f3 ++int attr crossfade 0x7f0300f4 ++int attr currentState 0x7f0300f5 ++int attr curveFit 0x7f0300f6 ++int attr customBoolean 0x7f0300f7 ++int attr customColorDrawableValue 0x7f0300f8 ++int attr customColorValue 0x7f0300f9 ++int attr customDimension 0x7f0300fa ++int attr customFloatValue 0x7f0300fb ++int attr customIntegerValue 0x7f0300fc ++int attr customNavigationLayout 0x7f0300fd ++int attr customPixelDimension 0x7f0300fe ++int attr customStringValue 0x7f0300ff ++int attr dayInvalidStyle 0x7f030100 ++int attr daySelectedStyle 0x7f030101 ++int attr dayStyle 0x7f030102 ++int attr dayTodayStyle 0x7f030103 ++int attr defaultDuration 0x7f030104 ++int attr defaultQueryHint 0x7f030105 ++int attr defaultState 0x7f030106 ++int attr deltaPolarAngle 0x7f030107 ++int attr deltaPolarRadius 0x7f030108 ++int attr deriveConstraintsFrom 0x7f030109 ++int attr dialogCornerRadius 0x7f03010a ++int attr dialogPreferredPadding 0x7f03010b ++int attr dialogTheme 0x7f03010c ++int attr displayOptions 0x7f03010d ++int attr divider 0x7f03010e ++int attr dividerHorizontal 0x7f03010f ++int attr dividerPadding 0x7f030110 ++int attr dividerVertical 0x7f030111 ++int attr dragDirection 0x7f030112 ++int attr dragScale 0x7f030113 ++int attr dragThreshold 0x7f030114 ++int attr drawPath 0x7f030115 ++int attr drawableBottomCompat 0x7f030116 ++int attr drawableEndCompat 0x7f030117 ++int attr drawableLeftCompat 0x7f030118 ++int attr drawableRightCompat 0x7f030119 ++int attr drawableSize 0x7f03011a ++int attr drawableStartCompat 0x7f03011b ++int attr drawableTint 0x7f03011c ++int attr drawableTintMode 0x7f03011d ++int attr drawableTopCompat 0x7f03011e ++int attr drawerArrowStyle 0x7f03011f ++int attr drawerLayoutStyle 0x7f030120 ++int attr dropDownListViewStyle 0x7f030121 ++int attr dropdownListPreferredItemHeight 0x7f030122 ++int attr duration 0x7f030123 ++int attr editTextBackground 0x7f030124 ++int attr editTextColor 0x7f030125 ++int attr editTextStyle 0x7f030126 ++int attr elevation 0x7f030127 ++int attr elevationOverlayColor 0x7f030128 ++int attr elevationOverlayEnabled 0x7f030129 ++int attr enableEdgeToEdge 0x7f03012a ++int attr endIconCheckable 0x7f03012b ++int attr endIconContentDescription 0x7f03012c ++int attr endIconDrawable 0x7f03012d ++int attr endIconMode 0x7f03012e ++int attr endIconTint 0x7f03012f ++int attr endIconTintMode 0x7f030130 ++int attr enforceMaterialTheme 0x7f030131 ++int attr enforceTextAppearance 0x7f030132 ++int attr ensureMinTouchTargetSize 0x7f030133 ++int attr errorContentDescription 0x7f030134 ++int attr errorEnabled 0x7f030135 ++int attr errorIconDrawable 0x7f030136 ++int attr errorIconTint 0x7f030137 ++int attr errorIconTintMode 0x7f030138 ++int attr errorTextAppearance 0x7f030139 ++int attr errorTextColor 0x7f03013a ++int attr expandActivityOverflowButtonDrawable 0x7f03013b ++int attr expanded 0x7f03013c ++int attr expandedHintEnabled 0x7f03013d ++int attr expandedTitleGravity 0x7f03013e ++int attr expandedTitleMargin 0x7f03013f ++int attr expandedTitleMarginBottom 0x7f030140 ++int attr expandedTitleMarginEnd 0x7f030141 ++int attr expandedTitleMarginStart 0x7f030142 ++int attr expandedTitleMarginTop 0x7f030143 ++int attr expandedTitleTextAppearance 0x7f030144 ++int attr extendMotionSpec 0x7f030145 ++int attr extendedFloatingActionButtonStyle 0x7f030146 ++int attr extraMultilineHeightEnabled 0x7f030147 ++int attr fabAlignmentMode 0x7f030148 ++int attr fabAnimationMode 0x7f030149 ++int attr fabCradleMargin 0x7f03014a ++int attr fabCradleRoundedCornerRadius 0x7f03014b ++int attr fabCradleVerticalOffset 0x7f03014c ++int attr fabCustomSize 0x7f03014d ++int attr fabSize 0x7f03014e ++int attr fastScrollEnabled 0x7f03014f ++int attr fastScrollHorizontalThumbDrawable 0x7f030150 ++int attr fastScrollHorizontalTrackDrawable 0x7f030151 ++int attr fastScrollVerticalThumbDrawable 0x7f030152 ++int attr fastScrollVerticalTrackDrawable 0x7f030153 ++int attr firstBaselineToTopHeight 0x7f030154 ++int attr floatingActionButtonStyle 0x7f030155 ++int attr flow_firstHorizontalBias 0x7f030156 ++int attr flow_firstHorizontalStyle 0x7f030157 ++int attr flow_firstVerticalBias 0x7f030158 ++int attr flow_firstVerticalStyle 0x7f030159 ++int attr flow_horizontalAlign 0x7f03015a ++int attr flow_horizontalBias 0x7f03015b ++int attr flow_horizontalGap 0x7f03015c ++int attr flow_horizontalStyle 0x7f03015d ++int attr flow_lastHorizontalBias 0x7f03015e ++int attr flow_lastHorizontalStyle 0x7f03015f ++int attr flow_lastVerticalBias 0x7f030160 ++int attr flow_lastVerticalStyle 0x7f030161 ++int attr flow_maxElementsWrap 0x7f030162 ++int attr flow_padding 0x7f030163 ++int attr flow_verticalAlign 0x7f030164 ++int attr flow_verticalBias 0x7f030165 ++int attr flow_verticalGap 0x7f030166 ++int attr flow_verticalStyle 0x7f030167 ++int attr flow_wrapMode 0x7f030168 ++int attr font 0x7f030169 ++int attr fontFamily 0x7f03016a ++int attr fontProviderAuthority 0x7f03016b ++int attr fontProviderCerts 0x7f03016c ++int attr fontProviderFetchStrategy 0x7f03016d ++int attr fontProviderFetchTimeout 0x7f03016e ++int attr fontProviderPackage 0x7f03016f ++int attr fontProviderQuery 0x7f030170 ++int attr fontProviderSystemFontFamily 0x7f030171 ++int attr fontStyle 0x7f030172 ++int attr fontVariationSettings 0x7f030173 ++int attr fontWeight 0x7f030174 ++int attr forceApplySystemWindowInsetTop 0x7f030175 ++int attr foregroundInsidePadding 0x7f030176 ++int attr framePosition 0x7f030177 ++int attr gapBetweenBars 0x7f030178 ++int attr gestureInsetBottomIgnored 0x7f030179 ++int attr goIcon 0x7f03017a ++int attr haloColor 0x7f03017b ++int attr haloRadius 0x7f03017c ++int attr headerLayout 0x7f03017d ++int attr height 0x7f03017e ++int attr helperText 0x7f03017f ++int attr helperTextEnabled 0x7f030180 ++int attr helperTextTextAppearance 0x7f030181 ++int attr helperTextTextColor 0x7f030182 ++int attr hideAnimationBehavior 0x7f030183 ++int attr hideMotionSpec 0x7f030184 ++int attr hideOnContentScroll 0x7f030185 ++int attr hideOnScroll 0x7f030186 ++int attr hintAnimationEnabled 0x7f030187 ++int attr hintEnabled 0x7f030188 ++int attr hintTextAppearance 0x7f030189 ++int attr hintTextColor 0x7f03018a ++int attr homeAsUpIndicator 0x7f03018b ++int attr homeLayout 0x7f03018c ++int attr horizontalOffset 0x7f03018d ++int attr hoveredFocusedTranslationZ 0x7f03018e ++int attr icon 0x7f03018f ++int attr iconEndPadding 0x7f030190 ++int attr iconGravity 0x7f030191 ++int attr iconPadding 0x7f030192 ++int attr iconSize 0x7f030193 ++int attr iconStartPadding 0x7f030194 ++int attr iconTint 0x7f030195 ++int attr iconTintMode 0x7f030196 ++int attr iconifiedByDefault 0x7f030197 ++int attr imageButtonStyle 0x7f030198 ++int attr indeterminateAnimationType 0x7f030199 ++int attr indeterminateProgressStyle 0x7f03019a ++int attr indicatorColor 0x7f03019b ++int attr indicatorDirectionCircular 0x7f03019c ++int attr indicatorDirectionLinear 0x7f03019d ++int attr indicatorInset 0x7f03019e ++int attr indicatorSize 0x7f03019f ++int attr initialActivityCount 0x7f0301a0 ++int attr insetForeground 0x7f0301a1 ++int attr isLightTheme 0x7f0301a2 ++int attr isMaterialTheme 0x7f0301a3 ++int attr itemBackground 0x7f0301a4 ++int attr itemFillColor 0x7f0301a5 ++int attr itemHorizontalPadding 0x7f0301a6 ++int attr itemHorizontalTranslationEnabled 0x7f0301a7 ++int attr itemIconPadding 0x7f0301a8 ++int attr itemIconSize 0x7f0301a9 ++int attr itemIconTint 0x7f0301aa ++int attr itemMaxLines 0x7f0301ab ++int attr itemPadding 0x7f0301ac ++int attr itemRippleColor 0x7f0301ad ++int attr itemShapeAppearance 0x7f0301ae ++int attr itemShapeAppearanceOverlay 0x7f0301af ++int attr itemShapeFillColor 0x7f0301b0 ++int attr itemShapeInsetBottom 0x7f0301b1 ++int attr itemShapeInsetEnd 0x7f0301b2 ++int attr itemShapeInsetStart 0x7f0301b3 ++int attr itemShapeInsetTop 0x7f0301b4 ++int attr itemSpacing 0x7f0301b5 ++int attr itemStrokeColor 0x7f0301b6 ++int attr itemStrokeWidth 0x7f0301b7 ++int attr itemTextAppearance 0x7f0301b8 ++int attr itemTextAppearanceActive 0x7f0301b9 ++int attr itemTextAppearanceInactive 0x7f0301ba ++int attr itemTextColor 0x7f0301bb ++int attr keyPositionType 0x7f0301bc ++int attr keyboardIcon 0x7f0301bd ++int attr keylines 0x7f0301be ++int attr lStar 0x7f0301bf ++int attr labelBehavior 0x7f0301c0 ++int attr labelStyle 0x7f0301c1 ++int attr labelVisibilityMode 0x7f0301c2 ++int attr lastBaselineToBottomHeight 0x7f0301c3 ++int attr layout 0x7f0301c4 ++int attr layoutDescription 0x7f0301c5 ++int attr layoutDuringTransition 0x7f0301c6 ++int attr layoutManager 0x7f0301c7 ++int attr layout_anchor 0x7f0301c8 ++int attr layout_anchorGravity 0x7f0301c9 ++int attr layout_behavior 0x7f0301ca ++int attr layout_collapseMode 0x7f0301cb ++int attr layout_collapseParallaxMultiplier 0x7f0301cc ++int attr layout_constrainedHeight 0x7f0301cd ++int attr layout_constrainedWidth 0x7f0301ce ++int attr layout_constraintBaseline_creator 0x7f0301cf ++int attr layout_constraintBaseline_toBaselineOf 0x7f0301d0 ++int attr layout_constraintBottom_creator 0x7f0301d1 ++int attr layout_constraintBottom_toBottomOf 0x7f0301d2 ++int attr layout_constraintBottom_toTopOf 0x7f0301d3 ++int attr layout_constraintCircle 0x7f0301d4 ++int attr layout_constraintCircleAngle 0x7f0301d5 ++int attr layout_constraintCircleRadius 0x7f0301d6 ++int attr layout_constraintDimensionRatio 0x7f0301d7 ++int attr layout_constraintEnd_toEndOf 0x7f0301d8 ++int attr layout_constraintEnd_toStartOf 0x7f0301d9 ++int attr layout_constraintGuide_begin 0x7f0301da ++int attr layout_constraintGuide_end 0x7f0301db ++int attr layout_constraintGuide_percent 0x7f0301dc ++int attr layout_constraintHeight_default 0x7f0301dd ++int attr layout_constraintHeight_max 0x7f0301de ++int attr layout_constraintHeight_min 0x7f0301df ++int attr layout_constraintHeight_percent 0x7f0301e0 ++int attr layout_constraintHorizontal_bias 0x7f0301e1 ++int attr layout_constraintHorizontal_chainStyle 0x7f0301e2 ++int attr layout_constraintHorizontal_weight 0x7f0301e3 ++int attr layout_constraintLeft_creator 0x7f0301e4 ++int attr layout_constraintLeft_toLeftOf 0x7f0301e5 ++int attr layout_constraintLeft_toRightOf 0x7f0301e6 ++int attr layout_constraintRight_creator 0x7f0301e7 ++int attr layout_constraintRight_toLeftOf 0x7f0301e8 ++int attr layout_constraintRight_toRightOf 0x7f0301e9 ++int attr layout_constraintStart_toEndOf 0x7f0301ea ++int attr layout_constraintStart_toStartOf 0x7f0301eb ++int attr layout_constraintTag 0x7f0301ec ++int attr layout_constraintTop_creator 0x7f0301ed ++int attr layout_constraintTop_toBottomOf 0x7f0301ee ++int attr layout_constraintTop_toTopOf 0x7f0301ef ++int attr layout_constraintVertical_bias 0x7f0301f0 ++int attr layout_constraintVertical_chainStyle 0x7f0301f1 ++int attr layout_constraintVertical_weight 0x7f0301f2 ++int attr layout_constraintWidth_default 0x7f0301f3 ++int attr layout_constraintWidth_max 0x7f0301f4 ++int attr layout_constraintWidth_min 0x7f0301f5 ++int attr layout_constraintWidth_percent 0x7f0301f6 ++int attr layout_dodgeInsetEdges 0x7f0301f7 ++int attr layout_editor_absoluteX 0x7f0301f8 ++int attr layout_editor_absoluteY 0x7f0301f9 ++int attr layout_goneMarginBottom 0x7f0301fa ++int attr layout_goneMarginEnd 0x7f0301fb ++int attr layout_goneMarginLeft 0x7f0301fc ++int attr layout_goneMarginRight 0x7f0301fd ++int attr layout_goneMarginStart 0x7f0301fe ++int attr layout_goneMarginTop 0x7f0301ff ++int attr layout_insetEdge 0x7f030200 ++int attr layout_keyline 0x7f030201 ++int attr layout_optimizationLevel 0x7f030202 ++int attr layout_scrollFlags 0x7f030203 ++int attr layout_scrollInterpolator 0x7f030204 ++int attr liftOnScroll 0x7f030205 ++int attr liftOnScrollTargetViewId 0x7f030206 ++int attr limitBoundsTo 0x7f030207 ++int attr lineHeight 0x7f030208 ++int attr lineSpacing 0x7f030209 ++int attr linearProgressIndicatorStyle 0x7f03020a ++int attr listChoiceBackgroundIndicator 0x7f03020b ++int attr listChoiceIndicatorMultipleAnimated 0x7f03020c ++int attr listChoiceIndicatorSingleAnimated 0x7f03020d ++int attr listDividerAlertDialog 0x7f03020e ++int attr listItemLayout 0x7f03020f ++int attr listLayout 0x7f030210 ++int attr listMenuViewStyle 0x7f030211 ++int attr listPopupWindowStyle 0x7f030212 ++int attr listPreferredItemHeight 0x7f030213 ++int attr listPreferredItemHeightLarge 0x7f030214 ++int attr listPreferredItemHeightSmall 0x7f030215 ++int attr listPreferredItemPaddingEnd 0x7f030216 ++int attr listPreferredItemPaddingLeft 0x7f030217 ++int attr listPreferredItemPaddingRight 0x7f030218 ++int attr listPreferredItemPaddingStart 0x7f030219 ++int attr logo 0x7f03021a ++int attr logoDescription 0x7f03021b ++int attr materialAlertDialogBodyTextStyle 0x7f03021c ++int attr materialAlertDialogTheme 0x7f03021d ++int attr materialAlertDialogTitleIconStyle 0x7f03021e ++int attr materialAlertDialogTitlePanelStyle 0x7f03021f ++int attr materialAlertDialogTitleTextStyle 0x7f030220 ++int attr materialButtonOutlinedStyle 0x7f030221 ++int attr materialButtonStyle 0x7f030222 ++int attr materialButtonToggleGroupStyle 0x7f030223 ++int attr materialCalendarDay 0x7f030224 ++int attr materialCalendarFullscreenTheme 0x7f030225 ++int attr materialCalendarHeaderCancelButton 0x7f030226 ++int attr materialCalendarHeaderConfirmButton 0x7f030227 ++int attr materialCalendarHeaderDivider 0x7f030228 ++int attr materialCalendarHeaderLayout 0x7f030229 ++int attr materialCalendarHeaderSelection 0x7f03022a ++int attr materialCalendarHeaderTitle 0x7f03022b ++int attr materialCalendarHeaderToggleButton 0x7f03022c ++int attr materialCalendarMonth 0x7f03022d ++int attr materialCalendarMonthNavigationButton 0x7f03022e ++int attr materialCalendarStyle 0x7f03022f ++int attr materialCalendarTheme 0x7f030230 ++int attr materialCalendarYearNavigationButton 0x7f030231 ++int attr materialCardViewStyle 0x7f030232 ++int attr materialCircleRadius 0x7f030233 ++int attr materialClockStyle 0x7f030234 ++int attr materialThemeOverlay 0x7f030235 ++int attr materialTimePickerStyle 0x7f030236 ++int attr materialTimePickerTheme 0x7f030237 ++int attr maxAcceleration 0x7f030238 ++int attr maxActionInlineWidth 0x7f030239 ++int attr maxButtonHeight 0x7f03023a ++int attr maxCharacterCount 0x7f03023b ++int attr maxHeight 0x7f03023c ++int attr maxImageSize 0x7f03023d ++int attr maxLines 0x7f03023e ++int attr maxVelocity 0x7f03023f ++int attr maxWidth 0x7f030240 ++int attr measureWithLargestChild 0x7f030241 ++int attr menu 0x7f030242 ++int attr menuGravity 0x7f030243 ++int attr minHeight 0x7f030244 ++int attr minHideDelay 0x7f030245 ++int attr minSeparation 0x7f030246 ++int attr minTouchTargetSize 0x7f030247 ++int attr minWidth 0x7f030248 ++int attr mock_diagonalsColor 0x7f030249 ++int attr mock_label 0x7f03024a ++int attr mock_labelBackgroundColor 0x7f03024b ++int attr mock_labelColor 0x7f03024c ++int attr mock_showDiagonals 0x7f03024d ++int attr mock_showLabel 0x7f03024e ++int attr motionDebug 0x7f03024f ++int attr motionDurationLong1 0x7f030250 ++int attr motionDurationLong2 0x7f030251 ++int attr motionDurationMedium1 0x7f030252 ++int attr motionDurationMedium2 0x7f030253 ++int attr motionDurationShort1 0x7f030254 ++int attr motionDurationShort2 0x7f030255 ++int attr motionEasingAccelerated 0x7f030256 ++int attr motionEasingDecelerated 0x7f030257 ++int attr motionEasingEmphasized 0x7f030258 ++int attr motionEasingLinear 0x7f030259 ++int attr motionEasingStandard 0x7f03025a ++int attr motionInterpolator 0x7f03025b ++int attr motionPath 0x7f03025c ++int attr motionPathRotate 0x7f03025d ++int attr motionProgress 0x7f03025e ++int attr motionStagger 0x7f03025f ++int attr motionTarget 0x7f030260 ++int attr motion_postLayoutCollision 0x7f030261 ++int attr motion_triggerOnCollision 0x7f030262 ++int attr moveWhenScrollAtTop 0x7f030263 ++int attr multiChoiceItemLayout 0x7f030264 ++int attr navigationContentDescription 0x7f030265 ++int attr navigationIcon 0x7f030266 ++int attr navigationIconTint 0x7f030267 ++int attr navigationMode 0x7f030268 ++int attr navigationRailStyle 0x7f030269 ++int attr navigationViewStyle 0x7f03026a ++int attr nestedScrollFlags 0x7f03026b ++int attr nestedScrollViewStyle 0x7f03026c ++int attr nestedScrollable 0x7f03026d ++int attr number 0x7f03026e ++int attr numericModifiers 0x7f03026f ++int attr onCross 0x7f030270 ++int attr onHide 0x7f030271 ++int attr onNegativeCross 0x7f030272 ++int attr onPositiveCross 0x7f030273 ++int attr onShow 0x7f030274 ++int attr onTouchUp 0x7f030275 ++int attr overlapAnchor 0x7f030276 ++int attr overlay 0x7f030277 ++int attr paddingBottomNoButtons 0x7f030278 ++int attr paddingBottomSystemWindowInsets 0x7f030279 ++int attr paddingEnd 0x7f03027a ++int attr paddingLeftSystemWindowInsets 0x7f03027b ++int attr paddingRightSystemWindowInsets 0x7f03027c ++int attr paddingStart 0x7f03027d ++int attr paddingTopNoTitle 0x7f03027e ++int attr paddingTopSystemWindowInsets 0x7f03027f ++int attr panelBackground 0x7f030280 ++int attr panelMenuListTheme 0x7f030281 ++int attr panelMenuListWidth 0x7f030282 ++int attr passwordToggleContentDescription 0x7f030283 ++int attr passwordToggleDrawable 0x7f030284 ++int attr passwordToggleEnabled 0x7f030285 ++int attr passwordToggleTint 0x7f030286 ++int attr passwordToggleTintMode 0x7f030287 ++int attr pathMotionArc 0x7f030288 ++int attr path_percent 0x7f030289 ++int attr percentHeight 0x7f03028a ++int attr percentWidth 0x7f03028b ++int attr percentX 0x7f03028c ++int attr percentY 0x7f03028d ++int attr perpendicularPath_percent 0x7f03028e ++int attr pivotAnchor 0x7f03028f ++int attr placeholderText 0x7f030290 ++int attr placeholderTextAppearance 0x7f030291 ++int attr placeholderTextColor 0x7f030292 ++int attr placeholder_emptyVisibility 0x7f030293 ++int attr popupMenuBackground 0x7f030294 ++int attr popupMenuStyle 0x7f030295 ++int attr popupTheme 0x7f030296 ++int attr popupWindowStyle 0x7f030297 ++int attr prefixText 0x7f030298 ++int attr prefixTextAppearance 0x7f030299 ++int attr prefixTextColor 0x7f03029a ++int attr preserveIconSpacing 0x7f03029b ++int attr pressedTranslationZ 0x7f03029c ++int attr progressBarPadding 0x7f03029d ++int attr progressBarStyle 0x7f03029e ++int attr queryBackground 0x7f03029f ++int attr queryHint 0x7f0302a0 ++int attr queryPatterns 0x7f0302a1 ++int attr radioButtonStyle 0x7f0302a2 ++int attr rangeFillColor 0x7f0302a3 ++int attr ratingBarStyle 0x7f0302a4 ++int attr ratingBarStyleIndicator 0x7f0302a5 ++int attr ratingBarStyleSmall 0x7f0302a6 ++int attr recyclerViewStyle 0x7f0302a7 ++int attr region_heightLessThan 0x7f0302a8 ++int attr region_heightMoreThan 0x7f0302a9 ++int attr region_widthLessThan 0x7f0302aa ++int attr region_widthMoreThan 0x7f0302ab ++int attr reverseLayout 0x7f0302ac ++int attr rippleColor 0x7f0302ad ++int attr round 0x7f0302ae ++int attr roundPercent 0x7f0302af ++int attr saturation 0x7f0302b0 ++int attr scrimAnimationDuration 0x7f0302b1 ++int attr scrimBackground 0x7f0302b2 ++int attr scrimVisibleHeightTrigger 0x7f0302b3 ++int attr searchHintIcon 0x7f0302b4 ++int attr searchIcon 0x7f0302b5 ++int attr searchViewStyle 0x7f0302b6 ++int attr seekBarStyle 0x7f0302b7 ++int attr selectableItemBackground 0x7f0302b8 ++int attr selectableItemBackgroundBorderless 0x7f0302b9 ++int attr selectionRequired 0x7f0302ba ++int attr selectorSize 0x7f0302bb ++int attr shapeAppearance 0x7f0302bc ++int attr shapeAppearanceLargeComponent 0x7f0302bd ++int attr shapeAppearanceMediumComponent 0x7f0302be ++int attr shapeAppearanceOverlay 0x7f0302bf ++int attr shapeAppearanceSmallComponent 0x7f0302c0 ++int attr shortcutMatchRequired 0x7f0302c1 ++int attr showAnimationBehavior 0x7f0302c2 ++int attr showAsAction 0x7f0302c3 ++int attr showDelay 0x7f0302c4 ++int attr showDividers 0x7f0302c5 ++int attr showMotionSpec 0x7f0302c6 ++int attr showPaths 0x7f0302c7 ++int attr showText 0x7f0302c8 ++int attr showTitle 0x7f0302c9 ++int attr shrinkMotionSpec 0x7f0302ca ++int attr singleChoiceItemLayout 0x7f0302cb ++int attr singleLine 0x7f0302cc ++int attr singleSelection 0x7f0302cd ++int attr sizePercent 0x7f0302ce ++int attr sliderStyle 0x7f0302cf ++int attr snackbarButtonStyle 0x7f0302d0 ++int attr snackbarStyle 0x7f0302d1 ++int attr snackbarTextViewStyle 0x7f0302d2 ++int attr spanCount 0x7f0302d3 ++int attr spinBars 0x7f0302d4 ++int attr spinnerDropDownItemStyle 0x7f0302d5 ++int attr spinnerStyle 0x7f0302d6 ++int attr splitTrack 0x7f0302d7 ++int attr srcCompat 0x7f0302d8 ++int attr stackFromEnd 0x7f0302d9 ++int attr staggered 0x7f0302da ++int attr startIconCheckable 0x7f0302db ++int attr startIconContentDescription 0x7f0302dc ++int attr startIconDrawable 0x7f0302dd ++int attr startIconTint 0x7f0302de ++int attr startIconTintMode 0x7f0302df ++int attr state_above_anchor 0x7f0302e0 ++int attr state_collapsed 0x7f0302e1 ++int attr state_collapsible 0x7f0302e2 ++int attr state_dragged 0x7f0302e3 ++int attr state_liftable 0x7f0302e4 ++int attr state_lifted 0x7f0302e5 ++int attr statusBarBackground 0x7f0302e6 ++int attr statusBarForeground 0x7f0302e7 ++int attr statusBarScrim 0x7f0302e8 ++int attr strokeColor 0x7f0302e9 ++int attr strokeWidth 0x7f0302ea ++int attr subMenuArrow 0x7f0302eb ++int attr submitBackground 0x7f0302ec ++int attr subtitle 0x7f0302ed ++int attr subtitleCentered 0x7f0302ee ++int attr subtitleTextAppearance 0x7f0302ef ++int attr subtitleTextColor 0x7f0302f0 ++int attr subtitleTextStyle 0x7f0302f1 ++int attr suffixText 0x7f0302f2 ++int attr suffixTextAppearance 0x7f0302f3 ++int attr suffixTextColor 0x7f0302f4 ++int attr suggestionRowLayout 0x7f0302f5 ++int attr switchMinWidth 0x7f0302f6 ++int attr switchPadding 0x7f0302f7 ++int attr switchStyle 0x7f0302f8 ++int attr switchTextAppearance 0x7f0302f9 ++int attr tabBackground 0x7f0302fa ++int attr tabContentStart 0x7f0302fb ++int attr tabGravity 0x7f0302fc ++int attr tabIconTint 0x7f0302fd ++int attr tabIconTintMode 0x7f0302fe ++int attr tabIndicator 0x7f0302ff ++int attr tabIndicatorAnimationDuration 0x7f030300 ++int attr tabIndicatorAnimationMode 0x7f030301 ++int attr tabIndicatorColor 0x7f030302 ++int attr tabIndicatorFullWidth 0x7f030303 ++int attr tabIndicatorGravity 0x7f030304 ++int attr tabIndicatorHeight 0x7f030305 ++int attr tabInlineLabel 0x7f030306 ++int attr tabMaxWidth 0x7f030307 ++int attr tabMinWidth 0x7f030308 ++int attr tabMode 0x7f030309 ++int attr tabPadding 0x7f03030a ++int attr tabPaddingBottom 0x7f03030b ++int attr tabPaddingEnd 0x7f03030c ++int attr tabPaddingStart 0x7f03030d ++int attr tabPaddingTop 0x7f03030e ++int attr tabRippleColor 0x7f03030f ++int attr tabSelectedTextColor 0x7f030310 ++int attr tabStyle 0x7f030311 ++int attr tabTextAppearance 0x7f030312 ++int attr tabTextColor 0x7f030313 ++int attr tabUnboundedRipple 0x7f030314 ++int attr targetId 0x7f030315 ++int attr telltales_tailColor 0x7f030316 ++int attr telltales_tailScale 0x7f030317 ++int attr telltales_velocityMode 0x7f030318 ++int attr textAllCaps 0x7f030319 ++int attr textAppearanceBody1 0x7f03031a ++int attr textAppearanceBody2 0x7f03031b ++int attr textAppearanceButton 0x7f03031c ++int attr textAppearanceCaption 0x7f03031d ++int attr textAppearanceHeadline1 0x7f03031e ++int attr textAppearanceHeadline2 0x7f03031f ++int attr textAppearanceHeadline3 0x7f030320 ++int attr textAppearanceHeadline4 0x7f030321 ++int attr textAppearanceHeadline5 0x7f030322 ++int attr textAppearanceHeadline6 0x7f030323 ++int attr textAppearanceLargePopupMenu 0x7f030324 ++int attr textAppearanceLineHeightEnabled 0x7f030325 ++int attr textAppearanceListItem 0x7f030326 ++int attr textAppearanceListItemSecondary 0x7f030327 ++int attr textAppearanceListItemSmall 0x7f030328 ++int attr textAppearanceOverline 0x7f030329 ++int attr textAppearancePopupMenuHeader 0x7f03032a ++int attr textAppearanceSearchResultSubtitle 0x7f03032b ++int attr textAppearanceSearchResultTitle 0x7f03032c ++int attr textAppearanceSmallPopupMenu 0x7f03032d ++int attr textAppearanceSubtitle1 0x7f03032e ++int attr textAppearanceSubtitle2 0x7f03032f ++int attr textColorAlertDialogListItem 0x7f030330 ++int attr textColorSearchUrl 0x7f030331 ++int attr textEndPadding 0x7f030332 ++int attr textInputLayoutFocusedRectEnabled 0x7f030333 ++int attr textInputStyle 0x7f030334 ++int attr textLocale 0x7f030335 ++int attr textStartPadding 0x7f030336 ++int attr theme 0x7f030337 ++int attr themeLineHeight 0x7f030338 ++int attr thickness 0x7f030339 ++int attr thumbColor 0x7f03033a ++int attr thumbElevation 0x7f03033b ++int attr thumbRadius 0x7f03033c ++int attr thumbStrokeColor 0x7f03033d ++int attr thumbStrokeWidth 0x7f03033e ++int attr thumbTextPadding 0x7f03033f ++int attr thumbTint 0x7f030340 ++int attr thumbTintMode 0x7f030341 ++int attr tickColor 0x7f030342 ++int attr tickColorActive 0x7f030343 ++int attr tickColorInactive 0x7f030344 ++int attr tickMark 0x7f030345 ++int attr tickMarkTint 0x7f030346 ++int attr tickMarkTintMode 0x7f030347 ++int attr tickVisible 0x7f030348 ++int attr tint 0x7f030349 ++int attr tintMode 0x7f03034a ++int attr title 0x7f03034b ++int attr titleCentered 0x7f03034c ++int attr titleCollapseMode 0x7f03034d ++int attr titleEnabled 0x7f03034e ++int attr titleMargin 0x7f03034f ++int attr titleMarginBottom 0x7f030350 ++int attr titleMarginEnd 0x7f030351 ++int attr titleMarginStart 0x7f030352 ++int attr titleMarginTop 0x7f030353 ++int attr titleMargins 0x7f030354 ++int attr titleTextAppearance 0x7f030355 ++int attr titleTextColor 0x7f030356 ++int attr titleTextStyle 0x7f030357 ++int attr toolbarId 0x7f030358 ++int attr toolbarNavigationButtonStyle 0x7f030359 ++int attr toolbarStyle 0x7f03035a ++int attr tooltipForegroundColor 0x7f03035b ++int attr tooltipFrameBackground 0x7f03035c ++int attr tooltipStyle 0x7f03035d ++int attr tooltipText 0x7f03035e ++int attr touchAnchorId 0x7f03035f ++int attr touchAnchorSide 0x7f030360 ++int attr touchRegionId 0x7f030361 ++int attr track 0x7f030362 ++int attr trackColor 0x7f030363 ++int attr trackColorActive 0x7f030364 ++int attr trackColorInactive 0x7f030365 ++int attr trackCornerRadius 0x7f030366 ++int attr trackHeight 0x7f030367 ++int attr trackThickness 0x7f030368 ++int attr trackTint 0x7f030369 ++int attr trackTintMode 0x7f03036a ++int attr transitionDisable 0x7f03036b ++int attr transitionEasing 0x7f03036c ++int attr transitionFlags 0x7f03036d ++int attr transitionPathRotate 0x7f03036e ++int attr transitionShapeAppearance 0x7f03036f ++int attr triggerId 0x7f030370 ++int attr triggerReceiver 0x7f030371 ++int attr triggerSlack 0x7f030372 ++int attr ttcIndex 0x7f030373 ++int attr useCompatPadding 0x7f030374 ++int attr useMaterialThemeColors 0x7f030375 ++int attr values 0x7f030376 ++int attr verticalOffset 0x7f030377 ++int attr viewInflaterClass 0x7f030378 ++int attr visibilityMode 0x7f030379 ++int attr voiceIcon 0x7f03037a ++int attr warmth 0x7f03037b ++int attr waveDecay 0x7f03037c ++int attr waveOffset 0x7f03037d ++int attr wavePeriod 0x7f03037e ++int attr waveShape 0x7f03037f ++int attr waveVariesBy 0x7f030380 ++int attr windowActionBar 0x7f030381 ++int attr windowActionBarOverlay 0x7f030382 ++int attr windowActionModeOverlay 0x7f030383 ++int attr windowFixedHeightMajor 0x7f030384 ++int attr windowFixedHeightMinor 0x7f030385 ++int attr windowFixedWidthMajor 0x7f030386 ++int attr windowFixedWidthMinor 0x7f030387 ++int attr windowMinWidthMajor 0x7f030388 ++int attr windowMinWidthMinor 0x7f030389 ++int attr windowNoTitle 0x7f03038a ++int attr yearSelectedStyle 0x7f03038b ++int attr yearStyle 0x7f03038c ++int attr yearTodayStyle 0x7f03038d ++int bool abc_action_bar_embed_tabs 0x7f040000 ++int bool abc_config_actionMenuItemAllCaps 0x7f040001 ++int bool mtrl_btn_textappearance_all_caps 0x7f040002 ++int color abc_background_cache_hint_selector_material_dark 0x7f050000 ++int color abc_background_cache_hint_selector_material_light 0x7f050001 ++int color abc_btn_colored_borderless_text_material 0x7f050002 ++int color abc_btn_colored_text_material 0x7f050003 ++int color abc_color_highlight_material 0x7f050004 ++int color abc_decor_view_status_guard 0x7f050005 ++int color abc_decor_view_status_guard_light 0x7f050006 ++int color abc_hint_foreground_material_dark 0x7f050007 ++int color abc_hint_foreground_material_light 0x7f050008 ++int color abc_primary_text_disable_only_material_dark 0x7f050009 ++int color abc_primary_text_disable_only_material_light 0x7f05000a ++int color abc_primary_text_material_dark 0x7f05000b ++int color abc_primary_text_material_light 0x7f05000c ++int color abc_search_url_text 0x7f05000d ++int color abc_search_url_text_normal 0x7f05000e ++int color abc_search_url_text_pressed 0x7f05000f ++int color abc_search_url_text_selected 0x7f050010 ++int color abc_secondary_text_material_dark 0x7f050011 ++int color abc_secondary_text_material_light 0x7f050012 ++int color abc_tint_btn_checkable 0x7f050013 ++int color abc_tint_default 0x7f050014 ++int color abc_tint_edittext 0x7f050015 ++int color abc_tint_seek_thumb 0x7f050016 ++int color abc_tint_spinner 0x7f050017 ++int color abc_tint_switch_track 0x7f050018 ++int color accent_material_dark 0x7f050019 ++int color accent_material_light 0x7f05001a ++int color androidx_core_ripple_material_light 0x7f05001b ++int color androidx_core_secondary_text_default_material_light 0x7f05001c ++int color background_floating_material_dark 0x7f05001d ++int color background_floating_material_light 0x7f05001e ++int color background_material_dark 0x7f05001f ++int color background_material_light 0x7f050020 ++int color bright_foreground_disabled_material_dark 0x7f050021 ++int color bright_foreground_disabled_material_light 0x7f050022 ++int color bright_foreground_inverse_material_dark 0x7f050023 ++int color bright_foreground_inverse_material_light 0x7f050024 ++int color bright_foreground_material_dark 0x7f050025 ++int color bright_foreground_material_light 0x7f050026 ++int color button_material_dark 0x7f050027 ++int color button_material_light 0x7f050028 ++int color cardview_dark_background 0x7f050029 ++int color cardview_light_background 0x7f05002a ++int color cardview_shadow_end_color 0x7f05002b ++int color cardview_shadow_start_color 0x7f05002c ++int color checkbox_themeable_attribute_color 0x7f05002d ++int color design_bottom_navigation_shadow_color 0x7f05002e ++int color design_box_stroke_color 0x7f05002f ++int color design_dark_default_color_background 0x7f050030 ++int color design_dark_default_color_error 0x7f050031 ++int color design_dark_default_color_on_background 0x7f050032 ++int color design_dark_default_color_on_error 0x7f050033 ++int color design_dark_default_color_on_primary 0x7f050034 ++int color design_dark_default_color_on_secondary 0x7f050035 ++int color design_dark_default_color_on_surface 0x7f050036 ++int color design_dark_default_color_primary 0x7f050037 ++int color design_dark_default_color_primary_dark 0x7f050038 ++int color design_dark_default_color_primary_variant 0x7f050039 ++int color design_dark_default_color_secondary 0x7f05003a ++int color design_dark_default_color_secondary_variant 0x7f05003b ++int color design_dark_default_color_surface 0x7f05003c ++int color design_default_color_background 0x7f05003d ++int color design_default_color_error 0x7f05003e ++int color design_default_color_on_background 0x7f05003f ++int color design_default_color_on_error 0x7f050040 ++int color design_default_color_on_primary 0x7f050041 ++int color design_default_color_on_secondary 0x7f050042 ++int color design_default_color_on_surface 0x7f050043 ++int color design_default_color_primary 0x7f050044 ++int color design_default_color_primary_dark 0x7f050045 ++int color design_default_color_primary_variant 0x7f050046 ++int color design_default_color_secondary 0x7f050047 ++int color design_default_color_secondary_variant 0x7f050048 ++int color design_default_color_surface 0x7f050049 ++int color design_error 0x7f05004a ++int color design_fab_shadow_end_color 0x7f05004b ++int color design_fab_shadow_mid_color 0x7f05004c ++int color design_fab_shadow_start_color 0x7f05004d ++int color design_fab_stroke_end_inner_color 0x7f05004e ++int color design_fab_stroke_end_outer_color 0x7f05004f ++int color design_fab_stroke_top_inner_color 0x7f050050 ++int color design_fab_stroke_top_outer_color 0x7f050051 ++int color design_icon_tint 0x7f050052 ++int color design_snackbar_background_color 0x7f050053 ++int color dim_foreground_disabled_material_dark 0x7f050054 ++int color dim_foreground_disabled_material_light 0x7f050055 ++int color dim_foreground_material_dark 0x7f050056 ++int color dim_foreground_material_light 0x7f050057 ++int color error_color_material_dark 0x7f050058 ++int color error_color_material_light 0x7f050059 ++int color foreground_material_dark 0x7f05005a ++int color foreground_material_light 0x7f05005b ++int color highlighted_text_material_dark 0x7f05005c ++int color highlighted_text_material_light 0x7f05005d ++int color material_blue_grey_800 0x7f05005e ++int color material_blue_grey_900 0x7f05005f ++int color material_blue_grey_950 0x7f050060 ++int color material_cursor_color 0x7f050061 ++int color material_deep_teal_200 0x7f050062 ++int color material_deep_teal_500 0x7f050063 ++int color material_grey_100 0x7f050064 ++int color material_grey_300 0x7f050065 ++int color material_grey_50 0x7f050066 ++int color material_grey_600 0x7f050067 ++int color material_grey_800 0x7f050068 ++int color material_grey_850 0x7f050069 ++int color material_grey_900 0x7f05006a ++int color material_on_background_disabled 0x7f05006b ++int color material_on_background_emphasis_high_type 0x7f05006c ++int color material_on_background_emphasis_medium 0x7f05006d ++int color material_on_primary_disabled 0x7f05006e ++int color material_on_primary_emphasis_high_type 0x7f05006f ++int color material_on_primary_emphasis_medium 0x7f050070 ++int color material_on_surface_disabled 0x7f050071 ++int color material_on_surface_emphasis_high_type 0x7f050072 ++int color material_on_surface_emphasis_medium 0x7f050073 ++int color material_on_surface_stroke 0x7f050074 ++int color material_slider_active_tick_marks_color 0x7f050075 ++int color material_slider_active_track_color 0x7f050076 ++int color material_slider_halo_color 0x7f050077 ++int color material_slider_inactive_tick_marks_color 0x7f050078 ++int color material_slider_inactive_track_color 0x7f050079 ++int color material_slider_thumb_color 0x7f05007a ++int color material_timepicker_button_background 0x7f05007b ++int color material_timepicker_button_stroke 0x7f05007c ++int color material_timepicker_clock_text_color 0x7f05007d ++int color material_timepicker_clockface 0x7f05007e ++int color material_timepicker_modebutton_tint 0x7f05007f ++int color mtrl_btn_bg_color_selector 0x7f050080 ++int color mtrl_btn_ripple_color 0x7f050081 ++int color mtrl_btn_stroke_color_selector 0x7f050082 ++int color mtrl_btn_text_btn_bg_color_selector 0x7f050083 ++int color mtrl_btn_text_btn_ripple_color 0x7f050084 ++int color mtrl_btn_text_color_disabled 0x7f050085 ++int color mtrl_btn_text_color_selector 0x7f050086 ++int color mtrl_btn_transparent_bg_color 0x7f050087 ++int color mtrl_calendar_item_stroke_color 0x7f050088 ++int color mtrl_calendar_selected_range 0x7f050089 ++int color mtrl_card_view_foreground 0x7f05008a ++int color mtrl_card_view_ripple 0x7f05008b ++int color mtrl_chip_background_color 0x7f05008c ++int color mtrl_chip_close_icon_tint 0x7f05008d ++int color mtrl_chip_surface_color 0x7f05008e ++int color mtrl_chip_text_color 0x7f05008f ++int color mtrl_choice_chip_background_color 0x7f050090 ++int color mtrl_choice_chip_ripple_color 0x7f050091 ++int color mtrl_choice_chip_text_color 0x7f050092 ++int color mtrl_error 0x7f050093 ++int color mtrl_fab_bg_color_selector 0x7f050094 ++int color mtrl_fab_icon_text_color_selector 0x7f050095 ++int color mtrl_fab_ripple_color 0x7f050096 ++int color mtrl_filled_background_color 0x7f050097 ++int color mtrl_filled_icon_tint 0x7f050098 ++int color mtrl_filled_stroke_color 0x7f050099 ++int color mtrl_indicator_text_color 0x7f05009a ++int color mtrl_navigation_bar_colored_item_tint 0x7f05009b ++int color mtrl_navigation_bar_colored_ripple_color 0x7f05009c ++int color mtrl_navigation_bar_item_tint 0x7f05009d ++int color mtrl_navigation_bar_ripple_color 0x7f05009e ++int color mtrl_navigation_item_background_color 0x7f05009f ++int color mtrl_navigation_item_icon_tint 0x7f0500a0 ++int color mtrl_navigation_item_text_color 0x7f0500a1 ++int color mtrl_on_primary_text_btn_text_color_selector 0x7f0500a2 ++int color mtrl_on_surface_ripple_color 0x7f0500a3 ++int color mtrl_outlined_icon_tint 0x7f0500a4 ++int color mtrl_outlined_stroke_color 0x7f0500a5 ++int color mtrl_popupmenu_overlay_color 0x7f0500a6 ++int color mtrl_scrim_color 0x7f0500a7 ++int color mtrl_tabs_colored_ripple_color 0x7f0500a8 ++int color mtrl_tabs_icon_color_selector 0x7f0500a9 ++int color mtrl_tabs_icon_color_selector_colored 0x7f0500aa ++int color mtrl_tabs_legacy_text_color_selector 0x7f0500ab ++int color mtrl_tabs_ripple_color 0x7f0500ac ++int color mtrl_text_btn_text_color_selector 0x7f0500ad ++int color mtrl_textinput_default_box_stroke_color 0x7f0500ae ++int color mtrl_textinput_disabled_color 0x7f0500af ++int color mtrl_textinput_filled_box_default_background_color 0x7f0500b0 ++int color mtrl_textinput_focused_box_stroke_color 0x7f0500b1 ++int color mtrl_textinput_hovered_box_stroke_color 0x7f0500b2 ++int color notification_action_color_filter 0x7f0500b3 ++int color notification_icon_bg_color 0x7f0500b4 ++int color primary_dark_material_dark 0x7f0500b5 ++int color primary_dark_material_light 0x7f0500b6 ++int color primary_material_dark 0x7f0500b7 ++int color primary_material_light 0x7f0500b8 ++int color primary_text_default_material_dark 0x7f0500b9 ++int color primary_text_default_material_light 0x7f0500ba ++int color primary_text_disabled_material_dark 0x7f0500bb ++int color primary_text_disabled_material_light 0x7f0500bc ++int color radiobutton_themeable_attribute_color 0x7f0500bd ++int color ripple_material_dark 0x7f0500be ++int color ripple_material_light 0x7f0500bf ++int color secondary_text_default_material_dark 0x7f0500c0 ++int color secondary_text_default_material_light 0x7f0500c1 ++int color secondary_text_disabled_material_dark 0x7f0500c2 ++int color secondary_text_disabled_material_light 0x7f0500c3 ++int color switch_thumb_disabled_material_dark 0x7f0500c4 ++int color switch_thumb_disabled_material_light 0x7f0500c5 ++int color switch_thumb_material_dark 0x7f0500c6 ++int color switch_thumb_material_light 0x7f0500c7 ++int color switch_thumb_normal_material_dark 0x7f0500c8 ++int color switch_thumb_normal_material_light 0x7f0500c9 ++int color test_mtrl_calendar_day 0x7f0500ca ++int color test_mtrl_calendar_day_selected 0x7f0500cb ++int color tooltip_background_dark 0x7f0500cc ++int color tooltip_background_light 0x7f0500cd ++int dimen abc_action_bar_content_inset_material 0x7f060000 ++int dimen abc_action_bar_content_inset_with_nav 0x7f060001 ++int dimen abc_action_bar_default_height_material 0x7f060002 ++int dimen abc_action_bar_default_padding_end_material 0x7f060003 ++int dimen abc_action_bar_default_padding_start_material 0x7f060004 ++int dimen abc_action_bar_elevation_material 0x7f060005 ++int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006 ++int dimen abc_action_bar_overflow_padding_end_material 0x7f060007 ++int dimen abc_action_bar_overflow_padding_start_material 0x7f060008 ++int dimen abc_action_bar_stacked_max_height 0x7f060009 ++int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a ++int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b ++int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c ++int dimen abc_action_button_min_height_material 0x7f06000d ++int dimen abc_action_button_min_width_material 0x7f06000e ++int dimen abc_action_button_min_width_overflow_material 0x7f06000f ++int dimen abc_alert_dialog_button_bar_height 0x7f060010 ++int dimen abc_alert_dialog_button_dimen 0x7f060011 ++int dimen abc_button_inset_horizontal_material 0x7f060012 ++int dimen abc_button_inset_vertical_material 0x7f060013 ++int dimen abc_button_padding_horizontal_material 0x7f060014 ++int dimen abc_button_padding_vertical_material 0x7f060015 ++int dimen abc_cascading_menus_min_smallest_width 0x7f060016 ++int dimen abc_config_prefDialogWidth 0x7f060017 ++int dimen abc_control_corner_material 0x7f060018 ++int dimen abc_control_inset_material 0x7f060019 ++int dimen abc_control_padding_material 0x7f06001a ++int dimen abc_dialog_corner_radius_material 0x7f06001b ++int dimen abc_dialog_fixed_height_major 0x7f06001c ++int dimen abc_dialog_fixed_height_minor 0x7f06001d ++int dimen abc_dialog_fixed_width_major 0x7f06001e ++int dimen abc_dialog_fixed_width_minor 0x7f06001f ++int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020 ++int dimen abc_dialog_list_padding_top_no_title 0x7f060021 ++int dimen abc_dialog_min_width_major 0x7f060022 ++int dimen abc_dialog_min_width_minor 0x7f060023 ++int dimen abc_dialog_padding_material 0x7f060024 ++int dimen abc_dialog_padding_top_material 0x7f060025 ++int dimen abc_dialog_title_divider_material 0x7f060026 ++int dimen abc_disabled_alpha_material_dark 0x7f060027 ++int dimen abc_disabled_alpha_material_light 0x7f060028 ++int dimen abc_dropdownitem_icon_width 0x7f060029 ++int dimen abc_dropdownitem_text_padding_left 0x7f06002a ++int dimen abc_dropdownitem_text_padding_right 0x7f06002b ++int dimen abc_edit_text_inset_bottom_material 0x7f06002c ++int dimen abc_edit_text_inset_horizontal_material 0x7f06002d ++int dimen abc_edit_text_inset_top_material 0x7f06002e ++int dimen abc_floating_window_z 0x7f06002f ++int dimen abc_list_item_height_large_material 0x7f060030 ++int dimen abc_list_item_height_material 0x7f060031 ++int dimen abc_list_item_height_small_material 0x7f060032 ++int dimen abc_list_item_padding_horizontal_material 0x7f060033 ++int dimen abc_panel_menu_list_width 0x7f060034 ++int dimen abc_progress_bar_height_material 0x7f060035 ++int dimen abc_search_view_preferred_height 0x7f060036 ++int dimen abc_search_view_preferred_width 0x7f060037 ++int dimen abc_seekbar_track_background_height_material 0x7f060038 ++int dimen abc_seekbar_track_progress_height_material 0x7f060039 ++int dimen abc_select_dialog_padding_start_material 0x7f06003a ++int dimen abc_star_big 0x7f06003b ++int dimen abc_star_medium 0x7f06003c ++int dimen abc_star_small 0x7f06003d ++int dimen abc_switch_padding 0x7f06003e ++int dimen abc_text_size_body_1_material 0x7f06003f ++int dimen abc_text_size_body_2_material 0x7f060040 ++int dimen abc_text_size_button_material 0x7f060041 ++int dimen abc_text_size_caption_material 0x7f060042 ++int dimen abc_text_size_display_1_material 0x7f060043 ++int dimen abc_text_size_display_2_material 0x7f060044 ++int dimen abc_text_size_display_3_material 0x7f060045 ++int dimen abc_text_size_display_4_material 0x7f060046 ++int dimen abc_text_size_headline_material 0x7f060047 ++int dimen abc_text_size_large_material 0x7f060048 ++int dimen abc_text_size_medium_material 0x7f060049 ++int dimen abc_text_size_menu_header_material 0x7f06004a ++int dimen abc_text_size_menu_material 0x7f06004b ++int dimen abc_text_size_small_material 0x7f06004c ++int dimen abc_text_size_subhead_material 0x7f06004d ++int dimen abc_text_size_subtitle_material_toolbar 0x7f06004e ++int dimen abc_text_size_title_material 0x7f06004f ++int dimen abc_text_size_title_material_toolbar 0x7f060050 ++int dimen action_bar_size 0x7f060051 ++int dimen appcompat_dialog_background_inset 0x7f060052 ++int dimen cardview_compat_inset_shadow 0x7f060053 ++int dimen cardview_default_elevation 0x7f060054 ++int dimen cardview_default_radius 0x7f060055 ++int dimen clock_face_margin_start 0x7f060056 ++int dimen compat_button_inset_horizontal_material 0x7f060057 ++int dimen compat_button_inset_vertical_material 0x7f060058 ++int dimen compat_button_padding_horizontal_material 0x7f060059 ++int dimen compat_button_padding_vertical_material 0x7f06005a ++int dimen compat_control_corner_material 0x7f06005b ++int dimen compat_notification_large_icon_max_height 0x7f06005c ++int dimen compat_notification_large_icon_max_width 0x7f06005d ++int dimen def_drawer_elevation 0x7f06005e ++int dimen default_dimension 0x7f06005f ++int dimen design_appbar_elevation 0x7f060060 ++int dimen design_bottom_navigation_active_item_max_width 0x7f060061 ++int dimen design_bottom_navigation_active_item_min_width 0x7f060062 ++int dimen design_bottom_navigation_active_text_size 0x7f060063 ++int dimen design_bottom_navigation_elevation 0x7f060064 ++int dimen design_bottom_navigation_height 0x7f060065 ++int dimen design_bottom_navigation_icon_size 0x7f060066 ++int dimen design_bottom_navigation_item_max_width 0x7f060067 ++int dimen design_bottom_navigation_item_min_width 0x7f060068 ++int dimen design_bottom_navigation_label_padding 0x7f060069 ++int dimen design_bottom_navigation_margin 0x7f06006a ++int dimen design_bottom_navigation_shadow_height 0x7f06006b ++int dimen design_bottom_navigation_text_size 0x7f06006c ++int dimen design_bottom_sheet_elevation 0x7f06006d ++int dimen design_bottom_sheet_modal_elevation 0x7f06006e ++int dimen design_bottom_sheet_peek_height_min 0x7f06006f ++int dimen design_fab_border_width 0x7f060070 ++int dimen design_fab_elevation 0x7f060071 ++int dimen design_fab_image_size 0x7f060072 ++int dimen design_fab_size_mini 0x7f060073 ++int dimen design_fab_size_normal 0x7f060074 ++int dimen design_fab_translation_z_hovered_focused 0x7f060075 ++int dimen design_fab_translation_z_pressed 0x7f060076 ++int dimen design_navigation_elevation 0x7f060077 ++int dimen design_navigation_icon_padding 0x7f060078 ++int dimen design_navigation_icon_size 0x7f060079 ++int dimen design_navigation_item_horizontal_padding 0x7f06007a ++int dimen design_navigation_item_icon_padding 0x7f06007b ++int dimen design_navigation_max_width 0x7f06007c ++int dimen design_navigation_padding_bottom 0x7f06007d ++int dimen design_navigation_separator_vertical_padding 0x7f06007e ++int dimen design_snackbar_action_inline_max_width 0x7f06007f ++int dimen design_snackbar_action_text_color_alpha 0x7f060080 ++int dimen design_snackbar_background_corner_radius 0x7f060081 ++int dimen design_snackbar_elevation 0x7f060082 ++int dimen design_snackbar_extra_spacing_horizontal 0x7f060083 ++int dimen design_snackbar_max_width 0x7f060084 ++int dimen design_snackbar_min_width 0x7f060085 ++int dimen design_snackbar_padding_horizontal 0x7f060086 ++int dimen design_snackbar_padding_vertical 0x7f060087 ++int dimen design_snackbar_padding_vertical_2lines 0x7f060088 ++int dimen design_snackbar_text_size 0x7f060089 ++int dimen design_tab_max_width 0x7f06008a ++int dimen design_tab_scrollable_min_width 0x7f06008b ++int dimen design_tab_text_size 0x7f06008c ++int dimen design_tab_text_size_2line 0x7f06008d ++int dimen design_textinput_caption_translate_y 0x7f06008e ++int dimen disabled_alpha_material_dark 0x7f06008f ++int dimen disabled_alpha_material_light 0x7f060090 ++int dimen fastscroll_default_thickness 0x7f060091 ++int dimen fastscroll_margin 0x7f060092 ++int dimen fastscroll_minimum_range 0x7f060093 ++int dimen highlight_alpha_material_colored 0x7f060094 ++int dimen highlight_alpha_material_dark 0x7f060095 ++int dimen highlight_alpha_material_light 0x7f060096 ++int dimen hint_alpha_material_dark 0x7f060097 ++int dimen hint_alpha_material_light 0x7f060098 ++int dimen hint_pressed_alpha_material_dark 0x7f060099 ++int dimen hint_pressed_alpha_material_light 0x7f06009a ++int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f06009b ++int dimen item_touch_helper_swipe_escape_max_velocity 0x7f06009c ++int dimen item_touch_helper_swipe_escape_velocity 0x7f06009d ++int dimen material_bottom_sheet_max_width 0x7f06009e ++int dimen material_clock_display_padding 0x7f06009f ++int dimen material_clock_face_margin_top 0x7f0600a0 ++int dimen material_clock_hand_center_dot_radius 0x7f0600a1 ++int dimen material_clock_hand_padding 0x7f0600a2 ++int dimen material_clock_hand_stroke_width 0x7f0600a3 ++int dimen material_clock_number_text_size 0x7f0600a4 ++int dimen material_clock_period_toggle_height 0x7f0600a5 ++int dimen material_clock_period_toggle_margin_left 0x7f0600a6 ++int dimen material_clock_period_toggle_width 0x7f0600a7 ++int dimen material_clock_size 0x7f0600a8 ++int dimen material_cursor_inset_bottom 0x7f0600a9 ++int dimen material_cursor_inset_top 0x7f0600aa ++int dimen material_cursor_width 0x7f0600ab ++int dimen material_emphasis_disabled 0x7f0600ac ++int dimen material_emphasis_high_type 0x7f0600ad ++int dimen material_emphasis_medium 0x7f0600ae ++int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f0600af ++int dimen material_filled_edittext_font_1_3_padding_top 0x7f0600b0 ++int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f0600b1 ++int dimen material_filled_edittext_font_2_0_padding_top 0x7f0600b2 ++int dimen material_font_1_3_box_collapsed_padding_top 0x7f0600b3 ++int dimen material_font_2_0_box_collapsed_padding_top 0x7f0600b4 ++int dimen material_helper_text_default_padding_top 0x7f0600b5 ++int dimen material_helper_text_font_1_3_padding_horizontal 0x7f0600b6 ++int dimen material_helper_text_font_1_3_padding_top 0x7f0600b7 ++int dimen material_input_text_to_prefix_suffix_padding 0x7f0600b8 ++int dimen material_text_view_test_line_height 0x7f0600b9 ++int dimen material_text_view_test_line_height_override 0x7f0600ba ++int dimen material_textinput_default_width 0x7f0600bb ++int dimen material_textinput_max_width 0x7f0600bc ++int dimen material_textinput_min_width 0x7f0600bd ++int dimen material_time_picker_minimum_screen_height 0x7f0600be ++int dimen material_time_picker_minimum_screen_width 0x7f0600bf ++int dimen material_timepicker_dialog_buttons_margin_top 0x7f0600c0 ++int dimen mtrl_alert_dialog_background_inset_bottom 0x7f0600c1 ++int dimen mtrl_alert_dialog_background_inset_end 0x7f0600c2 ++int dimen mtrl_alert_dialog_background_inset_start 0x7f0600c3 ++int dimen mtrl_alert_dialog_background_inset_top 0x7f0600c4 ++int dimen mtrl_alert_dialog_picker_background_inset 0x7f0600c5 ++int dimen mtrl_badge_horizontal_edge_offset 0x7f0600c6 ++int dimen mtrl_badge_long_text_horizontal_padding 0x7f0600c7 ++int dimen mtrl_badge_radius 0x7f0600c8 ++int dimen mtrl_badge_text_horizontal_edge_offset 0x7f0600c9 ++int dimen mtrl_badge_text_size 0x7f0600ca ++int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f0600cb ++int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f0600cc ++int dimen mtrl_badge_with_text_radius 0x7f0600cd ++int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f0600ce ++int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f0600cf ++int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f0600d0 ++int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0600d1 ++int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f0600d2 ++int dimen mtrl_bottomappbar_height 0x7f0600d3 ++int dimen mtrl_btn_corner_radius 0x7f0600d4 ++int dimen mtrl_btn_dialog_btn_min_width 0x7f0600d5 ++int dimen mtrl_btn_disabled_elevation 0x7f0600d6 ++int dimen mtrl_btn_disabled_z 0x7f0600d7 ++int dimen mtrl_btn_elevation 0x7f0600d8 ++int dimen mtrl_btn_focused_z 0x7f0600d9 ++int dimen mtrl_btn_hovered_z 0x7f0600da ++int dimen mtrl_btn_icon_btn_padding_left 0x7f0600db ++int dimen mtrl_btn_icon_padding 0x7f0600dc ++int dimen mtrl_btn_inset 0x7f0600dd ++int dimen mtrl_btn_letter_spacing 0x7f0600de ++int dimen mtrl_btn_max_width 0x7f0600df ++int dimen mtrl_btn_padding_bottom 0x7f0600e0 ++int dimen mtrl_btn_padding_left 0x7f0600e1 ++int dimen mtrl_btn_padding_right 0x7f0600e2 ++int dimen mtrl_btn_padding_top 0x7f0600e3 ++int dimen mtrl_btn_pressed_z 0x7f0600e4 ++int dimen mtrl_btn_snackbar_margin_horizontal 0x7f0600e5 ++int dimen mtrl_btn_stroke_size 0x7f0600e6 ++int dimen mtrl_btn_text_btn_icon_padding 0x7f0600e7 ++int dimen mtrl_btn_text_btn_padding_left 0x7f0600e8 ++int dimen mtrl_btn_text_btn_padding_right 0x7f0600e9 ++int dimen mtrl_btn_text_size 0x7f0600ea ++int dimen mtrl_btn_z 0x7f0600eb ++int dimen mtrl_calendar_action_confirm_button_min_width 0x7f0600ec ++int dimen mtrl_calendar_action_height 0x7f0600ed ++int dimen mtrl_calendar_action_padding 0x7f0600ee ++int dimen mtrl_calendar_bottom_padding 0x7f0600ef ++int dimen mtrl_calendar_content_padding 0x7f0600f0 ++int dimen mtrl_calendar_day_corner 0x7f0600f1 ++int dimen mtrl_calendar_day_height 0x7f0600f2 ++int dimen mtrl_calendar_day_horizontal_padding 0x7f0600f3 ++int dimen mtrl_calendar_day_today_stroke 0x7f0600f4 ++int dimen mtrl_calendar_day_vertical_padding 0x7f0600f5 ++int dimen mtrl_calendar_day_width 0x7f0600f6 ++int dimen mtrl_calendar_days_of_week_height 0x7f0600f7 ++int dimen mtrl_calendar_dialog_background_inset 0x7f0600f8 ++int dimen mtrl_calendar_header_content_padding 0x7f0600f9 ++int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f0600fa ++int dimen mtrl_calendar_header_divider_thickness 0x7f0600fb ++int dimen mtrl_calendar_header_height 0x7f0600fc ++int dimen mtrl_calendar_header_height_fullscreen 0x7f0600fd ++int dimen mtrl_calendar_header_selection_line_height 0x7f0600fe ++int dimen mtrl_calendar_header_text_padding 0x7f0600ff ++int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f060100 ++int dimen mtrl_calendar_header_toggle_margin_top 0x7f060101 ++int dimen mtrl_calendar_landscape_header_width 0x7f060102 ++int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f060103 ++int dimen mtrl_calendar_month_horizontal_padding 0x7f060104 ++int dimen mtrl_calendar_month_vertical_padding 0x7f060105 ++int dimen mtrl_calendar_navigation_bottom_padding 0x7f060106 ++int dimen mtrl_calendar_navigation_height 0x7f060107 ++int dimen mtrl_calendar_navigation_top_padding 0x7f060108 ++int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f060109 ++int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f06010a ++int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f06010b ++int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f06010c ++int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f06010d ++int dimen mtrl_calendar_text_input_padding_top 0x7f06010e ++int dimen mtrl_calendar_title_baseline_to_top 0x7f06010f ++int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f060110 ++int dimen mtrl_calendar_year_corner 0x7f060111 ++int dimen mtrl_calendar_year_height 0x7f060112 ++int dimen mtrl_calendar_year_horizontal_padding 0x7f060113 ++int dimen mtrl_calendar_year_vertical_padding 0x7f060114 ++int dimen mtrl_calendar_year_width 0x7f060115 ++int dimen mtrl_card_checked_icon_margin 0x7f060116 ++int dimen mtrl_card_checked_icon_size 0x7f060117 ++int dimen mtrl_card_corner_radius 0x7f060118 ++int dimen mtrl_card_dragged_z 0x7f060119 ++int dimen mtrl_card_elevation 0x7f06011a ++int dimen mtrl_card_spacing 0x7f06011b ++int dimen mtrl_chip_pressed_translation_z 0x7f06011c ++int dimen mtrl_chip_text_size 0x7f06011d ++int dimen mtrl_edittext_rectangle_top_offset 0x7f06011e ++int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f06011f ++int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f060120 ++int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f060121 ++int dimen mtrl_extended_fab_bottom_padding 0x7f060122 ++int dimen mtrl_extended_fab_corner_radius 0x7f060123 ++int dimen mtrl_extended_fab_disabled_elevation 0x7f060124 ++int dimen mtrl_extended_fab_disabled_translation_z 0x7f060125 ++int dimen mtrl_extended_fab_elevation 0x7f060126 ++int dimen mtrl_extended_fab_end_padding 0x7f060127 ++int dimen mtrl_extended_fab_end_padding_icon 0x7f060128 ++int dimen mtrl_extended_fab_icon_size 0x7f060129 ++int dimen mtrl_extended_fab_icon_text_spacing 0x7f06012a ++int dimen mtrl_extended_fab_min_height 0x7f06012b ++int dimen mtrl_extended_fab_min_width 0x7f06012c ++int dimen mtrl_extended_fab_start_padding 0x7f06012d ++int dimen mtrl_extended_fab_start_padding_icon 0x7f06012e ++int dimen mtrl_extended_fab_top_padding 0x7f06012f ++int dimen mtrl_extended_fab_translation_z_base 0x7f060130 ++int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f060131 ++int dimen mtrl_extended_fab_translation_z_pressed 0x7f060132 ++int dimen mtrl_fab_elevation 0x7f060133 ++int dimen mtrl_fab_min_touch_target 0x7f060134 ++int dimen mtrl_fab_translation_z_hovered_focused 0x7f060135 ++int dimen mtrl_fab_translation_z_pressed 0x7f060136 ++int dimen mtrl_high_ripple_default_alpha 0x7f060137 ++int dimen mtrl_high_ripple_focused_alpha 0x7f060138 ++int dimen mtrl_high_ripple_hovered_alpha 0x7f060139 ++int dimen mtrl_high_ripple_pressed_alpha 0x7f06013a ++int dimen mtrl_large_touch_target 0x7f06013b ++int dimen mtrl_low_ripple_default_alpha 0x7f06013c ++int dimen mtrl_low_ripple_focused_alpha 0x7f06013d ++int dimen mtrl_low_ripple_hovered_alpha 0x7f06013e ++int dimen mtrl_low_ripple_pressed_alpha 0x7f06013f ++int dimen mtrl_min_touch_target_size 0x7f060140 ++int dimen mtrl_navigation_bar_item_default_icon_size 0x7f060141 ++int dimen mtrl_navigation_bar_item_default_margin 0x7f060142 ++int dimen mtrl_navigation_elevation 0x7f060143 ++int dimen mtrl_navigation_item_horizontal_padding 0x7f060144 ++int dimen mtrl_navigation_item_icon_padding 0x7f060145 ++int dimen mtrl_navigation_item_icon_size 0x7f060146 ++int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f060147 ++int dimen mtrl_navigation_item_shape_vertical_margin 0x7f060148 ++int dimen mtrl_navigation_rail_active_text_size 0x7f060149 ++int dimen mtrl_navigation_rail_compact_width 0x7f06014a ++int dimen mtrl_navigation_rail_default_width 0x7f06014b ++int dimen mtrl_navigation_rail_elevation 0x7f06014c ++int dimen mtrl_navigation_rail_icon_margin 0x7f06014d ++int dimen mtrl_navigation_rail_icon_size 0x7f06014e ++int dimen mtrl_navigation_rail_margin 0x7f06014f ++int dimen mtrl_navigation_rail_text_bottom_margin 0x7f060150 ++int dimen mtrl_navigation_rail_text_size 0x7f060151 ++int dimen mtrl_progress_circular_inset 0x7f060152 ++int dimen mtrl_progress_circular_inset_extra_small 0x7f060153 ++int dimen mtrl_progress_circular_inset_medium 0x7f060154 ++int dimen mtrl_progress_circular_inset_small 0x7f060155 ++int dimen mtrl_progress_circular_radius 0x7f060156 ++int dimen mtrl_progress_circular_size 0x7f060157 ++int dimen mtrl_progress_circular_size_extra_small 0x7f060158 ++int dimen mtrl_progress_circular_size_medium 0x7f060159 ++int dimen mtrl_progress_circular_size_small 0x7f06015a ++int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f06015b ++int dimen mtrl_progress_circular_track_thickness_medium 0x7f06015c ++int dimen mtrl_progress_circular_track_thickness_small 0x7f06015d ++int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f06015e ++int dimen mtrl_progress_track_thickness 0x7f06015f ++int dimen mtrl_shape_corner_size_large_component 0x7f060160 ++int dimen mtrl_shape_corner_size_medium_component 0x7f060161 ++int dimen mtrl_shape_corner_size_small_component 0x7f060162 ++int dimen mtrl_slider_halo_radius 0x7f060163 ++int dimen mtrl_slider_label_padding 0x7f060164 ++int dimen mtrl_slider_label_radius 0x7f060165 ++int dimen mtrl_slider_label_square_side 0x7f060166 ++int dimen mtrl_slider_thumb_elevation 0x7f060167 ++int dimen mtrl_slider_thumb_radius 0x7f060168 ++int dimen mtrl_slider_track_height 0x7f060169 ++int dimen mtrl_slider_track_side_padding 0x7f06016a ++int dimen mtrl_slider_track_top 0x7f06016b ++int dimen mtrl_slider_widget_height 0x7f06016c ++int dimen mtrl_snackbar_action_text_color_alpha 0x7f06016d ++int dimen mtrl_snackbar_background_corner_radius 0x7f06016e ++int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f06016f ++int dimen mtrl_snackbar_margin 0x7f060170 ++int dimen mtrl_snackbar_message_margin_horizontal 0x7f060171 ++int dimen mtrl_snackbar_padding_horizontal 0x7f060172 ++int dimen mtrl_switch_thumb_elevation 0x7f060173 ++int dimen mtrl_textinput_box_corner_radius_medium 0x7f060174 ++int dimen mtrl_textinput_box_corner_radius_small 0x7f060175 ++int dimen mtrl_textinput_box_label_cutout_padding 0x7f060176 ++int dimen mtrl_textinput_box_stroke_width_default 0x7f060177 ++int dimen mtrl_textinput_box_stroke_width_focused 0x7f060178 ++int dimen mtrl_textinput_counter_margin_start 0x7f060179 ++int dimen mtrl_textinput_end_icon_margin_start 0x7f06017a ++int dimen mtrl_textinput_outline_box_expanded_padding 0x7f06017b ++int dimen mtrl_textinput_start_icon_margin_end 0x7f06017c ++int dimen mtrl_toolbar_default_height 0x7f06017d ++int dimen mtrl_tooltip_arrowSize 0x7f06017e ++int dimen mtrl_tooltip_cornerSize 0x7f06017f ++int dimen mtrl_tooltip_minHeight 0x7f060180 ++int dimen mtrl_tooltip_minWidth 0x7f060181 ++int dimen mtrl_tooltip_padding 0x7f060182 ++int dimen mtrl_transition_shared_axis_slide_distance 0x7f060183 ++int dimen notification_action_icon_size 0x7f060184 ++int dimen notification_action_text_size 0x7f060185 ++int dimen notification_big_circle_margin 0x7f060186 ++int dimen notification_content_margin_start 0x7f060187 ++int dimen notification_large_icon_height 0x7f060188 ++int dimen notification_large_icon_width 0x7f060189 ++int dimen notification_main_column_padding_top 0x7f06018a ++int dimen notification_media_narrow_margin 0x7f06018b ++int dimen notification_right_icon_size 0x7f06018c ++int dimen notification_right_side_padding_top 0x7f06018d ++int dimen notification_small_icon_background_padding 0x7f06018e ++int dimen notification_small_icon_size_as_large 0x7f06018f ++int dimen notification_subtext_size 0x7f060190 ++int dimen notification_top_pad 0x7f060191 ++int dimen notification_top_pad_large_text 0x7f060192 ++int dimen test_mtrl_calendar_day_cornerSize 0x7f060193 ++int dimen test_navigation_bar_active_item_max_width 0x7f060194 ++int dimen test_navigation_bar_active_item_min_width 0x7f060195 ++int dimen test_navigation_bar_active_text_size 0x7f060196 ++int dimen test_navigation_bar_elevation 0x7f060197 ++int dimen test_navigation_bar_height 0x7f060198 ++int dimen test_navigation_bar_icon_size 0x7f060199 ++int dimen test_navigation_bar_item_max_width 0x7f06019a ++int dimen test_navigation_bar_item_min_width 0x7f06019b ++int dimen test_navigation_bar_label_padding 0x7f06019c ++int dimen test_navigation_bar_shadow_height 0x7f06019d ++int dimen test_navigation_bar_text_size 0x7f06019e ++int dimen tooltip_corner_radius 0x7f06019f ++int dimen tooltip_horizontal_padding 0x7f0601a0 ++int dimen tooltip_margin 0x7f0601a1 ++int dimen tooltip_precise_anchor_extra_offset 0x7f0601a2 ++int dimen tooltip_precise_anchor_threshold 0x7f0601a3 ++int dimen tooltip_vertical_padding 0x7f0601a4 ++int dimen tooltip_y_offset_non_touch 0x7f0601a5 ++int dimen tooltip_y_offset_touch 0x7f0601a6 ++int drawable abc_ab_share_pack_mtrl_alpha 0x7f070006 ++int drawable abc_action_bar_item_background_material 0x7f070007 ++int drawable abc_btn_borderless_material 0x7f070008 ++int drawable abc_btn_check_material 0x7f070009 ++int drawable abc_btn_check_material_anim 0x7f07000a ++int drawable abc_btn_check_to_on_mtrl_000 0x7f07000b ++int drawable abc_btn_check_to_on_mtrl_015 0x7f07000c ++int drawable abc_btn_colored_material 0x7f07000d ++int drawable abc_btn_default_mtrl_shape 0x7f07000e ++int drawable abc_btn_radio_material 0x7f07000f ++int drawable abc_btn_radio_material_anim 0x7f070010 ++int drawable abc_btn_radio_to_on_mtrl_000 0x7f070011 ++int drawable abc_btn_radio_to_on_mtrl_015 0x7f070012 ++int drawable abc_btn_switch_to_on_mtrl_00001 0x7f070013 ++int drawable abc_btn_switch_to_on_mtrl_00012 0x7f070014 ++int drawable abc_cab_background_internal_bg 0x7f070015 ++int drawable abc_cab_background_top_material 0x7f070016 ++int drawable abc_cab_background_top_mtrl_alpha 0x7f070017 ++int drawable abc_control_background_material 0x7f070018 ++int drawable abc_dialog_material_background 0x7f070019 ++int drawable abc_edit_text_material 0x7f07001a ++int drawable abc_ic_ab_back_material 0x7f07001b ++int drawable abc_ic_arrow_drop_right_black_24dp 0x7f07001c ++int drawable abc_ic_clear_material 0x7f07001d ++int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f07001e ++int drawable abc_ic_go_search_api_material 0x7f07001f ++int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f070020 ++int drawable abc_ic_menu_cut_mtrl_alpha 0x7f070021 ++int drawable abc_ic_menu_overflow_material 0x7f070022 ++int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f070023 ++int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f070024 ++int drawable abc_ic_menu_share_mtrl_alpha 0x7f070025 ++int drawable abc_ic_search_api_material 0x7f070026 ++int drawable abc_ic_voice_search_api_material 0x7f070027 ++int drawable abc_item_background_holo_dark 0x7f070028 ++int drawable abc_item_background_holo_light 0x7f070029 ++int drawable abc_list_divider_material 0x7f07002a ++int drawable abc_list_divider_mtrl_alpha 0x7f07002b ++int drawable abc_list_focused_holo 0x7f07002c ++int drawable abc_list_longpressed_holo 0x7f07002d ++int drawable abc_list_pressed_holo_dark 0x7f07002e ++int drawable abc_list_pressed_holo_light 0x7f07002f ++int drawable abc_list_selector_background_transition_holo_dark 0x7f070030 ++int drawable abc_list_selector_background_transition_holo_light 0x7f070031 ++int drawable abc_list_selector_disabled_holo_dark 0x7f070032 ++int drawable abc_list_selector_disabled_holo_light 0x7f070033 ++int drawable abc_list_selector_holo_dark 0x7f070034 ++int drawable abc_list_selector_holo_light 0x7f070035 ++int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f070036 ++int drawable abc_popup_background_mtrl_mult 0x7f070037 ++int drawable abc_ratingbar_indicator_material 0x7f070038 ++int drawable abc_ratingbar_material 0x7f070039 ++int drawable abc_ratingbar_small_material 0x7f07003a ++int drawable abc_scrubber_control_off_mtrl_alpha 0x7f07003b ++int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f07003c ++int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f07003d ++int drawable abc_scrubber_primary_mtrl_alpha 0x7f07003e ++int drawable abc_scrubber_track_mtrl_alpha 0x7f07003f ++int drawable abc_seekbar_thumb_material 0x7f070040 ++int drawable abc_seekbar_tick_mark_material 0x7f070041 ++int drawable abc_seekbar_track_material 0x7f070042 ++int drawable abc_spinner_mtrl_am_alpha 0x7f070043 ++int drawable abc_spinner_textfield_background_material 0x7f070044 ++int drawable abc_star_black_48dp 0x7f070045 ++int drawable abc_star_half_black_48dp 0x7f070046 ++int drawable abc_switch_thumb_material 0x7f070047 ++int drawable abc_switch_track_mtrl_alpha 0x7f070048 ++int drawable abc_tab_indicator_material 0x7f070049 ++int drawable abc_tab_indicator_mtrl_alpha 0x7f07004a ++int drawable abc_text_cursor_material 0x7f07004b ++int drawable abc_text_select_handle_left_mtrl 0x7f07004c ++int drawable abc_text_select_handle_middle_mtrl 0x7f07004d ++int drawable abc_text_select_handle_right_mtrl 0x7f07004e ++int drawable abc_textfield_activated_mtrl_alpha 0x7f07004f ++int drawable abc_textfield_default_mtrl_alpha 0x7f070050 ++int drawable abc_textfield_search_activated_mtrl_alpha 0x7f070051 ++int drawable abc_textfield_search_default_mtrl_alpha 0x7f070052 ++int drawable abc_textfield_search_material 0x7f070053 ++int drawable abc_vector_test 0x7f070054 ++int drawable avd_hide_password 0x7f070055 ++int drawable avd_show_password 0x7f070056 ++int drawable btn_checkbox_checked_mtrl 0x7f070057 ++int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f070058 ++int drawable btn_checkbox_unchecked_mtrl 0x7f070059 ++int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f07005a ++int drawable btn_radio_off_mtrl 0x7f07005b ++int drawable btn_radio_off_to_on_mtrl_animation 0x7f07005c ++int drawable btn_radio_on_mtrl 0x7f07005d ++int drawable btn_radio_on_to_off_mtrl_animation 0x7f07005e ++int drawable design_fab_background 0x7f07005f ++int drawable design_ic_visibility 0x7f070060 ++int drawable design_ic_visibility_off 0x7f070061 ++int drawable design_password_eye 0x7f070062 ++int drawable design_snackbar_background 0x7f070063 ++int drawable ic_clock_black_24dp 0x7f070064 ++int drawable ic_keyboard_black_24dp 0x7f070065 ++int drawable ic_mtrl_checked_circle 0x7f070066 ++int drawable ic_mtrl_chip_checked_black 0x7f070067 ++int drawable ic_mtrl_chip_checked_circle 0x7f070068 ++int drawable ic_mtrl_chip_close_circle 0x7f070069 ++int drawable material_cursor_drawable 0x7f07006a ++int drawable material_ic_calendar_black_24dp 0x7f07006b ++int drawable material_ic_clear_black_24dp 0x7f07006c ++int drawable material_ic_edit_black_24dp 0x7f07006d ++int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f07006e ++int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f07006f ++int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f070070 ++int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f070071 ++int drawable material_ic_menu_arrow_down_black_24dp 0x7f070072 ++int drawable material_ic_menu_arrow_up_black_24dp 0x7f070073 ++int drawable mtrl_dialog_background 0x7f070074 ++int drawable mtrl_dropdown_arrow 0x7f070075 ++int drawable mtrl_ic_arrow_drop_down 0x7f070076 ++int drawable mtrl_ic_arrow_drop_up 0x7f070077 ++int drawable mtrl_ic_cancel 0x7f070078 ++int drawable mtrl_ic_error 0x7f070079 ++int drawable mtrl_navigation_bar_item_background 0x7f07007a ++int drawable mtrl_popupmenu_background 0x7f07007b ++int drawable mtrl_popupmenu_background_dark 0x7f07007c ++int drawable mtrl_tabs_default_indicator 0x7f07007d ++int drawable navigation_empty_icon 0x7f07007e ++int drawable notification_action_background 0x7f07007f ++int drawable notification_bg 0x7f070080 ++int drawable notification_bg_low 0x7f070081 ++int drawable notification_bg_low_normal 0x7f070082 ++int drawable notification_bg_low_pressed 0x7f070083 ++int drawable notification_bg_normal 0x7f070084 ++int drawable notification_bg_normal_pressed 0x7f070085 ++int drawable notification_icon_background 0x7f070086 ++int drawable notification_template_icon_bg 0x7f070087 ++int drawable notification_template_icon_low_bg 0x7f070088 ++int drawable notification_tile_bg 0x7f070089 ++int drawable notify_panel_notification_icon_bg 0x7f07008a ++int drawable test_custom_background 0x7f07008b ++int drawable tooltip_frame_dark 0x7f07008c ++int drawable tooltip_frame_light 0x7f07008d ++int id ALT 0x7f080000 ++int id BOTTOM_END 0x7f080001 ++int id BOTTOM_START 0x7f080002 ++int id CTRL 0x7f080003 ++int id FUNCTION 0x7f080004 ++int id META 0x7f080005 ++int id NO_DEBUG 0x7f080006 ++int id SHIFT 0x7f080007 ++int id SHOW_ALL 0x7f080008 ++int id SHOW_PATH 0x7f080009 ++int id SHOW_PROGRESS 0x7f08000a ++int id SYM 0x7f08000b ++int id TOP_END 0x7f08000c ++int id TOP_START 0x7f08000d ++int id accelerate 0x7f08000e ++int id accessibility_action_clickable_span 0x7f08000f ++int id accessibility_custom_action_0 0x7f080010 ++int id accessibility_custom_action_1 0x7f080011 ++int id accessibility_custom_action_10 0x7f080012 ++int id accessibility_custom_action_11 0x7f080013 ++int id accessibility_custom_action_12 0x7f080014 ++int id accessibility_custom_action_13 0x7f080015 ++int id accessibility_custom_action_14 0x7f080016 ++int id accessibility_custom_action_15 0x7f080017 ++int id accessibility_custom_action_16 0x7f080018 ++int id accessibility_custom_action_17 0x7f080019 ++int id accessibility_custom_action_18 0x7f08001a ++int id accessibility_custom_action_19 0x7f08001b ++int id accessibility_custom_action_2 0x7f08001c ++int id accessibility_custom_action_20 0x7f08001d ++int id accessibility_custom_action_21 0x7f08001e ++int id accessibility_custom_action_22 0x7f08001f ++int id accessibility_custom_action_23 0x7f080020 ++int id accessibility_custom_action_24 0x7f080021 ++int id accessibility_custom_action_25 0x7f080022 ++int id accessibility_custom_action_26 0x7f080023 ++int id accessibility_custom_action_27 0x7f080024 ++int id accessibility_custom_action_28 0x7f080025 ++int id accessibility_custom_action_29 0x7f080026 ++int id accessibility_custom_action_3 0x7f080027 ++int id accessibility_custom_action_30 0x7f080028 ++int id accessibility_custom_action_31 0x7f080029 ++int id accessibility_custom_action_4 0x7f08002a ++int id accessibility_custom_action_5 0x7f08002b ++int id accessibility_custom_action_6 0x7f08002c ++int id accessibility_custom_action_7 0x7f08002d ++int id accessibility_custom_action_8 0x7f08002e ++int id accessibility_custom_action_9 0x7f08002f ++int id action_bar 0x7f080030 ++int id action_bar_activity_content 0x7f080031 ++int id action_bar_container 0x7f080032 ++int id action_bar_root 0x7f080033 ++int id action_bar_spinner 0x7f080034 ++int id action_bar_subtitle 0x7f080035 ++int id action_bar_title 0x7f080036 ++int id action_container 0x7f080037 ++int id action_context_bar 0x7f080038 ++int id action_divider 0x7f080039 ++int id action_image 0x7f08003a ++int id action_menu_divider 0x7f08003b ++int id action_menu_presenter 0x7f08003c ++int id action_mode_bar 0x7f08003d ++int id action_mode_bar_stub 0x7f08003e ++int id action_mode_close_button 0x7f08003f ++int id action_text 0x7f080040 ++int id actions 0x7f080041 ++int id activity_chooser_view_content 0x7f080042 ++int id add 0x7f080043 ++int id alertTitle 0x7f080044 ++int id aligned 0x7f080045 ++int id all 0x7f080046 ++int id always 0x7f080047 ++int id androidx_test_espresso_contrib_drawer_layout_tag 0x7f080048 ++int id animateToEnd 0x7f080049 ++int id animateToStart 0x7f08004a ++int id arc 0x7f08004b ++int id asConfigured 0x7f08004c ++int id async 0x7f08004d ++int id auto 0x7f08004e ++int id autoComplete 0x7f08004f ++int id autoCompleteToEnd 0x7f080050 ++int id autoCompleteToStart 0x7f080051 ++int id barrier 0x7f080052 ++int id baseline 0x7f080053 ++int id beginOnFirstDraw 0x7f080054 ++int id beginning 0x7f080055 ++int id blocking 0x7f080056 ++int id bottom 0x7f080057 ++int id bounce 0x7f080058 ++int id buttonPanel 0x7f080059 ++int id cancel_button 0x7f08005a ++int id center 0x7f08005b ++int id center_horizontal 0x7f08005c ++int id center_vertical 0x7f08005d ++int id chain 0x7f08005e ++int id chains 0x7f08005f ++int id checkbox 0x7f080060 ++int id checked 0x7f080061 ++int id chip 0x7f080062 ++int id chip1 0x7f080063 ++int id chip2 0x7f080064 ++int id chip3 0x7f080065 ++int id chip_group 0x7f080066 ++int id chronometer 0x7f080067 ++int id circle_center 0x7f080068 ++int id clear_text 0x7f080069 ++int id clip_horizontal 0x7f08006a ++int id clip_vertical 0x7f08006b ++int id clockwise 0x7f08006c ++int id collapseActionView 0x7f08006d ++int id confirm_button 0x7f08006e ++int id container 0x7f08006f ++int id content 0x7f080070 ++int id contentPanel 0x7f080071 ++int id contiguous 0x7f080072 ++int id coordinator 0x7f080073 ++int id cos 0x7f080074 ++int id counterclockwise 0x7f080075 ++int id custom 0x7f080076 ++int id customPanel 0x7f080077 ++int id cut 0x7f080078 ++int id date_picker_actions 0x7f080079 ++int id decelerate 0x7f08007a ++int id decelerateAndComplete 0x7f08007b ++int id decor_content_parent 0x7f08007c ++int id default_activity_button 0x7f08007d ++int id deltaRelative 0x7f08007e ++int id design_bottom_sheet 0x7f08007f ++int id design_menu_item_action_area 0x7f080080 ++int id design_menu_item_action_area_stub 0x7f080081 ++int id design_menu_item_text 0x7f080082 ++int id design_navigation_view 0x7f080083 ++int id dialog_button 0x7f080084 ++int id dimensions 0x7f080085 ++int id direct 0x7f080086 ++int id disableHome 0x7f080087 ++int id disablePostScroll 0x7f080088 ++int id disableScroll 0x7f080089 ++int id disjoint 0x7f08008a ++int id dragDown 0x7f08008b ++int id dragEnd 0x7f08008c ++int id dragLeft 0x7f08008d ++int id dragRight 0x7f08008e ++int id dragStart 0x7f08008f ++int id dragUp 0x7f080090 ++int id dropdown_menu 0x7f080091 ++int id easeIn 0x7f080092 ++int id easeInOut 0x7f080093 ++int id easeOut 0x7f080094 ++int id edit_query 0x7f080095 ++int id elastic 0x7f080096 ++int id end 0x7f080097 ++int id endToStart 0x7f080098 ++int id enterAlways 0x7f080099 ++int id enterAlwaysCollapsed 0x7f08009a ++int id exitUntilCollapsed 0x7f08009b ++int id expand_activities_button 0x7f08009c ++int id expanded_menu 0x7f08009d ++int id fade 0x7f08009e ++int id fill 0x7f08009f ++int id fill_horizontal 0x7f0800a0 ++int id fill_vertical 0x7f0800a1 ++int id filled 0x7f0800a2 ++int id fitToContents 0x7f0800a3 ++int id fixed 0x7f0800a4 ++int id flip 0x7f0800a5 ++int id floating 0x7f0800a6 ++int id forever 0x7f0800a7 ++int id fragment_container_view_tag 0x7f0800a8 ++int id ghost_view 0x7f0800a9 ++int id ghost_view_holder 0x7f0800aa ++int id gone 0x7f0800ab ++int id graph 0x7f0800ac ++int id graph_wrap 0x7f0800ad ++int id group_divider 0x7f0800ae ++int id groups 0x7f0800af ++int id guideline 0x7f0800b0 ++int id header_title 0x7f0800b1 ++int id hideable 0x7f0800b2 ++int id home 0x7f0800b3 ++int id homeAsUp 0x7f0800b4 ++int id honorRequest 0x7f0800b5 ++int id icon 0x7f0800b6 ++int id icon_group 0x7f0800b7 ++int id ifRoom 0x7f0800b8 ++int id ignore 0x7f0800b9 ++int id ignoreRequest 0x7f0800ba ++int id image 0x7f0800bb ++int id info 0x7f0800bc ++int id invisible 0x7f0800bd ++int id inward 0x7f0800be ++int id italic 0x7f0800bf ++int id item_touch_helper_previous_elevation 0x7f0800c0 ++int id jumpToEnd 0x7f0800c1 ++int id jumpToStart 0x7f0800c2 ++int id labeled 0x7f0800c3 ++int id layout 0x7f0800c4 ++int id left 0x7f0800c5 ++int id leftToRight 0x7f0800c6 ++int id line1 0x7f0800c7 ++int id line3 0x7f0800c8 ++int id linear 0x7f0800c9 ++int id listMode 0x7f0800ca ++int id list_item 0x7f0800cb ++int id masked 0x7f0800cc ++int id material_clock_display 0x7f0800cd ++int id material_clock_face 0x7f0800ce ++int id material_clock_hand 0x7f0800cf ++int id material_clock_period_am_button 0x7f0800d0 ++int id material_clock_period_pm_button 0x7f0800d1 ++int id material_clock_period_toggle 0x7f0800d2 ++int id material_hour_text_input 0x7f0800d3 ++int id material_hour_tv 0x7f0800d4 ++int id material_label 0x7f0800d5 ++int id material_minute_text_input 0x7f0800d6 ++int id material_minute_tv 0x7f0800d7 ++int id material_textinput_timepicker 0x7f0800d8 ++int id material_timepicker_cancel_button 0x7f0800d9 ++int id material_timepicker_container 0x7f0800da ++int id material_timepicker_edit_text 0x7f0800db ++int id material_timepicker_mode_button 0x7f0800dc ++int id material_timepicker_ok_button 0x7f0800dd ++int id material_timepicker_view 0x7f0800de ++int id material_value_index 0x7f0800df ++int id message 0x7f0800e0 ++int id middle 0x7f0800e1 ++int id mini 0x7f0800e2 ++int id month_grid 0x7f0800e3 ++int id month_navigation_bar 0x7f0800e4 ++int id month_navigation_fragment_toggle 0x7f0800e5 ++int id month_navigation_next 0x7f0800e6 ++int id month_navigation_previous 0x7f0800e7 ++int id month_title 0x7f0800e8 ++int id motion_base 0x7f0800e9 ++int id mtrl_anchor_parent 0x7f0800ea ++int id mtrl_calendar_day_selector_frame 0x7f0800eb ++int id mtrl_calendar_days_of_week 0x7f0800ec ++int id mtrl_calendar_frame 0x7f0800ed ++int id mtrl_calendar_main_pane 0x7f0800ee ++int id mtrl_calendar_months 0x7f0800ef ++int id mtrl_calendar_selection_frame 0x7f0800f0 ++int id mtrl_calendar_text_input_frame 0x7f0800f1 ++int id mtrl_calendar_year_selector_frame 0x7f0800f2 ++int id mtrl_card_checked_layer_id 0x7f0800f3 ++int id mtrl_child_content_container 0x7f0800f4 ++int id mtrl_internal_children_alpha_tag 0x7f0800f5 ++int id mtrl_motion_snapshot_view 0x7f0800f6 ++int id mtrl_picker_fullscreen 0x7f0800f7 ++int id mtrl_picker_header 0x7f0800f8 ++int id mtrl_picker_header_selection_text 0x7f0800f9 ++int id mtrl_picker_header_title_and_selection 0x7f0800fa ++int id mtrl_picker_header_toggle 0x7f0800fb ++int id mtrl_picker_text_input_date 0x7f0800fc ++int id mtrl_picker_text_input_range_end 0x7f0800fd ++int id mtrl_picker_text_input_range_start 0x7f0800fe ++int id mtrl_picker_title_text 0x7f0800ff ++int id mtrl_view_tag_bottom_padding 0x7f080100 ++int id multiply 0x7f080101 ++int id navigation_bar_item_icon_view 0x7f080102 ++int id navigation_bar_item_labels_group 0x7f080103 ++int id navigation_bar_item_large_label_view 0x7f080104 ++int id navigation_bar_item_small_label_view 0x7f080105 ++int id navigation_header_container 0x7f080106 ++int id never 0x7f080107 ++int id noScroll 0x7f080108 ++int id none 0x7f080109 ++int id normal 0x7f08010a ++int id notification_background 0x7f08010b ++int id notification_main_column 0x7f08010c ++int id notification_main_column_container 0x7f08010d ++int id off 0x7f08010e ++int id on 0x7f08010f ++int id outline 0x7f080110 ++int id outward 0x7f080111 ++int id packed 0x7f080112 ++int id parallax 0x7f080113 ++int id parent 0x7f080114 ++int id parentPanel 0x7f080115 ++int id parentRelative 0x7f080116 ++int id parent_matrix 0x7f080117 ++int id password_toggle 0x7f080118 ++int id path 0x7f080119 ++int id pathRelative 0x7f08011a ++int id peekHeight 0x7f08011b ++int id percent 0x7f08011c ++int id pin 0x7f08011d ++int id position 0x7f08011e ++int id postLayout 0x7f08011f ++int id progress_circular 0x7f080120 ++int id progress_horizontal 0x7f080121 ++int id radio 0x7f080122 ++int id ratio 0x7f080123 ++int id rectangles 0x7f080124 ++int id reverseSawtooth 0x7f080125 ++int id right 0x7f080126 ++int id rightToLeft 0x7f080127 ++int id right_icon 0x7f080128 ++int id right_side 0x7f080129 ++int id rounded 0x7f08012a ++int id row_index_key 0x7f08012b ++int id save_non_transition_alpha 0x7f08012c ++int id save_overlay_view 0x7f08012d ++int id sawtooth 0x7f08012e ++int id scale 0x7f08012f ++int id screen 0x7f080130 ++int id scroll 0x7f080131 ++int id scrollIndicatorDown 0x7f080132 ++int id scrollIndicatorUp 0x7f080133 ++int id scrollView 0x7f080134 ++int id scrollable 0x7f080135 ++int id search_badge 0x7f080136 ++int id search_bar 0x7f080137 ++int id search_button 0x7f080138 ++int id search_close_btn 0x7f080139 ++int id search_edit_frame 0x7f08013a ++int id search_go_btn 0x7f08013b ++int id search_mag_icon 0x7f08013c ++int id search_plate 0x7f08013d ++int id search_src_text 0x7f08013e ++int id search_voice_btn 0x7f08013f ++int id select_dialog_listview 0x7f080140 ++int id selected 0x7f080141 ++int id selection_type 0x7f080142 ++int id shortcut 0x7f080143 ++int id showCustom 0x7f080144 ++int id showHome 0x7f080145 ++int id showTitle 0x7f080146 ++int id sin 0x7f080147 ++int id skipCollapsed 0x7f080148 ++int id slide 0x7f080149 ++int id snackbar_action 0x7f08014a ++int id snackbar_text 0x7f08014b ++int id snap 0x7f08014c ++int id snapMargins 0x7f08014d ++int id spacer 0x7f08014e ++int id special_effects_controller_view_tag 0x7f08014f ++int id spline 0x7f080150 ++int id split_action_bar 0x7f080151 ++int id spread 0x7f080152 ++int id spread_inside 0x7f080153 ++int id square 0x7f080154 ++int id src_atop 0x7f080155 ++int id src_in 0x7f080156 ++int id src_over 0x7f080157 ++int id standard 0x7f080158 ++int id start 0x7f080159 ++int id startHorizontal 0x7f08015a ++int id startToEnd 0x7f08015b ++int id startVertical 0x7f08015c ++int id staticLayout 0x7f08015d ++int id staticPostLayout 0x7f08015e ++int id stop 0x7f08015f ++int id stretch 0x7f080160 ++int id submenuarrow 0x7f080161 ++int id submit_area 0x7f080162 ++int id tabMode 0x7f080163 ++int id tag_accessibility_actions 0x7f080164 ++int id tag_accessibility_clickable_spans 0x7f080165 ++int id tag_accessibility_heading 0x7f080166 ++int id tag_accessibility_pane_title 0x7f080167 ++int id tag_on_apply_window_listener 0x7f080168 ++int id tag_on_receive_content_listener 0x7f080169 ++int id tag_on_receive_content_mime_types 0x7f08016a ++int id tag_screen_reader_focusable 0x7f08016b ++int id tag_state_description 0x7f08016c ++int id tag_transition_group 0x7f08016d ++int id tag_unhandled_key_event_manager 0x7f08016e ++int id tag_unhandled_key_listeners 0x7f08016f ++int id tag_window_insets_animation_callback 0x7f080170 ++int id test_checkbox_android_button_tint 0x7f080171 ++int id test_checkbox_app_button_tint 0x7f080172 ++int id test_radiobutton_android_button_tint 0x7f080173 ++int id test_radiobutton_app_button_tint 0x7f080174 ++int id text 0x7f080175 ++int id text2 0x7f080176 ++int id textEnd 0x7f080177 ++int id textSpacerNoButtons 0x7f080178 ++int id textSpacerNoTitle 0x7f080179 ++int id textStart 0x7f08017a ++int id textTop 0x7f08017b ++int id text_input_end_icon 0x7f08017c ++int id text_input_error_icon 0x7f08017d ++int id text_input_start_icon 0x7f08017e ++int id textinput_counter 0x7f08017f ++int id textinput_error 0x7f080180 ++int id textinput_helper_text 0x7f080181 ++int id textinput_placeholder 0x7f080182 ++int id textinput_prefix_text 0x7f080183 ++int id textinput_suffix_text 0x7f080184 ++int id time 0x7f080185 ++int id title 0x7f080186 ++int id titleDividerNoCustom 0x7f080187 ++int id title_template 0x7f080188 ++int id toggle 0x7f080189 ++int id top 0x7f08018a ++int id topPanel 0x7f08018b ++int id touch_outside 0x7f08018c ++int id transitionToEnd 0x7f08018d ++int id transitionToStart 0x7f08018e ++int id transition_current_scene 0x7f08018f ++int id transition_layout_save 0x7f080190 ++int id transition_position 0x7f080191 ++int id transition_scene_layoutid_cache 0x7f080192 ++int id transition_transform 0x7f080193 ++int id triangle 0x7f080194 ++int id unchecked 0x7f080195 ++int id uniform 0x7f080196 ++int id unlabeled 0x7f080197 ++int id up 0x7f080198 ++int id useLogo 0x7f080199 ++int id view_offset_helper 0x7f08019a ++int id view_tree_lifecycle_owner 0x7f08019b ++int id view_tree_saved_state_registry_owner 0x7f08019c ++int id view_tree_view_model_store_owner 0x7f08019d ++int id visible 0x7f08019e ++int id visible_removing_fragment_view_tag 0x7f08019f ++int id withText 0x7f0801a0 ++int id withinBounds 0x7f0801a1 ++int id wrap 0x7f0801a2 ++int id wrap_content 0x7f0801a3 ++int id zero_corner_chip 0x7f0801a4 ++int integer abc_config_activityDefaultDur 0x7f090000 ++int integer abc_config_activityShortDur 0x7f090001 ++int integer app_bar_elevation_anim_duration 0x7f090002 ++int integer bottom_sheet_slide_duration 0x7f090003 ++int integer cancel_button_image_alpha 0x7f090004 ++int integer config_tooltipAnimTime 0x7f090005 ++int integer design_snackbar_text_max_lines 0x7f090006 ++int integer design_tab_indicator_anim_duration_ms 0x7f090007 ++int integer hide_password_duration 0x7f090008 ++int integer material_motion_duration_long_1 0x7f090009 ++int integer material_motion_duration_long_2 0x7f09000a ++int integer material_motion_duration_medium_1 0x7f09000b ++int integer material_motion_duration_medium_2 0x7f09000c ++int integer material_motion_duration_short_1 0x7f09000d ++int integer material_motion_duration_short_2 0x7f09000e ++int integer material_motion_path 0x7f09000f ++int integer mtrl_badge_max_character_count 0x7f090010 ++int integer mtrl_btn_anim_delay_ms 0x7f090011 ++int integer mtrl_btn_anim_duration_ms 0x7f090012 ++int integer mtrl_calendar_header_orientation 0x7f090013 ++int integer mtrl_calendar_selection_text_lines 0x7f090014 ++int integer mtrl_calendar_year_selector_span 0x7f090015 ++int integer mtrl_card_anim_delay_ms 0x7f090016 ++int integer mtrl_card_anim_duration_ms 0x7f090017 ++int integer mtrl_chip_anim_duration 0x7f090018 ++int integer mtrl_tab_indicator_anim_duration_ms 0x7f090019 ++int integer show_password_duration 0x7f09001a ++int integer status_bar_notification_info_maxnum 0x7f09001b ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0a0000 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0a0001 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0a0002 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0a0003 ++int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0a0004 ++int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0a0005 ++int interpolator fast_out_slow_in 0x7f0a0006 ++int interpolator mtrl_fast_out_linear_in 0x7f0a0007 ++int interpolator mtrl_fast_out_slow_in 0x7f0a0008 ++int interpolator mtrl_linear 0x7f0a0009 ++int interpolator mtrl_linear_out_slow_in 0x7f0a000a ++int layout abc_action_bar_title_item 0x7f0b0000 ++int layout abc_action_bar_up_container 0x7f0b0001 ++int layout abc_action_menu_item_layout 0x7f0b0002 ++int layout abc_action_menu_layout 0x7f0b0003 ++int layout abc_action_mode_bar 0x7f0b0004 ++int layout abc_action_mode_close_item_material 0x7f0b0005 ++int layout abc_activity_chooser_view 0x7f0b0006 ++int layout abc_activity_chooser_view_list_item 0x7f0b0007 ++int layout abc_alert_dialog_button_bar_material 0x7f0b0008 ++int layout abc_alert_dialog_material 0x7f0b0009 ++int layout abc_alert_dialog_title_material 0x7f0b000a ++int layout abc_cascading_menu_item_layout 0x7f0b000b ++int layout abc_dialog_title_material 0x7f0b000c ++int layout abc_expanded_menu_layout 0x7f0b000d ++int layout abc_list_menu_item_checkbox 0x7f0b000e ++int layout abc_list_menu_item_icon 0x7f0b000f ++int layout abc_list_menu_item_layout 0x7f0b0010 ++int layout abc_list_menu_item_radio 0x7f0b0011 ++int layout abc_popup_menu_header_item_layout 0x7f0b0012 ++int layout abc_popup_menu_item_layout 0x7f0b0013 ++int layout abc_screen_content_include 0x7f0b0014 ++int layout abc_screen_simple 0x7f0b0015 ++int layout abc_screen_simple_overlay_action_mode 0x7f0b0016 ++int layout abc_screen_toolbar 0x7f0b0017 ++int layout abc_search_dropdown_item_icons_2line 0x7f0b0018 ++int layout abc_search_view 0x7f0b0019 ++int layout abc_select_dialog_material 0x7f0b001a ++int layout abc_tooltip 0x7f0b001b ++int layout custom_dialog 0x7f0b001c ++int layout design_bottom_navigation_item 0x7f0b001d ++int layout design_bottom_sheet_dialog 0x7f0b001e ++int layout design_layout_snackbar 0x7f0b001f ++int layout design_layout_snackbar_include 0x7f0b0020 ++int layout design_layout_tab_icon 0x7f0b0021 ++int layout design_layout_tab_text 0x7f0b0022 ++int layout design_menu_item_action_area 0x7f0b0023 ++int layout design_navigation_item 0x7f0b0024 ++int layout design_navigation_item_header 0x7f0b0025 ++int layout design_navigation_item_separator 0x7f0b0026 ++int layout design_navigation_item_subheader 0x7f0b0027 ++int layout design_navigation_menu 0x7f0b0028 ++int layout design_navigation_menu_item 0x7f0b0029 ++int layout design_text_input_end_icon 0x7f0b002a ++int layout design_text_input_start_icon 0x7f0b002b ++int layout material_chip_input_combo 0x7f0b002c ++int layout material_clock_display 0x7f0b002d ++int layout material_clock_display_divider 0x7f0b002e ++int layout material_clock_period_toggle 0x7f0b002f ++int layout material_clock_period_toggle_land 0x7f0b0030 ++int layout material_clockface_textview 0x7f0b0031 ++int layout material_clockface_view 0x7f0b0032 ++int layout material_radial_view_group 0x7f0b0033 ++int layout material_textinput_timepicker 0x7f0b0034 ++int layout material_time_chip 0x7f0b0035 ++int layout material_time_input 0x7f0b0036 ++int layout material_timepicker 0x7f0b0037 ++int layout material_timepicker_dialog 0x7f0b0038 ++int layout material_timepicker_textinput_display 0x7f0b0039 ++int layout mtrl_alert_dialog 0x7f0b003a ++int layout mtrl_alert_dialog_actions 0x7f0b003b ++int layout mtrl_alert_dialog_title 0x7f0b003c ++int layout mtrl_alert_select_dialog_item 0x7f0b003d ++int layout mtrl_alert_select_dialog_multichoice 0x7f0b003e ++int layout mtrl_alert_select_dialog_singlechoice 0x7f0b003f ++int layout mtrl_calendar_day 0x7f0b0040 ++int layout mtrl_calendar_day_of_week 0x7f0b0041 ++int layout mtrl_calendar_days_of_week 0x7f0b0042 ++int layout mtrl_calendar_horizontal 0x7f0b0043 ++int layout mtrl_calendar_month 0x7f0b0044 ++int layout mtrl_calendar_month_labeled 0x7f0b0045 ++int layout mtrl_calendar_month_navigation 0x7f0b0046 ++int layout mtrl_calendar_months 0x7f0b0047 ++int layout mtrl_calendar_vertical 0x7f0b0048 ++int layout mtrl_calendar_year 0x7f0b0049 ++int layout mtrl_layout_snackbar 0x7f0b004a ++int layout mtrl_layout_snackbar_include 0x7f0b004b ++int layout mtrl_navigation_rail_item 0x7f0b004c ++int layout mtrl_picker_actions 0x7f0b004d ++int layout mtrl_picker_dialog 0x7f0b004e ++int layout mtrl_picker_fullscreen 0x7f0b004f ++int layout mtrl_picker_header_dialog 0x7f0b0050 ++int layout mtrl_picker_header_fullscreen 0x7f0b0051 ++int layout mtrl_picker_header_selection_text 0x7f0b0052 ++int layout mtrl_picker_header_title_text 0x7f0b0053 ++int layout mtrl_picker_header_toggle 0x7f0b0054 ++int layout mtrl_picker_text_input_date 0x7f0b0055 ++int layout mtrl_picker_text_input_date_range 0x7f0b0056 ++int layout notification_action 0x7f0b0057 ++int layout notification_action_tombstone 0x7f0b0058 ++int layout notification_template_custom_big 0x7f0b0059 ++int layout notification_template_icon_group 0x7f0b005a ++int layout notification_template_part_chronometer 0x7f0b005b ++int layout notification_template_part_time 0x7f0b005c ++int layout select_dialog_item_material 0x7f0b005d ++int layout select_dialog_multichoice_material 0x7f0b005e ++int layout select_dialog_singlechoice_material 0x7f0b005f ++int layout support_simple_spinner_dropdown_item 0x7f0b0060 ++int layout test_action_chip 0x7f0b0061 ++int layout test_chip_zero_corner_radius 0x7f0b0062 ++int layout test_design_checkbox 0x7f0b0063 ++int layout test_design_radiobutton 0x7f0b0064 ++int layout test_navigation_bar_item_layout 0x7f0b0065 ++int layout test_reflow_chipgroup 0x7f0b0066 ++int layout test_toolbar 0x7f0b0067 ++int layout test_toolbar_custom_background 0x7f0b0068 ++int layout test_toolbar_elevation 0x7f0b0069 ++int layout test_toolbar_surface 0x7f0b006a ++int layout text_view_with_line_height_from_appearance 0x7f0b006b ++int layout text_view_with_line_height_from_layout 0x7f0b006c ++int layout text_view_with_line_height_from_style 0x7f0b006d ++int layout text_view_with_theme_line_height 0x7f0b006e ++int layout text_view_without_line_height 0x7f0b006f ++int plurals mtrl_badge_content_description 0x7f0c0000 ++int string abc_action_bar_home_description 0x7f0d0000 ++int string abc_action_bar_up_description 0x7f0d0001 ++int string abc_action_menu_overflow_description 0x7f0d0002 ++int string abc_action_mode_done 0x7f0d0003 ++int string abc_activity_chooser_view_see_all 0x7f0d0004 ++int string abc_activitychooserview_choose_application 0x7f0d0005 ++int string abc_capital_off 0x7f0d0006 ++int string abc_capital_on 0x7f0d0007 ++int string abc_menu_alt_shortcut_label 0x7f0d0008 ++int string abc_menu_ctrl_shortcut_label 0x7f0d0009 ++int string abc_menu_delete_shortcut_label 0x7f0d000a ++int string abc_menu_enter_shortcut_label 0x7f0d000b ++int string abc_menu_function_shortcut_label 0x7f0d000c ++int string abc_menu_meta_shortcut_label 0x7f0d000d ++int string abc_menu_shift_shortcut_label 0x7f0d000e ++int string abc_menu_space_shortcut_label 0x7f0d000f ++int string abc_menu_sym_shortcut_label 0x7f0d0010 ++int string abc_prepend_shortcut_label 0x7f0d0011 ++int string abc_search_hint 0x7f0d0012 ++int string abc_searchview_description_clear 0x7f0d0013 ++int string abc_searchview_description_query 0x7f0d0014 ++int string abc_searchview_description_search 0x7f0d0015 ++int string abc_searchview_description_submit 0x7f0d0016 ++int string abc_searchview_description_voice 0x7f0d0017 ++int string abc_shareactionprovider_share_with 0x7f0d0018 ++int string abc_shareactionprovider_share_with_application 0x7f0d0019 ++int string abc_toolbar_collapse_description 0x7f0d001a ++int string app_name 0x7f0d001b ++int string appbar_scrolling_view_behavior 0x7f0d001c ++int string bottom_sheet_behavior 0x7f0d001d ++int string bottomsheet_action_expand_halfway 0x7f0d001e ++int string character_counter_content_description 0x7f0d001f ++int string character_counter_overflowed_content_description 0x7f0d0020 ++int string character_counter_pattern 0x7f0d0021 ++int string chip_text 0x7f0d0022 ++int string clear_text_end_icon_content_description 0x7f0d0023 ++int string error_icon_content_description 0x7f0d0024 ++int string exposed_dropdown_menu_content_description 0x7f0d0025 ++int string fab_transformation_scrim_behavior 0x7f0d0026 ++int string fab_transformation_sheet_behavior 0x7f0d0027 ++int string hide_bottom_view_on_scroll_behavior 0x7f0d0028 ++int string icon_content_description 0x7f0d0029 ++int string item_view_role_description 0x7f0d002a ++int string material_clock_display_divider 0x7f0d002b ++int string material_clock_toggle_content_description 0x7f0d002c ++int string material_hour_selection 0x7f0d002d ++int string material_hour_suffix 0x7f0d002e ++int string material_minute_selection 0x7f0d002f ++int string material_minute_suffix 0x7f0d0030 ++int string material_motion_easing_accelerated 0x7f0d0031 ++int string material_motion_easing_decelerated 0x7f0d0032 ++int string material_motion_easing_emphasized 0x7f0d0033 ++int string material_motion_easing_linear 0x7f0d0034 ++int string material_motion_easing_standard 0x7f0d0035 ++int string material_slider_range_end 0x7f0d0036 ++int string material_slider_range_start 0x7f0d0037 ++int string material_timepicker_am 0x7f0d0038 ++int string material_timepicker_clock_mode_description 0x7f0d0039 ++int string material_timepicker_hour 0x7f0d003a ++int string material_timepicker_minute 0x7f0d003b ++int string material_timepicker_pm 0x7f0d003c ++int string material_timepicker_select_time 0x7f0d003d ++int string material_timepicker_text_input_mode_description 0x7f0d003e ++int string mtrl_badge_numberless_content_description 0x7f0d003f ++int string mtrl_chip_close_icon_content_description 0x7f0d0040 ++int string mtrl_exceed_max_badge_number_content_description 0x7f0d0041 ++int string mtrl_exceed_max_badge_number_suffix 0x7f0d0042 ++int string mtrl_picker_a11y_next_month 0x7f0d0043 ++int string mtrl_picker_a11y_prev_month 0x7f0d0044 ++int string mtrl_picker_announce_current_selection 0x7f0d0045 ++int string mtrl_picker_cancel 0x7f0d0046 ++int string mtrl_picker_confirm 0x7f0d0047 ++int string mtrl_picker_date_header_selected 0x7f0d0048 ++int string mtrl_picker_date_header_title 0x7f0d0049 ++int string mtrl_picker_date_header_unselected 0x7f0d004a ++int string mtrl_picker_day_of_week_column_header 0x7f0d004b ++int string mtrl_picker_invalid_format 0x7f0d004c ++int string mtrl_picker_invalid_format_example 0x7f0d004d ++int string mtrl_picker_invalid_format_use 0x7f0d004e ++int string mtrl_picker_invalid_range 0x7f0d004f ++int string mtrl_picker_navigate_to_year_description 0x7f0d0050 ++int string mtrl_picker_out_of_range 0x7f0d0051 ++int string mtrl_picker_range_header_only_end_selected 0x7f0d0052 ++int string mtrl_picker_range_header_only_start_selected 0x7f0d0053 ++int string mtrl_picker_range_header_selected 0x7f0d0054 ++int string mtrl_picker_range_header_title 0x7f0d0055 ++int string mtrl_picker_range_header_unselected 0x7f0d0056 ++int string mtrl_picker_save 0x7f0d0057 ++int string mtrl_picker_text_input_date_hint 0x7f0d0058 ++int string mtrl_picker_text_input_date_range_end_hint 0x7f0d0059 ++int string mtrl_picker_text_input_date_range_start_hint 0x7f0d005a ++int string mtrl_picker_text_input_day_abbr 0x7f0d005b ++int string mtrl_picker_text_input_month_abbr 0x7f0d005c ++int string mtrl_picker_text_input_year_abbr 0x7f0d005d ++int string mtrl_picker_toggle_to_calendar_input_mode 0x7f0d005e ++int string mtrl_picker_toggle_to_day_selection 0x7f0d005f ++int string mtrl_picker_toggle_to_text_input_mode 0x7f0d0060 ++int string mtrl_picker_toggle_to_year_selection 0x7f0d0061 ++int string password_toggle_content_description 0x7f0d0062 ++int string path_password_eye 0x7f0d0063 ++int string path_password_eye_mask_strike_through 0x7f0d0064 ++int string path_password_eye_mask_visible 0x7f0d0065 ++int string path_password_strike_through 0x7f0d0066 ++int string search_menu_title 0x7f0d0067 ++int string status_bar_notification_info_overflow 0x7f0d0068 ++int style AlertDialog_AppCompat 0x7f0e0000 ++int style AlertDialog_AppCompat_Light 0x7f0e0001 ++int style AndroidThemeColorAccentYellow 0x7f0e0002 ++int style Animation_AppCompat_Dialog 0x7f0e0003 ++int style Animation_AppCompat_DropDownUp 0x7f0e0004 ++int style Animation_AppCompat_Tooltip 0x7f0e0005 ++int style Animation_Design_BottomSheetDialog 0x7f0e0006 ++int style Animation_MaterialComponents_BottomSheetDialog 0x7f0e0007 ++int style Base_AlertDialog_AppCompat 0x7f0e0008 ++int style Base_AlertDialog_AppCompat_Light 0x7f0e0009 ++int style Base_Animation_AppCompat_Dialog 0x7f0e000a ++int style Base_Animation_AppCompat_DropDownUp 0x7f0e000b ++int style Base_Animation_AppCompat_Tooltip 0x7f0e000c ++int style Base_CardView 0x7f0e000d ++int style Base_DialogWindowTitle_AppCompat 0x7f0e000e ++int style Base_DialogWindowTitleBackground_AppCompat 0x7f0e000f ++int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f0e0010 ++int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f0e0011 ++int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x7f0e0012 ++int style Base_TextAppearance_AppCompat 0x7f0e0013 ++int style Base_TextAppearance_AppCompat_Body1 0x7f0e0014 ++int style Base_TextAppearance_AppCompat_Body2 0x7f0e0015 ++int style Base_TextAppearance_AppCompat_Button 0x7f0e0016 ++int style Base_TextAppearance_AppCompat_Caption 0x7f0e0017 ++int style Base_TextAppearance_AppCompat_Display1 0x7f0e0018 ++int style Base_TextAppearance_AppCompat_Display2 0x7f0e0019 ++int style Base_TextAppearance_AppCompat_Display3 0x7f0e001a ++int style Base_TextAppearance_AppCompat_Display4 0x7f0e001b ++int style Base_TextAppearance_AppCompat_Headline 0x7f0e001c ++int style Base_TextAppearance_AppCompat_Inverse 0x7f0e001d ++int style Base_TextAppearance_AppCompat_Large 0x7f0e001e ++int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0e001f ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0e0020 ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0e0021 ++int style Base_TextAppearance_AppCompat_Medium 0x7f0e0022 ++int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0e0023 ++int style Base_TextAppearance_AppCompat_Menu 0x7f0e0024 ++int style Base_TextAppearance_AppCompat_SearchResult 0x7f0e0025 ++int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0e0026 ++int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0e0027 ++int style Base_TextAppearance_AppCompat_Small 0x7f0e0028 ++int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0e0029 ++int style Base_TextAppearance_AppCompat_Subhead 0x7f0e002a ++int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0e002b ++int style Base_TextAppearance_AppCompat_Title 0x7f0e002c ++int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0e002d ++int style Base_TextAppearance_AppCompat_Tooltip 0x7f0e002e ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0e002f ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0e0030 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0e0031 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0e0032 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0e0033 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0e0034 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0e0035 ++int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0e0036 ++int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0e0037 ++int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0e0038 ++int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0e0039 ++int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0e003a ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0e003b ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0e003c ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0e003d ++int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0e003e ++int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0e003f ++int style Base_TextAppearance_MaterialComponents_Badge 0x7f0e0040 ++int style Base_TextAppearance_MaterialComponents_Button 0x7f0e0041 ++int style Base_TextAppearance_MaterialComponents_Headline6 0x7f0e0042 ++int style Base_TextAppearance_MaterialComponents_Subtitle2 0x7f0e0043 ++int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0e0044 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0e0045 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0e0046 ++int style Base_Theme_AppCompat 0x7f0e0047 ++int style Base_Theme_AppCompat_CompactMenu 0x7f0e0048 ++int style Base_Theme_AppCompat_Dialog 0x7f0e0049 ++int style Base_Theme_AppCompat_Dialog_Alert 0x7f0e004a ++int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0e004b ++int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0e004c ++int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0e004d ++int style Base_Theme_AppCompat_Light 0x7f0e004e ++int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0e004f ++int style Base_Theme_AppCompat_Light_Dialog 0x7f0e0050 ++int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0e0051 ++int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0e0052 ++int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0e0053 ++int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0e0054 ++int style Base_Theme_MaterialComponents 0x7f0e0055 ++int style Base_Theme_MaterialComponents_Bridge 0x7f0e0056 ++int style Base_Theme_MaterialComponents_CompactMenu 0x7f0e0057 ++int style Base_Theme_MaterialComponents_Dialog 0x7f0e0058 ++int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f0e0059 ++int style Base_Theme_MaterialComponents_Dialog_Bridge 0x7f0e005a ++int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f0e005b ++int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f0e005c ++int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f0e005d ++int style Base_Theme_MaterialComponents_Light 0x7f0e005e ++int style Base_Theme_MaterialComponents_Light_Bridge 0x7f0e005f ++int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f0e0060 ++int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e0061 ++int style Base_Theme_MaterialComponents_Light_Dialog 0x7f0e0062 ++int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f0e0063 ++int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f0e0064 ++int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f0e0065 ++int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0e0066 ++int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0e0067 ++int style Base_ThemeOverlay_AppCompat 0x7f0e0068 ++int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0e0069 ++int style Base_ThemeOverlay_AppCompat_Dark 0x7f0e006a ++int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0e006b ++int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0e006c ++int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0e006d ++int style Base_ThemeOverlay_AppCompat_Light 0x7f0e006e ++int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f0e006f ++int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e0070 ++int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f0e0071 ++int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f0e0072 ++int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f0e0073 ++int style Base_V14_Theme_MaterialComponents 0x7f0e0074 ++int style Base_V14_Theme_MaterialComponents_Bridge 0x7f0e0075 ++int style Base_V14_Theme_MaterialComponents_Dialog 0x7f0e0076 ++int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x7f0e0077 ++int style Base_V14_Theme_MaterialComponents_Light 0x7f0e0078 ++int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f0e0079 ++int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e007a ++int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f0e007b ++int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f0e007c ++int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f0e007d ++int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f0e007e ++int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e007f ++int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f0e0080 ++int style Base_V21_Theme_AppCompat 0x7f0e0081 ++int style Base_V21_Theme_AppCompat_Dialog 0x7f0e0082 ++int style Base_V21_Theme_AppCompat_Light 0x7f0e0083 ++int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0e0084 ++int style Base_V21_Theme_MaterialComponents 0x7f0e0085 ++int style Base_V21_Theme_MaterialComponents_Dialog 0x7f0e0086 ++int style Base_V21_Theme_MaterialComponents_Light 0x7f0e0087 ++int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x7f0e0088 ++int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0e0089 ++int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f0e008a ++int style Base_V22_Theme_AppCompat 0x7f0e008b ++int style Base_V22_Theme_AppCompat_Light 0x7f0e008c ++int style Base_V23_Theme_AppCompat 0x7f0e008d ++int style Base_V23_Theme_AppCompat_Light 0x7f0e008e ++int style Base_V26_Theme_AppCompat 0x7f0e008f ++int style Base_V26_Theme_AppCompat_Light 0x7f0e0090 ++int style Base_V26_Widget_AppCompat_Toolbar 0x7f0e0091 ++int style Base_V28_Theme_AppCompat 0x7f0e0092 ++int style Base_V28_Theme_AppCompat_Light 0x7f0e0093 ++int style Base_V7_Theme_AppCompat 0x7f0e0094 ++int style Base_V7_Theme_AppCompat_Dialog 0x7f0e0095 ++int style Base_V7_Theme_AppCompat_Light 0x7f0e0096 ++int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0e0097 ++int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0e0098 ++int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0e0099 ++int style Base_V7_Widget_AppCompat_EditText 0x7f0e009a ++int style Base_V7_Widget_AppCompat_Toolbar 0x7f0e009b ++int style Base_Widget_AppCompat_ActionBar 0x7f0e009c ++int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0e009d ++int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0e009e ++int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0e009f ++int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0e00a0 ++int style Base_Widget_AppCompat_ActionButton 0x7f0e00a1 ++int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0e00a2 ++int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0e00a3 ++int style Base_Widget_AppCompat_ActionMode 0x7f0e00a4 ++int style Base_Widget_AppCompat_ActivityChooserView 0x7f0e00a5 ++int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0e00a6 ++int style Base_Widget_AppCompat_Button 0x7f0e00a7 ++int style Base_Widget_AppCompat_Button_Borderless 0x7f0e00a8 ++int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0e00a9 ++int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0e00aa ++int style Base_Widget_AppCompat_Button_Colored 0x7f0e00ab ++int style Base_Widget_AppCompat_Button_Small 0x7f0e00ac ++int style Base_Widget_AppCompat_ButtonBar 0x7f0e00ad ++int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0e00ae ++int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0e00af ++int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0e00b0 ++int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0e00b1 ++int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0e00b2 ++int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0e00b3 ++int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0e00b4 ++int style Base_Widget_AppCompat_EditText 0x7f0e00b5 ++int style Base_Widget_AppCompat_ImageButton 0x7f0e00b6 ++int style Base_Widget_AppCompat_Light_ActionBar 0x7f0e00b7 ++int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0e00b8 ++int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0e00b9 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0e00ba ++int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0e00bb ++int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0e00bc ++int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0e00bd ++int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0e00be ++int style Base_Widget_AppCompat_ListMenuView 0x7f0e00bf ++int style Base_Widget_AppCompat_ListPopupWindow 0x7f0e00c0 ++int style Base_Widget_AppCompat_ListView 0x7f0e00c1 ++int style Base_Widget_AppCompat_ListView_DropDown 0x7f0e00c2 ++int style Base_Widget_AppCompat_ListView_Menu 0x7f0e00c3 ++int style Base_Widget_AppCompat_PopupMenu 0x7f0e00c4 ++int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0e00c5 ++int style Base_Widget_AppCompat_PopupWindow 0x7f0e00c6 ++int style Base_Widget_AppCompat_ProgressBar 0x7f0e00c7 ++int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0e00c8 ++int style Base_Widget_AppCompat_RatingBar 0x7f0e00c9 ++int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0e00ca ++int style Base_Widget_AppCompat_RatingBar_Small 0x7f0e00cb ++int style Base_Widget_AppCompat_SearchView 0x7f0e00cc ++int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0e00cd ++int style Base_Widget_AppCompat_SeekBar 0x7f0e00ce ++int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0e00cf ++int style Base_Widget_AppCompat_Spinner 0x7f0e00d0 ++int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0e00d1 ++int style Base_Widget_AppCompat_TextView 0x7f0e00d2 ++int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0e00d3 ++int style Base_Widget_AppCompat_Toolbar 0x7f0e00d4 ++int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0e00d5 ++int style Base_Widget_Design_TabLayout 0x7f0e00d6 ++int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x7f0e00d7 ++int style Base_Widget_MaterialComponents_CheckedTextView 0x7f0e00d8 ++int style Base_Widget_MaterialComponents_Chip 0x7f0e00d9 ++int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x7f0e00da ++int style Base_Widget_MaterialComponents_PopupMenu 0x7f0e00db ++int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f0e00dc ++int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f0e00dd ++int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x7f0e00de ++int style Base_Widget_MaterialComponents_Slider 0x7f0e00df ++int style Base_Widget_MaterialComponents_Snackbar 0x7f0e00e0 ++int style Base_Widget_MaterialComponents_TextInputEditText 0x7f0e00e1 ++int style Base_Widget_MaterialComponents_TextInputLayout 0x7f0e00e2 ++int style Base_Widget_MaterialComponents_TextView 0x7f0e00e3 ++int style CardView 0x7f0e00e4 ++int style CardView_Dark 0x7f0e00e5 ++int style CardView_Light 0x7f0e00e6 ++int style EmptyTheme 0x7f0e00e7 ++int style MaterialAlertDialog_MaterialComponents 0x7f0e00e8 ++int style MaterialAlertDialog_MaterialComponents_Body_Text 0x7f0e00e9 ++int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x7f0e00ea ++int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x7f0e00eb ++int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f0e00ec ++int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x7f0e00ed ++int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f0e00ee ++int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x7f0e00ef ++int style MaterialAlertDialog_MaterialComponents_Title_Text 0x7f0e00f0 ++int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x7f0e00f1 ++int style Platform_AppCompat 0x7f0e00f2 ++int style Platform_AppCompat_Light 0x7f0e00f3 ++int style Platform_MaterialComponents 0x7f0e00f4 ++int style Platform_MaterialComponents_Dialog 0x7f0e00f5 ++int style Platform_MaterialComponents_Light 0x7f0e00f6 ++int style Platform_MaterialComponents_Light_Dialog 0x7f0e00f7 ++int style Platform_ThemeOverlay_AppCompat 0x7f0e00f8 ++int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0e00f9 ++int style Platform_ThemeOverlay_AppCompat_Light 0x7f0e00fa ++int style Platform_V21_AppCompat 0x7f0e00fb ++int style Platform_V21_AppCompat_Light 0x7f0e00fc ++int style Platform_V25_AppCompat 0x7f0e00fd ++int style Platform_V25_AppCompat_Light 0x7f0e00fe ++int style Platform_Widget_AppCompat_Spinner 0x7f0e00ff ++int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0e0100 ++int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0e0101 ++int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0e0102 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0e0103 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0e0104 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f0e0105 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f0e0106 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0e0107 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f0e0108 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0e0109 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0e010a ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0e010b ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0e010c ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0e010d ++int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0e010e ++int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0e010f ++int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0e0110 ++int style ShapeAppearance_MaterialComponents 0x7f0e0111 ++int style ShapeAppearance_MaterialComponents_LargeComponent 0x7f0e0112 ++int style ShapeAppearance_MaterialComponents_MediumComponent 0x7f0e0113 ++int style ShapeAppearance_MaterialComponents_SmallComponent 0x7f0e0114 ++int style ShapeAppearance_MaterialComponents_Test 0x7f0e0115 ++int style ShapeAppearance_MaterialComponents_Tooltip 0x7f0e0116 ++int style ShapeAppearanceOverlay 0x7f0e0117 ++int style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize 0x7f0e0118 ++int style ShapeAppearanceOverlay_BottomRightCut 0x7f0e0119 ++int style ShapeAppearanceOverlay_Cut 0x7f0e011a ++int style ShapeAppearanceOverlay_DifferentCornerSize 0x7f0e011b ++int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x7f0e011c ++int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x7f0e011d ++int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x7f0e011e ++int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x7f0e011f ++int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f0e0120 ++int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x7f0e0121 ++int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x7f0e0122 ++int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x7f0e0123 ++int style ShapeAppearanceOverlay_TopLeftCut 0x7f0e0124 ++int style ShapeAppearanceOverlay_TopRightDifferentCornerSize 0x7f0e0125 ++int style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f0e0126 ++int style Test_Theme_MaterialComponents_MaterialCalendar 0x7f0e0127 ++int style Test_Widget_MaterialComponents_MaterialCalendar 0x7f0e0128 ++int style Test_Widget_MaterialComponents_MaterialCalendar_Day 0x7f0e0129 ++int style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f0e012a ++int style TestStyleWithLineHeight 0x7f0e012b ++int style TestStyleWithLineHeightAppearance 0x7f0e012c ++int style TestStyleWithThemeLineHeightAttribute 0x7f0e012d ++int style TestStyleWithoutLineHeight 0x7f0e012e ++int style TestThemeWithLineHeight 0x7f0e012f ++int style TestThemeWithLineHeightDisabled 0x7f0e0130 ++int style TextAppearance_AppCompat 0x7f0e0131 ++int style TextAppearance_AppCompat_Body1 0x7f0e0132 ++int style TextAppearance_AppCompat_Body2 0x7f0e0133 ++int style TextAppearance_AppCompat_Button 0x7f0e0134 ++int style TextAppearance_AppCompat_Caption 0x7f0e0135 ++int style TextAppearance_AppCompat_Display1 0x7f0e0136 ++int style TextAppearance_AppCompat_Display2 0x7f0e0137 ++int style TextAppearance_AppCompat_Display3 0x7f0e0138 ++int style TextAppearance_AppCompat_Display4 0x7f0e0139 ++int style TextAppearance_AppCompat_Headline 0x7f0e013a ++int style TextAppearance_AppCompat_Inverse 0x7f0e013b ++int style TextAppearance_AppCompat_Large 0x7f0e013c ++int style TextAppearance_AppCompat_Large_Inverse 0x7f0e013d ++int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0e013e ++int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0e013f ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0e0140 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0e0141 ++int style TextAppearance_AppCompat_Medium 0x7f0e0142 ++int style TextAppearance_AppCompat_Medium_Inverse 0x7f0e0143 ++int style TextAppearance_AppCompat_Menu 0x7f0e0144 ++int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0e0145 ++int style TextAppearance_AppCompat_SearchResult_Title 0x7f0e0146 ++int style TextAppearance_AppCompat_Small 0x7f0e0147 ++int style TextAppearance_AppCompat_Small_Inverse 0x7f0e0148 ++int style TextAppearance_AppCompat_Subhead 0x7f0e0149 ++int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0e014a ++int style TextAppearance_AppCompat_Title 0x7f0e014b ++int style TextAppearance_AppCompat_Title_Inverse 0x7f0e014c ++int style TextAppearance_AppCompat_Tooltip 0x7f0e014d ++int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0e014e ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0e014f ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0e0150 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0e0151 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0e0152 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0e0153 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0e0154 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0e0155 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0e0156 ++int style TextAppearance_AppCompat_Widget_Button 0x7f0e0157 ++int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0e0158 ++int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0e0159 ++int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0e015a ++int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0e015b ++int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0e015c ++int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0e015d ++int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0e015e ++int style TextAppearance_AppCompat_Widget_Switch 0x7f0e015f ++int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0e0160 ++int style TextAppearance_Compat_Notification 0x7f0e0161 ++int style TextAppearance_Compat_Notification_Info 0x7f0e0162 ++int style TextAppearance_Compat_Notification_Line2 0x7f0e0163 ++int style TextAppearance_Compat_Notification_Time 0x7f0e0164 ++int style TextAppearance_Compat_Notification_Title 0x7f0e0165 ++int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0e0166 ++int style TextAppearance_Design_Counter 0x7f0e0167 ++int style TextAppearance_Design_Counter_Overflow 0x7f0e0168 ++int style TextAppearance_Design_Error 0x7f0e0169 ++int style TextAppearance_Design_HelperText 0x7f0e016a ++int style TextAppearance_Design_Hint 0x7f0e016b ++int style TextAppearance_Design_Placeholder 0x7f0e016c ++int style TextAppearance_Design_Prefix 0x7f0e016d ++int style TextAppearance_Design_Snackbar_Message 0x7f0e016e ++int style TextAppearance_Design_Suffix 0x7f0e016f ++int style TextAppearance_Design_Tab 0x7f0e0170 ++int style TextAppearance_MaterialComponents_Badge 0x7f0e0171 ++int style TextAppearance_MaterialComponents_Body1 0x7f0e0172 ++int style TextAppearance_MaterialComponents_Body2 0x7f0e0173 ++int style TextAppearance_MaterialComponents_Button 0x7f0e0174 ++int style TextAppearance_MaterialComponents_Caption 0x7f0e0175 ++int style TextAppearance_MaterialComponents_Chip 0x7f0e0176 ++int style TextAppearance_MaterialComponents_Headline1 0x7f0e0177 ++int style TextAppearance_MaterialComponents_Headline2 0x7f0e0178 ++int style TextAppearance_MaterialComponents_Headline3 0x7f0e0179 ++int style TextAppearance_MaterialComponents_Headline4 0x7f0e017a ++int style TextAppearance_MaterialComponents_Headline5 0x7f0e017b ++int style TextAppearance_MaterialComponents_Headline6 0x7f0e017c ++int style TextAppearance_MaterialComponents_Overline 0x7f0e017d ++int style TextAppearance_MaterialComponents_Subtitle1 0x7f0e017e ++int style TextAppearance_MaterialComponents_Subtitle2 0x7f0e017f ++int style TextAppearance_MaterialComponents_TimePicker_Title 0x7f0e0180 ++int style TextAppearance_MaterialComponents_Tooltip 0x7f0e0181 ++int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0e0182 ++int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0e0183 ++int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0e0184 ++int style Theme_AppCompat 0x7f0e0185 ++int style Theme_AppCompat_CompactMenu 0x7f0e0186 ++int style Theme_AppCompat_DayNight 0x7f0e0187 ++int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0e0188 ++int style Theme_AppCompat_DayNight_Dialog 0x7f0e0189 ++int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0e018a ++int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0e018b ++int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0e018c ++int style Theme_AppCompat_DayNight_NoActionBar 0x7f0e018d ++int style Theme_AppCompat_Dialog 0x7f0e018e ++int style Theme_AppCompat_Dialog_Alert 0x7f0e018f ++int style Theme_AppCompat_Dialog_MinWidth 0x7f0e0190 ++int style Theme_AppCompat_DialogWhenLarge 0x7f0e0191 ++int style Theme_AppCompat_Empty 0x7f0e0192 ++int style Theme_AppCompat_Light 0x7f0e0193 ++int style Theme_AppCompat_Light_DarkActionBar 0x7f0e0194 ++int style Theme_AppCompat_Light_Dialog 0x7f0e0195 ++int style Theme_AppCompat_Light_Dialog_Alert 0x7f0e0196 ++int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0e0197 ++int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0e0198 ++int style Theme_AppCompat_Light_NoActionBar 0x7f0e0199 ++int style Theme_AppCompat_NoActionBar 0x7f0e019a ++int style Theme_Design 0x7f0e019b ++int style Theme_Design_BottomSheetDialog 0x7f0e019c ++int style Theme_Design_Light 0x7f0e019d ++int style Theme_Design_Light_BottomSheetDialog 0x7f0e019e ++int style Theme_Design_Light_NoActionBar 0x7f0e019f ++int style Theme_Design_NoActionBar 0x7f0e01a0 ++int style Theme_MaterialComponents 0x7f0e01a1 ++int style Theme_MaterialComponents_BottomSheetDialog 0x7f0e01a2 ++int style Theme_MaterialComponents_Bridge 0x7f0e01a3 ++int style Theme_MaterialComponents_CompactMenu 0x7f0e01a4 ++int style Theme_MaterialComponents_DayNight 0x7f0e01a5 ++int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x7f0e01a6 ++int style Theme_MaterialComponents_DayNight_Bridge 0x7f0e01a7 ++int style Theme_MaterialComponents_DayNight_DarkActionBar 0x7f0e01a8 ++int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x7f0e01a9 ++int style Theme_MaterialComponents_DayNight_Dialog 0x7f0e01aa ++int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x7f0e01ab ++int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x7f0e01ac ++int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x7f0e01ad ++int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x7f0e01ae ++int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x7f0e01af ++int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x7f0e01b0 ++int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x7f0e01b1 ++int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x7f0e01b2 ++int style Theme_MaterialComponents_DayNight_NoActionBar 0x7f0e01b3 ++int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x7f0e01b4 ++int style Theme_MaterialComponents_Dialog 0x7f0e01b5 ++int style Theme_MaterialComponents_Dialog_Alert 0x7f0e01b6 ++int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x7f0e01b7 ++int style Theme_MaterialComponents_Dialog_Bridge 0x7f0e01b8 ++int style Theme_MaterialComponents_Dialog_FixedSize 0x7f0e01b9 ++int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x7f0e01ba ++int style Theme_MaterialComponents_Dialog_MinWidth 0x7f0e01bb ++int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x7f0e01bc ++int style Theme_MaterialComponents_DialogWhenLarge 0x7f0e01bd ++int style Theme_MaterialComponents_Light 0x7f0e01be ++int style Theme_MaterialComponents_Light_BarSize 0x7f0e01bf ++int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f0e01c0 ++int style Theme_MaterialComponents_Light_Bridge 0x7f0e01c1 ++int style Theme_MaterialComponents_Light_DarkActionBar 0x7f0e01c2 ++int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e01c3 ++int style Theme_MaterialComponents_Light_Dialog 0x7f0e01c4 ++int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f0e01c5 ++int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x7f0e01c6 ++int style Theme_MaterialComponents_Light_Dialog_Bridge 0x7f0e01c7 ++int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f0e01c8 ++int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x7f0e01c9 ++int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0e01ca ++int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x7f0e01cb ++int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0e01cc ++int style Theme_MaterialComponents_Light_LargeTouch 0x7f0e01cd ++int style Theme_MaterialComponents_Light_NoActionBar 0x7f0e01ce ++int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f0e01cf ++int style Theme_MaterialComponents_NoActionBar 0x7f0e01d0 ++int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f0e01d1 ++int style ThemeOverlay_AppCompat 0x7f0e01d2 ++int style ThemeOverlay_AppCompat_ActionBar 0x7f0e01d3 ++int style ThemeOverlay_AppCompat_Dark 0x7f0e01d4 ++int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0e01d5 ++int style ThemeOverlay_AppCompat_DayNight 0x7f0e01d6 ++int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f0e01d7 ++int style ThemeOverlay_AppCompat_Dialog 0x7f0e01d8 ++int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0e01d9 ++int style ThemeOverlay_AppCompat_Light 0x7f0e01da ++int style ThemeOverlay_Design_TextInputEditText 0x7f0e01db ++int style ThemeOverlay_MaterialComponents 0x7f0e01dc ++int style ThemeOverlay_MaterialComponents_ActionBar 0x7f0e01dd ++int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x7f0e01de ++int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x7f0e01df ++int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x7f0e01e0 ++int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f0e01e1 ++int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f0e01e2 ++int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f0e01e3 ++int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f0e01e4 ++int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x7f0e01e5 ++int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x7f0e01e6 ++int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f0e01e7 ++int style ThemeOverlay_MaterialComponents_Dark 0x7f0e01e8 ++int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f0e01e9 ++int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x7f0e01ea ++int style ThemeOverlay_MaterialComponents_Dialog 0x7f0e01eb ++int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e01ec ++int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f0e01ed ++int style ThemeOverlay_MaterialComponents_Light 0x7f0e01ee ++int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f0e01ef ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f0e01f0 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x7f0e01f1 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x7f0e01f2 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x7f0e01f3 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x7f0e01f4 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x7f0e01f5 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x7f0e01f6 ++int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x7f0e01f7 ++int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x7f0e01f8 ++int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f0e01f9 ++int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f0e01fa ++int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0e01fb ++int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0e01fc ++int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0e01fd ++int style ThemeOverlay_MaterialComponents_TimePicker 0x7f0e01fe ++int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x7f0e01ff ++int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x7f0e0200 ++int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x7f0e0201 ++int style ThemeOverlayColorAccentRed 0x7f0e0202 ++int style WhiteBackgroundDialogTheme 0x7f0e0203 ++int style WhiteBackgroundTheme 0x7f0e0204 ++int style Widget_AppCompat_ActionBar 0x7f0e0205 ++int style Widget_AppCompat_ActionBar_Solid 0x7f0e0206 ++int style Widget_AppCompat_ActionBar_TabBar 0x7f0e0207 ++int style Widget_AppCompat_ActionBar_TabText 0x7f0e0208 ++int style Widget_AppCompat_ActionBar_TabView 0x7f0e0209 ++int style Widget_AppCompat_ActionButton 0x7f0e020a ++int style Widget_AppCompat_ActionButton_CloseMode 0x7f0e020b ++int style Widget_AppCompat_ActionButton_Overflow 0x7f0e020c ++int style Widget_AppCompat_ActionMode 0x7f0e020d ++int style Widget_AppCompat_ActivityChooserView 0x7f0e020e ++int style Widget_AppCompat_AutoCompleteTextView 0x7f0e020f ++int style Widget_AppCompat_Button 0x7f0e0210 ++int style Widget_AppCompat_Button_Borderless 0x7f0e0211 ++int style Widget_AppCompat_Button_Borderless_Colored 0x7f0e0212 ++int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0e0213 ++int style Widget_AppCompat_Button_Colored 0x7f0e0214 ++int style Widget_AppCompat_Button_Small 0x7f0e0215 ++int style Widget_AppCompat_ButtonBar 0x7f0e0216 ++int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0e0217 ++int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0e0218 ++int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0e0219 ++int style Widget_AppCompat_CompoundButton_Switch 0x7f0e021a ++int style Widget_AppCompat_DrawerArrowToggle 0x7f0e021b ++int style Widget_AppCompat_DropDownItem_Spinner 0x7f0e021c ++int style Widget_AppCompat_EditText 0x7f0e021d ++int style Widget_AppCompat_ImageButton 0x7f0e021e ++int style Widget_AppCompat_Light_ActionBar 0x7f0e021f ++int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0e0220 ++int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0e0221 ++int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0e0222 ++int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0e0223 ++int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0e0224 ++int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0e0225 ++int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0e0226 ++int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0e0227 ++int style Widget_AppCompat_Light_ActionButton 0x7f0e0228 ++int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0e0229 ++int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0e022a ++int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0e022b ++int style Widget_AppCompat_Light_ActivityChooserView 0x7f0e022c ++int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0e022d ++int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0e022e ++int style Widget_AppCompat_Light_ListPopupWindow 0x7f0e022f ++int style Widget_AppCompat_Light_ListView_DropDown 0x7f0e0230 ++int style Widget_AppCompat_Light_PopupMenu 0x7f0e0231 ++int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0e0232 ++int style Widget_AppCompat_Light_SearchView 0x7f0e0233 ++int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0e0234 ++int style Widget_AppCompat_ListMenuView 0x7f0e0235 ++int style Widget_AppCompat_ListPopupWindow 0x7f0e0236 ++int style Widget_AppCompat_ListView 0x7f0e0237 ++int style Widget_AppCompat_ListView_DropDown 0x7f0e0238 ++int style Widget_AppCompat_ListView_Menu 0x7f0e0239 ++int style Widget_AppCompat_PopupMenu 0x7f0e023a ++int style Widget_AppCompat_PopupMenu_Overflow 0x7f0e023b ++int style Widget_AppCompat_PopupWindow 0x7f0e023c ++int style Widget_AppCompat_ProgressBar 0x7f0e023d ++int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0e023e ++int style Widget_AppCompat_RatingBar 0x7f0e023f ++int style Widget_AppCompat_RatingBar_Indicator 0x7f0e0240 ++int style Widget_AppCompat_RatingBar_Small 0x7f0e0241 ++int style Widget_AppCompat_SearchView 0x7f0e0242 ++int style Widget_AppCompat_SearchView_ActionBar 0x7f0e0243 ++int style Widget_AppCompat_SeekBar 0x7f0e0244 ++int style Widget_AppCompat_SeekBar_Discrete 0x7f0e0245 ++int style Widget_AppCompat_Spinner 0x7f0e0246 ++int style Widget_AppCompat_Spinner_DropDown 0x7f0e0247 ++int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0e0248 ++int style Widget_AppCompat_Spinner_Underlined 0x7f0e0249 ++int style Widget_AppCompat_TextView 0x7f0e024a ++int style Widget_AppCompat_TextView_SpinnerItem 0x7f0e024b ++int style Widget_AppCompat_Toolbar 0x7f0e024c ++int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0e024d ++int style Widget_Compat_NotificationActionContainer 0x7f0e024e ++int style Widget_Compat_NotificationActionText 0x7f0e024f ++int style Widget_Design_AppBarLayout 0x7f0e0250 ++int style Widget_Design_BottomNavigationView 0x7f0e0251 ++int style Widget_Design_BottomSheet_Modal 0x7f0e0252 ++int style Widget_Design_CollapsingToolbar 0x7f0e0253 ++int style Widget_Design_FloatingActionButton 0x7f0e0254 ++int style Widget_Design_NavigationView 0x7f0e0255 ++int style Widget_Design_ScrimInsetsFrameLayout 0x7f0e0256 ++int style Widget_Design_Snackbar 0x7f0e0257 ++int style Widget_Design_TabLayout 0x7f0e0258 ++int style Widget_Design_TextInputEditText 0x7f0e0259 ++int style Widget_Design_TextInputLayout 0x7f0e025a ++int style Widget_MaterialComponents_ActionBar_Primary 0x7f0e025b ++int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x7f0e025c ++int style Widget_MaterialComponents_ActionBar_Solid 0x7f0e025d ++int style Widget_MaterialComponents_ActionBar_Surface 0x7f0e025e ++int style Widget_MaterialComponents_AppBarLayout_Primary 0x7f0e025f ++int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x7f0e0260 ++int style Widget_MaterialComponents_AppBarLayout_Surface 0x7f0e0261 ++int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f0e0262 ++int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f0e0263 ++int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f0e0264 ++int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f0e0265 ++int style Widget_MaterialComponents_Badge 0x7f0e0266 ++int style Widget_MaterialComponents_BottomAppBar 0x7f0e0267 ++int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f0e0268 ++int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x7f0e0269 ++int style Widget_MaterialComponents_BottomNavigationView 0x7f0e026a ++int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f0e026b ++int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x7f0e026c ++int style Widget_MaterialComponents_BottomSheet 0x7f0e026d ++int style Widget_MaterialComponents_BottomSheet_Modal 0x7f0e026e ++int style Widget_MaterialComponents_Button 0x7f0e026f ++int style Widget_MaterialComponents_Button_Icon 0x7f0e0270 ++int style Widget_MaterialComponents_Button_OutlinedButton 0x7f0e0271 ++int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f0e0272 ++int style Widget_MaterialComponents_Button_TextButton 0x7f0e0273 ++int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f0e0274 ++int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x7f0e0275 ++int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f0e0276 ++int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f0e0277 ++int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x7f0e0278 ++int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f0e0279 ++int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f0e027a ++int style Widget_MaterialComponents_CardView 0x7f0e027b ++int style Widget_MaterialComponents_CheckedTextView 0x7f0e027c ++int style Widget_MaterialComponents_Chip_Action 0x7f0e027d ++int style Widget_MaterialComponents_Chip_Choice 0x7f0e027e ++int style Widget_MaterialComponents_Chip_Entry 0x7f0e027f ++int style Widget_MaterialComponents_Chip_Filter 0x7f0e0280 ++int style Widget_MaterialComponents_ChipGroup 0x7f0e0281 ++int style Widget_MaterialComponents_CircularProgressIndicator 0x7f0e0282 ++int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x7f0e0283 ++int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x7f0e0284 ++int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x7f0e0285 ++int style Widget_MaterialComponents_CollapsingToolbar 0x7f0e0286 ++int style Widget_MaterialComponents_CompoundButton_CheckBox 0x7f0e0287 ++int style Widget_MaterialComponents_CompoundButton_RadioButton 0x7f0e0288 ++int style Widget_MaterialComponents_CompoundButton_Switch 0x7f0e0289 ++int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x7f0e028a ++int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x7f0e028b ++int style Widget_MaterialComponents_FloatingActionButton 0x7f0e028c ++int style Widget_MaterialComponents_Light_ActionBar_Solid 0x7f0e028d ++int style Widget_MaterialComponents_LinearProgressIndicator 0x7f0e028e ++int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x7f0e028f ++int style Widget_MaterialComponents_MaterialCalendar 0x7f0e0290 ++int style Widget_MaterialComponents_MaterialCalendar_Day 0x7f0e0291 ++int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x7f0e0292 ++int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f0e0293 ++int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x7f0e0294 ++int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x7f0e0295 ++int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x7f0e0296 ++int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x7f0e0297 ++int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x7f0e0298 ++int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x7f0e0299 ++int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x7f0e029a ++int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x7f0e029b ++int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x7f0e029c ++int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x7f0e029d ++int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f0e029e ++int style Widget_MaterialComponents_MaterialCalendar_Item 0x7f0e029f ++int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x7f0e02a0 ++int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x7f0e02a1 ++int style Widget_MaterialComponents_MaterialCalendar_Year 0x7f0e02a2 ++int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x7f0e02a3 ++int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x7f0e02a4 ++int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x7f0e02a5 ++int style Widget_MaterialComponents_NavigationRailView 0x7f0e02a6 ++int style Widget_MaterialComponents_NavigationRailView_Colored 0x7f0e02a7 ++int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x7f0e02a8 ++int style Widget_MaterialComponents_NavigationRailView_Compact 0x7f0e02a9 ++int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x7f0e02aa ++int style Widget_MaterialComponents_NavigationView 0x7f0e02ab ++int style Widget_MaterialComponents_PopupMenu 0x7f0e02ac ++int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f0e02ad ++int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f0e02ae ++int style Widget_MaterialComponents_PopupMenu_Overflow 0x7f0e02af ++int style Widget_MaterialComponents_ProgressIndicator 0x7f0e02b0 ++int style Widget_MaterialComponents_ShapeableImageView 0x7f0e02b1 ++int style Widget_MaterialComponents_Slider 0x7f0e02b2 ++int style Widget_MaterialComponents_Snackbar 0x7f0e02b3 ++int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f0e02b4 ++int style Widget_MaterialComponents_Snackbar_TextView 0x7f0e02b5 ++int style Widget_MaterialComponents_TabLayout 0x7f0e02b6 ++int style Widget_MaterialComponents_TabLayout_Colored 0x7f0e02b7 ++int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x7f0e02b8 ++int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f0e02b9 ++int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0e02ba ++int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0e02bb ++int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0e02bc ++int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f0e02bd ++int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f0e02be ++int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f0e02bf ++int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f0e02c0 ++int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f0e02c1 ++int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f0e02c2 ++int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f0e02c3 ++int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f0e02c4 ++int style Widget_MaterialComponents_TextView 0x7f0e02c5 ++int style Widget_MaterialComponents_TimePicker 0x7f0e02c6 ++int style Widget_MaterialComponents_TimePicker_Button 0x7f0e02c7 ++int style Widget_MaterialComponents_TimePicker_Clock 0x7f0e02c8 ++int style Widget_MaterialComponents_TimePicker_Display 0x7f0e02c9 ++int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f0e02ca ++int style Widget_MaterialComponents_TimePicker_ImageButton 0x7f0e02cb ++int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x7f0e02cc ++int style Widget_MaterialComponents_Toolbar 0x7f0e02cd ++int style Widget_MaterialComponents_Toolbar_Primary 0x7f0e02ce ++int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x7f0e02cf ++int style Widget_MaterialComponents_Toolbar_Surface 0x7f0e02d0 ++int style Widget_MaterialComponents_Tooltip 0x7f0e02d1 ++int style Widget_Support_CoordinatorLayout 0x7f0e02d2 ++int[] styleable ActionBar { 0x7f03003c, 0x7f030043, 0x7f030044, 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7, 0x7f0300fd, 0x7f03010d, 0x7f03010e, 0x7f030127, 0x7f03017e, 0x7f030185, 0x7f03018b, 0x7f03018c, 0x7f03018f, 0x7f03019a, 0x7f0301ac, 0x7f03021a, 0x7f030268, 0x7f030296, 0x7f03029d, 0x7f03029e, 0x7f0302ed, 0x7f0302f1, 0x7f03034b, 0x7f030357 } ++int styleable ActionBar_background 0 ++int styleable ActionBar_backgroundSplit 1 ++int styleable ActionBar_backgroundStacked 2 ++int styleable ActionBar_contentInsetEnd 3 ++int styleable ActionBar_contentInsetEndWithActions 4 ++int styleable ActionBar_contentInsetLeft 5 ++int styleable ActionBar_contentInsetRight 6 ++int styleable ActionBar_contentInsetStart 7 ++int styleable ActionBar_contentInsetStartWithNavigation 8 ++int styleable ActionBar_customNavigationLayout 9 ++int styleable ActionBar_displayOptions 10 ++int styleable ActionBar_divider 11 ++int styleable ActionBar_elevation 12 ++int styleable ActionBar_height 13 ++int styleable ActionBar_hideOnContentScroll 14 ++int styleable ActionBar_homeAsUpIndicator 15 ++int styleable ActionBar_homeLayout 16 ++int styleable ActionBar_icon 17 ++int styleable ActionBar_indeterminateProgressStyle 18 ++int styleable ActionBar_itemPadding 19 ++int styleable ActionBar_logo 20 ++int styleable ActionBar_navigationMode 21 ++int styleable ActionBar_popupTheme 22 ++int styleable ActionBar_progressBarPadding 23 ++int styleable ActionBar_progressBarStyle 24 ++int styleable ActionBar_subtitle 25 ++int styleable ActionBar_subtitleTextStyle 26 ++int styleable ActionBar_title 27 ++int styleable ActionBar_titleTextStyle 28 ++int[] styleable ActionBarLayout { 0x010100b3 } ++int styleable ActionBarLayout_android_layout_gravity 0 ++int[] styleable ActionMenuItemView { 0x0101013f } ++int styleable ActionMenuItemView_android_minWidth 0 ++int[] styleable ActionMenuView { } ++int[] styleable ActionMode { 0x7f03003c, 0x7f030043, 0x7f0300ad, 0x7f03017e, 0x7f0302f1, 0x7f030357 } ++int styleable ActionMode_background 0 ++int styleable ActionMode_backgroundSplit 1 ++int styleable ActionMode_closeItemLayout 2 ++int styleable ActionMode_height 3 ++int styleable ActionMode_subtitleTextStyle 4 ++int styleable ActionMode_titleTextStyle 5 ++int[] styleable ActivityChooserView { 0x7f03013b, 0x7f0301a0 } ++int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 ++int styleable ActivityChooserView_initialActivityCount 1 ++int[] styleable AlertDialog { 0x010100f2, 0x7f030072, 0x7f030073, 0x7f03020f, 0x7f030210, 0x7f030264, 0x7f0302c9, 0x7f0302cb } ++int styleable AlertDialog_android_layout 0 ++int styleable AlertDialog_buttonIconDimen 1 ++int styleable AlertDialog_buttonPanelSideLayout 2 ++int styleable AlertDialog_listItemLayout 3 ++int styleable AlertDialog_listLayout 4 ++int styleable AlertDialog_multiChoiceItemLayout 5 ++int styleable AlertDialog_showTitle 6 ++int styleable AlertDialog_singleChoiceItemLayout 7 ++int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } ++int styleable AnimatedStateListDrawableCompat_android_dither 0 ++int styleable AnimatedStateListDrawableCompat_android_visible 1 ++int styleable AnimatedStateListDrawableCompat_android_variablePadding 2 ++int styleable AnimatedStateListDrawableCompat_android_constantSize 3 ++int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4 ++int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5 ++int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 } ++int styleable AnimatedStateListDrawableItem_android_id 0 ++int styleable AnimatedStateListDrawableItem_android_drawable 1 ++int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b } ++int styleable AnimatedStateListDrawableTransition_android_drawable 0 ++int styleable AnimatedStateListDrawableTransition_android_toId 1 ++int styleable AnimatedStateListDrawableTransition_android_fromId 2 ++int styleable AnimatedStateListDrawableTransition_android_reversible 3 ++int[] styleable AppBarLayout { 0x010100d4, 0x0101048f, 0x01010540, 0x7f030127, 0x7f03013c, 0x7f030205, 0x7f030206, 0x7f0302e7 } ++int styleable AppBarLayout_android_background 0 ++int styleable AppBarLayout_android_touchscreenBlocksFocus 1 ++int styleable AppBarLayout_android_keyboardNavigationCluster 2 ++int styleable AppBarLayout_elevation 3 ++int styleable AppBarLayout_expanded 4 ++int styleable AppBarLayout_liftOnScroll 5 ++int styleable AppBarLayout_liftOnScrollTargetViewId 6 ++int styleable AppBarLayout_statusBarForeground 7 ++int[] styleable AppBarLayoutStates { 0x7f0302e1, 0x7f0302e2, 0x7f0302e4, 0x7f0302e5 } ++int styleable AppBarLayoutStates_state_collapsed 0 ++int styleable AppBarLayoutStates_state_collapsible 1 ++int styleable AppBarLayoutStates_state_liftable 2 ++int styleable AppBarLayoutStates_state_lifted 3 ++int[] styleable AppBarLayout_Layout { 0x7f030203, 0x7f030204 } ++int styleable AppBarLayout_Layout_layout_scrollFlags 0 ++int styleable AppBarLayout_Layout_layout_scrollInterpolator 1 ++int[] styleable AppCompatImageView { 0x01010119, 0x7f0302d8, 0x7f030349, 0x7f03034a } ++int styleable AppCompatImageView_android_src 0 ++int styleable AppCompatImageView_srcCompat 1 ++int styleable AppCompatImageView_tint 2 ++int styleable AppCompatImageView_tintMode 3 ++int[] styleable AppCompatSeekBar { 0x01010142, 0x7f030345, 0x7f030346, 0x7f030347 } ++int styleable AppCompatSeekBar_android_thumb 0 ++int styleable AppCompatSeekBar_tickMark 1 ++int styleable AppCompatSeekBar_tickMarkTint 2 ++int styleable AppCompatSeekBar_tickMarkTintMode 3 ++int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } ++int styleable AppCompatTextHelper_android_textAppearance 0 ++int styleable AppCompatTextHelper_android_drawableTop 1 ++int styleable AppCompatTextHelper_android_drawableBottom 2 ++int styleable AppCompatTextHelper_android_drawableLeft 3 ++int styleable AppCompatTextHelper_android_drawableRight 4 ++int styleable AppCompatTextHelper_android_drawableStart 5 ++int styleable AppCompatTextHelper_android_drawableEnd 6 ++int[] styleable AppCompatTextView { 0x01010034, 0x7f030036, 0x7f030037, 0x7f030038, 0x7f030039, 0x7f03003a, 0x7f030116, 0x7f030117, 0x7f030118, 0x7f030119, 0x7f03011b, 0x7f03011c, 0x7f03011d, 0x7f03011e, 0x7f030154, 0x7f03016a, 0x7f030173, 0x7f0301c3, 0x7f030208, 0x7f030319, 0x7f030335 } ++int styleable AppCompatTextView_android_textAppearance 0 ++int styleable AppCompatTextView_autoSizeMaxTextSize 1 ++int styleable AppCompatTextView_autoSizeMinTextSize 2 ++int styleable AppCompatTextView_autoSizePresetSizes 3 ++int styleable AppCompatTextView_autoSizeStepGranularity 4 ++int styleable AppCompatTextView_autoSizeTextType 5 ++int styleable AppCompatTextView_drawableBottomCompat 6 ++int styleable AppCompatTextView_drawableEndCompat 7 ++int styleable AppCompatTextView_drawableLeftCompat 8 ++int styleable AppCompatTextView_drawableRightCompat 9 ++int styleable AppCompatTextView_drawableStartCompat 10 ++int styleable AppCompatTextView_drawableTint 11 ++int styleable AppCompatTextView_drawableTintMode 12 ++int styleable AppCompatTextView_drawableTopCompat 13 ++int styleable AppCompatTextView_firstBaselineToTopHeight 14 ++int styleable AppCompatTextView_fontFamily 15 ++int styleable AppCompatTextView_fontVariationSettings 16 ++int styleable AppCompatTextView_lastBaselineToBottomHeight 17 ++int styleable AppCompatTextView_lineHeight 18 ++int styleable AppCompatTextView_textAllCaps 19 ++int styleable AppCompatTextView_textLocale 20 ++int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030024, 0x7f030025, 0x7f030026, 0x7f030027, 0x7f030028, 0x7f030035, 0x7f03005a, 0x7f03006b, 0x7f03006c, 0x7f03006d, 0x7f03006e, 0x7f03006f, 0x7f030074, 0x7f030075, 0x7f030081, 0x7f03008a, 0x7f0300b5, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8, 0x7f0300b9, 0x7f0300ba, 0x7f0300bb, 0x7f0300c2, 0x7f0300c3, 0x7f0300c9, 0x7f0300e1, 0x7f03010a, 0x7f03010b, 0x7f03010c, 0x7f03010f, 0x7f030111, 0x7f030121, 0x7f030122, 0x7f030124, 0x7f030125, 0x7f030126, 0x7f03018b, 0x7f030198, 0x7f03020b, 0x7f03020c, 0x7f03020d, 0x7f03020e, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f030214, 0x7f030215, 0x7f030216, 0x7f030217, 0x7f030218, 0x7f030219, 0x7f030280, 0x7f030281, 0x7f030282, 0x7f030295, 0x7f030297, 0x7f0302a2, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302d5, 0x7f0302d6, 0x7f0302f8, 0x7f030324, 0x7f030326, 0x7f030327, 0x7f030328, 0x7f03032a, 0x7f03032b, 0x7f03032c, 0x7f03032d, 0x7f030330, 0x7f030331, 0x7f030359, 0x7f03035a, 0x7f03035b, 0x7f03035c, 0x7f030378, 0x7f030381, 0x7f030382, 0x7f030383, 0x7f030384, 0x7f030385, 0x7f030386, 0x7f030387, 0x7f030388, 0x7f030389, 0x7f03038a } ++int styleable AppCompatTheme_android_windowIsFloating 0 ++int styleable AppCompatTheme_android_windowAnimationStyle 1 ++int styleable AppCompatTheme_actionBarDivider 2 ++int styleable AppCompatTheme_actionBarItemBackground 3 ++int styleable AppCompatTheme_actionBarPopupTheme 4 ++int styleable AppCompatTheme_actionBarSize 5 ++int styleable AppCompatTheme_actionBarSplitStyle 6 ++int styleable AppCompatTheme_actionBarStyle 7 ++int styleable AppCompatTheme_actionBarTabBarStyle 8 ++int styleable AppCompatTheme_actionBarTabStyle 9 ++int styleable AppCompatTheme_actionBarTabTextStyle 10 ++int styleable AppCompatTheme_actionBarTheme 11 ++int styleable AppCompatTheme_actionBarWidgetTheme 12 ++int styleable AppCompatTheme_actionButtonStyle 13 ++int styleable AppCompatTheme_actionDropDownStyle 14 ++int styleable AppCompatTheme_actionMenuTextAppearance 15 ++int styleable AppCompatTheme_actionMenuTextColor 16 ++int styleable AppCompatTheme_actionModeBackground 17 ++int styleable AppCompatTheme_actionModeCloseButtonStyle 18 ++int styleable AppCompatTheme_actionModeCloseContentDescription 19 ++int styleable AppCompatTheme_actionModeCloseDrawable 20 ++int styleable AppCompatTheme_actionModeCopyDrawable 21 ++int styleable AppCompatTheme_actionModeCutDrawable 22 ++int styleable AppCompatTheme_actionModeFindDrawable 23 ++int styleable AppCompatTheme_actionModePasteDrawable 24 ++int styleable AppCompatTheme_actionModePopupWindowStyle 25 ++int styleable AppCompatTheme_actionModeSelectAllDrawable 26 ++int styleable AppCompatTheme_actionModeShareDrawable 27 ++int styleable AppCompatTheme_actionModeSplitBackground 28 ++int styleable AppCompatTheme_actionModeStyle 29 ++int styleable AppCompatTheme_actionModeTheme 30 ++int styleable AppCompatTheme_actionModeWebSearchDrawable 31 ++int styleable AppCompatTheme_actionOverflowButtonStyle 32 ++int styleable AppCompatTheme_actionOverflowMenuStyle 33 ++int styleable AppCompatTheme_activityChooserViewStyle 34 ++int styleable AppCompatTheme_alertDialogButtonGroupStyle 35 ++int styleable AppCompatTheme_alertDialogCenterButtons 36 ++int styleable AppCompatTheme_alertDialogStyle 37 ++int styleable AppCompatTheme_alertDialogTheme 38 ++int styleable AppCompatTheme_autoCompleteTextViewStyle 39 ++int styleable AppCompatTheme_borderlessButtonStyle 40 ++int styleable AppCompatTheme_buttonBarButtonStyle 41 ++int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 ++int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 ++int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 ++int styleable AppCompatTheme_buttonBarStyle 45 ++int styleable AppCompatTheme_buttonStyle 46 ++int styleable AppCompatTheme_buttonStyleSmall 47 ++int styleable AppCompatTheme_checkboxStyle 48 ++int styleable AppCompatTheme_checkedTextViewStyle 49 ++int styleable AppCompatTheme_colorAccent 50 ++int styleable AppCompatTheme_colorBackgroundFloating 51 ++int styleable AppCompatTheme_colorButtonNormal 52 ++int styleable AppCompatTheme_colorControlActivated 53 ++int styleable AppCompatTheme_colorControlHighlight 54 ++int styleable AppCompatTheme_colorControlNormal 55 ++int styleable AppCompatTheme_colorError 56 ++int styleable AppCompatTheme_colorPrimary 57 ++int styleable AppCompatTheme_colorPrimaryDark 58 ++int styleable AppCompatTheme_colorSwitchThumbNormal 59 ++int styleable AppCompatTheme_controlBackground 60 ++int styleable AppCompatTheme_dialogCornerRadius 61 ++int styleable AppCompatTheme_dialogPreferredPadding 62 ++int styleable AppCompatTheme_dialogTheme 63 ++int styleable AppCompatTheme_dividerHorizontal 64 ++int styleable AppCompatTheme_dividerVertical 65 ++int styleable AppCompatTheme_dropDownListViewStyle 66 ++int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 ++int styleable AppCompatTheme_editTextBackground 68 ++int styleable AppCompatTheme_editTextColor 69 ++int styleable AppCompatTheme_editTextStyle 70 ++int styleable AppCompatTheme_homeAsUpIndicator 71 ++int styleable AppCompatTheme_imageButtonStyle 72 ++int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 ++int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 ++int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 ++int styleable AppCompatTheme_listDividerAlertDialog 76 ++int styleable AppCompatTheme_listMenuViewStyle 77 ++int styleable AppCompatTheme_listPopupWindowStyle 78 ++int styleable AppCompatTheme_listPreferredItemHeight 79 ++int styleable AppCompatTheme_listPreferredItemHeightLarge 80 ++int styleable AppCompatTheme_listPreferredItemHeightSmall 81 ++int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 ++int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 ++int styleable AppCompatTheme_listPreferredItemPaddingRight 84 ++int styleable AppCompatTheme_listPreferredItemPaddingStart 85 ++int styleable AppCompatTheme_panelBackground 86 ++int styleable AppCompatTheme_panelMenuListTheme 87 ++int styleable AppCompatTheme_panelMenuListWidth 88 ++int styleable AppCompatTheme_popupMenuStyle 89 ++int styleable AppCompatTheme_popupWindowStyle 90 ++int styleable AppCompatTheme_radioButtonStyle 91 ++int styleable AppCompatTheme_ratingBarStyle 92 ++int styleable AppCompatTheme_ratingBarStyleIndicator 93 ++int styleable AppCompatTheme_ratingBarStyleSmall 94 ++int styleable AppCompatTheme_searchViewStyle 95 ++int styleable AppCompatTheme_seekBarStyle 96 ++int styleable AppCompatTheme_selectableItemBackground 97 ++int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 ++int styleable AppCompatTheme_spinnerDropDownItemStyle 99 ++int styleable AppCompatTheme_spinnerStyle 100 ++int styleable AppCompatTheme_switchStyle 101 ++int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 ++int styleable AppCompatTheme_textAppearanceListItem 103 ++int styleable AppCompatTheme_textAppearanceListItemSecondary 104 ++int styleable AppCompatTheme_textAppearanceListItemSmall 105 ++int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 ++int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 ++int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 ++int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 ++int styleable AppCompatTheme_textColorAlertDialogListItem 110 ++int styleable AppCompatTheme_textColorSearchUrl 111 ++int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 ++int styleable AppCompatTheme_toolbarStyle 113 ++int styleable AppCompatTheme_tooltipForegroundColor 114 ++int styleable AppCompatTheme_tooltipFrameBackground 115 ++int styleable AppCompatTheme_viewInflaterClass 116 ++int styleable AppCompatTheme_windowActionBar 117 ++int styleable AppCompatTheme_windowActionBarOverlay 118 ++int styleable AppCompatTheme_windowActionModeOverlay 119 ++int styleable AppCompatTheme_windowFixedHeightMajor 120 ++int styleable AppCompatTheme_windowFixedHeightMinor 121 ++int styleable AppCompatTheme_windowFixedWidthMajor 122 ++int styleable AppCompatTheme_windowFixedWidthMinor 123 ++int styleable AppCompatTheme_windowMinWidthMajor 124 ++int styleable AppCompatTheme_windowMinWidthMinor 125 ++int styleable AppCompatTheme_windowNoTitle 126 ++int[] styleable Badge { 0x7f03003d, 0x7f030047, 0x7f030049, 0x7f03018d, 0x7f03023b, 0x7f03026e, 0x7f030377 } ++int styleable Badge_backgroundColor 0 ++int styleable Badge_badgeGravity 1 ++int styleable Badge_badgeTextColor 2 ++int styleable Badge_horizontalOffset 3 ++int styleable Badge_maxCharacterCount 4 ++int styleable Badge_number 5 ++int styleable Badge_verticalOffset 6 ++int[] styleable BaseProgressIndicator { 0x01010139, 0x7f030183, 0x7f03019b, 0x7f030245, 0x7f0302c2, 0x7f0302c4, 0x7f030363, 0x7f030366, 0x7f030368 } ++int styleable BaseProgressIndicator_android_indeterminate 0 ++int styleable BaseProgressIndicator_hideAnimationBehavior 1 ++int styleable BaseProgressIndicator_indicatorColor 2 ++int styleable BaseProgressIndicator_minHideDelay 3 ++int styleable BaseProgressIndicator_showAnimationBehavior 4 ++int styleable BaseProgressIndicator_showDelay 5 ++int styleable BaseProgressIndicator_trackColor 6 ++int styleable BaseProgressIndicator_trackCornerRadius 7 ++int styleable BaseProgressIndicator_trackThickness 8 ++int[] styleable BottomAppBar { 0x7f030045, 0x7f030127, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f03014c, 0x7f030186, 0x7f030279, 0x7f03027b, 0x7f03027c } ++int styleable BottomAppBar_backgroundTint 0 ++int styleable BottomAppBar_elevation 1 ++int styleable BottomAppBar_fabAlignmentMode 2 ++int styleable BottomAppBar_fabAnimationMode 3 ++int styleable BottomAppBar_fabCradleMargin 4 ++int styleable BottomAppBar_fabCradleRoundedCornerRadius 5 ++int styleable BottomAppBar_fabCradleVerticalOffset 6 ++int styleable BottomAppBar_hideOnScroll 7 ++int styleable BottomAppBar_paddingBottomSystemWindowInsets 8 ++int styleable BottomAppBar_paddingLeftSystemWindowInsets 9 ++int styleable BottomAppBar_paddingRightSystemWindowInsets 10 ++int[] styleable BottomNavigationView { 0x7f0301a7 } ++int styleable BottomNavigationView_itemHorizontalTranslationEnabled 0 ++int[] styleable BottomSheetBehavior_Layout { 0x0101011f, 0x01010440, 0x7f030045, 0x7f030050, 0x7f030051, 0x7f030052, 0x7f030053, 0x7f030054, 0x7f030056, 0x7f030057, 0x7f030058, 0x7f030179, 0x7f030279, 0x7f03027b, 0x7f03027c, 0x7f03027f, 0x7f0302bc, 0x7f0302bf } ++int styleable BottomSheetBehavior_Layout_android_maxWidth 0 ++int styleable BottomSheetBehavior_Layout_android_elevation 1 ++int styleable BottomSheetBehavior_Layout_backgroundTint 2 ++int styleable BottomSheetBehavior_Layout_behavior_draggable 3 ++int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 4 ++int styleable BottomSheetBehavior_Layout_behavior_fitToContents 5 ++int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 6 ++int styleable BottomSheetBehavior_Layout_behavior_hideable 7 ++int styleable BottomSheetBehavior_Layout_behavior_peekHeight 8 ++int styleable BottomSheetBehavior_Layout_behavior_saveFlags 9 ++int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 10 ++int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 11 ++int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 12 ++int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 13 ++int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 14 ++int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 15 ++int styleable BottomSheetBehavior_Layout_shapeAppearance 16 ++int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 17 ++int[] styleable ButtonBarLayout { 0x7f030029 } ++int styleable ButtonBarLayout_allowStacking 0 ++int[] styleable Capability { 0x7f0302a1, 0x7f0302c1 } ++int styleable Capability_queryPatterns 0 ++int styleable Capability_shortcutMatchRequired 1 ++int[] styleable CardView { 0x0101013f, 0x01010140, 0x7f030078, 0x7f030079, 0x7f03007a, 0x7f03007c, 0x7f03007d, 0x7f03007e, 0x7f0300d8, 0x7f0300d9, 0x7f0300db, 0x7f0300dc, 0x7f0300de } ++int styleable CardView_android_minWidth 0 ++int styleable CardView_android_minHeight 1 ++int styleable CardView_cardBackgroundColor 2 ++int styleable CardView_cardCornerRadius 3 ++int styleable CardView_cardElevation 4 ++int styleable CardView_cardMaxElevation 5 ++int styleable CardView_cardPreventCornerOverlap 6 ++int styleable CardView_cardUseCompatPadding 7 ++int styleable CardView_contentPadding 8 ++int styleable CardView_contentPaddingBottom 9 ++int styleable CardView_contentPaddingLeft 10 ++int styleable CardView_contentPaddingRight 11 ++int styleable CardView_contentPaddingTop 12 ++int[] styleable Chip { 0x01010034, 0x01010095, 0x01010098, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f030084, 0x7f030085, 0x7f030088, 0x7f030089, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f03008f, 0x7f030090, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f03009a, 0x7f03009b, 0x7f03009c, 0x7f03009e, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300a9, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac, 0x7f030133, 0x7f030184, 0x7f030190, 0x7f030194, 0x7f0302ad, 0x7f0302bc, 0x7f0302bf, 0x7f0302c6, 0x7f030332, 0x7f030336 } ++int styleable Chip_android_textAppearance 0 ++int styleable Chip_android_textSize 1 ++int styleable Chip_android_textColor 2 ++int styleable Chip_android_ellipsize 3 ++int styleable Chip_android_maxWidth 4 ++int styleable Chip_android_text 5 ++int styleable Chip_android_checkable 6 ++int styleable Chip_checkedIcon 7 ++int styleable Chip_checkedIconEnabled 8 ++int styleable Chip_checkedIconTint 9 ++int styleable Chip_checkedIconVisible 10 ++int styleable Chip_chipBackgroundColor 11 ++int styleable Chip_chipCornerRadius 12 ++int styleable Chip_chipEndPadding 13 ++int styleable Chip_chipIcon 14 ++int styleable Chip_chipIconEnabled 15 ++int styleable Chip_chipIconSize 16 ++int styleable Chip_chipIconTint 17 ++int styleable Chip_chipIconVisible 18 ++int styleable Chip_chipMinHeight 19 ++int styleable Chip_chipMinTouchTargetSize 20 ++int styleable Chip_chipStartPadding 21 ++int styleable Chip_chipStrokeColor 22 ++int styleable Chip_chipStrokeWidth 23 ++int styleable Chip_chipSurfaceColor 24 ++int styleable Chip_closeIcon 25 ++int styleable Chip_closeIconEnabled 26 ++int styleable Chip_closeIconEndPadding 27 ++int styleable Chip_closeIconSize 28 ++int styleable Chip_closeIconStartPadding 29 ++int styleable Chip_closeIconTint 30 ++int styleable Chip_closeIconVisible 31 ++int styleable Chip_ensureMinTouchTargetSize 32 ++int styleable Chip_hideMotionSpec 33 ++int styleable Chip_iconEndPadding 34 ++int styleable Chip_iconStartPadding 35 ++int styleable Chip_rippleColor 36 ++int styleable Chip_shapeAppearance 37 ++int styleable Chip_shapeAppearanceOverlay 38 ++int styleable Chip_showMotionSpec 39 ++int styleable Chip_textEndPadding 40 ++int styleable Chip_textStartPadding 41 ++int[] styleable ChipGroup { 0x7f030083, 0x7f030096, 0x7f030097, 0x7f030098, 0x7f0302ba, 0x7f0302cc, 0x7f0302cd } ++int styleable ChipGroup_checkedChip 0 ++int styleable ChipGroup_chipSpacing 1 ++int styleable ChipGroup_chipSpacingHorizontal 2 ++int styleable ChipGroup_chipSpacingVertical 3 ++int styleable ChipGroup_selectionRequired 4 ++int styleable ChipGroup_singleLine 5 ++int styleable ChipGroup_singleSelection 6 ++int[] styleable CircularProgressIndicator { 0x7f03019c, 0x7f03019e, 0x7f03019f } ++int styleable CircularProgressIndicator_indicatorDirectionCircular 0 ++int styleable CircularProgressIndicator_indicatorInset 1 ++int styleable CircularProgressIndicator_indicatorSize 2 ++int[] styleable ClockFaceView { 0x7f0300a2, 0x7f0300a5 } ++int styleable ClockFaceView_clockFaceBackgroundColor 0 ++int styleable ClockFaceView_clockNumberTextColor 1 ++int[] styleable ClockHandView { 0x7f0300a3, 0x7f030233, 0x7f0302bb } ++int styleable ClockHandView_clockHandColor 0 ++int styleable ClockHandView_materialCircleRadius 1 ++int styleable ClockHandView_selectorSize 2 ++int[] styleable CollapsingToolbarLayout { 0x7f0300b1, 0x7f0300b2, 0x7f0300df, 0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f030144, 0x7f030147, 0x7f030175, 0x7f03023e, 0x7f0302b1, 0x7f0302b3, 0x7f0302e8, 0x7f03034b, 0x7f03034d, 0x7f03034e, 0x7f030358 } ++int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 ++int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 ++int styleable CollapsingToolbarLayout_contentScrim 2 ++int styleable CollapsingToolbarLayout_expandedTitleGravity 3 ++int styleable CollapsingToolbarLayout_expandedTitleMargin 4 ++int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5 ++int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6 ++int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7 ++int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8 ++int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9 ++int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 10 ++int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 11 ++int styleable CollapsingToolbarLayout_maxLines 12 ++int styleable CollapsingToolbarLayout_scrimAnimationDuration 13 ++int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 14 ++int styleable CollapsingToolbarLayout_statusBarScrim 15 ++int styleable CollapsingToolbarLayout_title 16 ++int styleable CollapsingToolbarLayout_titleCollapseMode 17 ++int styleable CollapsingToolbarLayout_titleEnabled 18 ++int styleable CollapsingToolbarLayout_toolbarId 19 ++int[] styleable CollapsingToolbarLayout_Layout { 0x7f0301cb, 0x7f0301cc } ++int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 ++int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 ++int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x01010647, 0x7f03002a, 0x7f0301bf } ++int styleable ColorStateListItem_android_color 0 ++int styleable ColorStateListItem_android_alpha 1 ++int styleable ColorStateListItem_android_lStar 2 ++int styleable ColorStateListItem_alpha 3 ++int styleable ColorStateListItem_lStar 4 ++int[] styleable CompoundButton { 0x01010107, 0x7f030070, 0x7f030076, 0x7f030077 } ++int styleable CompoundButton_android_button 0 ++int styleable CompoundButton_buttonCompat 1 ++int styleable CompoundButton_buttonTint 2 ++int styleable CompoundButton_buttonTintMode 3 ++int[] styleable Constraint { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f03002d, 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f030080, 0x7f0300ce, 0x7f030115, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f030164, 0x7f030165, 0x7f030166, 0x7f030167, 0x7f030168, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f0301e7, 0x7f0301e8, 0x7f0301e9, 0x7f0301ea, 0x7f0301eb, 0x7f0301ec, 0x7f0301ed, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f03025e, 0x7f03025f, 0x7f030288, 0x7f03028f, 0x7f03036c, 0x7f03036e, 0x7f030379 } ++int styleable Constraint_android_orientation 0 ++int styleable Constraint_android_id 1 ++int styleable Constraint_android_visibility 2 ++int styleable Constraint_android_layout_width 3 ++int styleable Constraint_android_layout_height 4 ++int styleable Constraint_android_layout_marginLeft 5 ++int styleable Constraint_android_layout_marginTop 6 ++int styleable Constraint_android_layout_marginRight 7 ++int styleable Constraint_android_layout_marginBottom 8 ++int styleable Constraint_android_maxWidth 9 ++int styleable Constraint_android_maxHeight 10 ++int styleable Constraint_android_minWidth 11 ++int styleable Constraint_android_minHeight 12 ++int styleable Constraint_android_alpha 13 ++int styleable Constraint_android_transformPivotX 14 ++int styleable Constraint_android_transformPivotY 15 ++int styleable Constraint_android_translationX 16 ++int styleable Constraint_android_translationY 17 ++int styleable Constraint_android_scaleX 18 ++int styleable Constraint_android_scaleY 19 ++int styleable Constraint_android_rotation 20 ++int styleable Constraint_android_rotationX 21 ++int styleable Constraint_android_rotationY 22 ++int styleable Constraint_android_layout_marginStart 23 ++int styleable Constraint_android_layout_marginEnd 24 ++int styleable Constraint_android_translationZ 25 ++int styleable Constraint_android_elevation 26 ++int styleable Constraint_animate_relativeTo 27 ++int styleable Constraint_barrierAllowsGoneWidgets 28 ++int styleable Constraint_barrierDirection 29 ++int styleable Constraint_barrierMargin 30 ++int styleable Constraint_chainUseRtl 31 ++int styleable Constraint_constraint_referenced_ids 32 ++int styleable Constraint_drawPath 33 ++int styleable Constraint_flow_firstHorizontalBias 34 ++int styleable Constraint_flow_firstHorizontalStyle 35 ++int styleable Constraint_flow_firstVerticalBias 36 ++int styleable Constraint_flow_firstVerticalStyle 37 ++int styleable Constraint_flow_horizontalAlign 38 ++int styleable Constraint_flow_horizontalBias 39 ++int styleable Constraint_flow_horizontalGap 40 ++int styleable Constraint_flow_horizontalStyle 41 ++int styleable Constraint_flow_lastHorizontalBias 42 ++int styleable Constraint_flow_lastHorizontalStyle 43 ++int styleable Constraint_flow_lastVerticalBias 44 ++int styleable Constraint_flow_lastVerticalStyle 45 ++int styleable Constraint_flow_maxElementsWrap 46 ++int styleable Constraint_flow_verticalAlign 47 ++int styleable Constraint_flow_verticalBias 48 ++int styleable Constraint_flow_verticalGap 49 ++int styleable Constraint_flow_verticalStyle 50 ++int styleable Constraint_flow_wrapMode 51 ++int styleable Constraint_layout_constrainedHeight 52 ++int styleable Constraint_layout_constrainedWidth 53 ++int styleable Constraint_layout_constraintBaseline_creator 54 ++int styleable Constraint_layout_constraintBaseline_toBaselineOf 55 ++int styleable Constraint_layout_constraintBottom_creator 56 ++int styleable Constraint_layout_constraintBottom_toBottomOf 57 ++int styleable Constraint_layout_constraintBottom_toTopOf 58 ++int styleable Constraint_layout_constraintCircle 59 ++int styleable Constraint_layout_constraintCircleAngle 60 ++int styleable Constraint_layout_constraintCircleRadius 61 ++int styleable Constraint_layout_constraintDimensionRatio 62 ++int styleable Constraint_layout_constraintEnd_toEndOf 63 ++int styleable Constraint_layout_constraintEnd_toStartOf 64 ++int styleable Constraint_layout_constraintGuide_begin 65 ++int styleable Constraint_layout_constraintGuide_end 66 ++int styleable Constraint_layout_constraintGuide_percent 67 ++int styleable Constraint_layout_constraintHeight_default 68 ++int styleable Constraint_layout_constraintHeight_max 69 ++int styleable Constraint_layout_constraintHeight_min 70 ++int styleable Constraint_layout_constraintHeight_percent 71 ++int styleable Constraint_layout_constraintHorizontal_bias 72 ++int styleable Constraint_layout_constraintHorizontal_chainStyle 73 ++int styleable Constraint_layout_constraintHorizontal_weight 74 ++int styleable Constraint_layout_constraintLeft_creator 75 ++int styleable Constraint_layout_constraintLeft_toLeftOf 76 ++int styleable Constraint_layout_constraintLeft_toRightOf 77 ++int styleable Constraint_layout_constraintRight_creator 78 ++int styleable Constraint_layout_constraintRight_toLeftOf 79 ++int styleable Constraint_layout_constraintRight_toRightOf 80 ++int styleable Constraint_layout_constraintStart_toEndOf 81 ++int styleable Constraint_layout_constraintStart_toStartOf 82 ++int styleable Constraint_layout_constraintTag 83 ++int styleable Constraint_layout_constraintTop_creator 84 ++int styleable Constraint_layout_constraintTop_toBottomOf 85 ++int styleable Constraint_layout_constraintTop_toTopOf 86 ++int styleable Constraint_layout_constraintVertical_bias 87 ++int styleable Constraint_layout_constraintVertical_chainStyle 88 ++int styleable Constraint_layout_constraintVertical_weight 89 ++int styleable Constraint_layout_constraintWidth_default 90 ++int styleable Constraint_layout_constraintWidth_max 91 ++int styleable Constraint_layout_constraintWidth_min 92 ++int styleable Constraint_layout_constraintWidth_percent 93 ++int styleable Constraint_layout_editor_absoluteX 94 ++int styleable Constraint_layout_editor_absoluteY 95 ++int styleable Constraint_layout_goneMarginBottom 96 ++int styleable Constraint_layout_goneMarginEnd 97 ++int styleable Constraint_layout_goneMarginLeft 98 ++int styleable Constraint_layout_goneMarginRight 99 ++int styleable Constraint_layout_goneMarginStart 100 ++int styleable Constraint_layout_goneMarginTop 101 ++int styleable Constraint_motionProgress 102 ++int styleable Constraint_motionStagger 103 ++int styleable Constraint_pathMotionArc 104 ++int styleable Constraint_pivotAnchor 105 ++int styleable Constraint_transitionEasing 106 ++int styleable Constraint_transitionPathRotate 107 ++int styleable Constraint_visibilityMode 108 ++int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x010100d5, 0x010100d6, 0x010100d7, 0x010100d8, 0x010100d9, 0x010100dc, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010103b3, 0x010103b4, 0x01010440, 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f030080, 0x7f0300cb, 0x7f0300ce, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f030164, 0x7f030165, 0x7f030166, 0x7f030167, 0x7f030168, 0x7f0301c5, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f0301e7, 0x7f0301e8, 0x7f0301e9, 0x7f0301ea, 0x7f0301eb, 0x7f0301ec, 0x7f0301ed, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030202 } ++int styleable ConstraintLayout_Layout_android_orientation 0 ++int styleable ConstraintLayout_Layout_android_padding 1 ++int styleable ConstraintLayout_Layout_android_paddingLeft 2 ++int styleable ConstraintLayout_Layout_android_paddingTop 3 ++int styleable ConstraintLayout_Layout_android_paddingRight 4 ++int styleable ConstraintLayout_Layout_android_paddingBottom 5 ++int styleable ConstraintLayout_Layout_android_visibility 6 ++int styleable ConstraintLayout_Layout_android_maxWidth 7 ++int styleable ConstraintLayout_Layout_android_maxHeight 8 ++int styleable ConstraintLayout_Layout_android_minWidth 9 ++int styleable ConstraintLayout_Layout_android_minHeight 10 ++int styleable ConstraintLayout_Layout_android_paddingStart 11 ++int styleable ConstraintLayout_Layout_android_paddingEnd 12 ++int styleable ConstraintLayout_Layout_android_elevation 13 ++int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 14 ++int styleable ConstraintLayout_Layout_barrierDirection 15 ++int styleable ConstraintLayout_Layout_barrierMargin 16 ++int styleable ConstraintLayout_Layout_chainUseRtl 17 ++int styleable ConstraintLayout_Layout_constraintSet 18 ++int styleable ConstraintLayout_Layout_constraint_referenced_ids 19 ++int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 20 ++int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 21 ++int styleable ConstraintLayout_Layout_flow_firstVerticalBias 22 ++int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 23 ++int styleable ConstraintLayout_Layout_flow_horizontalAlign 24 ++int styleable ConstraintLayout_Layout_flow_horizontalBias 25 ++int styleable ConstraintLayout_Layout_flow_horizontalGap 26 ++int styleable ConstraintLayout_Layout_flow_horizontalStyle 27 ++int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 28 ++int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 29 ++int styleable ConstraintLayout_Layout_flow_lastVerticalBias 30 ++int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 31 ++int styleable ConstraintLayout_Layout_flow_maxElementsWrap 32 ++int styleable ConstraintLayout_Layout_flow_verticalAlign 33 ++int styleable ConstraintLayout_Layout_flow_verticalBias 34 ++int styleable ConstraintLayout_Layout_flow_verticalGap 35 ++int styleable ConstraintLayout_Layout_flow_verticalStyle 36 ++int styleable ConstraintLayout_Layout_flow_wrapMode 37 ++int styleable ConstraintLayout_Layout_layoutDescription 38 ++int styleable ConstraintLayout_Layout_layout_constrainedHeight 39 ++int styleable ConstraintLayout_Layout_layout_constrainedWidth 40 ++int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 41 ++int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 42 ++int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 43 ++int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 44 ++int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 45 ++int styleable ConstraintLayout_Layout_layout_constraintCircle 46 ++int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 47 ++int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 48 ++int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 49 ++int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 50 ++int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 51 ++int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 52 ++int styleable ConstraintLayout_Layout_layout_constraintGuide_end 53 ++int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 54 ++int styleable ConstraintLayout_Layout_layout_constraintHeight_default 55 ++int styleable ConstraintLayout_Layout_layout_constraintHeight_max 56 ++int styleable ConstraintLayout_Layout_layout_constraintHeight_min 57 ++int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 58 ++int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 59 ++int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 60 ++int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 61 ++int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 62 ++int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 63 ++int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 64 ++int styleable ConstraintLayout_Layout_layout_constraintRight_creator 65 ++int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 66 ++int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 67 ++int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 68 ++int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 69 ++int styleable ConstraintLayout_Layout_layout_constraintTag 70 ++int styleable ConstraintLayout_Layout_layout_constraintTop_creator 71 ++int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 72 ++int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 73 ++int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 74 ++int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 75 ++int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 76 ++int styleable ConstraintLayout_Layout_layout_constraintWidth_default 77 ++int styleable ConstraintLayout_Layout_layout_constraintWidth_max 78 ++int styleable ConstraintLayout_Layout_layout_constraintWidth_min 79 ++int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 80 ++int styleable ConstraintLayout_Layout_layout_editor_absoluteX 81 ++int styleable ConstraintLayout_Layout_layout_editor_absoluteY 82 ++int styleable ConstraintLayout_Layout_layout_goneMarginBottom 83 ++int styleable ConstraintLayout_Layout_layout_goneMarginEnd 84 ++int styleable ConstraintLayout_Layout_layout_goneMarginLeft 85 ++int styleable ConstraintLayout_Layout_layout_goneMarginRight 86 ++int styleable ConstraintLayout_Layout_layout_goneMarginStart 87 ++int styleable ConstraintLayout_Layout_layout_goneMarginTop 88 ++int styleable ConstraintLayout_Layout_layout_optimizationLevel 89 ++int[] styleable ConstraintLayout_placeholder { 0x7f0300d0, 0x7f030293 } ++int styleable ConstraintLayout_placeholder_content 0 ++int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 ++int[] styleable ConstraintSet { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010101b5, 0x010101b6, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f03002d, 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f030080, 0x7f0300ce, 0x7f030109, 0x7f030115, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f030164, 0x7f030165, 0x7f030166, 0x7f030167, 0x7f030168, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f0301e7, 0x7f0301e8, 0x7f0301e9, 0x7f0301ea, 0x7f0301eb, 0x7f0301ec, 0x7f0301ed, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f03025e, 0x7f03025f, 0x7f030288, 0x7f03028f, 0x7f03036c, 0x7f03036e } ++int styleable ConstraintSet_android_orientation 0 ++int styleable ConstraintSet_android_id 1 ++int styleable ConstraintSet_android_visibility 2 ++int styleable ConstraintSet_android_layout_width 3 ++int styleable ConstraintSet_android_layout_height 4 ++int styleable ConstraintSet_android_layout_marginLeft 5 ++int styleable ConstraintSet_android_layout_marginTop 6 ++int styleable ConstraintSet_android_layout_marginRight 7 ++int styleable ConstraintSet_android_layout_marginBottom 8 ++int styleable ConstraintSet_android_maxWidth 9 ++int styleable ConstraintSet_android_maxHeight 10 ++int styleable ConstraintSet_android_minWidth 11 ++int styleable ConstraintSet_android_minHeight 12 ++int styleable ConstraintSet_android_pivotX 13 ++int styleable ConstraintSet_android_pivotY 14 ++int styleable ConstraintSet_android_alpha 15 ++int styleable ConstraintSet_android_transformPivotX 16 ++int styleable ConstraintSet_android_transformPivotY 17 ++int styleable ConstraintSet_android_translationX 18 ++int styleable ConstraintSet_android_translationY 19 ++int styleable ConstraintSet_android_scaleX 20 ++int styleable ConstraintSet_android_scaleY 21 ++int styleable ConstraintSet_android_rotation 22 ++int styleable ConstraintSet_android_rotationX 23 ++int styleable ConstraintSet_android_rotationY 24 ++int styleable ConstraintSet_android_layout_marginStart 25 ++int styleable ConstraintSet_android_layout_marginEnd 26 ++int styleable ConstraintSet_android_translationZ 27 ++int styleable ConstraintSet_android_elevation 28 ++int styleable ConstraintSet_animate_relativeTo 29 ++int styleable ConstraintSet_barrierAllowsGoneWidgets 30 ++int styleable ConstraintSet_barrierDirection 31 ++int styleable ConstraintSet_barrierMargin 32 ++int styleable ConstraintSet_chainUseRtl 33 ++int styleable ConstraintSet_constraint_referenced_ids 34 ++int styleable ConstraintSet_deriveConstraintsFrom 35 ++int styleable ConstraintSet_drawPath 36 ++int styleable ConstraintSet_flow_firstHorizontalBias 37 ++int styleable ConstraintSet_flow_firstHorizontalStyle 38 ++int styleable ConstraintSet_flow_firstVerticalBias 39 ++int styleable ConstraintSet_flow_firstVerticalStyle 40 ++int styleable ConstraintSet_flow_horizontalAlign 41 ++int styleable ConstraintSet_flow_horizontalBias 42 ++int styleable ConstraintSet_flow_horizontalGap 43 ++int styleable ConstraintSet_flow_horizontalStyle 44 ++int styleable ConstraintSet_flow_lastHorizontalBias 45 ++int styleable ConstraintSet_flow_lastHorizontalStyle 46 ++int styleable ConstraintSet_flow_lastVerticalBias 47 ++int styleable ConstraintSet_flow_lastVerticalStyle 48 ++int styleable ConstraintSet_flow_maxElementsWrap 49 ++int styleable ConstraintSet_flow_verticalAlign 50 ++int styleable ConstraintSet_flow_verticalBias 51 ++int styleable ConstraintSet_flow_verticalGap 52 ++int styleable ConstraintSet_flow_verticalStyle 53 ++int styleable ConstraintSet_flow_wrapMode 54 ++int styleable ConstraintSet_layout_constrainedHeight 55 ++int styleable ConstraintSet_layout_constrainedWidth 56 ++int styleable ConstraintSet_layout_constraintBaseline_creator 57 ++int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 58 ++int styleable ConstraintSet_layout_constraintBottom_creator 59 ++int styleable ConstraintSet_layout_constraintBottom_toBottomOf 60 ++int styleable ConstraintSet_layout_constraintBottom_toTopOf 61 ++int styleable ConstraintSet_layout_constraintCircle 62 ++int styleable ConstraintSet_layout_constraintCircleAngle 63 ++int styleable ConstraintSet_layout_constraintCircleRadius 64 ++int styleable ConstraintSet_layout_constraintDimensionRatio 65 ++int styleable ConstraintSet_layout_constraintEnd_toEndOf 66 ++int styleable ConstraintSet_layout_constraintEnd_toStartOf 67 ++int styleable ConstraintSet_layout_constraintGuide_begin 68 ++int styleable ConstraintSet_layout_constraintGuide_end 69 ++int styleable ConstraintSet_layout_constraintGuide_percent 70 ++int styleable ConstraintSet_layout_constraintHeight_default 71 ++int styleable ConstraintSet_layout_constraintHeight_max 72 ++int styleable ConstraintSet_layout_constraintHeight_min 73 ++int styleable ConstraintSet_layout_constraintHeight_percent 74 ++int styleable ConstraintSet_layout_constraintHorizontal_bias 75 ++int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 76 ++int styleable ConstraintSet_layout_constraintHorizontal_weight 77 ++int styleable ConstraintSet_layout_constraintLeft_creator 78 ++int styleable ConstraintSet_layout_constraintLeft_toLeftOf 79 ++int styleable ConstraintSet_layout_constraintLeft_toRightOf 80 ++int styleable ConstraintSet_layout_constraintRight_creator 81 ++int styleable ConstraintSet_layout_constraintRight_toLeftOf 82 ++int styleable ConstraintSet_layout_constraintRight_toRightOf 83 ++int styleable ConstraintSet_layout_constraintStart_toEndOf 84 ++int styleable ConstraintSet_layout_constraintStart_toStartOf 85 ++int styleable ConstraintSet_layout_constraintTag 86 ++int styleable ConstraintSet_layout_constraintTop_creator 87 ++int styleable ConstraintSet_layout_constraintTop_toBottomOf 88 ++int styleable ConstraintSet_layout_constraintTop_toTopOf 89 ++int styleable ConstraintSet_layout_constraintVertical_bias 90 ++int styleable ConstraintSet_layout_constraintVertical_chainStyle 91 ++int styleable ConstraintSet_layout_constraintVertical_weight 92 ++int styleable ConstraintSet_layout_constraintWidth_default 93 ++int styleable ConstraintSet_layout_constraintWidth_max 94 ++int styleable ConstraintSet_layout_constraintWidth_min 95 ++int styleable ConstraintSet_layout_constraintWidth_percent 96 ++int styleable ConstraintSet_layout_editor_absoluteX 97 ++int styleable ConstraintSet_layout_editor_absoluteY 98 ++int styleable ConstraintSet_layout_goneMarginBottom 99 ++int styleable ConstraintSet_layout_goneMarginEnd 100 ++int styleable ConstraintSet_layout_goneMarginLeft 101 ++int styleable ConstraintSet_layout_goneMarginRight 102 ++int styleable ConstraintSet_layout_goneMarginStart 103 ++int styleable ConstraintSet_layout_goneMarginTop 104 ++int styleable ConstraintSet_motionProgress 105 ++int styleable ConstraintSet_motionStagger 106 ++int styleable ConstraintSet_pathMotionArc 107 ++int styleable ConstraintSet_pivotAnchor 108 ++int styleable ConstraintSet_transitionEasing 109 ++int styleable ConstraintSet_transitionPathRotate 110 ++int[] styleable CoordinatorLayout { 0x7f0301be, 0x7f0302e6 } ++int styleable CoordinatorLayout_keylines 0 ++int styleable CoordinatorLayout_statusBarBackground 1 ++int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301f7, 0x7f030200, 0x7f030201 } ++int styleable CoordinatorLayout_Layout_android_layout_gravity 0 ++int styleable CoordinatorLayout_Layout_layout_anchor 1 ++int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 ++int styleable CoordinatorLayout_Layout_layout_behavior 3 ++int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 ++int styleable CoordinatorLayout_Layout_layout_insetEdge 5 ++int styleable CoordinatorLayout_Layout_layout_keyline 6 ++int[] styleable CustomAttribute { 0x7f030034, 0x7f0300f7, 0x7f0300f8, 0x7f0300f9, 0x7f0300fa, 0x7f0300fb, 0x7f0300fc, 0x7f0300fe, 0x7f0300ff } ++int styleable CustomAttribute_attributeName 0 ++int styleable CustomAttribute_customBoolean 1 ++int styleable CustomAttribute_customColorDrawableValue 2 ++int styleable CustomAttribute_customColorValue 3 ++int styleable CustomAttribute_customDimension 4 ++int styleable CustomAttribute_customFloatValue 5 ++int styleable CustomAttribute_customIntegerValue 6 ++int styleable CustomAttribute_customPixelDimension 7 ++int styleable CustomAttribute_customStringValue 8 ++int[] styleable DrawerArrowToggle { 0x7f030032, 0x7f030033, 0x7f03004a, 0x7f0300b4, 0x7f03011a, 0x7f030178, 0x7f0302d4, 0x7f030339 } ++int styleable DrawerArrowToggle_arrowHeadLength 0 ++int styleable DrawerArrowToggle_arrowShaftLength 1 ++int styleable DrawerArrowToggle_barLength 2 ++int styleable DrawerArrowToggle_color 3 ++int styleable DrawerArrowToggle_drawableSize 4 ++int styleable DrawerArrowToggle_gapBetweenBars 5 ++int styleable DrawerArrowToggle_spinBars 6 ++int styleable DrawerArrowToggle_thickness 7 ++int[] styleable DrawerLayout { 0x7f030127 } ++int styleable DrawerLayout_elevation 0 ++int[] styleable ExtendedFloatingActionButton { 0x7f0300b0, 0x7f030127, 0x7f030145, 0x7f030184, 0x7f0302c6, 0x7f0302ca } ++int styleable ExtendedFloatingActionButton_collapsedSize 0 ++int styleable ExtendedFloatingActionButton_elevation 1 ++int styleable ExtendedFloatingActionButton_extendMotionSpec 2 ++int styleable ExtendedFloatingActionButton_hideMotionSpec 3 ++int styleable ExtendedFloatingActionButton_showMotionSpec 4 ++int styleable ExtendedFloatingActionButton_shrinkMotionSpec 5 ++int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f03004e, 0x7f03004f } ++int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 ++int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 ++int[] styleable FloatingActionButton { 0x0101000e, 0x7f030045, 0x7f030046, 0x7f030059, 0x7f030127, 0x7f030133, 0x7f03014d, 0x7f03014e, 0x7f030184, 0x7f03018e, 0x7f03023d, 0x7f03029c, 0x7f0302ad, 0x7f0302bc, 0x7f0302bf, 0x7f0302c6, 0x7f030374 } ++int styleable FloatingActionButton_android_enabled 0 ++int styleable FloatingActionButton_backgroundTint 1 ++int styleable FloatingActionButton_backgroundTintMode 2 ++int styleable FloatingActionButton_borderWidth 3 ++int styleable FloatingActionButton_elevation 4 ++int styleable FloatingActionButton_ensureMinTouchTargetSize 5 ++int styleable FloatingActionButton_fabCustomSize 6 ++int styleable FloatingActionButton_fabSize 7 ++int styleable FloatingActionButton_hideMotionSpec 8 ++int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 ++int styleable FloatingActionButton_maxImageSize 10 ++int styleable FloatingActionButton_pressedTranslationZ 11 ++int styleable FloatingActionButton_rippleColor 12 ++int styleable FloatingActionButton_shapeAppearance 13 ++int styleable FloatingActionButton_shapeAppearanceOverlay 14 ++int styleable FloatingActionButton_showMotionSpec 15 ++int styleable FloatingActionButton_useCompatPadding 16 ++int[] styleable FloatingActionButton_Behavior_Layout { 0x7f03004e } ++int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 ++int[] styleable FlowLayout { 0x7f0301b5, 0x7f030209 } ++int styleable FlowLayout_itemSpacing 0 ++int styleable FlowLayout_lineSpacing 1 ++int[] styleable FontFamily { 0x7f03016b, 0x7f03016c, 0x7f03016d, 0x7f03016e, 0x7f03016f, 0x7f030170, 0x7f030171 } ++int styleable FontFamily_fontProviderAuthority 0 ++int styleable FontFamily_fontProviderCerts 1 ++int styleable FontFamily_fontProviderFetchStrategy 2 ++int styleable FontFamily_fontProviderFetchTimeout 3 ++int styleable FontFamily_fontProviderPackage 4 ++int styleable FontFamily_fontProviderQuery 5 ++int styleable FontFamily_fontProviderSystemFontFamily 6 ++int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f030169, 0x7f030172, 0x7f030173, 0x7f030174, 0x7f030373 } ++int styleable FontFamilyFont_android_font 0 ++int styleable FontFamilyFont_android_fontWeight 1 ++int styleable FontFamilyFont_android_fontStyle 2 ++int styleable FontFamilyFont_android_ttcIndex 3 ++int styleable FontFamilyFont_android_fontVariationSettings 4 ++int styleable FontFamilyFont_font 5 ++int styleable FontFamilyFont_fontStyle 6 ++int styleable FontFamilyFont_fontVariationSettings 7 ++int styleable FontFamilyFont_fontWeight 8 ++int styleable FontFamilyFont_ttcIndex 9 ++int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f030176 } ++int styleable ForegroundLinearLayout_android_foreground 0 ++int styleable ForegroundLinearLayout_android_foregroundGravity 1 ++int styleable ForegroundLinearLayout_foregroundInsidePadding 2 ++int[] styleable Fragment { 0x01010003, 0x010100d0, 0x010100d1 } ++int styleable Fragment_android_name 0 ++int styleable Fragment_android_id 1 ++int styleable Fragment_android_tag 2 ++int[] styleable FragmentContainerView { 0x01010003, 0x010100d1 } ++int styleable FragmentContainerView_android_name 0 ++int styleable FragmentContainerView_android_tag 1 ++int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 } ++int styleable GradientColor_android_startColor 0 ++int styleable GradientColor_android_endColor 1 ++int styleable GradientColor_android_type 2 ++int styleable GradientColor_android_centerX 3 ++int styleable GradientColor_android_centerY 4 ++int styleable GradientColor_android_gradientRadius 5 ++int styleable GradientColor_android_tileMode 6 ++int styleable GradientColor_android_centerColor 7 ++int styleable GradientColor_android_startX 8 ++int styleable GradientColor_android_startY 9 ++int styleable GradientColor_android_endX 10 ++int styleable GradientColor_android_endY 11 ++int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } ++int styleable GradientColorItem_android_color 0 ++int styleable GradientColorItem_android_offset 1 ++int[] styleable ImageFilterView { 0x7f03002c, 0x7f03006a, 0x7f0300e0, 0x7f0300f4, 0x7f030277, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f03037b } ++int styleable ImageFilterView_altSrc 0 ++int styleable ImageFilterView_brightness 1 ++int styleable ImageFilterView_contrast 2 ++int styleable ImageFilterView_crossfade 3 ++int styleable ImageFilterView_overlay 4 ++int styleable ImageFilterView_round 5 ++int styleable ImageFilterView_roundPercent 6 ++int styleable ImageFilterView_saturation 7 ++int styleable ImageFilterView_warmth 8 ++int[] styleable Insets { 0x7f030279, 0x7f03027b, 0x7f03027c, 0x7f03027f } ++int styleable Insets_paddingBottomSystemWindowInsets 0 ++int styleable Insets_paddingLeftSystemWindowInsets 1 ++int styleable Insets_paddingRightSystemWindowInsets 2 ++int styleable Insets_paddingTopSystemWindowInsets 3 ++int[] styleable KeyAttribute { 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f0300f6, 0x7f030177, 0x7f03025e, 0x7f030260, 0x7f03036c, 0x7f03036e } ++int styleable KeyAttribute_android_alpha 0 ++int styleable KeyAttribute_android_transformPivotX 1 ++int styleable KeyAttribute_android_transformPivotY 2 ++int styleable KeyAttribute_android_translationX 3 ++int styleable KeyAttribute_android_translationY 4 ++int styleable KeyAttribute_android_scaleX 5 ++int styleable KeyAttribute_android_scaleY 6 ++int styleable KeyAttribute_android_rotation 7 ++int styleable KeyAttribute_android_rotationX 8 ++int styleable KeyAttribute_android_rotationY 9 ++int styleable KeyAttribute_android_translationZ 10 ++int styleable KeyAttribute_android_elevation 11 ++int styleable KeyAttribute_curveFit 12 ++int styleable KeyAttribute_framePosition 13 ++int styleable KeyAttribute_motionProgress 14 ++int styleable KeyAttribute_motionTarget 15 ++int styleable KeyAttribute_transitionEasing 16 ++int styleable KeyAttribute_transitionPathRotate 17 ++int[] styleable KeyCycle { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f0300f6, 0x7f030177, 0x7f03025e, 0x7f030260, 0x7f03036c, 0x7f03036e, 0x7f03037d, 0x7f03037e, 0x7f03037f, 0x7f030380 } ++int styleable KeyCycle_android_alpha 0 ++int styleable KeyCycle_android_translationX 1 ++int styleable KeyCycle_android_translationY 2 ++int styleable KeyCycle_android_scaleX 3 ++int styleable KeyCycle_android_scaleY 4 ++int styleable KeyCycle_android_rotation 5 ++int styleable KeyCycle_android_rotationX 6 ++int styleable KeyCycle_android_rotationY 7 ++int styleable KeyCycle_android_translationZ 8 ++int styleable KeyCycle_android_elevation 9 ++int styleable KeyCycle_curveFit 10 ++int styleable KeyCycle_framePosition 11 ++int styleable KeyCycle_motionProgress 12 ++int styleable KeyCycle_motionTarget 13 ++int styleable KeyCycle_transitionEasing 14 ++int styleable KeyCycle_transitionPathRotate 15 ++int styleable KeyCycle_waveOffset 16 ++int styleable KeyCycle_wavePeriod 17 ++int styleable KeyCycle_waveShape 18 ++int styleable KeyCycle_waveVariesBy 19 ++int[] styleable KeyFrame { } ++int[] styleable KeyFramesAcceleration { } ++int[] styleable KeyFramesVelocity { } ++int[] styleable KeyPosition { 0x7f0300f6, 0x7f030115, 0x7f030177, 0x7f0301bc, 0x7f030260, 0x7f030288, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f0302ce, 0x7f03036c } ++int styleable KeyPosition_curveFit 0 ++int styleable KeyPosition_drawPath 1 ++int styleable KeyPosition_framePosition 2 ++int styleable KeyPosition_keyPositionType 3 ++int styleable KeyPosition_motionTarget 4 ++int styleable KeyPosition_pathMotionArc 5 ++int styleable KeyPosition_percentHeight 6 ++int styleable KeyPosition_percentWidth 7 ++int styleable KeyPosition_percentX 8 ++int styleable KeyPosition_percentY 9 ++int styleable KeyPosition_sizePercent 10 ++int styleable KeyPosition_transitionEasing 11 ++int[] styleable KeyTimeCycle { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f0300f6, 0x7f030177, 0x7f03025e, 0x7f030260, 0x7f03036c, 0x7f03036e, 0x7f03037c, 0x7f03037d, 0x7f03037e, 0x7f03037f } ++int styleable KeyTimeCycle_android_alpha 0 ++int styleable KeyTimeCycle_android_translationX 1 ++int styleable KeyTimeCycle_android_translationY 2 ++int styleable KeyTimeCycle_android_scaleX 3 ++int styleable KeyTimeCycle_android_scaleY 4 ++int styleable KeyTimeCycle_android_rotation 5 ++int styleable KeyTimeCycle_android_rotationX 6 ++int styleable KeyTimeCycle_android_rotationY 7 ++int styleable KeyTimeCycle_android_translationZ 8 ++int styleable KeyTimeCycle_android_elevation 9 ++int styleable KeyTimeCycle_curveFit 10 ++int styleable KeyTimeCycle_framePosition 11 ++int styleable KeyTimeCycle_motionProgress 12 ++int styleable KeyTimeCycle_motionTarget 13 ++int styleable KeyTimeCycle_transitionEasing 14 ++int styleable KeyTimeCycle_transitionPathRotate 15 ++int styleable KeyTimeCycle_waveDecay 16 ++int styleable KeyTimeCycle_waveOffset 17 ++int styleable KeyTimeCycle_wavePeriod 18 ++int styleable KeyTimeCycle_waveShape 19 ++int[] styleable KeyTrigger { 0x7f030177, 0x7f030260, 0x7f030261, 0x7f030262, 0x7f030270, 0x7f030272, 0x7f030273, 0x7f030370, 0x7f030371, 0x7f030372 } ++int styleable KeyTrigger_framePosition 0 ++int styleable KeyTrigger_motionTarget 1 ++int styleable KeyTrigger_motion_postLayoutCollision 2 ++int styleable KeyTrigger_motion_triggerOnCollision 3 ++int styleable KeyTrigger_onCross 4 ++int styleable KeyTrigger_onNegativeCross 5 ++int styleable KeyTrigger_onPositiveCross 6 ++int styleable KeyTrigger_triggerId 7 ++int styleable KeyTrigger_triggerReceiver 8 ++int styleable KeyTrigger_triggerSlack 9 ++int[] styleable Layout { 0x010100c4, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x010103b5, 0x010103b6, 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f030080, 0x7f0300ce, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f0301e7, 0x7f0301e8, 0x7f0301e9, 0x7f0301ea, 0x7f0301eb, 0x7f0301ed, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f03023c, 0x7f030240, 0x7f030244, 0x7f030248 } ++int styleable Layout_android_orientation 0 ++int styleable Layout_android_layout_width 1 ++int styleable Layout_android_layout_height 2 ++int styleable Layout_android_layout_marginLeft 3 ++int styleable Layout_android_layout_marginTop 4 ++int styleable Layout_android_layout_marginRight 5 ++int styleable Layout_android_layout_marginBottom 6 ++int styleable Layout_android_layout_marginStart 7 ++int styleable Layout_android_layout_marginEnd 8 ++int styleable Layout_barrierAllowsGoneWidgets 9 ++int styleable Layout_barrierDirection 10 ++int styleable Layout_barrierMargin 11 ++int styleable Layout_chainUseRtl 12 ++int styleable Layout_constraint_referenced_ids 13 ++int styleable Layout_layout_constrainedHeight 14 ++int styleable Layout_layout_constrainedWidth 15 ++int styleable Layout_layout_constraintBaseline_creator 16 ++int styleable Layout_layout_constraintBaseline_toBaselineOf 17 ++int styleable Layout_layout_constraintBottom_creator 18 ++int styleable Layout_layout_constraintBottom_toBottomOf 19 ++int styleable Layout_layout_constraintBottom_toTopOf 20 ++int styleable Layout_layout_constraintCircle 21 ++int styleable Layout_layout_constraintCircleAngle 22 ++int styleable Layout_layout_constraintCircleRadius 23 ++int styleable Layout_layout_constraintDimensionRatio 24 ++int styleable Layout_layout_constraintEnd_toEndOf 25 ++int styleable Layout_layout_constraintEnd_toStartOf 26 ++int styleable Layout_layout_constraintGuide_begin 27 ++int styleable Layout_layout_constraintGuide_end 28 ++int styleable Layout_layout_constraintGuide_percent 29 ++int styleable Layout_layout_constraintHeight_default 30 ++int styleable Layout_layout_constraintHeight_max 31 ++int styleable Layout_layout_constraintHeight_min 32 ++int styleable Layout_layout_constraintHeight_percent 33 ++int styleable Layout_layout_constraintHorizontal_bias 34 ++int styleable Layout_layout_constraintHorizontal_chainStyle 35 ++int styleable Layout_layout_constraintHorizontal_weight 36 ++int styleable Layout_layout_constraintLeft_creator 37 ++int styleable Layout_layout_constraintLeft_toLeftOf 38 ++int styleable Layout_layout_constraintLeft_toRightOf 39 ++int styleable Layout_layout_constraintRight_creator 40 ++int styleable Layout_layout_constraintRight_toLeftOf 41 ++int styleable Layout_layout_constraintRight_toRightOf 42 ++int styleable Layout_layout_constraintStart_toEndOf 43 ++int styleable Layout_layout_constraintStart_toStartOf 44 ++int styleable Layout_layout_constraintTop_creator 45 ++int styleable Layout_layout_constraintTop_toBottomOf 46 ++int styleable Layout_layout_constraintTop_toTopOf 47 ++int styleable Layout_layout_constraintVertical_bias 48 ++int styleable Layout_layout_constraintVertical_chainStyle 49 ++int styleable Layout_layout_constraintVertical_weight 50 ++int styleable Layout_layout_constraintWidth_default 51 ++int styleable Layout_layout_constraintWidth_max 52 ++int styleable Layout_layout_constraintWidth_min 53 ++int styleable Layout_layout_constraintWidth_percent 54 ++int styleable Layout_layout_editor_absoluteX 55 ++int styleable Layout_layout_editor_absoluteY 56 ++int styleable Layout_layout_goneMarginBottom 57 ++int styleable Layout_layout_goneMarginEnd 58 ++int styleable Layout_layout_goneMarginLeft 59 ++int styleable Layout_layout_goneMarginRight 60 ++int styleable Layout_layout_goneMarginStart 61 ++int styleable Layout_layout_goneMarginTop 62 ++int styleable Layout_maxHeight 63 ++int styleable Layout_maxWidth 64 ++int styleable Layout_minHeight 65 ++int styleable Layout_minWidth 66 ++int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f03010e, 0x7f030110, 0x7f030241, 0x7f0302c5 } ++int styleable LinearLayoutCompat_android_gravity 0 ++int styleable LinearLayoutCompat_android_orientation 1 ++int styleable LinearLayoutCompat_android_baselineAligned 2 ++int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 ++int styleable LinearLayoutCompat_android_weightSum 4 ++int styleable LinearLayoutCompat_divider 5 ++int styleable LinearLayoutCompat_dividerPadding 6 ++int styleable LinearLayoutCompat_measureWithLargestChild 7 ++int styleable LinearLayoutCompat_showDividers 8 ++int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } ++int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 ++int styleable LinearLayoutCompat_Layout_android_layout_width 1 ++int styleable LinearLayoutCompat_Layout_android_layout_height 2 ++int styleable LinearLayoutCompat_Layout_android_layout_weight 3 ++int[] styleable LinearProgressIndicator { 0x7f030199, 0x7f03019d } ++int styleable LinearProgressIndicator_indeterminateAnimationType 0 ++int styleable LinearProgressIndicator_indicatorDirectionLinear 1 ++int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } ++int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 ++int styleable ListPopupWindow_android_dropDownVerticalOffset 1 ++int[] styleable MaterialAlertDialog { 0x7f03003e, 0x7f03003f, 0x7f030040, 0x7f030041 } ++int styleable MaterialAlertDialog_backgroundInsetBottom 0 ++int styleable MaterialAlertDialog_backgroundInsetEnd 1 ++int styleable MaterialAlertDialog_backgroundInsetStart 2 ++int styleable MaterialAlertDialog_backgroundInsetTop 3 ++int[] styleable MaterialAlertDialogTheme { 0x7f03021c, 0x7f03021d, 0x7f03021e, 0x7f03021f, 0x7f030220 } ++int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 ++int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 1 ++int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 2 ++int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 3 ++int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 4 ++int[] styleable MaterialAutoCompleteTextView { 0x01010220 } ++int styleable MaterialAutoCompleteTextView_android_inputType 0 ++int[] styleable MaterialButton { 0x010100d4, 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x010101e5, 0x7f030045, 0x7f030046, 0x7f0300e8, 0x7f030127, 0x7f03018f, 0x7f030191, 0x7f030192, 0x7f030193, 0x7f030195, 0x7f030196, 0x7f0302ad, 0x7f0302bc, 0x7f0302bf, 0x7f0302e9, 0x7f0302ea } ++int styleable MaterialButton_android_background 0 ++int styleable MaterialButton_android_insetLeft 1 ++int styleable MaterialButton_android_insetRight 2 ++int styleable MaterialButton_android_insetTop 3 ++int styleable MaterialButton_android_insetBottom 4 ++int styleable MaterialButton_android_checkable 5 ++int styleable MaterialButton_backgroundTint 6 ++int styleable MaterialButton_backgroundTintMode 7 ++int styleable MaterialButton_cornerRadius 8 ++int styleable MaterialButton_elevation 9 ++int styleable MaterialButton_icon 10 ++int styleable MaterialButton_iconGravity 11 ++int styleable MaterialButton_iconPadding 12 ++int styleable MaterialButton_iconSize 13 ++int styleable MaterialButton_iconTint 14 ++int styleable MaterialButton_iconTintMode 15 ++int styleable MaterialButton_rippleColor 16 ++int styleable MaterialButton_shapeAppearance 17 ++int styleable MaterialButton_shapeAppearanceOverlay 18 ++int styleable MaterialButton_strokeColor 19 ++int styleable MaterialButton_strokeWidth 20 ++int[] styleable MaterialButtonToggleGroup { 0x7f030082, 0x7f0302ba, 0x7f0302cd } ++int styleable MaterialButtonToggleGroup_checkedButton 0 ++int styleable MaterialButtonToggleGroup_selectionRequired 1 ++int styleable MaterialButtonToggleGroup_singleSelection 2 ++int[] styleable MaterialCalendar { 0x0101020d, 0x7f030100, 0x7f030101, 0x7f030102, 0x7f030103, 0x7f03026d, 0x7f0302a3, 0x7f03038b, 0x7f03038c, 0x7f03038d } ++int styleable MaterialCalendar_android_windowFullscreen 0 ++int styleable MaterialCalendar_dayInvalidStyle 1 ++int styleable MaterialCalendar_daySelectedStyle 2 ++int styleable MaterialCalendar_dayStyle 3 ++int styleable MaterialCalendar_dayTodayStyle 4 ++int styleable MaterialCalendar_nestedScrollable 5 ++int styleable MaterialCalendar_rangeFillColor 6 ++int styleable MaterialCalendar_yearSelectedStyle 7 ++int styleable MaterialCalendar_yearStyle 8 ++int styleable MaterialCalendar_yearTodayStyle 9 ++int[] styleable MaterialCalendarItem { 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f0301a5, 0x7f0301ae, 0x7f0301af, 0x7f0301b6, 0x7f0301b7, 0x7f0301bb } ++int styleable MaterialCalendarItem_android_insetLeft 0 ++int styleable MaterialCalendarItem_android_insetRight 1 ++int styleable MaterialCalendarItem_android_insetTop 2 ++int styleable MaterialCalendarItem_android_insetBottom 3 ++int styleable MaterialCalendarItem_itemFillColor 4 ++int styleable MaterialCalendarItem_itemShapeAppearance 5 ++int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 ++int styleable MaterialCalendarItem_itemStrokeColor 7 ++int styleable MaterialCalendarItem_itemStrokeWidth 8 ++int styleable MaterialCalendarItem_itemTextColor 9 ++int[] styleable MaterialCardView { 0x010101e5, 0x7f03007b, 0x7f030084, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f0302ad, 0x7f0302bc, 0x7f0302bf, 0x7f0302e3, 0x7f0302e9, 0x7f0302ea } ++int styleable MaterialCardView_android_checkable 0 ++int styleable MaterialCardView_cardForegroundColor 1 ++int styleable MaterialCardView_checkedIcon 2 ++int styleable MaterialCardView_checkedIconMargin 3 ++int styleable MaterialCardView_checkedIconSize 4 ++int styleable MaterialCardView_checkedIconTint 5 ++int styleable MaterialCardView_rippleColor 6 ++int styleable MaterialCardView_shapeAppearance 7 ++int styleable MaterialCardView_shapeAppearanceOverlay 8 ++int styleable MaterialCardView_state_dragged 9 ++int styleable MaterialCardView_strokeColor 10 ++int styleable MaterialCardView_strokeWidth 11 ++int[] styleable MaterialCheckBox { 0x7f030076, 0x7f030375 } ++int styleable MaterialCheckBox_buttonTint 0 ++int styleable MaterialCheckBox_useMaterialThemeColors 1 ++int[] styleable MaterialRadioButton { 0x7f030076, 0x7f030375 } ++int styleable MaterialRadioButton_buttonTint 0 ++int styleable MaterialRadioButton_useMaterialThemeColors 1 ++int[] styleable MaterialShape { 0x7f0302bc, 0x7f0302bf } ++int styleable MaterialShape_shapeAppearance 0 ++int styleable MaterialShape_shapeAppearanceOverlay 1 ++int[] styleable MaterialTextAppearance { 0x010104b6, 0x0101057f, 0x7f030208 } ++int styleable MaterialTextAppearance_android_letterSpacing 0 ++int styleable MaterialTextAppearance_android_lineHeight 1 ++int styleable MaterialTextAppearance_lineHeight 2 ++int[] styleable MaterialTextView { 0x01010034, 0x0101057f, 0x7f030208 } ++int styleable MaterialTextView_android_textAppearance 0 ++int styleable MaterialTextView_android_lineHeight 1 ++int styleable MaterialTextView_lineHeight 2 ++int[] styleable MaterialTimePicker { 0x7f0300a4, 0x7f0301bd } ++int styleable MaterialTimePicker_clockIcon 0 ++int styleable MaterialTimePicker_keyboardIcon 1 ++int[] styleable MaterialToolbar { 0x7f030267, 0x7f0302ee, 0x7f03034c } ++int styleable MaterialToolbar_navigationIconTint 0 ++int styleable MaterialToolbar_subtitleCentered 1 ++int styleable MaterialToolbar_titleCentered 2 ++int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } ++int styleable MenuGroup_android_enabled 0 ++int styleable MenuGroup_android_id 1 ++int styleable MenuGroup_android_visible 2 ++int styleable MenuGroup_android_menuCategory 3 ++int styleable MenuGroup_android_orderInCategory 4 ++int styleable MenuGroup_android_checkableBehavior 5 ++int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000d, 0x7f030021, 0x7f030023, 0x7f03002b, 0x7f0300d1, 0x7f030195, 0x7f030196, 0x7f03026f, 0x7f0302c3, 0x7f03035e } ++int styleable MenuItem_android_icon 0 ++int styleable MenuItem_android_enabled 1 ++int styleable MenuItem_android_id 2 ++int styleable MenuItem_android_checked 3 ++int styleable MenuItem_android_visible 4 ++int styleable MenuItem_android_menuCategory 5 ++int styleable MenuItem_android_orderInCategory 6 ++int styleable MenuItem_android_title 7 ++int styleable MenuItem_android_titleCondensed 8 ++int styleable MenuItem_android_alphabeticShortcut 9 ++int styleable MenuItem_android_numericShortcut 10 ++int styleable MenuItem_android_checkable 11 ++int styleable MenuItem_android_onClick 12 ++int styleable MenuItem_actionLayout 13 ++int styleable MenuItem_actionProviderClass 14 ++int styleable MenuItem_actionViewClass 15 ++int styleable MenuItem_alphabeticModifiers 16 ++int styleable MenuItem_contentDescription 17 ++int styleable MenuItem_iconTint 18 ++int styleable MenuItem_iconTintMode 19 ++int styleable MenuItem_numericModifiers 20 ++int styleable MenuItem_showAsAction 21 ++int styleable MenuItem_tooltipText 22 ++int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f03029b, 0x7f0302eb } ++int styleable MenuView_android_windowAnimationStyle 0 ++int styleable MenuView_android_itemTextAppearance 1 ++int styleable MenuView_android_horizontalDivider 2 ++int styleable MenuView_android_verticalDivider 3 ++int styleable MenuView_android_headerBackground 4 ++int styleable MenuView_android_itemBackground 5 ++int styleable MenuView_android_itemIconDisabledAlpha 6 ++int styleable MenuView_preserveIconSpacing 7 ++int styleable MenuView_subMenuArrow 8 ++int[] styleable MockView { 0x7f030249, 0x7f03024a, 0x7f03024b, 0x7f03024c, 0x7f03024d, 0x7f03024e } ++int styleable MockView_mock_diagonalsColor 0 ++int styleable MockView_mock_label 1 ++int styleable MockView_mock_labelBackgroundColor 2 ++int styleable MockView_mock_labelColor 3 ++int styleable MockView_mock_showDiagonals 4 ++int styleable MockView_mock_showLabel 5 ++int[] styleable Motion { 0x7f03002d, 0x7f030115, 0x7f03025d, 0x7f03025f, 0x7f030288, 0x7f03036c } ++int styleable Motion_animate_relativeTo 0 ++int styleable Motion_drawPath 1 ++int styleable Motion_motionPathRotate 2 ++int styleable Motion_motionStagger 3 ++int styleable Motion_pathMotionArc 4 ++int styleable Motion_transitionEasing 5 ++int[] styleable MotionHelper { 0x7f030271, 0x7f030274 } ++int styleable MotionHelper_onHide 0 ++int styleable MotionHelper_onShow 1 ++int[] styleable MotionLayout { 0x7f030030, 0x7f0300f5, 0x7f0301c5, 0x7f03024f, 0x7f03025e, 0x7f0302c7 } ++int styleable MotionLayout_applyMotionScene 0 ++int styleable MotionLayout_currentState 1 ++int styleable MotionLayout_layoutDescription 2 ++int styleable MotionLayout_motionDebug 3 ++int styleable MotionLayout_motionProgress 4 ++int styleable MotionLayout_showPaths 5 ++int[] styleable MotionScene { 0x7f030104, 0x7f0301c6 } ++int styleable MotionScene_defaultDuration 0 ++int styleable MotionScene_layoutDuringTransition 1 ++int[] styleable MotionTelltales { 0x7f030316, 0x7f030317, 0x7f030318 } ++int styleable MotionTelltales_telltales_tailColor 0 ++int styleable MotionTelltales_telltales_tailScale 1 ++int styleable MotionTelltales_telltales_velocityMode 2 ++int[] styleable NavigationBarView { 0x7f030045, 0x7f030127, 0x7f0301a4, 0x7f0301a9, 0x7f0301aa, 0x7f0301ad, 0x7f0301b9, 0x7f0301ba, 0x7f0301bb, 0x7f0301c2, 0x7f030242 } ++int styleable NavigationBarView_backgroundTint 0 ++int styleable NavigationBarView_elevation 1 ++int styleable NavigationBarView_itemBackground 2 ++int styleable NavigationBarView_itemIconSize 3 ++int styleable NavigationBarView_itemIconTint 4 ++int styleable NavigationBarView_itemRippleColor 5 ++int styleable NavigationBarView_itemTextAppearanceActive 6 ++int styleable NavigationBarView_itemTextAppearanceInactive 7 ++int styleable NavigationBarView_itemTextColor 8 ++int styleable NavigationBarView_labelVisibilityMode 9 ++int styleable NavigationBarView_menu 10 ++int[] styleable NavigationRailView { 0x7f03017d, 0x7f030243 } ++int styleable NavigationRailView_headerLayout 0 ++int styleable NavigationRailView_menuGravity 1 ++int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f030127, 0x7f03017d, 0x7f0301a4, 0x7f0301a6, 0x7f0301a8, 0x7f0301a9, 0x7f0301aa, 0x7f0301ab, 0x7f0301ae, 0x7f0301af, 0x7f0301b0, 0x7f0301b1, 0x7f0301b2, 0x7f0301b3, 0x7f0301b4, 0x7f0301b8, 0x7f0301bb, 0x7f030242, 0x7f0302bc, 0x7f0302bf } ++int styleable NavigationView_android_background 0 ++int styleable NavigationView_android_fitsSystemWindows 1 ++int styleable NavigationView_android_maxWidth 2 ++int styleable NavigationView_elevation 3 ++int styleable NavigationView_headerLayout 4 ++int styleable NavigationView_itemBackground 5 ++int styleable NavigationView_itemHorizontalPadding 6 ++int styleable NavigationView_itemIconPadding 7 ++int styleable NavigationView_itemIconSize 8 ++int styleable NavigationView_itemIconTint 9 ++int styleable NavigationView_itemMaxLines 10 ++int styleable NavigationView_itemShapeAppearance 11 ++int styleable NavigationView_itemShapeAppearanceOverlay 12 ++int styleable NavigationView_itemShapeFillColor 13 ++int styleable NavigationView_itemShapeInsetBottom 14 ++int styleable NavigationView_itemShapeInsetEnd 15 ++int styleable NavigationView_itemShapeInsetStart 16 ++int styleable NavigationView_itemShapeInsetTop 17 ++int styleable NavigationView_itemTextAppearance 18 ++int styleable NavigationView_itemTextColor 19 ++int styleable NavigationView_menu 20 ++int styleable NavigationView_shapeAppearance 21 ++int styleable NavigationView_shapeAppearanceOverlay 22 ++int[] styleable OnClick { 0x7f0300a1, 0x7f030315 } ++int styleable OnClick_clickAction 0 ++int styleable OnClick_targetId 1 ++int[] styleable OnSwipe { 0x7f030112, 0x7f030113, 0x7f030114, 0x7f030207, 0x7f030238, 0x7f03023f, 0x7f030263, 0x7f03026b, 0x7f030275, 0x7f03035f, 0x7f030360, 0x7f030361 } ++int styleable OnSwipe_dragDirection 0 ++int styleable OnSwipe_dragScale 1 ++int styleable OnSwipe_dragThreshold 2 ++int styleable OnSwipe_limitBoundsTo 3 ++int styleable OnSwipe_maxAcceleration 4 ++int styleable OnSwipe_maxVelocity 5 ++int styleable OnSwipe_moveWhenScrollAtTop 6 ++int styleable OnSwipe_nestedScrollFlags 7 ++int styleable OnSwipe_onTouchUp 8 ++int styleable OnSwipe_touchAnchorId 9 ++int styleable OnSwipe_touchAnchorSide 10 ++int styleable OnSwipe_touchRegionId 11 ++int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f030276 } ++int styleable PopupWindow_android_popupBackground 0 ++int styleable PopupWindow_android_popupAnimationStyle 1 ++int styleable PopupWindow_overlapAnchor 2 ++int[] styleable PopupWindowBackgroundState { 0x7f0302e0 } ++int styleable PopupWindowBackgroundState_state_above_anchor 0 ++int[] styleable PropertySet { 0x010100dc, 0x0101031f, 0x7f0301ec, 0x7f03025e, 0x7f030379 } ++int styleable PropertySet_android_visibility 0 ++int styleable PropertySet_android_alpha 1 ++int styleable PropertySet_layout_constraintTag 2 ++int styleable PropertySet_motionProgress 3 ++int styleable PropertySet_visibilityMode 4 ++int[] styleable RadialViewGroup { 0x7f030233 } ++int styleable RadialViewGroup_materialCircleRadius 0 ++int[] styleable RangeSlider { 0x7f030246, 0x7f030376 } ++int styleable RangeSlider_minSeparation 0 ++int styleable RangeSlider_values 1 ++int[] styleable RecycleListView { 0x7f030278, 0x7f03027e } ++int styleable RecycleListView_paddingBottomNoButtons 0 ++int styleable RecycleListView_paddingTopNoTitle 1 ++int[] styleable RecyclerView { 0x010100c4, 0x010100eb, 0x010100f1, 0x7f03014f, 0x7f030150, 0x7f030151, 0x7f030152, 0x7f030153, 0x7f0301c7, 0x7f0302ac, 0x7f0302d3, 0x7f0302d9 } ++int styleable RecyclerView_android_orientation 0 ++int styleable RecyclerView_android_clipToPadding 1 ++int styleable RecyclerView_android_descendantFocusability 2 ++int styleable RecyclerView_fastScrollEnabled 3 ++int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 ++int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 ++int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 ++int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 ++int styleable RecyclerView_layoutManager 8 ++int styleable RecyclerView_reverseLayout 9 ++int styleable RecyclerView_spanCount 10 ++int styleable RecyclerView_stackFromEnd 11 ++int[] styleable ScrimInsetsFrameLayout { 0x7f0301a1 } ++int styleable ScrimInsetsFrameLayout_insetForeground 0 ++int[] styleable ScrollingViewBehavior_Layout { 0x7f030055 } ++int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 ++int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0300a6, 0x7f0300ca, 0x7f030105, 0x7f03017a, 0x7f030197, 0x7f0301c4, 0x7f03029f, 0x7f0302a0, 0x7f0302b4, 0x7f0302b5, 0x7f0302ec, 0x7f0302f5, 0x7f03037a } ++int styleable SearchView_android_focusable 0 ++int styleable SearchView_android_maxWidth 1 ++int styleable SearchView_android_inputType 2 ++int styleable SearchView_android_imeOptions 3 ++int styleable SearchView_closeIcon 4 ++int styleable SearchView_commitIcon 5 ++int styleable SearchView_defaultQueryHint 6 ++int styleable SearchView_goIcon 7 ++int styleable SearchView_iconifiedByDefault 8 ++int styleable SearchView_layout 9 ++int styleable SearchView_queryBackground 10 ++int styleable SearchView_queryHint 11 ++int styleable SearchView_searchHintIcon 12 ++int styleable SearchView_searchIcon 13 ++int styleable SearchView_submitBackground 14 ++int styleable SearchView_suggestionRowLayout 15 ++int styleable SearchView_voiceIcon 16 ++int[] styleable ShapeAppearance { 0x7f0300e3, 0x7f0300e4, 0x7f0300e5, 0x7f0300e6, 0x7f0300e7, 0x7f0300e9, 0x7f0300ea, 0x7f0300eb, 0x7f0300ec, 0x7f0300ed } ++int styleable ShapeAppearance_cornerFamily 0 ++int styleable ShapeAppearance_cornerFamilyBottomLeft 1 ++int styleable ShapeAppearance_cornerFamilyBottomRight 2 ++int styleable ShapeAppearance_cornerFamilyTopLeft 3 ++int styleable ShapeAppearance_cornerFamilyTopRight 4 ++int styleable ShapeAppearance_cornerSize 5 ++int styleable ShapeAppearance_cornerSizeBottomLeft 6 ++int styleable ShapeAppearance_cornerSizeBottomRight 7 ++int styleable ShapeAppearance_cornerSizeTopLeft 8 ++int styleable ShapeAppearance_cornerSizeTopRight 9 ++int[] styleable ShapeableImageView { 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0300db, 0x7f0300dc, 0x7f0300dd, 0x7f0300de, 0x7f0302bc, 0x7f0302bf, 0x7f0302e9, 0x7f0302ea } ++int styleable ShapeableImageView_contentPadding 0 ++int styleable ShapeableImageView_contentPaddingBottom 1 ++int styleable ShapeableImageView_contentPaddingEnd 2 ++int styleable ShapeableImageView_contentPaddingLeft 3 ++int styleable ShapeableImageView_contentPaddingRight 4 ++int styleable ShapeableImageView_contentPaddingStart 5 ++int styleable ShapeableImageView_contentPaddingTop 6 ++int styleable ShapeableImageView_shapeAppearance 7 ++int styleable ShapeableImageView_shapeAppearanceOverlay 8 ++int styleable ShapeableImageView_strokeColor 9 ++int styleable ShapeableImageView_strokeWidth 10 ++int[] styleable Slider { 0x0101000e, 0x01010024, 0x01010146, 0x010102de, 0x010102df, 0x7f03017b, 0x7f03017c, 0x7f0301c0, 0x7f0301c1, 0x7f03033a, 0x7f03033b, 0x7f03033c, 0x7f03033d, 0x7f03033e, 0x7f030342, 0x7f030343, 0x7f030344, 0x7f030348, 0x7f030363, 0x7f030364, 0x7f030365, 0x7f030367 } ++int styleable Slider_android_enabled 0 ++int styleable Slider_android_value 1 ++int styleable Slider_android_stepSize 2 ++int styleable Slider_android_valueFrom 3 ++int styleable Slider_android_valueTo 4 ++int styleable Slider_haloColor 5 ++int styleable Slider_haloRadius 6 ++int styleable Slider_labelBehavior 7 ++int styleable Slider_labelStyle 8 ++int styleable Slider_thumbColor 9 ++int styleable Slider_thumbElevation 10 ++int styleable Slider_thumbRadius 11 ++int styleable Slider_thumbStrokeColor 12 ++int styleable Slider_thumbStrokeWidth 13 ++int styleable Slider_tickColor 14 ++int styleable Slider_tickColorActive 15 ++int styleable Slider_tickColorInactive 16 ++int styleable Slider_tickVisible 17 ++int styleable Slider_trackColor 18 ++int styleable Slider_trackColorActive 19 ++int styleable Slider_trackColorInactive 20 ++int styleable Slider_trackHeight 21 ++int[] styleable Snackbar { 0x7f0302d0, 0x7f0302d1, 0x7f0302d2 } ++int styleable Snackbar_snackbarButtonStyle 0 ++int styleable Snackbar_snackbarStyle 1 ++int styleable Snackbar_snackbarTextViewStyle 2 ++int[] styleable SnackbarLayout { 0x0101011f, 0x7f030022, 0x7f03002e, 0x7f030042, 0x7f030045, 0x7f030046, 0x7f030127, 0x7f030239 } ++int styleable SnackbarLayout_android_maxWidth 0 ++int styleable SnackbarLayout_actionTextColorAlpha 1 ++int styleable SnackbarLayout_animationMode 2 ++int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 ++int styleable SnackbarLayout_backgroundTint 4 ++int styleable SnackbarLayout_backgroundTintMode 5 ++int styleable SnackbarLayout_elevation 6 ++int styleable SnackbarLayout_maxActionInlineWidth 7 ++int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f030296 } ++int styleable Spinner_android_entries 0 ++int styleable Spinner_android_popupBackground 1 ++int styleable Spinner_android_prompt 2 ++int styleable Spinner_android_dropDownWidth 3 ++int styleable Spinner_popupTheme 4 ++int[] styleable State { 0x010100d0, 0x7f0300cf } ++int styleable State_android_id 0 ++int styleable State_constraints 1 ++int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } ++int styleable StateListDrawable_android_dither 0 ++int styleable StateListDrawable_android_visible 1 ++int styleable StateListDrawable_android_variablePadding 2 ++int styleable StateListDrawable_android_constantSize 3 ++int styleable StateListDrawable_android_enterFadeDuration 4 ++int styleable StateListDrawable_android_exitFadeDuration 5 ++int[] styleable StateListDrawableItem { 0x01010199 } ++int styleable StateListDrawableItem_android_drawable 0 ++int[] styleable StateSet { 0x7f030106 } ++int styleable StateSet_defaultState 0 ++int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0302c8, 0x7f0302d7, 0x7f0302f6, 0x7f0302f7, 0x7f0302f9, 0x7f03033f, 0x7f030340, 0x7f030341, 0x7f030362, 0x7f030369, 0x7f03036a } ++int styleable SwitchCompat_android_textOn 0 ++int styleable SwitchCompat_android_textOff 1 ++int styleable SwitchCompat_android_thumb 2 ++int styleable SwitchCompat_showText 3 ++int styleable SwitchCompat_splitTrack 4 ++int styleable SwitchCompat_switchMinWidth 5 ++int styleable SwitchCompat_switchPadding 6 ++int styleable SwitchCompat_switchTextAppearance 7 ++int styleable SwitchCompat_thumbTextPadding 8 ++int styleable SwitchCompat_thumbTint 9 ++int styleable SwitchCompat_thumbTintMode 10 ++int styleable SwitchCompat_track 11 ++int styleable SwitchCompat_trackTint 12 ++int styleable SwitchCompat_trackTintMode 13 ++int[] styleable SwitchMaterial { 0x7f030375 } ++int styleable SwitchMaterial_useMaterialThemeColors 0 ++int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f } ++int styleable TabItem_android_icon 0 ++int styleable TabItem_android_layout 1 ++int styleable TabItem_android_text 2 ++int[] styleable TabLayout { 0x7f0302fa, 0x7f0302fb, 0x7f0302fc, 0x7f0302fd, 0x7f0302fe, 0x7f0302ff, 0x7f030300, 0x7f030301, 0x7f030302, 0x7f030303, 0x7f030304, 0x7f030305, 0x7f030306, 0x7f030307, 0x7f030308, 0x7f030309, 0x7f03030a, 0x7f03030b, 0x7f03030c, 0x7f03030d, 0x7f03030e, 0x7f03030f, 0x7f030310, 0x7f030312, 0x7f030313, 0x7f030314 } ++int styleable TabLayout_tabBackground 0 ++int styleable TabLayout_tabContentStart 1 ++int styleable TabLayout_tabGravity 2 ++int styleable TabLayout_tabIconTint 3 ++int styleable TabLayout_tabIconTintMode 4 ++int styleable TabLayout_tabIndicator 5 ++int styleable TabLayout_tabIndicatorAnimationDuration 6 ++int styleable TabLayout_tabIndicatorAnimationMode 7 ++int styleable TabLayout_tabIndicatorColor 8 ++int styleable TabLayout_tabIndicatorFullWidth 9 ++int styleable TabLayout_tabIndicatorGravity 10 ++int styleable TabLayout_tabIndicatorHeight 11 ++int styleable TabLayout_tabInlineLabel 12 ++int styleable TabLayout_tabMaxWidth 13 ++int styleable TabLayout_tabMinWidth 14 ++int styleable TabLayout_tabMode 15 ++int styleable TabLayout_tabPadding 16 ++int styleable TabLayout_tabPaddingBottom 17 ++int styleable TabLayout_tabPaddingEnd 18 ++int styleable TabLayout_tabPaddingStart 19 ++int styleable TabLayout_tabPaddingTop 20 ++int styleable TabLayout_tabRippleColor 21 ++int styleable TabLayout_tabSelectedTextColor 22 ++int styleable TabLayout_tabTextAppearance 23 ++int styleable TabLayout_tabTextColor 24 ++int styleable TabLayout_tabUnboundedRipple 25 ++int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f03016a, 0x7f030173, 0x7f030319, 0x7f030335 } ++int styleable TextAppearance_android_textSize 0 ++int styleable TextAppearance_android_typeface 1 ++int styleable TextAppearance_android_textStyle 2 ++int styleable TextAppearance_android_textColor 3 ++int styleable TextAppearance_android_textColorHint 4 ++int styleable TextAppearance_android_textColorLink 5 ++int styleable TextAppearance_android_shadowColor 6 ++int styleable TextAppearance_android_shadowDx 7 ++int styleable TextAppearance_android_shadowDy 8 ++int styleable TextAppearance_android_shadowRadius 9 ++int styleable TextAppearance_android_fontFamily 10 ++int styleable TextAppearance_android_textFontWeight 11 ++int styleable TextAppearance_fontFamily 12 ++int styleable TextAppearance_fontVariationSettings 13 ++int styleable TextAppearance_textAllCaps 14 ++int styleable TextAppearance_textLocale 15 ++int[] styleable TextInputEditText { 0x7f030333 } ++int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 ++int[] styleable TextInputLayout { 0x0101000e, 0x0101009a, 0x0101011f, 0x0101013f, 0x01010150, 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f030069, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f1, 0x7f0300f2, 0x7f0300f3, 0x7f03012b, 0x7f03012c, 0x7f03012d, 0x7f03012e, 0x7f03012f, 0x7f030130, 0x7f030134, 0x7f030135, 0x7f030136, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013a, 0x7f03013d, 0x7f03017f, 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030187, 0x7f030188, 0x7f030189, 0x7f03018a, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f0302bc, 0x7f0302bf, 0x7f0302db, 0x7f0302dc, 0x7f0302dd, 0x7f0302de, 0x7f0302df, 0x7f0302f2, 0x7f0302f3, 0x7f0302f4 } ++int styleable TextInputLayout_android_enabled 0 ++int styleable TextInputLayout_android_textColorHint 1 ++int styleable TextInputLayout_android_maxWidth 2 ++int styleable TextInputLayout_android_minWidth 3 ++int styleable TextInputLayout_android_hint 4 ++int styleable TextInputLayout_boxBackgroundColor 5 ++int styleable TextInputLayout_boxBackgroundMode 6 ++int styleable TextInputLayout_boxCollapsedPaddingTop 7 ++int styleable TextInputLayout_boxCornerRadiusBottomEnd 8 ++int styleable TextInputLayout_boxCornerRadiusBottomStart 9 ++int styleable TextInputLayout_boxCornerRadiusTopEnd 10 ++int styleable TextInputLayout_boxCornerRadiusTopStart 11 ++int styleable TextInputLayout_boxStrokeColor 12 ++int styleable TextInputLayout_boxStrokeErrorColor 13 ++int styleable TextInputLayout_boxStrokeWidth 14 ++int styleable TextInputLayout_boxStrokeWidthFocused 15 ++int styleable TextInputLayout_counterEnabled 16 ++int styleable TextInputLayout_counterMaxLength 17 ++int styleable TextInputLayout_counterOverflowTextAppearance 18 ++int styleable TextInputLayout_counterOverflowTextColor 19 ++int styleable TextInputLayout_counterTextAppearance 20 ++int styleable TextInputLayout_counterTextColor 21 ++int styleable TextInputLayout_endIconCheckable 22 ++int styleable TextInputLayout_endIconContentDescription 23 ++int styleable TextInputLayout_endIconDrawable 24 ++int styleable TextInputLayout_endIconMode 25 ++int styleable TextInputLayout_endIconTint 26 ++int styleable TextInputLayout_endIconTintMode 27 ++int styleable TextInputLayout_errorContentDescription 28 ++int styleable TextInputLayout_errorEnabled 29 ++int styleable TextInputLayout_errorIconDrawable 30 ++int styleable TextInputLayout_errorIconTint 31 ++int styleable TextInputLayout_errorIconTintMode 32 ++int styleable TextInputLayout_errorTextAppearance 33 ++int styleable TextInputLayout_errorTextColor 34 ++int styleable TextInputLayout_expandedHintEnabled 35 ++int styleable TextInputLayout_helperText 36 ++int styleable TextInputLayout_helperTextEnabled 37 ++int styleable TextInputLayout_helperTextTextAppearance 38 ++int styleable TextInputLayout_helperTextTextColor 39 ++int styleable TextInputLayout_hintAnimationEnabled 40 ++int styleable TextInputLayout_hintEnabled 41 ++int styleable TextInputLayout_hintTextAppearance 42 ++int styleable TextInputLayout_hintTextColor 43 ++int styleable TextInputLayout_passwordToggleContentDescription 44 ++int styleable TextInputLayout_passwordToggleDrawable 45 ++int styleable TextInputLayout_passwordToggleEnabled 46 ++int styleable TextInputLayout_passwordToggleTint 47 ++int styleable TextInputLayout_passwordToggleTintMode 48 ++int styleable TextInputLayout_placeholderText 49 ++int styleable TextInputLayout_placeholderTextAppearance 50 ++int styleable TextInputLayout_placeholderTextColor 51 ++int styleable TextInputLayout_prefixText 52 ++int styleable TextInputLayout_prefixTextAppearance 53 ++int styleable TextInputLayout_prefixTextColor 54 ++int styleable TextInputLayout_shapeAppearance 55 ++int styleable TextInputLayout_shapeAppearanceOverlay 56 ++int styleable TextInputLayout_startIconCheckable 57 ++int styleable TextInputLayout_startIconContentDescription 58 ++int styleable TextInputLayout_startIconDrawable 59 ++int styleable TextInputLayout_startIconTint 60 ++int styleable TextInputLayout_startIconTintMode 61 ++int styleable TextInputLayout_suffixText 62 ++int styleable TextInputLayout_suffixTextAppearance 63 ++int styleable TextInputLayout_suffixTextColor 64 ++int[] styleable ThemeEnforcement { 0x01010034, 0x7f030131, 0x7f030132 } ++int styleable ThemeEnforcement_android_textAppearance 0 ++int styleable ThemeEnforcement_enforceMaterialTheme 1 ++int styleable ThemeEnforcement_enforceTextAppearance 2 ++int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f030071, 0x7f0300ae, 0x7f0300af, 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7, 0x7f03021a, 0x7f03021b, 0x7f03023a, 0x7f030242, 0x7f030265, 0x7f030266, 0x7f030296, 0x7f0302ed, 0x7f0302ef, 0x7f0302f0, 0x7f03034b, 0x7f03034f, 0x7f030350, 0x7f030351, 0x7f030352, 0x7f030353, 0x7f030354, 0x7f030355, 0x7f030356 } ++int styleable Toolbar_android_gravity 0 ++int styleable Toolbar_android_minHeight 1 ++int styleable Toolbar_buttonGravity 2 ++int styleable Toolbar_collapseContentDescription 3 ++int styleable Toolbar_collapseIcon 4 ++int styleable Toolbar_contentInsetEnd 5 ++int styleable Toolbar_contentInsetEndWithActions 6 ++int styleable Toolbar_contentInsetLeft 7 ++int styleable Toolbar_contentInsetRight 8 ++int styleable Toolbar_contentInsetStart 9 ++int styleable Toolbar_contentInsetStartWithNavigation 10 ++int styleable Toolbar_logo 11 ++int styleable Toolbar_logoDescription 12 ++int styleable Toolbar_maxButtonHeight 13 ++int styleable Toolbar_menu 14 ++int styleable Toolbar_navigationContentDescription 15 ++int styleable Toolbar_navigationIcon 16 ++int styleable Toolbar_popupTheme 17 ++int styleable Toolbar_subtitle 18 ++int styleable Toolbar_subtitleTextAppearance 19 ++int styleable Toolbar_subtitleTextColor 20 ++int styleable Toolbar_title 21 ++int styleable Toolbar_titleMargin 22 ++int styleable Toolbar_titleMarginBottom 23 ++int styleable Toolbar_titleMarginEnd 24 ++int styleable Toolbar_titleMarginStart 25 ++int styleable Toolbar_titleMarginTop 26 ++int styleable Toolbar_titleMargins 27 ++int styleable Toolbar_titleTextAppearance 28 ++int styleable Toolbar_titleTextColor 29 ++int[] styleable Tooltip { 0x01010034, 0x010100d5, 0x010100f6, 0x0101013f, 0x01010140, 0x0101014f, 0x7f030045 } ++int styleable Tooltip_android_textAppearance 0 ++int styleable Tooltip_android_padding 1 ++int styleable Tooltip_android_layout_margin 2 ++int styleable Tooltip_android_minWidth 3 ++int styleable Tooltip_android_minHeight 4 ++int styleable Tooltip_android_text 5 ++int styleable Tooltip_backgroundTint 6 ++int[] styleable Transform { 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440 } ++int styleable Transform_android_transformPivotX 0 ++int styleable Transform_android_transformPivotY 1 ++int styleable Transform_android_translationX 2 ++int styleable Transform_android_translationY 3 ++int styleable Transform_android_scaleX 4 ++int styleable Transform_android_scaleY 5 ++int styleable Transform_android_rotation 6 ++int styleable Transform_android_rotationX 7 ++int styleable Transform_android_rotationY 8 ++int styleable Transform_android_translationZ 9 ++int styleable Transform_android_elevation 10 ++int[] styleable Transition { 0x010100d0, 0x7f03003b, 0x7f0300cc, 0x7f0300cd, 0x7f030123, 0x7f0301c6, 0x7f03025b, 0x7f030288, 0x7f0302da, 0x7f03036b, 0x7f03036d } ++int styleable Transition_android_id 0 ++int styleable Transition_autoTransition 1 ++int styleable Transition_constraintSetEnd 2 ++int styleable Transition_constraintSetStart 3 ++int styleable Transition_duration 4 ++int styleable Transition_layoutDuringTransition 5 ++int styleable Transition_motionInterpolator 6 ++int styleable Transition_pathMotionArc 7 ++int styleable Transition_staggered 8 ++int styleable Transition_transitionDisable 9 ++int styleable Transition_transitionFlags 10 ++int[] styleable Variant { 0x7f0300cf, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab } ++int styleable Variant_constraints 0 ++int styleable Variant_region_heightLessThan 1 ++int styleable Variant_region_heightMoreThan 2 ++int styleable Variant_region_widthLessThan 3 ++int styleable Variant_region_widthMoreThan 4 ++int[] styleable View { 0x01010000, 0x010100da, 0x7f03027a, 0x7f03027d, 0x7f030337 } ++int styleable View_android_theme 0 ++int styleable View_android_focusable 1 ++int styleable View_paddingEnd 2 ++int styleable View_paddingStart 3 ++int styleable View_theme 4 ++int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030045, 0x7f030046 } ++int styleable ViewBackgroundHelper_android_background 0 ++int styleable ViewBackgroundHelper_backgroundTint 1 ++int styleable ViewBackgroundHelper_backgroundTintMode 2 ++int[] styleable ViewPager2 { 0x010100c4 } ++int styleable ViewPager2_android_orientation 0 ++int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } ++int styleable ViewStubCompat_android_id 0 ++int styleable ViewStubCompat_android_layout 1 ++int styleable ViewStubCompat_android_inflatedId 2 ++int xml standalone_badge 0x7f100000 ++int xml standalone_badge_gravity_bottom_end 0x7f100001 ++int xml standalone_badge_gravity_bottom_start 0x7f100002 ++int xml standalone_badge_gravity_top_start 0x7f100003 ++int xml standalone_badge_offset 0x7f100004 +diff --git a/node_modules/detox/android/detox/build/intermediates/runtime_symbol_list/fullDebugAndroidTest/processFullDebugAndroidTestResources/R.txt b/node_modules/detox/android/detox/build/intermediates/runtime_symbol_list/fullDebugAndroidTest/processFullDebugAndroidTestResources/R.txt +new file mode 100644 +index 0000000..e3e9ae7 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/runtime_symbol_list/fullDebugAndroidTest/processFullDebugAndroidTestResources/R.txt +@@ -0,0 +1,4763 @@ ++int anim abc_fade_in 0x7f010000 ++int anim abc_fade_out 0x7f010001 ++int anim abc_grow_fade_in_from_bottom 0x7f010002 ++int anim abc_popup_enter 0x7f010003 ++int anim abc_popup_exit 0x7f010004 ++int anim abc_shrink_fade_out_from_bottom 0x7f010005 ++int anim abc_slide_in_bottom 0x7f010006 ++int anim abc_slide_in_top 0x7f010007 ++int anim abc_slide_out_bottom 0x7f010008 ++int anim abc_slide_out_top 0x7f010009 ++int anim abc_tooltip_enter 0x7f01000a ++int anim abc_tooltip_exit 0x7f01000b ++int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000c ++int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000d ++int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000e ++int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f01000f ++int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010010 ++int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010011 ++int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010012 ++int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010013 ++int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010014 ++int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010015 ++int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010016 ++int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010017 ++int anim design_bottom_sheet_slide_in 0x7f010018 ++int anim design_bottom_sheet_slide_out 0x7f010019 ++int anim design_snackbar_in 0x7f01001a ++int anim design_snackbar_out 0x7f01001b ++int anim fragment_fast_out_extra_slow_in 0x7f01001c ++int anim mtrl_bottom_sheet_slide_in 0x7f01001d ++int anim mtrl_bottom_sheet_slide_out 0x7f01001e ++int anim mtrl_card_lowers_interpolator 0x7f01001f ++int animator design_appbar_state_list_animator 0x7f020000 ++int animator design_fab_hide_motion_spec 0x7f020001 ++int animator design_fab_show_motion_spec 0x7f020002 ++int animator fragment_close_enter 0x7f020003 ++int animator fragment_close_exit 0x7f020004 ++int animator fragment_fade_enter 0x7f020005 ++int animator fragment_fade_exit 0x7f020006 ++int animator fragment_open_enter 0x7f020007 ++int animator fragment_open_exit 0x7f020008 ++int animator linear_indeterminate_line1_head_interpolator 0x7f020009 ++int animator linear_indeterminate_line1_tail_interpolator 0x7f02000a ++int animator linear_indeterminate_line2_head_interpolator 0x7f02000b ++int animator linear_indeterminate_line2_tail_interpolator 0x7f02000c ++int animator mtrl_btn_state_list_anim 0x7f02000d ++int animator mtrl_btn_unelevated_state_list_anim 0x7f02000e ++int animator mtrl_card_state_list_anim 0x7f02000f ++int animator mtrl_chip_state_list_anim 0x7f020010 ++int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020011 ++int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f020012 ++int animator mtrl_extended_fab_hide_motion_spec 0x7f020013 ++int animator mtrl_extended_fab_show_motion_spec 0x7f020014 ++int animator mtrl_extended_fab_state_list_animator 0x7f020015 ++int animator mtrl_fab_hide_motion_spec 0x7f020016 ++int animator mtrl_fab_show_motion_spec 0x7f020017 ++int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020018 ++int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020019 ++int attr actionBarDivider 0x7f030000 ++int attr actionBarItemBackground 0x7f030001 ++int attr actionBarPopupTheme 0x7f030002 ++int attr actionBarSize 0x7f030003 ++int attr actionBarSplitStyle 0x7f030004 ++int attr actionBarStyle 0x7f030005 ++int attr actionBarTabBarStyle 0x7f030006 ++int attr actionBarTabStyle 0x7f030007 ++int attr actionBarTabTextStyle 0x7f030008 ++int attr actionBarTheme 0x7f030009 ++int attr actionBarWidgetTheme 0x7f03000a ++int attr actionButtonStyle 0x7f03000b ++int attr actionDropDownStyle 0x7f03000c ++int attr actionLayout 0x7f03000d ++int attr actionMenuTextAppearance 0x7f03000e ++int attr actionMenuTextColor 0x7f03000f ++int attr actionModeBackground 0x7f030010 ++int attr actionModeCloseButtonStyle 0x7f030011 ++int attr actionModeCloseContentDescription 0x7f030012 ++int attr actionModeCloseDrawable 0x7f030013 ++int attr actionModeCopyDrawable 0x7f030014 ++int attr actionModeCutDrawable 0x7f030015 ++int attr actionModeFindDrawable 0x7f030016 ++int attr actionModePasteDrawable 0x7f030017 ++int attr actionModePopupWindowStyle 0x7f030018 ++int attr actionModeSelectAllDrawable 0x7f030019 ++int attr actionModeShareDrawable 0x7f03001a ++int attr actionModeSplitBackground 0x7f03001b ++int attr actionModeStyle 0x7f03001c ++int attr actionModeTheme 0x7f03001d ++int attr actionModeWebSearchDrawable 0x7f03001e ++int attr actionOverflowButtonStyle 0x7f03001f ++int attr actionOverflowMenuStyle 0x7f030020 ++int attr actionProviderClass 0x7f030021 ++int attr actionTextColorAlpha 0x7f030022 ++int attr actionViewClass 0x7f030023 ++int attr activityChooserViewStyle 0x7f030024 ++int attr alertDialogButtonGroupStyle 0x7f030025 ++int attr alertDialogCenterButtons 0x7f030026 ++int attr alertDialogStyle 0x7f030027 ++int attr alertDialogTheme 0x7f030028 ++int attr allowStacking 0x7f030029 ++int attr alpha 0x7f03002a ++int attr alphabeticModifiers 0x7f03002b ++int attr altSrc 0x7f03002c ++int attr animate_relativeTo 0x7f03002d ++int attr animationMode 0x7f03002e ++int attr appBarLayoutStyle 0x7f03002f ++int attr applyMotionScene 0x7f030030 ++int attr arcMode 0x7f030031 ++int attr arrowHeadLength 0x7f030032 ++int attr arrowShaftLength 0x7f030033 ++int attr attributeName 0x7f030034 ++int attr autoCompleteTextViewStyle 0x7f030035 ++int attr autoSizeMaxTextSize 0x7f030036 ++int attr autoSizeMinTextSize 0x7f030037 ++int attr autoSizePresetSizes 0x7f030038 ++int attr autoSizeStepGranularity 0x7f030039 ++int attr autoSizeTextType 0x7f03003a ++int attr autoTransition 0x7f03003b ++int attr background 0x7f03003c ++int attr backgroundColor 0x7f03003d ++int attr backgroundInsetBottom 0x7f03003e ++int attr backgroundInsetEnd 0x7f03003f ++int attr backgroundInsetStart 0x7f030040 ++int attr backgroundInsetTop 0x7f030041 ++int attr backgroundOverlayColorAlpha 0x7f030042 ++int attr backgroundSplit 0x7f030043 ++int attr backgroundStacked 0x7f030044 ++int attr backgroundTint 0x7f030045 ++int attr backgroundTintMode 0x7f030046 ++int attr badgeGravity 0x7f030047 ++int attr badgeStyle 0x7f030048 ++int attr badgeTextColor 0x7f030049 ++int attr barLength 0x7f03004a ++int attr barrierAllowsGoneWidgets 0x7f03004b ++int attr barrierDirection 0x7f03004c ++int attr barrierMargin 0x7f03004d ++int attr behavior_autoHide 0x7f03004e ++int attr behavior_autoShrink 0x7f03004f ++int attr behavior_draggable 0x7f030050 ++int attr behavior_expandedOffset 0x7f030051 ++int attr behavior_fitToContents 0x7f030052 ++int attr behavior_halfExpandedRatio 0x7f030053 ++int attr behavior_hideable 0x7f030054 ++int attr behavior_overlapTop 0x7f030055 ++int attr behavior_peekHeight 0x7f030056 ++int attr behavior_saveFlags 0x7f030057 ++int attr behavior_skipCollapsed 0x7f030058 ++int attr borderWidth 0x7f030059 ++int attr borderlessButtonStyle 0x7f03005a ++int attr bottomAppBarStyle 0x7f03005b ++int attr bottomNavigationStyle 0x7f03005c ++int attr bottomSheetDialogTheme 0x7f03005d ++int attr bottomSheetStyle 0x7f03005e ++int attr boxBackgroundColor 0x7f03005f ++int attr boxBackgroundMode 0x7f030060 ++int attr boxCollapsedPaddingTop 0x7f030061 ++int attr boxCornerRadiusBottomEnd 0x7f030062 ++int attr boxCornerRadiusBottomStart 0x7f030063 ++int attr boxCornerRadiusTopEnd 0x7f030064 ++int attr boxCornerRadiusTopStart 0x7f030065 ++int attr boxStrokeColor 0x7f030066 ++int attr boxStrokeErrorColor 0x7f030067 ++int attr boxStrokeWidth 0x7f030068 ++int attr boxStrokeWidthFocused 0x7f030069 ++int attr brightness 0x7f03006a ++int attr buttonBarButtonStyle 0x7f03006b ++int attr buttonBarNegativeButtonStyle 0x7f03006c ++int attr buttonBarNeutralButtonStyle 0x7f03006d ++int attr buttonBarPositiveButtonStyle 0x7f03006e ++int attr buttonBarStyle 0x7f03006f ++int attr buttonCompat 0x7f030070 ++int attr buttonGravity 0x7f030071 ++int attr buttonIconDimen 0x7f030072 ++int attr buttonPanelSideLayout 0x7f030073 ++int attr buttonStyle 0x7f030074 ++int attr buttonStyleSmall 0x7f030075 ++int attr buttonTint 0x7f030076 ++int attr buttonTintMode 0x7f030077 ++int attr cardBackgroundColor 0x7f030078 ++int attr cardCornerRadius 0x7f030079 ++int attr cardElevation 0x7f03007a ++int attr cardForegroundColor 0x7f03007b ++int attr cardMaxElevation 0x7f03007c ++int attr cardPreventCornerOverlap 0x7f03007d ++int attr cardUseCompatPadding 0x7f03007e ++int attr cardViewStyle 0x7f03007f ++int attr chainUseRtl 0x7f030080 ++int attr checkboxStyle 0x7f030081 ++int attr checkedButton 0x7f030082 ++int attr checkedChip 0x7f030083 ++int attr checkedIcon 0x7f030084 ++int attr checkedIconEnabled 0x7f030085 ++int attr checkedIconMargin 0x7f030086 ++int attr checkedIconSize 0x7f030087 ++int attr checkedIconTint 0x7f030088 ++int attr checkedIconVisible 0x7f030089 ++int attr checkedTextViewStyle 0x7f03008a ++int attr chipBackgroundColor 0x7f03008b ++int attr chipCornerRadius 0x7f03008c ++int attr chipEndPadding 0x7f03008d ++int attr chipGroupStyle 0x7f03008e ++int attr chipIcon 0x7f03008f ++int attr chipIconEnabled 0x7f030090 ++int attr chipIconSize 0x7f030091 ++int attr chipIconTint 0x7f030092 ++int attr chipIconVisible 0x7f030093 ++int attr chipMinHeight 0x7f030094 ++int attr chipMinTouchTargetSize 0x7f030095 ++int attr chipSpacing 0x7f030096 ++int attr chipSpacingHorizontal 0x7f030097 ++int attr chipSpacingVertical 0x7f030098 ++int attr chipStandaloneStyle 0x7f030099 ++int attr chipStartPadding 0x7f03009a ++int attr chipStrokeColor 0x7f03009b ++int attr chipStrokeWidth 0x7f03009c ++int attr chipStyle 0x7f03009d ++int attr chipSurfaceColor 0x7f03009e ++int attr circleRadius 0x7f03009f ++int attr circularProgressIndicatorStyle 0x7f0300a0 ++int attr clickAction 0x7f0300a1 ++int attr clockFaceBackgroundColor 0x7f0300a2 ++int attr clockHandColor 0x7f0300a3 ++int attr clockIcon 0x7f0300a4 ++int attr clockNumberTextColor 0x7f0300a5 ++int attr closeIcon 0x7f0300a6 ++int attr closeIconEnabled 0x7f0300a7 ++int attr closeIconEndPadding 0x7f0300a8 ++int attr closeIconSize 0x7f0300a9 ++int attr closeIconStartPadding 0x7f0300aa ++int attr closeIconTint 0x7f0300ab ++int attr closeIconVisible 0x7f0300ac ++int attr closeItemLayout 0x7f0300ad ++int attr collapseContentDescription 0x7f0300ae ++int attr collapseIcon 0x7f0300af ++int attr collapsedSize 0x7f0300b0 ++int attr collapsedTitleGravity 0x7f0300b1 ++int attr collapsedTitleTextAppearance 0x7f0300b2 ++int attr collapsingToolbarLayoutStyle 0x7f0300b3 ++int attr color 0x7f0300b4 ++int attr colorAccent 0x7f0300b5 ++int attr colorBackgroundFloating 0x7f0300b6 ++int attr colorButtonNormal 0x7f0300b7 ++int attr colorControlActivated 0x7f0300b8 ++int attr colorControlHighlight 0x7f0300b9 ++int attr colorControlNormal 0x7f0300ba ++int attr colorError 0x7f0300bb ++int attr colorOnBackground 0x7f0300bc ++int attr colorOnError 0x7f0300bd ++int attr colorOnPrimary 0x7f0300be ++int attr colorOnPrimarySurface 0x7f0300bf ++int attr colorOnSecondary 0x7f0300c0 ++int attr colorOnSurface 0x7f0300c1 ++int attr colorPrimary 0x7f0300c2 ++int attr colorPrimaryDark 0x7f0300c3 ++int attr colorPrimarySurface 0x7f0300c4 ++int attr colorPrimaryVariant 0x7f0300c5 ++int attr colorSecondary 0x7f0300c6 ++int attr colorSecondaryVariant 0x7f0300c7 ++int attr colorSurface 0x7f0300c8 ++int attr colorSwitchThumbNormal 0x7f0300c9 ++int attr commitIcon 0x7f0300ca ++int attr constraintSet 0x7f0300cb ++int attr constraintSetEnd 0x7f0300cc ++int attr constraintSetStart 0x7f0300cd ++int attr constraint_referenced_ids 0x7f0300ce ++int attr constraints 0x7f0300cf ++int attr content 0x7f0300d0 ++int attr contentDescription 0x7f0300d1 ++int attr contentInsetEnd 0x7f0300d2 ++int attr contentInsetEndWithActions 0x7f0300d3 ++int attr contentInsetLeft 0x7f0300d4 ++int attr contentInsetRight 0x7f0300d5 ++int attr contentInsetStart 0x7f0300d6 ++int attr contentInsetStartWithNavigation 0x7f0300d7 ++int attr contentPadding 0x7f0300d8 ++int attr contentPaddingBottom 0x7f0300d9 ++int attr contentPaddingEnd 0x7f0300da ++int attr contentPaddingLeft 0x7f0300db ++int attr contentPaddingRight 0x7f0300dc ++int attr contentPaddingStart 0x7f0300dd ++int attr contentPaddingTop 0x7f0300de ++int attr contentScrim 0x7f0300df ++int attr contrast 0x7f0300e0 ++int attr controlBackground 0x7f0300e1 ++int attr coordinatorLayoutStyle 0x7f0300e2 ++int attr cornerFamily 0x7f0300e3 ++int attr cornerFamilyBottomLeft 0x7f0300e4 ++int attr cornerFamilyBottomRight 0x7f0300e5 ++int attr cornerFamilyTopLeft 0x7f0300e6 ++int attr cornerFamilyTopRight 0x7f0300e7 ++int attr cornerRadius 0x7f0300e8 ++int attr cornerSize 0x7f0300e9 ++int attr cornerSizeBottomLeft 0x7f0300ea ++int attr cornerSizeBottomRight 0x7f0300eb ++int attr cornerSizeTopLeft 0x7f0300ec ++int attr cornerSizeTopRight 0x7f0300ed ++int attr counterEnabled 0x7f0300ee ++int attr counterMaxLength 0x7f0300ef ++int attr counterOverflowTextAppearance 0x7f0300f0 ++int attr counterOverflowTextColor 0x7f0300f1 ++int attr counterTextAppearance 0x7f0300f2 ++int attr counterTextColor 0x7f0300f3 ++int attr crossfade 0x7f0300f4 ++int attr currentState 0x7f0300f5 ++int attr curveFit 0x7f0300f6 ++int attr customBoolean 0x7f0300f7 ++int attr customColorDrawableValue 0x7f0300f8 ++int attr customColorValue 0x7f0300f9 ++int attr customDimension 0x7f0300fa ++int attr customFloatValue 0x7f0300fb ++int attr customIntegerValue 0x7f0300fc ++int attr customNavigationLayout 0x7f0300fd ++int attr customPixelDimension 0x7f0300fe ++int attr customStringValue 0x7f0300ff ++int attr dayInvalidStyle 0x7f030100 ++int attr daySelectedStyle 0x7f030101 ++int attr dayStyle 0x7f030102 ++int attr dayTodayStyle 0x7f030103 ++int attr defaultDuration 0x7f030104 ++int attr defaultQueryHint 0x7f030105 ++int attr defaultState 0x7f030106 ++int attr deltaPolarAngle 0x7f030107 ++int attr deltaPolarRadius 0x7f030108 ++int attr deriveConstraintsFrom 0x7f030109 ++int attr dialogCornerRadius 0x7f03010a ++int attr dialogPreferredPadding 0x7f03010b ++int attr dialogTheme 0x7f03010c ++int attr displayOptions 0x7f03010d ++int attr divider 0x7f03010e ++int attr dividerHorizontal 0x7f03010f ++int attr dividerPadding 0x7f030110 ++int attr dividerVertical 0x7f030111 ++int attr dragDirection 0x7f030112 ++int attr dragScale 0x7f030113 ++int attr dragThreshold 0x7f030114 ++int attr drawPath 0x7f030115 ++int attr drawableBottomCompat 0x7f030116 ++int attr drawableEndCompat 0x7f030117 ++int attr drawableLeftCompat 0x7f030118 ++int attr drawableRightCompat 0x7f030119 ++int attr drawableSize 0x7f03011a ++int attr drawableStartCompat 0x7f03011b ++int attr drawableTint 0x7f03011c ++int attr drawableTintMode 0x7f03011d ++int attr drawableTopCompat 0x7f03011e ++int attr drawerArrowStyle 0x7f03011f ++int attr drawerLayoutStyle 0x7f030120 ++int attr dropDownListViewStyle 0x7f030121 ++int attr dropdownListPreferredItemHeight 0x7f030122 ++int attr duration 0x7f030123 ++int attr editTextBackground 0x7f030124 ++int attr editTextColor 0x7f030125 ++int attr editTextStyle 0x7f030126 ++int attr elevation 0x7f030127 ++int attr elevationOverlayColor 0x7f030128 ++int attr elevationOverlayEnabled 0x7f030129 ++int attr enableEdgeToEdge 0x7f03012a ++int attr endIconCheckable 0x7f03012b ++int attr endIconContentDescription 0x7f03012c ++int attr endIconDrawable 0x7f03012d ++int attr endIconMode 0x7f03012e ++int attr endIconTint 0x7f03012f ++int attr endIconTintMode 0x7f030130 ++int attr enforceMaterialTheme 0x7f030131 ++int attr enforceTextAppearance 0x7f030132 ++int attr ensureMinTouchTargetSize 0x7f030133 ++int attr errorContentDescription 0x7f030134 ++int attr errorEnabled 0x7f030135 ++int attr errorIconDrawable 0x7f030136 ++int attr errorIconTint 0x7f030137 ++int attr errorIconTintMode 0x7f030138 ++int attr errorTextAppearance 0x7f030139 ++int attr errorTextColor 0x7f03013a ++int attr expandActivityOverflowButtonDrawable 0x7f03013b ++int attr expanded 0x7f03013c ++int attr expandedHintEnabled 0x7f03013d ++int attr expandedTitleGravity 0x7f03013e ++int attr expandedTitleMargin 0x7f03013f ++int attr expandedTitleMarginBottom 0x7f030140 ++int attr expandedTitleMarginEnd 0x7f030141 ++int attr expandedTitleMarginStart 0x7f030142 ++int attr expandedTitleMarginTop 0x7f030143 ++int attr expandedTitleTextAppearance 0x7f030144 ++int attr extendMotionSpec 0x7f030145 ++int attr extendedFloatingActionButtonStyle 0x7f030146 ++int attr extraMultilineHeightEnabled 0x7f030147 ++int attr fabAlignmentMode 0x7f030148 ++int attr fabAnimationMode 0x7f030149 ++int attr fabCradleMargin 0x7f03014a ++int attr fabCradleRoundedCornerRadius 0x7f03014b ++int attr fabCradleVerticalOffset 0x7f03014c ++int attr fabCustomSize 0x7f03014d ++int attr fabSize 0x7f03014e ++int attr fastScrollEnabled 0x7f03014f ++int attr fastScrollHorizontalThumbDrawable 0x7f030150 ++int attr fastScrollHorizontalTrackDrawable 0x7f030151 ++int attr fastScrollVerticalThumbDrawable 0x7f030152 ++int attr fastScrollVerticalTrackDrawable 0x7f030153 ++int attr firstBaselineToTopHeight 0x7f030154 ++int attr floatingActionButtonStyle 0x7f030155 ++int attr flow_firstHorizontalBias 0x7f030156 ++int attr flow_firstHorizontalStyle 0x7f030157 ++int attr flow_firstVerticalBias 0x7f030158 ++int attr flow_firstVerticalStyle 0x7f030159 ++int attr flow_horizontalAlign 0x7f03015a ++int attr flow_horizontalBias 0x7f03015b ++int attr flow_horizontalGap 0x7f03015c ++int attr flow_horizontalStyle 0x7f03015d ++int attr flow_lastHorizontalBias 0x7f03015e ++int attr flow_lastHorizontalStyle 0x7f03015f ++int attr flow_lastVerticalBias 0x7f030160 ++int attr flow_lastVerticalStyle 0x7f030161 ++int attr flow_maxElementsWrap 0x7f030162 ++int attr flow_padding 0x7f030163 ++int attr flow_verticalAlign 0x7f030164 ++int attr flow_verticalBias 0x7f030165 ++int attr flow_verticalGap 0x7f030166 ++int attr flow_verticalStyle 0x7f030167 ++int attr flow_wrapMode 0x7f030168 ++int attr font 0x7f030169 ++int attr fontFamily 0x7f03016a ++int attr fontProviderAuthority 0x7f03016b ++int attr fontProviderCerts 0x7f03016c ++int attr fontProviderFetchStrategy 0x7f03016d ++int attr fontProviderFetchTimeout 0x7f03016e ++int attr fontProviderPackage 0x7f03016f ++int attr fontProviderQuery 0x7f030170 ++int attr fontProviderSystemFontFamily 0x7f030171 ++int attr fontStyle 0x7f030172 ++int attr fontVariationSettings 0x7f030173 ++int attr fontWeight 0x7f030174 ++int attr forceApplySystemWindowInsetTop 0x7f030175 ++int attr foregroundInsidePadding 0x7f030176 ++int attr framePosition 0x7f030177 ++int attr gapBetweenBars 0x7f030178 ++int attr gestureInsetBottomIgnored 0x7f030179 ++int attr goIcon 0x7f03017a ++int attr haloColor 0x7f03017b ++int attr haloRadius 0x7f03017c ++int attr headerLayout 0x7f03017d ++int attr height 0x7f03017e ++int attr helperText 0x7f03017f ++int attr helperTextEnabled 0x7f030180 ++int attr helperTextTextAppearance 0x7f030181 ++int attr helperTextTextColor 0x7f030182 ++int attr hideAnimationBehavior 0x7f030183 ++int attr hideMotionSpec 0x7f030184 ++int attr hideOnContentScroll 0x7f030185 ++int attr hideOnScroll 0x7f030186 ++int attr hintAnimationEnabled 0x7f030187 ++int attr hintEnabled 0x7f030188 ++int attr hintTextAppearance 0x7f030189 ++int attr hintTextColor 0x7f03018a ++int attr homeAsUpIndicator 0x7f03018b ++int attr homeLayout 0x7f03018c ++int attr horizontalOffset 0x7f03018d ++int attr hoveredFocusedTranslationZ 0x7f03018e ++int attr icon 0x7f03018f ++int attr iconEndPadding 0x7f030190 ++int attr iconGravity 0x7f030191 ++int attr iconPadding 0x7f030192 ++int attr iconSize 0x7f030193 ++int attr iconStartPadding 0x7f030194 ++int attr iconTint 0x7f030195 ++int attr iconTintMode 0x7f030196 ++int attr iconifiedByDefault 0x7f030197 ++int attr imageButtonStyle 0x7f030198 ++int attr indeterminateAnimationType 0x7f030199 ++int attr indeterminateProgressStyle 0x7f03019a ++int attr indicatorColor 0x7f03019b ++int attr indicatorDirectionCircular 0x7f03019c ++int attr indicatorDirectionLinear 0x7f03019d ++int attr indicatorInset 0x7f03019e ++int attr indicatorSize 0x7f03019f ++int attr initialActivityCount 0x7f0301a0 ++int attr insetForeground 0x7f0301a1 ++int attr isLightTheme 0x7f0301a2 ++int attr isMaterialTheme 0x7f0301a3 ++int attr itemBackground 0x7f0301a4 ++int attr itemFillColor 0x7f0301a5 ++int attr itemHorizontalPadding 0x7f0301a6 ++int attr itemHorizontalTranslationEnabled 0x7f0301a7 ++int attr itemIconPadding 0x7f0301a8 ++int attr itemIconSize 0x7f0301a9 ++int attr itemIconTint 0x7f0301aa ++int attr itemMaxLines 0x7f0301ab ++int attr itemPadding 0x7f0301ac ++int attr itemRippleColor 0x7f0301ad ++int attr itemShapeAppearance 0x7f0301ae ++int attr itemShapeAppearanceOverlay 0x7f0301af ++int attr itemShapeFillColor 0x7f0301b0 ++int attr itemShapeInsetBottom 0x7f0301b1 ++int attr itemShapeInsetEnd 0x7f0301b2 ++int attr itemShapeInsetStart 0x7f0301b3 ++int attr itemShapeInsetTop 0x7f0301b4 ++int attr itemSpacing 0x7f0301b5 ++int attr itemStrokeColor 0x7f0301b6 ++int attr itemStrokeWidth 0x7f0301b7 ++int attr itemTextAppearance 0x7f0301b8 ++int attr itemTextAppearanceActive 0x7f0301b9 ++int attr itemTextAppearanceInactive 0x7f0301ba ++int attr itemTextColor 0x7f0301bb ++int attr keyPositionType 0x7f0301bc ++int attr keyboardIcon 0x7f0301bd ++int attr keylines 0x7f0301be ++int attr lStar 0x7f0301bf ++int attr labelBehavior 0x7f0301c0 ++int attr labelStyle 0x7f0301c1 ++int attr labelVisibilityMode 0x7f0301c2 ++int attr lastBaselineToBottomHeight 0x7f0301c3 ++int attr layout 0x7f0301c4 ++int attr layoutDescription 0x7f0301c5 ++int attr layoutDuringTransition 0x7f0301c6 ++int attr layoutManager 0x7f0301c7 ++int attr layout_anchor 0x7f0301c8 ++int attr layout_anchorGravity 0x7f0301c9 ++int attr layout_behavior 0x7f0301ca ++int attr layout_collapseMode 0x7f0301cb ++int attr layout_collapseParallaxMultiplier 0x7f0301cc ++int attr layout_constrainedHeight 0x7f0301cd ++int attr layout_constrainedWidth 0x7f0301ce ++int attr layout_constraintBaseline_creator 0x7f0301cf ++int attr layout_constraintBaseline_toBaselineOf 0x7f0301d0 ++int attr layout_constraintBottom_creator 0x7f0301d1 ++int attr layout_constraintBottom_toBottomOf 0x7f0301d2 ++int attr layout_constraintBottom_toTopOf 0x7f0301d3 ++int attr layout_constraintCircle 0x7f0301d4 ++int attr layout_constraintCircleAngle 0x7f0301d5 ++int attr layout_constraintCircleRadius 0x7f0301d6 ++int attr layout_constraintDimensionRatio 0x7f0301d7 ++int attr layout_constraintEnd_toEndOf 0x7f0301d8 ++int attr layout_constraintEnd_toStartOf 0x7f0301d9 ++int attr layout_constraintGuide_begin 0x7f0301da ++int attr layout_constraintGuide_end 0x7f0301db ++int attr layout_constraintGuide_percent 0x7f0301dc ++int attr layout_constraintHeight_default 0x7f0301dd ++int attr layout_constraintHeight_max 0x7f0301de ++int attr layout_constraintHeight_min 0x7f0301df ++int attr layout_constraintHeight_percent 0x7f0301e0 ++int attr layout_constraintHorizontal_bias 0x7f0301e1 ++int attr layout_constraintHorizontal_chainStyle 0x7f0301e2 ++int attr layout_constraintHorizontal_weight 0x7f0301e3 ++int attr layout_constraintLeft_creator 0x7f0301e4 ++int attr layout_constraintLeft_toLeftOf 0x7f0301e5 ++int attr layout_constraintLeft_toRightOf 0x7f0301e6 ++int attr layout_constraintRight_creator 0x7f0301e7 ++int attr layout_constraintRight_toLeftOf 0x7f0301e8 ++int attr layout_constraintRight_toRightOf 0x7f0301e9 ++int attr layout_constraintStart_toEndOf 0x7f0301ea ++int attr layout_constraintStart_toStartOf 0x7f0301eb ++int attr layout_constraintTag 0x7f0301ec ++int attr layout_constraintTop_creator 0x7f0301ed ++int attr layout_constraintTop_toBottomOf 0x7f0301ee ++int attr layout_constraintTop_toTopOf 0x7f0301ef ++int attr layout_constraintVertical_bias 0x7f0301f0 ++int attr layout_constraintVertical_chainStyle 0x7f0301f1 ++int attr layout_constraintVertical_weight 0x7f0301f2 ++int attr layout_constraintWidth_default 0x7f0301f3 ++int attr layout_constraintWidth_max 0x7f0301f4 ++int attr layout_constraintWidth_min 0x7f0301f5 ++int attr layout_constraintWidth_percent 0x7f0301f6 ++int attr layout_dodgeInsetEdges 0x7f0301f7 ++int attr layout_editor_absoluteX 0x7f0301f8 ++int attr layout_editor_absoluteY 0x7f0301f9 ++int attr layout_goneMarginBottom 0x7f0301fa ++int attr layout_goneMarginEnd 0x7f0301fb ++int attr layout_goneMarginLeft 0x7f0301fc ++int attr layout_goneMarginRight 0x7f0301fd ++int attr layout_goneMarginStart 0x7f0301fe ++int attr layout_goneMarginTop 0x7f0301ff ++int attr layout_insetEdge 0x7f030200 ++int attr layout_keyline 0x7f030201 ++int attr layout_optimizationLevel 0x7f030202 ++int attr layout_scrollFlags 0x7f030203 ++int attr layout_scrollInterpolator 0x7f030204 ++int attr liftOnScroll 0x7f030205 ++int attr liftOnScrollTargetViewId 0x7f030206 ++int attr limitBoundsTo 0x7f030207 ++int attr lineHeight 0x7f030208 ++int attr lineSpacing 0x7f030209 ++int attr linearProgressIndicatorStyle 0x7f03020a ++int attr listChoiceBackgroundIndicator 0x7f03020b ++int attr listChoiceIndicatorMultipleAnimated 0x7f03020c ++int attr listChoiceIndicatorSingleAnimated 0x7f03020d ++int attr listDividerAlertDialog 0x7f03020e ++int attr listItemLayout 0x7f03020f ++int attr listLayout 0x7f030210 ++int attr listMenuViewStyle 0x7f030211 ++int attr listPopupWindowStyle 0x7f030212 ++int attr listPreferredItemHeight 0x7f030213 ++int attr listPreferredItemHeightLarge 0x7f030214 ++int attr listPreferredItemHeightSmall 0x7f030215 ++int attr listPreferredItemPaddingEnd 0x7f030216 ++int attr listPreferredItemPaddingLeft 0x7f030217 ++int attr listPreferredItemPaddingRight 0x7f030218 ++int attr listPreferredItemPaddingStart 0x7f030219 ++int attr logo 0x7f03021a ++int attr logoDescription 0x7f03021b ++int attr materialAlertDialogBodyTextStyle 0x7f03021c ++int attr materialAlertDialogTheme 0x7f03021d ++int attr materialAlertDialogTitleIconStyle 0x7f03021e ++int attr materialAlertDialogTitlePanelStyle 0x7f03021f ++int attr materialAlertDialogTitleTextStyle 0x7f030220 ++int attr materialButtonOutlinedStyle 0x7f030221 ++int attr materialButtonStyle 0x7f030222 ++int attr materialButtonToggleGroupStyle 0x7f030223 ++int attr materialCalendarDay 0x7f030224 ++int attr materialCalendarFullscreenTheme 0x7f030225 ++int attr materialCalendarHeaderCancelButton 0x7f030226 ++int attr materialCalendarHeaderConfirmButton 0x7f030227 ++int attr materialCalendarHeaderDivider 0x7f030228 ++int attr materialCalendarHeaderLayout 0x7f030229 ++int attr materialCalendarHeaderSelection 0x7f03022a ++int attr materialCalendarHeaderTitle 0x7f03022b ++int attr materialCalendarHeaderToggleButton 0x7f03022c ++int attr materialCalendarMonth 0x7f03022d ++int attr materialCalendarMonthNavigationButton 0x7f03022e ++int attr materialCalendarStyle 0x7f03022f ++int attr materialCalendarTheme 0x7f030230 ++int attr materialCalendarYearNavigationButton 0x7f030231 ++int attr materialCardViewStyle 0x7f030232 ++int attr materialCircleRadius 0x7f030233 ++int attr materialClockStyle 0x7f030234 ++int attr materialThemeOverlay 0x7f030235 ++int attr materialTimePickerStyle 0x7f030236 ++int attr materialTimePickerTheme 0x7f030237 ++int attr maxAcceleration 0x7f030238 ++int attr maxActionInlineWidth 0x7f030239 ++int attr maxButtonHeight 0x7f03023a ++int attr maxCharacterCount 0x7f03023b ++int attr maxHeight 0x7f03023c ++int attr maxImageSize 0x7f03023d ++int attr maxLines 0x7f03023e ++int attr maxVelocity 0x7f03023f ++int attr maxWidth 0x7f030240 ++int attr measureWithLargestChild 0x7f030241 ++int attr menu 0x7f030242 ++int attr menuGravity 0x7f030243 ++int attr minHeight 0x7f030244 ++int attr minHideDelay 0x7f030245 ++int attr minSeparation 0x7f030246 ++int attr minTouchTargetSize 0x7f030247 ++int attr minWidth 0x7f030248 ++int attr mock_diagonalsColor 0x7f030249 ++int attr mock_label 0x7f03024a ++int attr mock_labelBackgroundColor 0x7f03024b ++int attr mock_labelColor 0x7f03024c ++int attr mock_showDiagonals 0x7f03024d ++int attr mock_showLabel 0x7f03024e ++int attr motionDebug 0x7f03024f ++int attr motionDurationLong1 0x7f030250 ++int attr motionDurationLong2 0x7f030251 ++int attr motionDurationMedium1 0x7f030252 ++int attr motionDurationMedium2 0x7f030253 ++int attr motionDurationShort1 0x7f030254 ++int attr motionDurationShort2 0x7f030255 ++int attr motionEasingAccelerated 0x7f030256 ++int attr motionEasingDecelerated 0x7f030257 ++int attr motionEasingEmphasized 0x7f030258 ++int attr motionEasingLinear 0x7f030259 ++int attr motionEasingStandard 0x7f03025a ++int attr motionInterpolator 0x7f03025b ++int attr motionPath 0x7f03025c ++int attr motionPathRotate 0x7f03025d ++int attr motionProgress 0x7f03025e ++int attr motionStagger 0x7f03025f ++int attr motionTarget 0x7f030260 ++int attr motion_postLayoutCollision 0x7f030261 ++int attr motion_triggerOnCollision 0x7f030262 ++int attr moveWhenScrollAtTop 0x7f030263 ++int attr multiChoiceItemLayout 0x7f030264 ++int attr navigationContentDescription 0x7f030265 ++int attr navigationIcon 0x7f030266 ++int attr navigationIconTint 0x7f030267 ++int attr navigationMode 0x7f030268 ++int attr navigationRailStyle 0x7f030269 ++int attr navigationViewStyle 0x7f03026a ++int attr nestedScrollFlags 0x7f03026b ++int attr nestedScrollViewStyle 0x7f03026c ++int attr nestedScrollable 0x7f03026d ++int attr number 0x7f03026e ++int attr numericModifiers 0x7f03026f ++int attr onCross 0x7f030270 ++int attr onHide 0x7f030271 ++int attr onNegativeCross 0x7f030272 ++int attr onPositiveCross 0x7f030273 ++int attr onShow 0x7f030274 ++int attr onTouchUp 0x7f030275 ++int attr overlapAnchor 0x7f030276 ++int attr overlay 0x7f030277 ++int attr paddingBottomNoButtons 0x7f030278 ++int attr paddingBottomSystemWindowInsets 0x7f030279 ++int attr paddingEnd 0x7f03027a ++int attr paddingLeftSystemWindowInsets 0x7f03027b ++int attr paddingRightSystemWindowInsets 0x7f03027c ++int attr paddingStart 0x7f03027d ++int attr paddingTopNoTitle 0x7f03027e ++int attr paddingTopSystemWindowInsets 0x7f03027f ++int attr panelBackground 0x7f030280 ++int attr panelMenuListTheme 0x7f030281 ++int attr panelMenuListWidth 0x7f030282 ++int attr passwordToggleContentDescription 0x7f030283 ++int attr passwordToggleDrawable 0x7f030284 ++int attr passwordToggleEnabled 0x7f030285 ++int attr passwordToggleTint 0x7f030286 ++int attr passwordToggleTintMode 0x7f030287 ++int attr pathMotionArc 0x7f030288 ++int attr path_percent 0x7f030289 ++int attr percentHeight 0x7f03028a ++int attr percentWidth 0x7f03028b ++int attr percentX 0x7f03028c ++int attr percentY 0x7f03028d ++int attr perpendicularPath_percent 0x7f03028e ++int attr pivotAnchor 0x7f03028f ++int attr placeholderText 0x7f030290 ++int attr placeholderTextAppearance 0x7f030291 ++int attr placeholderTextColor 0x7f030292 ++int attr placeholder_emptyVisibility 0x7f030293 ++int attr popupMenuBackground 0x7f030294 ++int attr popupMenuStyle 0x7f030295 ++int attr popupTheme 0x7f030296 ++int attr popupWindowStyle 0x7f030297 ++int attr prefixText 0x7f030298 ++int attr prefixTextAppearance 0x7f030299 ++int attr prefixTextColor 0x7f03029a ++int attr preserveIconSpacing 0x7f03029b ++int attr pressedTranslationZ 0x7f03029c ++int attr progressBarPadding 0x7f03029d ++int attr progressBarStyle 0x7f03029e ++int attr queryBackground 0x7f03029f ++int attr queryHint 0x7f0302a0 ++int attr queryPatterns 0x7f0302a1 ++int attr radioButtonStyle 0x7f0302a2 ++int attr rangeFillColor 0x7f0302a3 ++int attr ratingBarStyle 0x7f0302a4 ++int attr ratingBarStyleIndicator 0x7f0302a5 ++int attr ratingBarStyleSmall 0x7f0302a6 ++int attr recyclerViewStyle 0x7f0302a7 ++int attr region_heightLessThan 0x7f0302a8 ++int attr region_heightMoreThan 0x7f0302a9 ++int attr region_widthLessThan 0x7f0302aa ++int attr region_widthMoreThan 0x7f0302ab ++int attr reverseLayout 0x7f0302ac ++int attr rippleColor 0x7f0302ad ++int attr round 0x7f0302ae ++int attr roundPercent 0x7f0302af ++int attr saturation 0x7f0302b0 ++int attr scrimAnimationDuration 0x7f0302b1 ++int attr scrimBackground 0x7f0302b2 ++int attr scrimVisibleHeightTrigger 0x7f0302b3 ++int attr searchHintIcon 0x7f0302b4 ++int attr searchIcon 0x7f0302b5 ++int attr searchViewStyle 0x7f0302b6 ++int attr seekBarStyle 0x7f0302b7 ++int attr selectableItemBackground 0x7f0302b8 ++int attr selectableItemBackgroundBorderless 0x7f0302b9 ++int attr selectionRequired 0x7f0302ba ++int attr selectorSize 0x7f0302bb ++int attr shapeAppearance 0x7f0302bc ++int attr shapeAppearanceLargeComponent 0x7f0302bd ++int attr shapeAppearanceMediumComponent 0x7f0302be ++int attr shapeAppearanceOverlay 0x7f0302bf ++int attr shapeAppearanceSmallComponent 0x7f0302c0 ++int attr shortcutMatchRequired 0x7f0302c1 ++int attr showAnimationBehavior 0x7f0302c2 ++int attr showAsAction 0x7f0302c3 ++int attr showDelay 0x7f0302c4 ++int attr showDividers 0x7f0302c5 ++int attr showMotionSpec 0x7f0302c6 ++int attr showPaths 0x7f0302c7 ++int attr showText 0x7f0302c8 ++int attr showTitle 0x7f0302c9 ++int attr shrinkMotionSpec 0x7f0302ca ++int attr singleChoiceItemLayout 0x7f0302cb ++int attr singleLine 0x7f0302cc ++int attr singleSelection 0x7f0302cd ++int attr sizePercent 0x7f0302ce ++int attr sliderStyle 0x7f0302cf ++int attr snackbarButtonStyle 0x7f0302d0 ++int attr snackbarStyle 0x7f0302d1 ++int attr snackbarTextViewStyle 0x7f0302d2 ++int attr spanCount 0x7f0302d3 ++int attr spinBars 0x7f0302d4 ++int attr spinnerDropDownItemStyle 0x7f0302d5 ++int attr spinnerStyle 0x7f0302d6 ++int attr splitTrack 0x7f0302d7 ++int attr srcCompat 0x7f0302d8 ++int attr stackFromEnd 0x7f0302d9 ++int attr staggered 0x7f0302da ++int attr startIconCheckable 0x7f0302db ++int attr startIconContentDescription 0x7f0302dc ++int attr startIconDrawable 0x7f0302dd ++int attr startIconTint 0x7f0302de ++int attr startIconTintMode 0x7f0302df ++int attr state_above_anchor 0x7f0302e0 ++int attr state_collapsed 0x7f0302e1 ++int attr state_collapsible 0x7f0302e2 ++int attr state_dragged 0x7f0302e3 ++int attr state_liftable 0x7f0302e4 ++int attr state_lifted 0x7f0302e5 ++int attr statusBarBackground 0x7f0302e6 ++int attr statusBarForeground 0x7f0302e7 ++int attr statusBarScrim 0x7f0302e8 ++int attr strokeColor 0x7f0302e9 ++int attr strokeWidth 0x7f0302ea ++int attr subMenuArrow 0x7f0302eb ++int attr submitBackground 0x7f0302ec ++int attr subtitle 0x7f0302ed ++int attr subtitleCentered 0x7f0302ee ++int attr subtitleTextAppearance 0x7f0302ef ++int attr subtitleTextColor 0x7f0302f0 ++int attr subtitleTextStyle 0x7f0302f1 ++int attr suffixText 0x7f0302f2 ++int attr suffixTextAppearance 0x7f0302f3 ++int attr suffixTextColor 0x7f0302f4 ++int attr suggestionRowLayout 0x7f0302f5 ++int attr switchMinWidth 0x7f0302f6 ++int attr switchPadding 0x7f0302f7 ++int attr switchStyle 0x7f0302f8 ++int attr switchTextAppearance 0x7f0302f9 ++int attr tabBackground 0x7f0302fa ++int attr tabContentStart 0x7f0302fb ++int attr tabGravity 0x7f0302fc ++int attr tabIconTint 0x7f0302fd ++int attr tabIconTintMode 0x7f0302fe ++int attr tabIndicator 0x7f0302ff ++int attr tabIndicatorAnimationDuration 0x7f030300 ++int attr tabIndicatorAnimationMode 0x7f030301 ++int attr tabIndicatorColor 0x7f030302 ++int attr tabIndicatorFullWidth 0x7f030303 ++int attr tabIndicatorGravity 0x7f030304 ++int attr tabIndicatorHeight 0x7f030305 ++int attr tabInlineLabel 0x7f030306 ++int attr tabMaxWidth 0x7f030307 ++int attr tabMinWidth 0x7f030308 ++int attr tabMode 0x7f030309 ++int attr tabPadding 0x7f03030a ++int attr tabPaddingBottom 0x7f03030b ++int attr tabPaddingEnd 0x7f03030c ++int attr tabPaddingStart 0x7f03030d ++int attr tabPaddingTop 0x7f03030e ++int attr tabRippleColor 0x7f03030f ++int attr tabSelectedTextColor 0x7f030310 ++int attr tabStyle 0x7f030311 ++int attr tabTextAppearance 0x7f030312 ++int attr tabTextColor 0x7f030313 ++int attr tabUnboundedRipple 0x7f030314 ++int attr targetId 0x7f030315 ++int attr telltales_tailColor 0x7f030316 ++int attr telltales_tailScale 0x7f030317 ++int attr telltales_velocityMode 0x7f030318 ++int attr textAllCaps 0x7f030319 ++int attr textAppearanceBody1 0x7f03031a ++int attr textAppearanceBody2 0x7f03031b ++int attr textAppearanceButton 0x7f03031c ++int attr textAppearanceCaption 0x7f03031d ++int attr textAppearanceHeadline1 0x7f03031e ++int attr textAppearanceHeadline2 0x7f03031f ++int attr textAppearanceHeadline3 0x7f030320 ++int attr textAppearanceHeadline4 0x7f030321 ++int attr textAppearanceHeadline5 0x7f030322 ++int attr textAppearanceHeadline6 0x7f030323 ++int attr textAppearanceLargePopupMenu 0x7f030324 ++int attr textAppearanceLineHeightEnabled 0x7f030325 ++int attr textAppearanceListItem 0x7f030326 ++int attr textAppearanceListItemSecondary 0x7f030327 ++int attr textAppearanceListItemSmall 0x7f030328 ++int attr textAppearanceOverline 0x7f030329 ++int attr textAppearancePopupMenuHeader 0x7f03032a ++int attr textAppearanceSearchResultSubtitle 0x7f03032b ++int attr textAppearanceSearchResultTitle 0x7f03032c ++int attr textAppearanceSmallPopupMenu 0x7f03032d ++int attr textAppearanceSubtitle1 0x7f03032e ++int attr textAppearanceSubtitle2 0x7f03032f ++int attr textColorAlertDialogListItem 0x7f030330 ++int attr textColorSearchUrl 0x7f030331 ++int attr textEndPadding 0x7f030332 ++int attr textInputLayoutFocusedRectEnabled 0x7f030333 ++int attr textInputStyle 0x7f030334 ++int attr textLocale 0x7f030335 ++int attr textStartPadding 0x7f030336 ++int attr theme 0x7f030337 ++int attr themeLineHeight 0x7f030338 ++int attr thickness 0x7f030339 ++int attr thumbColor 0x7f03033a ++int attr thumbElevation 0x7f03033b ++int attr thumbRadius 0x7f03033c ++int attr thumbStrokeColor 0x7f03033d ++int attr thumbStrokeWidth 0x7f03033e ++int attr thumbTextPadding 0x7f03033f ++int attr thumbTint 0x7f030340 ++int attr thumbTintMode 0x7f030341 ++int attr tickColor 0x7f030342 ++int attr tickColorActive 0x7f030343 ++int attr tickColorInactive 0x7f030344 ++int attr tickMark 0x7f030345 ++int attr tickMarkTint 0x7f030346 ++int attr tickMarkTintMode 0x7f030347 ++int attr tickVisible 0x7f030348 ++int attr tint 0x7f030349 ++int attr tintMode 0x7f03034a ++int attr title 0x7f03034b ++int attr titleCentered 0x7f03034c ++int attr titleCollapseMode 0x7f03034d ++int attr titleEnabled 0x7f03034e ++int attr titleMargin 0x7f03034f ++int attr titleMarginBottom 0x7f030350 ++int attr titleMarginEnd 0x7f030351 ++int attr titleMarginStart 0x7f030352 ++int attr titleMarginTop 0x7f030353 ++int attr titleMargins 0x7f030354 ++int attr titleTextAppearance 0x7f030355 ++int attr titleTextColor 0x7f030356 ++int attr titleTextStyle 0x7f030357 ++int attr toolbarId 0x7f030358 ++int attr toolbarNavigationButtonStyle 0x7f030359 ++int attr toolbarStyle 0x7f03035a ++int attr tooltipForegroundColor 0x7f03035b ++int attr tooltipFrameBackground 0x7f03035c ++int attr tooltipStyle 0x7f03035d ++int attr tooltipText 0x7f03035e ++int attr touchAnchorId 0x7f03035f ++int attr touchAnchorSide 0x7f030360 ++int attr touchRegionId 0x7f030361 ++int attr track 0x7f030362 ++int attr trackColor 0x7f030363 ++int attr trackColorActive 0x7f030364 ++int attr trackColorInactive 0x7f030365 ++int attr trackCornerRadius 0x7f030366 ++int attr trackHeight 0x7f030367 ++int attr trackThickness 0x7f030368 ++int attr trackTint 0x7f030369 ++int attr trackTintMode 0x7f03036a ++int attr transitionDisable 0x7f03036b ++int attr transitionEasing 0x7f03036c ++int attr transitionFlags 0x7f03036d ++int attr transitionPathRotate 0x7f03036e ++int attr transitionShapeAppearance 0x7f03036f ++int attr triggerId 0x7f030370 ++int attr triggerReceiver 0x7f030371 ++int attr triggerSlack 0x7f030372 ++int attr ttcIndex 0x7f030373 ++int attr useCompatPadding 0x7f030374 ++int attr useMaterialThemeColors 0x7f030375 ++int attr values 0x7f030376 ++int attr verticalOffset 0x7f030377 ++int attr viewInflaterClass 0x7f030378 ++int attr visibilityMode 0x7f030379 ++int attr voiceIcon 0x7f03037a ++int attr warmth 0x7f03037b ++int attr waveDecay 0x7f03037c ++int attr waveOffset 0x7f03037d ++int attr wavePeriod 0x7f03037e ++int attr waveShape 0x7f03037f ++int attr waveVariesBy 0x7f030380 ++int attr windowActionBar 0x7f030381 ++int attr windowActionBarOverlay 0x7f030382 ++int attr windowActionModeOverlay 0x7f030383 ++int attr windowFixedHeightMajor 0x7f030384 ++int attr windowFixedHeightMinor 0x7f030385 ++int attr windowFixedWidthMajor 0x7f030386 ++int attr windowFixedWidthMinor 0x7f030387 ++int attr windowMinWidthMajor 0x7f030388 ++int attr windowMinWidthMinor 0x7f030389 ++int attr windowNoTitle 0x7f03038a ++int attr yearSelectedStyle 0x7f03038b ++int attr yearStyle 0x7f03038c ++int attr yearTodayStyle 0x7f03038d ++int bool abc_action_bar_embed_tabs 0x7f040000 ++int bool abc_config_actionMenuItemAllCaps 0x7f040001 ++int bool mtrl_btn_textappearance_all_caps 0x7f040002 ++int color abc_background_cache_hint_selector_material_dark 0x7f050000 ++int color abc_background_cache_hint_selector_material_light 0x7f050001 ++int color abc_btn_colored_borderless_text_material 0x7f050002 ++int color abc_btn_colored_text_material 0x7f050003 ++int color abc_color_highlight_material 0x7f050004 ++int color abc_decor_view_status_guard 0x7f050005 ++int color abc_decor_view_status_guard_light 0x7f050006 ++int color abc_hint_foreground_material_dark 0x7f050007 ++int color abc_hint_foreground_material_light 0x7f050008 ++int color abc_primary_text_disable_only_material_dark 0x7f050009 ++int color abc_primary_text_disable_only_material_light 0x7f05000a ++int color abc_primary_text_material_dark 0x7f05000b ++int color abc_primary_text_material_light 0x7f05000c ++int color abc_search_url_text 0x7f05000d ++int color abc_search_url_text_normal 0x7f05000e ++int color abc_search_url_text_pressed 0x7f05000f ++int color abc_search_url_text_selected 0x7f050010 ++int color abc_secondary_text_material_dark 0x7f050011 ++int color abc_secondary_text_material_light 0x7f050012 ++int color abc_tint_btn_checkable 0x7f050013 ++int color abc_tint_default 0x7f050014 ++int color abc_tint_edittext 0x7f050015 ++int color abc_tint_seek_thumb 0x7f050016 ++int color abc_tint_spinner 0x7f050017 ++int color abc_tint_switch_track 0x7f050018 ++int color accent_material_dark 0x7f050019 ++int color accent_material_light 0x7f05001a ++int color androidx_core_ripple_material_light 0x7f05001b ++int color androidx_core_secondary_text_default_material_light 0x7f05001c ++int color background_floating_material_dark 0x7f05001d ++int color background_floating_material_light 0x7f05001e ++int color background_material_dark 0x7f05001f ++int color background_material_light 0x7f050020 ++int color bright_foreground_disabled_material_dark 0x7f050021 ++int color bright_foreground_disabled_material_light 0x7f050022 ++int color bright_foreground_inverse_material_dark 0x7f050023 ++int color bright_foreground_inverse_material_light 0x7f050024 ++int color bright_foreground_material_dark 0x7f050025 ++int color bright_foreground_material_light 0x7f050026 ++int color button_material_dark 0x7f050027 ++int color button_material_light 0x7f050028 ++int color cardview_dark_background 0x7f050029 ++int color cardview_light_background 0x7f05002a ++int color cardview_shadow_end_color 0x7f05002b ++int color cardview_shadow_start_color 0x7f05002c ++int color checkbox_themeable_attribute_color 0x7f05002d ++int color design_bottom_navigation_shadow_color 0x7f05002e ++int color design_box_stroke_color 0x7f05002f ++int color design_dark_default_color_background 0x7f050030 ++int color design_dark_default_color_error 0x7f050031 ++int color design_dark_default_color_on_background 0x7f050032 ++int color design_dark_default_color_on_error 0x7f050033 ++int color design_dark_default_color_on_primary 0x7f050034 ++int color design_dark_default_color_on_secondary 0x7f050035 ++int color design_dark_default_color_on_surface 0x7f050036 ++int color design_dark_default_color_primary 0x7f050037 ++int color design_dark_default_color_primary_dark 0x7f050038 ++int color design_dark_default_color_primary_variant 0x7f050039 ++int color design_dark_default_color_secondary 0x7f05003a ++int color design_dark_default_color_secondary_variant 0x7f05003b ++int color design_dark_default_color_surface 0x7f05003c ++int color design_default_color_background 0x7f05003d ++int color design_default_color_error 0x7f05003e ++int color design_default_color_on_background 0x7f05003f ++int color design_default_color_on_error 0x7f050040 ++int color design_default_color_on_primary 0x7f050041 ++int color design_default_color_on_secondary 0x7f050042 ++int color design_default_color_on_surface 0x7f050043 ++int color design_default_color_primary 0x7f050044 ++int color design_default_color_primary_dark 0x7f050045 ++int color design_default_color_primary_variant 0x7f050046 ++int color design_default_color_secondary 0x7f050047 ++int color design_default_color_secondary_variant 0x7f050048 ++int color design_default_color_surface 0x7f050049 ++int color design_error 0x7f05004a ++int color design_fab_shadow_end_color 0x7f05004b ++int color design_fab_shadow_mid_color 0x7f05004c ++int color design_fab_shadow_start_color 0x7f05004d ++int color design_fab_stroke_end_inner_color 0x7f05004e ++int color design_fab_stroke_end_outer_color 0x7f05004f ++int color design_fab_stroke_top_inner_color 0x7f050050 ++int color design_fab_stroke_top_outer_color 0x7f050051 ++int color design_icon_tint 0x7f050052 ++int color design_snackbar_background_color 0x7f050053 ++int color dim_foreground_disabled_material_dark 0x7f050054 ++int color dim_foreground_disabled_material_light 0x7f050055 ++int color dim_foreground_material_dark 0x7f050056 ++int color dim_foreground_material_light 0x7f050057 ++int color error_color_material_dark 0x7f050058 ++int color error_color_material_light 0x7f050059 ++int color foreground_material_dark 0x7f05005a ++int color foreground_material_light 0x7f05005b ++int color highlighted_text_material_dark 0x7f05005c ++int color highlighted_text_material_light 0x7f05005d ++int color material_blue_grey_800 0x7f05005e ++int color material_blue_grey_900 0x7f05005f ++int color material_blue_grey_950 0x7f050060 ++int color material_cursor_color 0x7f050061 ++int color material_deep_teal_200 0x7f050062 ++int color material_deep_teal_500 0x7f050063 ++int color material_grey_100 0x7f050064 ++int color material_grey_300 0x7f050065 ++int color material_grey_50 0x7f050066 ++int color material_grey_600 0x7f050067 ++int color material_grey_800 0x7f050068 ++int color material_grey_850 0x7f050069 ++int color material_grey_900 0x7f05006a ++int color material_on_background_disabled 0x7f05006b ++int color material_on_background_emphasis_high_type 0x7f05006c ++int color material_on_background_emphasis_medium 0x7f05006d ++int color material_on_primary_disabled 0x7f05006e ++int color material_on_primary_emphasis_high_type 0x7f05006f ++int color material_on_primary_emphasis_medium 0x7f050070 ++int color material_on_surface_disabled 0x7f050071 ++int color material_on_surface_emphasis_high_type 0x7f050072 ++int color material_on_surface_emphasis_medium 0x7f050073 ++int color material_on_surface_stroke 0x7f050074 ++int color material_slider_active_tick_marks_color 0x7f050075 ++int color material_slider_active_track_color 0x7f050076 ++int color material_slider_halo_color 0x7f050077 ++int color material_slider_inactive_tick_marks_color 0x7f050078 ++int color material_slider_inactive_track_color 0x7f050079 ++int color material_slider_thumb_color 0x7f05007a ++int color material_timepicker_button_background 0x7f05007b ++int color material_timepicker_button_stroke 0x7f05007c ++int color material_timepicker_clock_text_color 0x7f05007d ++int color material_timepicker_clockface 0x7f05007e ++int color material_timepicker_modebutton_tint 0x7f05007f ++int color mtrl_btn_bg_color_selector 0x7f050080 ++int color mtrl_btn_ripple_color 0x7f050081 ++int color mtrl_btn_stroke_color_selector 0x7f050082 ++int color mtrl_btn_text_btn_bg_color_selector 0x7f050083 ++int color mtrl_btn_text_btn_ripple_color 0x7f050084 ++int color mtrl_btn_text_color_disabled 0x7f050085 ++int color mtrl_btn_text_color_selector 0x7f050086 ++int color mtrl_btn_transparent_bg_color 0x7f050087 ++int color mtrl_calendar_item_stroke_color 0x7f050088 ++int color mtrl_calendar_selected_range 0x7f050089 ++int color mtrl_card_view_foreground 0x7f05008a ++int color mtrl_card_view_ripple 0x7f05008b ++int color mtrl_chip_background_color 0x7f05008c ++int color mtrl_chip_close_icon_tint 0x7f05008d ++int color mtrl_chip_surface_color 0x7f05008e ++int color mtrl_chip_text_color 0x7f05008f ++int color mtrl_choice_chip_background_color 0x7f050090 ++int color mtrl_choice_chip_ripple_color 0x7f050091 ++int color mtrl_choice_chip_text_color 0x7f050092 ++int color mtrl_error 0x7f050093 ++int color mtrl_fab_bg_color_selector 0x7f050094 ++int color mtrl_fab_icon_text_color_selector 0x7f050095 ++int color mtrl_fab_ripple_color 0x7f050096 ++int color mtrl_filled_background_color 0x7f050097 ++int color mtrl_filled_icon_tint 0x7f050098 ++int color mtrl_filled_stroke_color 0x7f050099 ++int color mtrl_indicator_text_color 0x7f05009a ++int color mtrl_navigation_bar_colored_item_tint 0x7f05009b ++int color mtrl_navigation_bar_colored_ripple_color 0x7f05009c ++int color mtrl_navigation_bar_item_tint 0x7f05009d ++int color mtrl_navigation_bar_ripple_color 0x7f05009e ++int color mtrl_navigation_item_background_color 0x7f05009f ++int color mtrl_navigation_item_icon_tint 0x7f0500a0 ++int color mtrl_navigation_item_text_color 0x7f0500a1 ++int color mtrl_on_primary_text_btn_text_color_selector 0x7f0500a2 ++int color mtrl_on_surface_ripple_color 0x7f0500a3 ++int color mtrl_outlined_icon_tint 0x7f0500a4 ++int color mtrl_outlined_stroke_color 0x7f0500a5 ++int color mtrl_popupmenu_overlay_color 0x7f0500a6 ++int color mtrl_scrim_color 0x7f0500a7 ++int color mtrl_tabs_colored_ripple_color 0x7f0500a8 ++int color mtrl_tabs_icon_color_selector 0x7f0500a9 ++int color mtrl_tabs_icon_color_selector_colored 0x7f0500aa ++int color mtrl_tabs_legacy_text_color_selector 0x7f0500ab ++int color mtrl_tabs_ripple_color 0x7f0500ac ++int color mtrl_text_btn_text_color_selector 0x7f0500ad ++int color mtrl_textinput_default_box_stroke_color 0x7f0500ae ++int color mtrl_textinput_disabled_color 0x7f0500af ++int color mtrl_textinput_filled_box_default_background_color 0x7f0500b0 ++int color mtrl_textinput_focused_box_stroke_color 0x7f0500b1 ++int color mtrl_textinput_hovered_box_stroke_color 0x7f0500b2 ++int color notification_action_color_filter 0x7f0500b3 ++int color notification_icon_bg_color 0x7f0500b4 ++int color primary_dark_material_dark 0x7f0500b5 ++int color primary_dark_material_light 0x7f0500b6 ++int color primary_material_dark 0x7f0500b7 ++int color primary_material_light 0x7f0500b8 ++int color primary_text_default_material_dark 0x7f0500b9 ++int color primary_text_default_material_light 0x7f0500ba ++int color primary_text_disabled_material_dark 0x7f0500bb ++int color primary_text_disabled_material_light 0x7f0500bc ++int color radiobutton_themeable_attribute_color 0x7f0500bd ++int color ripple_material_dark 0x7f0500be ++int color ripple_material_light 0x7f0500bf ++int color secondary_text_default_material_dark 0x7f0500c0 ++int color secondary_text_default_material_light 0x7f0500c1 ++int color secondary_text_disabled_material_dark 0x7f0500c2 ++int color secondary_text_disabled_material_light 0x7f0500c3 ++int color switch_thumb_disabled_material_dark 0x7f0500c4 ++int color switch_thumb_disabled_material_light 0x7f0500c5 ++int color switch_thumb_material_dark 0x7f0500c6 ++int color switch_thumb_material_light 0x7f0500c7 ++int color switch_thumb_normal_material_dark 0x7f0500c8 ++int color switch_thumb_normal_material_light 0x7f0500c9 ++int color test_mtrl_calendar_day 0x7f0500ca ++int color test_mtrl_calendar_day_selected 0x7f0500cb ++int color tooltip_background_dark 0x7f0500cc ++int color tooltip_background_light 0x7f0500cd ++int dimen abc_action_bar_content_inset_material 0x7f060000 ++int dimen abc_action_bar_content_inset_with_nav 0x7f060001 ++int dimen abc_action_bar_default_height_material 0x7f060002 ++int dimen abc_action_bar_default_padding_end_material 0x7f060003 ++int dimen abc_action_bar_default_padding_start_material 0x7f060004 ++int dimen abc_action_bar_elevation_material 0x7f060005 ++int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006 ++int dimen abc_action_bar_overflow_padding_end_material 0x7f060007 ++int dimen abc_action_bar_overflow_padding_start_material 0x7f060008 ++int dimen abc_action_bar_stacked_max_height 0x7f060009 ++int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a ++int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b ++int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c ++int dimen abc_action_button_min_height_material 0x7f06000d ++int dimen abc_action_button_min_width_material 0x7f06000e ++int dimen abc_action_button_min_width_overflow_material 0x7f06000f ++int dimen abc_alert_dialog_button_bar_height 0x7f060010 ++int dimen abc_alert_dialog_button_dimen 0x7f060011 ++int dimen abc_button_inset_horizontal_material 0x7f060012 ++int dimen abc_button_inset_vertical_material 0x7f060013 ++int dimen abc_button_padding_horizontal_material 0x7f060014 ++int dimen abc_button_padding_vertical_material 0x7f060015 ++int dimen abc_cascading_menus_min_smallest_width 0x7f060016 ++int dimen abc_config_prefDialogWidth 0x7f060017 ++int dimen abc_control_corner_material 0x7f060018 ++int dimen abc_control_inset_material 0x7f060019 ++int dimen abc_control_padding_material 0x7f06001a ++int dimen abc_dialog_corner_radius_material 0x7f06001b ++int dimen abc_dialog_fixed_height_major 0x7f06001c ++int dimen abc_dialog_fixed_height_minor 0x7f06001d ++int dimen abc_dialog_fixed_width_major 0x7f06001e ++int dimen abc_dialog_fixed_width_minor 0x7f06001f ++int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020 ++int dimen abc_dialog_list_padding_top_no_title 0x7f060021 ++int dimen abc_dialog_min_width_major 0x7f060022 ++int dimen abc_dialog_min_width_minor 0x7f060023 ++int dimen abc_dialog_padding_material 0x7f060024 ++int dimen abc_dialog_padding_top_material 0x7f060025 ++int dimen abc_dialog_title_divider_material 0x7f060026 ++int dimen abc_disabled_alpha_material_dark 0x7f060027 ++int dimen abc_disabled_alpha_material_light 0x7f060028 ++int dimen abc_dropdownitem_icon_width 0x7f060029 ++int dimen abc_dropdownitem_text_padding_left 0x7f06002a ++int dimen abc_dropdownitem_text_padding_right 0x7f06002b ++int dimen abc_edit_text_inset_bottom_material 0x7f06002c ++int dimen abc_edit_text_inset_horizontal_material 0x7f06002d ++int dimen abc_edit_text_inset_top_material 0x7f06002e ++int dimen abc_floating_window_z 0x7f06002f ++int dimen abc_list_item_height_large_material 0x7f060030 ++int dimen abc_list_item_height_material 0x7f060031 ++int dimen abc_list_item_height_small_material 0x7f060032 ++int dimen abc_list_item_padding_horizontal_material 0x7f060033 ++int dimen abc_panel_menu_list_width 0x7f060034 ++int dimen abc_progress_bar_height_material 0x7f060035 ++int dimen abc_search_view_preferred_height 0x7f060036 ++int dimen abc_search_view_preferred_width 0x7f060037 ++int dimen abc_seekbar_track_background_height_material 0x7f060038 ++int dimen abc_seekbar_track_progress_height_material 0x7f060039 ++int dimen abc_select_dialog_padding_start_material 0x7f06003a ++int dimen abc_star_big 0x7f06003b ++int dimen abc_star_medium 0x7f06003c ++int dimen abc_star_small 0x7f06003d ++int dimen abc_switch_padding 0x7f06003e ++int dimen abc_text_size_body_1_material 0x7f06003f ++int dimen abc_text_size_body_2_material 0x7f060040 ++int dimen abc_text_size_button_material 0x7f060041 ++int dimen abc_text_size_caption_material 0x7f060042 ++int dimen abc_text_size_display_1_material 0x7f060043 ++int dimen abc_text_size_display_2_material 0x7f060044 ++int dimen abc_text_size_display_3_material 0x7f060045 ++int dimen abc_text_size_display_4_material 0x7f060046 ++int dimen abc_text_size_headline_material 0x7f060047 ++int dimen abc_text_size_large_material 0x7f060048 ++int dimen abc_text_size_medium_material 0x7f060049 ++int dimen abc_text_size_menu_header_material 0x7f06004a ++int dimen abc_text_size_menu_material 0x7f06004b ++int dimen abc_text_size_small_material 0x7f06004c ++int dimen abc_text_size_subhead_material 0x7f06004d ++int dimen abc_text_size_subtitle_material_toolbar 0x7f06004e ++int dimen abc_text_size_title_material 0x7f06004f ++int dimen abc_text_size_title_material_toolbar 0x7f060050 ++int dimen action_bar_size 0x7f060051 ++int dimen appcompat_dialog_background_inset 0x7f060052 ++int dimen cardview_compat_inset_shadow 0x7f060053 ++int dimen cardview_default_elevation 0x7f060054 ++int dimen cardview_default_radius 0x7f060055 ++int dimen clock_face_margin_start 0x7f060056 ++int dimen compat_button_inset_horizontal_material 0x7f060057 ++int dimen compat_button_inset_vertical_material 0x7f060058 ++int dimen compat_button_padding_horizontal_material 0x7f060059 ++int dimen compat_button_padding_vertical_material 0x7f06005a ++int dimen compat_control_corner_material 0x7f06005b ++int dimen compat_notification_large_icon_max_height 0x7f06005c ++int dimen compat_notification_large_icon_max_width 0x7f06005d ++int dimen def_drawer_elevation 0x7f06005e ++int dimen default_dimension 0x7f06005f ++int dimen design_appbar_elevation 0x7f060060 ++int dimen design_bottom_navigation_active_item_max_width 0x7f060061 ++int dimen design_bottom_navigation_active_item_min_width 0x7f060062 ++int dimen design_bottom_navigation_active_text_size 0x7f060063 ++int dimen design_bottom_navigation_elevation 0x7f060064 ++int dimen design_bottom_navigation_height 0x7f060065 ++int dimen design_bottom_navigation_icon_size 0x7f060066 ++int dimen design_bottom_navigation_item_max_width 0x7f060067 ++int dimen design_bottom_navigation_item_min_width 0x7f060068 ++int dimen design_bottom_navigation_label_padding 0x7f060069 ++int dimen design_bottom_navigation_margin 0x7f06006a ++int dimen design_bottom_navigation_shadow_height 0x7f06006b ++int dimen design_bottom_navigation_text_size 0x7f06006c ++int dimen design_bottom_sheet_elevation 0x7f06006d ++int dimen design_bottom_sheet_modal_elevation 0x7f06006e ++int dimen design_bottom_sheet_peek_height_min 0x7f06006f ++int dimen design_fab_border_width 0x7f060070 ++int dimen design_fab_elevation 0x7f060071 ++int dimen design_fab_image_size 0x7f060072 ++int dimen design_fab_size_mini 0x7f060073 ++int dimen design_fab_size_normal 0x7f060074 ++int dimen design_fab_translation_z_hovered_focused 0x7f060075 ++int dimen design_fab_translation_z_pressed 0x7f060076 ++int dimen design_navigation_elevation 0x7f060077 ++int dimen design_navigation_icon_padding 0x7f060078 ++int dimen design_navigation_icon_size 0x7f060079 ++int dimen design_navigation_item_horizontal_padding 0x7f06007a ++int dimen design_navigation_item_icon_padding 0x7f06007b ++int dimen design_navigation_max_width 0x7f06007c ++int dimen design_navigation_padding_bottom 0x7f06007d ++int dimen design_navigation_separator_vertical_padding 0x7f06007e ++int dimen design_snackbar_action_inline_max_width 0x7f06007f ++int dimen design_snackbar_action_text_color_alpha 0x7f060080 ++int dimen design_snackbar_background_corner_radius 0x7f060081 ++int dimen design_snackbar_elevation 0x7f060082 ++int dimen design_snackbar_extra_spacing_horizontal 0x7f060083 ++int dimen design_snackbar_max_width 0x7f060084 ++int dimen design_snackbar_min_width 0x7f060085 ++int dimen design_snackbar_padding_horizontal 0x7f060086 ++int dimen design_snackbar_padding_vertical 0x7f060087 ++int dimen design_snackbar_padding_vertical_2lines 0x7f060088 ++int dimen design_snackbar_text_size 0x7f060089 ++int dimen design_tab_max_width 0x7f06008a ++int dimen design_tab_scrollable_min_width 0x7f06008b ++int dimen design_tab_text_size 0x7f06008c ++int dimen design_tab_text_size_2line 0x7f06008d ++int dimen design_textinput_caption_translate_y 0x7f06008e ++int dimen disabled_alpha_material_dark 0x7f06008f ++int dimen disabled_alpha_material_light 0x7f060090 ++int dimen fastscroll_default_thickness 0x7f060091 ++int dimen fastscroll_margin 0x7f060092 ++int dimen fastscroll_minimum_range 0x7f060093 ++int dimen highlight_alpha_material_colored 0x7f060094 ++int dimen highlight_alpha_material_dark 0x7f060095 ++int dimen highlight_alpha_material_light 0x7f060096 ++int dimen hint_alpha_material_dark 0x7f060097 ++int dimen hint_alpha_material_light 0x7f060098 ++int dimen hint_pressed_alpha_material_dark 0x7f060099 ++int dimen hint_pressed_alpha_material_light 0x7f06009a ++int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f06009b ++int dimen item_touch_helper_swipe_escape_max_velocity 0x7f06009c ++int dimen item_touch_helper_swipe_escape_velocity 0x7f06009d ++int dimen material_bottom_sheet_max_width 0x7f06009e ++int dimen material_clock_display_padding 0x7f06009f ++int dimen material_clock_face_margin_top 0x7f0600a0 ++int dimen material_clock_hand_center_dot_radius 0x7f0600a1 ++int dimen material_clock_hand_padding 0x7f0600a2 ++int dimen material_clock_hand_stroke_width 0x7f0600a3 ++int dimen material_clock_number_text_size 0x7f0600a4 ++int dimen material_clock_period_toggle_height 0x7f0600a5 ++int dimen material_clock_period_toggle_margin_left 0x7f0600a6 ++int dimen material_clock_period_toggle_width 0x7f0600a7 ++int dimen material_clock_size 0x7f0600a8 ++int dimen material_cursor_inset_bottom 0x7f0600a9 ++int dimen material_cursor_inset_top 0x7f0600aa ++int dimen material_cursor_width 0x7f0600ab ++int dimen material_emphasis_disabled 0x7f0600ac ++int dimen material_emphasis_high_type 0x7f0600ad ++int dimen material_emphasis_medium 0x7f0600ae ++int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f0600af ++int dimen material_filled_edittext_font_1_3_padding_top 0x7f0600b0 ++int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f0600b1 ++int dimen material_filled_edittext_font_2_0_padding_top 0x7f0600b2 ++int dimen material_font_1_3_box_collapsed_padding_top 0x7f0600b3 ++int dimen material_font_2_0_box_collapsed_padding_top 0x7f0600b4 ++int dimen material_helper_text_default_padding_top 0x7f0600b5 ++int dimen material_helper_text_font_1_3_padding_horizontal 0x7f0600b6 ++int dimen material_helper_text_font_1_3_padding_top 0x7f0600b7 ++int dimen material_input_text_to_prefix_suffix_padding 0x7f0600b8 ++int dimen material_text_view_test_line_height 0x7f0600b9 ++int dimen material_text_view_test_line_height_override 0x7f0600ba ++int dimen material_textinput_default_width 0x7f0600bb ++int dimen material_textinput_max_width 0x7f0600bc ++int dimen material_textinput_min_width 0x7f0600bd ++int dimen material_time_picker_minimum_screen_height 0x7f0600be ++int dimen material_time_picker_minimum_screen_width 0x7f0600bf ++int dimen material_timepicker_dialog_buttons_margin_top 0x7f0600c0 ++int dimen mtrl_alert_dialog_background_inset_bottom 0x7f0600c1 ++int dimen mtrl_alert_dialog_background_inset_end 0x7f0600c2 ++int dimen mtrl_alert_dialog_background_inset_start 0x7f0600c3 ++int dimen mtrl_alert_dialog_background_inset_top 0x7f0600c4 ++int dimen mtrl_alert_dialog_picker_background_inset 0x7f0600c5 ++int dimen mtrl_badge_horizontal_edge_offset 0x7f0600c6 ++int dimen mtrl_badge_long_text_horizontal_padding 0x7f0600c7 ++int dimen mtrl_badge_radius 0x7f0600c8 ++int dimen mtrl_badge_text_horizontal_edge_offset 0x7f0600c9 ++int dimen mtrl_badge_text_size 0x7f0600ca ++int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f0600cb ++int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f0600cc ++int dimen mtrl_badge_with_text_radius 0x7f0600cd ++int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f0600ce ++int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f0600cf ++int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f0600d0 ++int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0600d1 ++int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f0600d2 ++int dimen mtrl_bottomappbar_height 0x7f0600d3 ++int dimen mtrl_btn_corner_radius 0x7f0600d4 ++int dimen mtrl_btn_dialog_btn_min_width 0x7f0600d5 ++int dimen mtrl_btn_disabled_elevation 0x7f0600d6 ++int dimen mtrl_btn_disabled_z 0x7f0600d7 ++int dimen mtrl_btn_elevation 0x7f0600d8 ++int dimen mtrl_btn_focused_z 0x7f0600d9 ++int dimen mtrl_btn_hovered_z 0x7f0600da ++int dimen mtrl_btn_icon_btn_padding_left 0x7f0600db ++int dimen mtrl_btn_icon_padding 0x7f0600dc ++int dimen mtrl_btn_inset 0x7f0600dd ++int dimen mtrl_btn_letter_spacing 0x7f0600de ++int dimen mtrl_btn_max_width 0x7f0600df ++int dimen mtrl_btn_padding_bottom 0x7f0600e0 ++int dimen mtrl_btn_padding_left 0x7f0600e1 ++int dimen mtrl_btn_padding_right 0x7f0600e2 ++int dimen mtrl_btn_padding_top 0x7f0600e3 ++int dimen mtrl_btn_pressed_z 0x7f0600e4 ++int dimen mtrl_btn_snackbar_margin_horizontal 0x7f0600e5 ++int dimen mtrl_btn_stroke_size 0x7f0600e6 ++int dimen mtrl_btn_text_btn_icon_padding 0x7f0600e7 ++int dimen mtrl_btn_text_btn_padding_left 0x7f0600e8 ++int dimen mtrl_btn_text_btn_padding_right 0x7f0600e9 ++int dimen mtrl_btn_text_size 0x7f0600ea ++int dimen mtrl_btn_z 0x7f0600eb ++int dimen mtrl_calendar_action_confirm_button_min_width 0x7f0600ec ++int dimen mtrl_calendar_action_height 0x7f0600ed ++int dimen mtrl_calendar_action_padding 0x7f0600ee ++int dimen mtrl_calendar_bottom_padding 0x7f0600ef ++int dimen mtrl_calendar_content_padding 0x7f0600f0 ++int dimen mtrl_calendar_day_corner 0x7f0600f1 ++int dimen mtrl_calendar_day_height 0x7f0600f2 ++int dimen mtrl_calendar_day_horizontal_padding 0x7f0600f3 ++int dimen mtrl_calendar_day_today_stroke 0x7f0600f4 ++int dimen mtrl_calendar_day_vertical_padding 0x7f0600f5 ++int dimen mtrl_calendar_day_width 0x7f0600f6 ++int dimen mtrl_calendar_days_of_week_height 0x7f0600f7 ++int dimen mtrl_calendar_dialog_background_inset 0x7f0600f8 ++int dimen mtrl_calendar_header_content_padding 0x7f0600f9 ++int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f0600fa ++int dimen mtrl_calendar_header_divider_thickness 0x7f0600fb ++int dimen mtrl_calendar_header_height 0x7f0600fc ++int dimen mtrl_calendar_header_height_fullscreen 0x7f0600fd ++int dimen mtrl_calendar_header_selection_line_height 0x7f0600fe ++int dimen mtrl_calendar_header_text_padding 0x7f0600ff ++int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f060100 ++int dimen mtrl_calendar_header_toggle_margin_top 0x7f060101 ++int dimen mtrl_calendar_landscape_header_width 0x7f060102 ++int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f060103 ++int dimen mtrl_calendar_month_horizontal_padding 0x7f060104 ++int dimen mtrl_calendar_month_vertical_padding 0x7f060105 ++int dimen mtrl_calendar_navigation_bottom_padding 0x7f060106 ++int dimen mtrl_calendar_navigation_height 0x7f060107 ++int dimen mtrl_calendar_navigation_top_padding 0x7f060108 ++int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f060109 ++int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f06010a ++int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f06010b ++int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f06010c ++int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f06010d ++int dimen mtrl_calendar_text_input_padding_top 0x7f06010e ++int dimen mtrl_calendar_title_baseline_to_top 0x7f06010f ++int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f060110 ++int dimen mtrl_calendar_year_corner 0x7f060111 ++int dimen mtrl_calendar_year_height 0x7f060112 ++int dimen mtrl_calendar_year_horizontal_padding 0x7f060113 ++int dimen mtrl_calendar_year_vertical_padding 0x7f060114 ++int dimen mtrl_calendar_year_width 0x7f060115 ++int dimen mtrl_card_checked_icon_margin 0x7f060116 ++int dimen mtrl_card_checked_icon_size 0x7f060117 ++int dimen mtrl_card_corner_radius 0x7f060118 ++int dimen mtrl_card_dragged_z 0x7f060119 ++int dimen mtrl_card_elevation 0x7f06011a ++int dimen mtrl_card_spacing 0x7f06011b ++int dimen mtrl_chip_pressed_translation_z 0x7f06011c ++int dimen mtrl_chip_text_size 0x7f06011d ++int dimen mtrl_edittext_rectangle_top_offset 0x7f06011e ++int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f06011f ++int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f060120 ++int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f060121 ++int dimen mtrl_extended_fab_bottom_padding 0x7f060122 ++int dimen mtrl_extended_fab_corner_radius 0x7f060123 ++int dimen mtrl_extended_fab_disabled_elevation 0x7f060124 ++int dimen mtrl_extended_fab_disabled_translation_z 0x7f060125 ++int dimen mtrl_extended_fab_elevation 0x7f060126 ++int dimen mtrl_extended_fab_end_padding 0x7f060127 ++int dimen mtrl_extended_fab_end_padding_icon 0x7f060128 ++int dimen mtrl_extended_fab_icon_size 0x7f060129 ++int dimen mtrl_extended_fab_icon_text_spacing 0x7f06012a ++int dimen mtrl_extended_fab_min_height 0x7f06012b ++int dimen mtrl_extended_fab_min_width 0x7f06012c ++int dimen mtrl_extended_fab_start_padding 0x7f06012d ++int dimen mtrl_extended_fab_start_padding_icon 0x7f06012e ++int dimen mtrl_extended_fab_top_padding 0x7f06012f ++int dimen mtrl_extended_fab_translation_z_base 0x7f060130 ++int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f060131 ++int dimen mtrl_extended_fab_translation_z_pressed 0x7f060132 ++int dimen mtrl_fab_elevation 0x7f060133 ++int dimen mtrl_fab_min_touch_target 0x7f060134 ++int dimen mtrl_fab_translation_z_hovered_focused 0x7f060135 ++int dimen mtrl_fab_translation_z_pressed 0x7f060136 ++int dimen mtrl_high_ripple_default_alpha 0x7f060137 ++int dimen mtrl_high_ripple_focused_alpha 0x7f060138 ++int dimen mtrl_high_ripple_hovered_alpha 0x7f060139 ++int dimen mtrl_high_ripple_pressed_alpha 0x7f06013a ++int dimen mtrl_large_touch_target 0x7f06013b ++int dimen mtrl_low_ripple_default_alpha 0x7f06013c ++int dimen mtrl_low_ripple_focused_alpha 0x7f06013d ++int dimen mtrl_low_ripple_hovered_alpha 0x7f06013e ++int dimen mtrl_low_ripple_pressed_alpha 0x7f06013f ++int dimen mtrl_min_touch_target_size 0x7f060140 ++int dimen mtrl_navigation_bar_item_default_icon_size 0x7f060141 ++int dimen mtrl_navigation_bar_item_default_margin 0x7f060142 ++int dimen mtrl_navigation_elevation 0x7f060143 ++int dimen mtrl_navigation_item_horizontal_padding 0x7f060144 ++int dimen mtrl_navigation_item_icon_padding 0x7f060145 ++int dimen mtrl_navigation_item_icon_size 0x7f060146 ++int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f060147 ++int dimen mtrl_navigation_item_shape_vertical_margin 0x7f060148 ++int dimen mtrl_navigation_rail_active_text_size 0x7f060149 ++int dimen mtrl_navigation_rail_compact_width 0x7f06014a ++int dimen mtrl_navigation_rail_default_width 0x7f06014b ++int dimen mtrl_navigation_rail_elevation 0x7f06014c ++int dimen mtrl_navigation_rail_icon_margin 0x7f06014d ++int dimen mtrl_navigation_rail_icon_size 0x7f06014e ++int dimen mtrl_navigation_rail_margin 0x7f06014f ++int dimen mtrl_navigation_rail_text_bottom_margin 0x7f060150 ++int dimen mtrl_navigation_rail_text_size 0x7f060151 ++int dimen mtrl_progress_circular_inset 0x7f060152 ++int dimen mtrl_progress_circular_inset_extra_small 0x7f060153 ++int dimen mtrl_progress_circular_inset_medium 0x7f060154 ++int dimen mtrl_progress_circular_inset_small 0x7f060155 ++int dimen mtrl_progress_circular_radius 0x7f060156 ++int dimen mtrl_progress_circular_size 0x7f060157 ++int dimen mtrl_progress_circular_size_extra_small 0x7f060158 ++int dimen mtrl_progress_circular_size_medium 0x7f060159 ++int dimen mtrl_progress_circular_size_small 0x7f06015a ++int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f06015b ++int dimen mtrl_progress_circular_track_thickness_medium 0x7f06015c ++int dimen mtrl_progress_circular_track_thickness_small 0x7f06015d ++int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f06015e ++int dimen mtrl_progress_track_thickness 0x7f06015f ++int dimen mtrl_shape_corner_size_large_component 0x7f060160 ++int dimen mtrl_shape_corner_size_medium_component 0x7f060161 ++int dimen mtrl_shape_corner_size_small_component 0x7f060162 ++int dimen mtrl_slider_halo_radius 0x7f060163 ++int dimen mtrl_slider_label_padding 0x7f060164 ++int dimen mtrl_slider_label_radius 0x7f060165 ++int dimen mtrl_slider_label_square_side 0x7f060166 ++int dimen mtrl_slider_thumb_elevation 0x7f060167 ++int dimen mtrl_slider_thumb_radius 0x7f060168 ++int dimen mtrl_slider_track_height 0x7f060169 ++int dimen mtrl_slider_track_side_padding 0x7f06016a ++int dimen mtrl_slider_track_top 0x7f06016b ++int dimen mtrl_slider_widget_height 0x7f06016c ++int dimen mtrl_snackbar_action_text_color_alpha 0x7f06016d ++int dimen mtrl_snackbar_background_corner_radius 0x7f06016e ++int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f06016f ++int dimen mtrl_snackbar_margin 0x7f060170 ++int dimen mtrl_snackbar_message_margin_horizontal 0x7f060171 ++int dimen mtrl_snackbar_padding_horizontal 0x7f060172 ++int dimen mtrl_switch_thumb_elevation 0x7f060173 ++int dimen mtrl_textinput_box_corner_radius_medium 0x7f060174 ++int dimen mtrl_textinput_box_corner_radius_small 0x7f060175 ++int dimen mtrl_textinput_box_label_cutout_padding 0x7f060176 ++int dimen mtrl_textinput_box_stroke_width_default 0x7f060177 ++int dimen mtrl_textinput_box_stroke_width_focused 0x7f060178 ++int dimen mtrl_textinput_counter_margin_start 0x7f060179 ++int dimen mtrl_textinput_end_icon_margin_start 0x7f06017a ++int dimen mtrl_textinput_outline_box_expanded_padding 0x7f06017b ++int dimen mtrl_textinput_start_icon_margin_end 0x7f06017c ++int dimen mtrl_toolbar_default_height 0x7f06017d ++int dimen mtrl_tooltip_arrowSize 0x7f06017e ++int dimen mtrl_tooltip_cornerSize 0x7f06017f ++int dimen mtrl_tooltip_minHeight 0x7f060180 ++int dimen mtrl_tooltip_minWidth 0x7f060181 ++int dimen mtrl_tooltip_padding 0x7f060182 ++int dimen mtrl_transition_shared_axis_slide_distance 0x7f060183 ++int dimen notification_action_icon_size 0x7f060184 ++int dimen notification_action_text_size 0x7f060185 ++int dimen notification_big_circle_margin 0x7f060186 ++int dimen notification_content_margin_start 0x7f060187 ++int dimen notification_large_icon_height 0x7f060188 ++int dimen notification_large_icon_width 0x7f060189 ++int dimen notification_main_column_padding_top 0x7f06018a ++int dimen notification_media_narrow_margin 0x7f06018b ++int dimen notification_right_icon_size 0x7f06018c ++int dimen notification_right_side_padding_top 0x7f06018d ++int dimen notification_small_icon_background_padding 0x7f06018e ++int dimen notification_small_icon_size_as_large 0x7f06018f ++int dimen notification_subtext_size 0x7f060190 ++int dimen notification_top_pad 0x7f060191 ++int dimen notification_top_pad_large_text 0x7f060192 ++int dimen test_mtrl_calendar_day_cornerSize 0x7f060193 ++int dimen test_navigation_bar_active_item_max_width 0x7f060194 ++int dimen test_navigation_bar_active_item_min_width 0x7f060195 ++int dimen test_navigation_bar_active_text_size 0x7f060196 ++int dimen test_navigation_bar_elevation 0x7f060197 ++int dimen test_navigation_bar_height 0x7f060198 ++int dimen test_navigation_bar_icon_size 0x7f060199 ++int dimen test_navigation_bar_item_max_width 0x7f06019a ++int dimen test_navigation_bar_item_min_width 0x7f06019b ++int dimen test_navigation_bar_label_padding 0x7f06019c ++int dimen test_navigation_bar_shadow_height 0x7f06019d ++int dimen test_navigation_bar_text_size 0x7f06019e ++int dimen tooltip_corner_radius 0x7f06019f ++int dimen tooltip_horizontal_padding 0x7f0601a0 ++int dimen tooltip_margin 0x7f0601a1 ++int dimen tooltip_precise_anchor_extra_offset 0x7f0601a2 ++int dimen tooltip_precise_anchor_threshold 0x7f0601a3 ++int dimen tooltip_vertical_padding 0x7f0601a4 ++int dimen tooltip_y_offset_non_touch 0x7f0601a5 ++int dimen tooltip_y_offset_touch 0x7f0601a6 ++int drawable abc_ab_share_pack_mtrl_alpha 0x7f070006 ++int drawable abc_action_bar_item_background_material 0x7f070007 ++int drawable abc_btn_borderless_material 0x7f070008 ++int drawable abc_btn_check_material 0x7f070009 ++int drawable abc_btn_check_material_anim 0x7f07000a ++int drawable abc_btn_check_to_on_mtrl_000 0x7f07000b ++int drawable abc_btn_check_to_on_mtrl_015 0x7f07000c ++int drawable abc_btn_colored_material 0x7f07000d ++int drawable abc_btn_default_mtrl_shape 0x7f07000e ++int drawable abc_btn_radio_material 0x7f07000f ++int drawable abc_btn_radio_material_anim 0x7f070010 ++int drawable abc_btn_radio_to_on_mtrl_000 0x7f070011 ++int drawable abc_btn_radio_to_on_mtrl_015 0x7f070012 ++int drawable abc_btn_switch_to_on_mtrl_00001 0x7f070013 ++int drawable abc_btn_switch_to_on_mtrl_00012 0x7f070014 ++int drawable abc_cab_background_internal_bg 0x7f070015 ++int drawable abc_cab_background_top_material 0x7f070016 ++int drawable abc_cab_background_top_mtrl_alpha 0x7f070017 ++int drawable abc_control_background_material 0x7f070018 ++int drawable abc_dialog_material_background 0x7f070019 ++int drawable abc_edit_text_material 0x7f07001a ++int drawable abc_ic_ab_back_material 0x7f07001b ++int drawable abc_ic_arrow_drop_right_black_24dp 0x7f07001c ++int drawable abc_ic_clear_material 0x7f07001d ++int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f07001e ++int drawable abc_ic_go_search_api_material 0x7f07001f ++int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f070020 ++int drawable abc_ic_menu_cut_mtrl_alpha 0x7f070021 ++int drawable abc_ic_menu_overflow_material 0x7f070022 ++int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f070023 ++int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f070024 ++int drawable abc_ic_menu_share_mtrl_alpha 0x7f070025 ++int drawable abc_ic_search_api_material 0x7f070026 ++int drawable abc_ic_voice_search_api_material 0x7f070027 ++int drawable abc_item_background_holo_dark 0x7f070028 ++int drawable abc_item_background_holo_light 0x7f070029 ++int drawable abc_list_divider_material 0x7f07002a ++int drawable abc_list_divider_mtrl_alpha 0x7f07002b ++int drawable abc_list_focused_holo 0x7f07002c ++int drawable abc_list_longpressed_holo 0x7f07002d ++int drawable abc_list_pressed_holo_dark 0x7f07002e ++int drawable abc_list_pressed_holo_light 0x7f07002f ++int drawable abc_list_selector_background_transition_holo_dark 0x7f070030 ++int drawable abc_list_selector_background_transition_holo_light 0x7f070031 ++int drawable abc_list_selector_disabled_holo_dark 0x7f070032 ++int drawable abc_list_selector_disabled_holo_light 0x7f070033 ++int drawable abc_list_selector_holo_dark 0x7f070034 ++int drawable abc_list_selector_holo_light 0x7f070035 ++int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f070036 ++int drawable abc_popup_background_mtrl_mult 0x7f070037 ++int drawable abc_ratingbar_indicator_material 0x7f070038 ++int drawable abc_ratingbar_material 0x7f070039 ++int drawable abc_ratingbar_small_material 0x7f07003a ++int drawable abc_scrubber_control_off_mtrl_alpha 0x7f07003b ++int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f07003c ++int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f07003d ++int drawable abc_scrubber_primary_mtrl_alpha 0x7f07003e ++int drawable abc_scrubber_track_mtrl_alpha 0x7f07003f ++int drawable abc_seekbar_thumb_material 0x7f070040 ++int drawable abc_seekbar_tick_mark_material 0x7f070041 ++int drawable abc_seekbar_track_material 0x7f070042 ++int drawable abc_spinner_mtrl_am_alpha 0x7f070043 ++int drawable abc_spinner_textfield_background_material 0x7f070044 ++int drawable abc_star_black_48dp 0x7f070045 ++int drawable abc_star_half_black_48dp 0x7f070046 ++int drawable abc_switch_thumb_material 0x7f070047 ++int drawable abc_switch_track_mtrl_alpha 0x7f070048 ++int drawable abc_tab_indicator_material 0x7f070049 ++int drawable abc_tab_indicator_mtrl_alpha 0x7f07004a ++int drawable abc_text_cursor_material 0x7f07004b ++int drawable abc_text_select_handle_left_mtrl 0x7f07004c ++int drawable abc_text_select_handle_middle_mtrl 0x7f07004d ++int drawable abc_text_select_handle_right_mtrl 0x7f07004e ++int drawable abc_textfield_activated_mtrl_alpha 0x7f07004f ++int drawable abc_textfield_default_mtrl_alpha 0x7f070050 ++int drawable abc_textfield_search_activated_mtrl_alpha 0x7f070051 ++int drawable abc_textfield_search_default_mtrl_alpha 0x7f070052 ++int drawable abc_textfield_search_material 0x7f070053 ++int drawable abc_vector_test 0x7f070054 ++int drawable avd_hide_password 0x7f070055 ++int drawable avd_show_password 0x7f070056 ++int drawable btn_checkbox_checked_mtrl 0x7f070057 ++int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f070058 ++int drawable btn_checkbox_unchecked_mtrl 0x7f070059 ++int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f07005a ++int drawable btn_radio_off_mtrl 0x7f07005b ++int drawable btn_radio_off_to_on_mtrl_animation 0x7f07005c ++int drawable btn_radio_on_mtrl 0x7f07005d ++int drawable btn_radio_on_to_off_mtrl_animation 0x7f07005e ++int drawable design_fab_background 0x7f07005f ++int drawable design_ic_visibility 0x7f070060 ++int drawable design_ic_visibility_off 0x7f070061 ++int drawable design_password_eye 0x7f070062 ++int drawable design_snackbar_background 0x7f070063 ++int drawable ic_clock_black_24dp 0x7f070064 ++int drawable ic_keyboard_black_24dp 0x7f070065 ++int drawable ic_mtrl_checked_circle 0x7f070066 ++int drawable ic_mtrl_chip_checked_black 0x7f070067 ++int drawable ic_mtrl_chip_checked_circle 0x7f070068 ++int drawable ic_mtrl_chip_close_circle 0x7f070069 ++int drawable material_cursor_drawable 0x7f07006a ++int drawable material_ic_calendar_black_24dp 0x7f07006b ++int drawable material_ic_clear_black_24dp 0x7f07006c ++int drawable material_ic_edit_black_24dp 0x7f07006d ++int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f07006e ++int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f07006f ++int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f070070 ++int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f070071 ++int drawable material_ic_menu_arrow_down_black_24dp 0x7f070072 ++int drawable material_ic_menu_arrow_up_black_24dp 0x7f070073 ++int drawable mtrl_dialog_background 0x7f070074 ++int drawable mtrl_dropdown_arrow 0x7f070075 ++int drawable mtrl_ic_arrow_drop_down 0x7f070076 ++int drawable mtrl_ic_arrow_drop_up 0x7f070077 ++int drawable mtrl_ic_cancel 0x7f070078 ++int drawable mtrl_ic_error 0x7f070079 ++int drawable mtrl_navigation_bar_item_background 0x7f07007a ++int drawable mtrl_popupmenu_background 0x7f07007b ++int drawable mtrl_popupmenu_background_dark 0x7f07007c ++int drawable mtrl_tabs_default_indicator 0x7f07007d ++int drawable navigation_empty_icon 0x7f07007e ++int drawable notification_action_background 0x7f07007f ++int drawable notification_bg 0x7f070080 ++int drawable notification_bg_low 0x7f070081 ++int drawable notification_bg_low_normal 0x7f070082 ++int drawable notification_bg_low_pressed 0x7f070083 ++int drawable notification_bg_normal 0x7f070084 ++int drawable notification_bg_normal_pressed 0x7f070085 ++int drawable notification_icon_background 0x7f070086 ++int drawable notification_template_icon_bg 0x7f070087 ++int drawable notification_template_icon_low_bg 0x7f070088 ++int drawable notification_tile_bg 0x7f070089 ++int drawable notify_panel_notification_icon_bg 0x7f07008a ++int drawable test_custom_background 0x7f07008b ++int drawable tooltip_frame_dark 0x7f07008c ++int drawable tooltip_frame_light 0x7f07008d ++int id ALT 0x7f080000 ++int id BOTTOM_END 0x7f080001 ++int id BOTTOM_START 0x7f080002 ++int id CTRL 0x7f080003 ++int id FUNCTION 0x7f080004 ++int id META 0x7f080005 ++int id NO_DEBUG 0x7f080006 ++int id SHIFT 0x7f080007 ++int id SHOW_ALL 0x7f080008 ++int id SHOW_PATH 0x7f080009 ++int id SHOW_PROGRESS 0x7f08000a ++int id SYM 0x7f08000b ++int id TOP_END 0x7f08000c ++int id TOP_START 0x7f08000d ++int id accelerate 0x7f08000e ++int id accessibility_action_clickable_span 0x7f08000f ++int id accessibility_custom_action_0 0x7f080010 ++int id accessibility_custom_action_1 0x7f080011 ++int id accessibility_custom_action_10 0x7f080012 ++int id accessibility_custom_action_11 0x7f080013 ++int id accessibility_custom_action_12 0x7f080014 ++int id accessibility_custom_action_13 0x7f080015 ++int id accessibility_custom_action_14 0x7f080016 ++int id accessibility_custom_action_15 0x7f080017 ++int id accessibility_custom_action_16 0x7f080018 ++int id accessibility_custom_action_17 0x7f080019 ++int id accessibility_custom_action_18 0x7f08001a ++int id accessibility_custom_action_19 0x7f08001b ++int id accessibility_custom_action_2 0x7f08001c ++int id accessibility_custom_action_20 0x7f08001d ++int id accessibility_custom_action_21 0x7f08001e ++int id accessibility_custom_action_22 0x7f08001f ++int id accessibility_custom_action_23 0x7f080020 ++int id accessibility_custom_action_24 0x7f080021 ++int id accessibility_custom_action_25 0x7f080022 ++int id accessibility_custom_action_26 0x7f080023 ++int id accessibility_custom_action_27 0x7f080024 ++int id accessibility_custom_action_28 0x7f080025 ++int id accessibility_custom_action_29 0x7f080026 ++int id accessibility_custom_action_3 0x7f080027 ++int id accessibility_custom_action_30 0x7f080028 ++int id accessibility_custom_action_31 0x7f080029 ++int id accessibility_custom_action_4 0x7f08002a ++int id accessibility_custom_action_5 0x7f08002b ++int id accessibility_custom_action_6 0x7f08002c ++int id accessibility_custom_action_7 0x7f08002d ++int id accessibility_custom_action_8 0x7f08002e ++int id accessibility_custom_action_9 0x7f08002f ++int id action_bar 0x7f080030 ++int id action_bar_activity_content 0x7f080031 ++int id action_bar_container 0x7f080032 ++int id action_bar_root 0x7f080033 ++int id action_bar_spinner 0x7f080034 ++int id action_bar_subtitle 0x7f080035 ++int id action_bar_title 0x7f080036 ++int id action_container 0x7f080037 ++int id action_context_bar 0x7f080038 ++int id action_divider 0x7f080039 ++int id action_image 0x7f08003a ++int id action_menu_divider 0x7f08003b ++int id action_menu_presenter 0x7f08003c ++int id action_mode_bar 0x7f08003d ++int id action_mode_bar_stub 0x7f08003e ++int id action_mode_close_button 0x7f08003f ++int id action_text 0x7f080040 ++int id actions 0x7f080041 ++int id activity_chooser_view_content 0x7f080042 ++int id add 0x7f080043 ++int id alertTitle 0x7f080044 ++int id aligned 0x7f080045 ++int id all 0x7f080046 ++int id always 0x7f080047 ++int id androidx_test_espresso_contrib_drawer_layout_tag 0x7f080048 ++int id animateToEnd 0x7f080049 ++int id animateToStart 0x7f08004a ++int id arc 0x7f08004b ++int id asConfigured 0x7f08004c ++int id async 0x7f08004d ++int id auto 0x7f08004e ++int id autoComplete 0x7f08004f ++int id autoCompleteToEnd 0x7f080050 ++int id autoCompleteToStart 0x7f080051 ++int id barrier 0x7f080052 ++int id baseline 0x7f080053 ++int id beginOnFirstDraw 0x7f080054 ++int id beginning 0x7f080055 ++int id blocking 0x7f080056 ++int id bottom 0x7f080057 ++int id bounce 0x7f080058 ++int id buttonPanel 0x7f080059 ++int id cancel_button 0x7f08005a ++int id center 0x7f08005b ++int id center_horizontal 0x7f08005c ++int id center_vertical 0x7f08005d ++int id chain 0x7f08005e ++int id chains 0x7f08005f ++int id checkbox 0x7f080060 ++int id checked 0x7f080061 ++int id chip 0x7f080062 ++int id chip1 0x7f080063 ++int id chip2 0x7f080064 ++int id chip3 0x7f080065 ++int id chip_group 0x7f080066 ++int id chronometer 0x7f080067 ++int id circle_center 0x7f080068 ++int id clear_text 0x7f080069 ++int id clip_horizontal 0x7f08006a ++int id clip_vertical 0x7f08006b ++int id clockwise 0x7f08006c ++int id collapseActionView 0x7f08006d ++int id confirm_button 0x7f08006e ++int id container 0x7f08006f ++int id content 0x7f080070 ++int id contentPanel 0x7f080071 ++int id contiguous 0x7f080072 ++int id coordinator 0x7f080073 ++int id cos 0x7f080074 ++int id counterclockwise 0x7f080075 ++int id custom 0x7f080076 ++int id customPanel 0x7f080077 ++int id cut 0x7f080078 ++int id date_picker_actions 0x7f080079 ++int id decelerate 0x7f08007a ++int id decelerateAndComplete 0x7f08007b ++int id decor_content_parent 0x7f08007c ++int id default_activity_button 0x7f08007d ++int id deltaRelative 0x7f08007e ++int id design_bottom_sheet 0x7f08007f ++int id design_menu_item_action_area 0x7f080080 ++int id design_menu_item_action_area_stub 0x7f080081 ++int id design_menu_item_text 0x7f080082 ++int id design_navigation_view 0x7f080083 ++int id dialog_button 0x7f080084 ++int id dimensions 0x7f080085 ++int id direct 0x7f080086 ++int id disableHome 0x7f080087 ++int id disablePostScroll 0x7f080088 ++int id disableScroll 0x7f080089 ++int id disjoint 0x7f08008a ++int id dragDown 0x7f08008b ++int id dragEnd 0x7f08008c ++int id dragLeft 0x7f08008d ++int id dragRight 0x7f08008e ++int id dragStart 0x7f08008f ++int id dragUp 0x7f080090 ++int id dropdown_menu 0x7f080091 ++int id easeIn 0x7f080092 ++int id easeInOut 0x7f080093 ++int id easeOut 0x7f080094 ++int id edit_query 0x7f080095 ++int id elastic 0x7f080096 ++int id end 0x7f080097 ++int id endToStart 0x7f080098 ++int id enterAlways 0x7f080099 ++int id enterAlwaysCollapsed 0x7f08009a ++int id exitUntilCollapsed 0x7f08009b ++int id expand_activities_button 0x7f08009c ++int id expanded_menu 0x7f08009d ++int id fade 0x7f08009e ++int id fill 0x7f08009f ++int id fill_horizontal 0x7f0800a0 ++int id fill_vertical 0x7f0800a1 ++int id filled 0x7f0800a2 ++int id fitToContents 0x7f0800a3 ++int id fixed 0x7f0800a4 ++int id flip 0x7f0800a5 ++int id floating 0x7f0800a6 ++int id forever 0x7f0800a7 ++int id fragment_container_view_tag 0x7f0800a8 ++int id ghost_view 0x7f0800a9 ++int id ghost_view_holder 0x7f0800aa ++int id gone 0x7f0800ab ++int id graph 0x7f0800ac ++int id graph_wrap 0x7f0800ad ++int id group_divider 0x7f0800ae ++int id groups 0x7f0800af ++int id guideline 0x7f0800b0 ++int id header_title 0x7f0800b1 ++int id hideable 0x7f0800b2 ++int id home 0x7f0800b3 ++int id homeAsUp 0x7f0800b4 ++int id honorRequest 0x7f0800b5 ++int id icon 0x7f0800b6 ++int id icon_group 0x7f0800b7 ++int id ifRoom 0x7f0800b8 ++int id ignore 0x7f0800b9 ++int id ignoreRequest 0x7f0800ba ++int id image 0x7f0800bb ++int id info 0x7f0800bc ++int id invisible 0x7f0800bd ++int id inward 0x7f0800be ++int id italic 0x7f0800bf ++int id item_touch_helper_previous_elevation 0x7f0800c0 ++int id jumpToEnd 0x7f0800c1 ++int id jumpToStart 0x7f0800c2 ++int id labeled 0x7f0800c3 ++int id layout 0x7f0800c4 ++int id left 0x7f0800c5 ++int id leftToRight 0x7f0800c6 ++int id line1 0x7f0800c7 ++int id line3 0x7f0800c8 ++int id linear 0x7f0800c9 ++int id listMode 0x7f0800ca ++int id list_item 0x7f0800cb ++int id masked 0x7f0800cc ++int id material_clock_display 0x7f0800cd ++int id material_clock_face 0x7f0800ce ++int id material_clock_hand 0x7f0800cf ++int id material_clock_period_am_button 0x7f0800d0 ++int id material_clock_period_pm_button 0x7f0800d1 ++int id material_clock_period_toggle 0x7f0800d2 ++int id material_hour_text_input 0x7f0800d3 ++int id material_hour_tv 0x7f0800d4 ++int id material_label 0x7f0800d5 ++int id material_minute_text_input 0x7f0800d6 ++int id material_minute_tv 0x7f0800d7 ++int id material_textinput_timepicker 0x7f0800d8 ++int id material_timepicker_cancel_button 0x7f0800d9 ++int id material_timepicker_container 0x7f0800da ++int id material_timepicker_edit_text 0x7f0800db ++int id material_timepicker_mode_button 0x7f0800dc ++int id material_timepicker_ok_button 0x7f0800dd ++int id material_timepicker_view 0x7f0800de ++int id material_value_index 0x7f0800df ++int id message 0x7f0800e0 ++int id middle 0x7f0800e1 ++int id mini 0x7f0800e2 ++int id month_grid 0x7f0800e3 ++int id month_navigation_bar 0x7f0800e4 ++int id month_navigation_fragment_toggle 0x7f0800e5 ++int id month_navigation_next 0x7f0800e6 ++int id month_navigation_previous 0x7f0800e7 ++int id month_title 0x7f0800e8 ++int id motion_base 0x7f0800e9 ++int id mtrl_anchor_parent 0x7f0800ea ++int id mtrl_calendar_day_selector_frame 0x7f0800eb ++int id mtrl_calendar_days_of_week 0x7f0800ec ++int id mtrl_calendar_frame 0x7f0800ed ++int id mtrl_calendar_main_pane 0x7f0800ee ++int id mtrl_calendar_months 0x7f0800ef ++int id mtrl_calendar_selection_frame 0x7f0800f0 ++int id mtrl_calendar_text_input_frame 0x7f0800f1 ++int id mtrl_calendar_year_selector_frame 0x7f0800f2 ++int id mtrl_card_checked_layer_id 0x7f0800f3 ++int id mtrl_child_content_container 0x7f0800f4 ++int id mtrl_internal_children_alpha_tag 0x7f0800f5 ++int id mtrl_motion_snapshot_view 0x7f0800f6 ++int id mtrl_picker_fullscreen 0x7f0800f7 ++int id mtrl_picker_header 0x7f0800f8 ++int id mtrl_picker_header_selection_text 0x7f0800f9 ++int id mtrl_picker_header_title_and_selection 0x7f0800fa ++int id mtrl_picker_header_toggle 0x7f0800fb ++int id mtrl_picker_text_input_date 0x7f0800fc ++int id mtrl_picker_text_input_range_end 0x7f0800fd ++int id mtrl_picker_text_input_range_start 0x7f0800fe ++int id mtrl_picker_title_text 0x7f0800ff ++int id mtrl_view_tag_bottom_padding 0x7f080100 ++int id multiply 0x7f080101 ++int id navigation_bar_item_icon_view 0x7f080102 ++int id navigation_bar_item_labels_group 0x7f080103 ++int id navigation_bar_item_large_label_view 0x7f080104 ++int id navigation_bar_item_small_label_view 0x7f080105 ++int id navigation_header_container 0x7f080106 ++int id never 0x7f080107 ++int id noScroll 0x7f080108 ++int id none 0x7f080109 ++int id normal 0x7f08010a ++int id notification_background 0x7f08010b ++int id notification_main_column 0x7f08010c ++int id notification_main_column_container 0x7f08010d ++int id off 0x7f08010e ++int id on 0x7f08010f ++int id outline 0x7f080110 ++int id outward 0x7f080111 ++int id packed 0x7f080112 ++int id parallax 0x7f080113 ++int id parent 0x7f080114 ++int id parentPanel 0x7f080115 ++int id parentRelative 0x7f080116 ++int id parent_matrix 0x7f080117 ++int id password_toggle 0x7f080118 ++int id path 0x7f080119 ++int id pathRelative 0x7f08011a ++int id peekHeight 0x7f08011b ++int id percent 0x7f08011c ++int id pin 0x7f08011d ++int id position 0x7f08011e ++int id postLayout 0x7f08011f ++int id progress_circular 0x7f080120 ++int id progress_horizontal 0x7f080121 ++int id radio 0x7f080122 ++int id ratio 0x7f080123 ++int id rectangles 0x7f080124 ++int id reverseSawtooth 0x7f080125 ++int id right 0x7f080126 ++int id rightToLeft 0x7f080127 ++int id right_icon 0x7f080128 ++int id right_side 0x7f080129 ++int id rounded 0x7f08012a ++int id row_index_key 0x7f08012b ++int id save_non_transition_alpha 0x7f08012c ++int id save_overlay_view 0x7f08012d ++int id sawtooth 0x7f08012e ++int id scale 0x7f08012f ++int id screen 0x7f080130 ++int id scroll 0x7f080131 ++int id scrollIndicatorDown 0x7f080132 ++int id scrollIndicatorUp 0x7f080133 ++int id scrollView 0x7f080134 ++int id scrollable 0x7f080135 ++int id search_badge 0x7f080136 ++int id search_bar 0x7f080137 ++int id search_button 0x7f080138 ++int id search_close_btn 0x7f080139 ++int id search_edit_frame 0x7f08013a ++int id search_go_btn 0x7f08013b ++int id search_mag_icon 0x7f08013c ++int id search_plate 0x7f08013d ++int id search_src_text 0x7f08013e ++int id search_voice_btn 0x7f08013f ++int id select_dialog_listview 0x7f080140 ++int id selected 0x7f080141 ++int id selection_type 0x7f080142 ++int id shortcut 0x7f080143 ++int id showCustom 0x7f080144 ++int id showHome 0x7f080145 ++int id showTitle 0x7f080146 ++int id sin 0x7f080147 ++int id skipCollapsed 0x7f080148 ++int id slide 0x7f080149 ++int id snackbar_action 0x7f08014a ++int id snackbar_text 0x7f08014b ++int id snap 0x7f08014c ++int id snapMargins 0x7f08014d ++int id spacer 0x7f08014e ++int id special_effects_controller_view_tag 0x7f08014f ++int id spline 0x7f080150 ++int id split_action_bar 0x7f080151 ++int id spread 0x7f080152 ++int id spread_inside 0x7f080153 ++int id square 0x7f080154 ++int id src_atop 0x7f080155 ++int id src_in 0x7f080156 ++int id src_over 0x7f080157 ++int id standard 0x7f080158 ++int id start 0x7f080159 ++int id startHorizontal 0x7f08015a ++int id startToEnd 0x7f08015b ++int id startVertical 0x7f08015c ++int id staticLayout 0x7f08015d ++int id staticPostLayout 0x7f08015e ++int id stop 0x7f08015f ++int id stretch 0x7f080160 ++int id submenuarrow 0x7f080161 ++int id submit_area 0x7f080162 ++int id tabMode 0x7f080163 ++int id tag_accessibility_actions 0x7f080164 ++int id tag_accessibility_clickable_spans 0x7f080165 ++int id tag_accessibility_heading 0x7f080166 ++int id tag_accessibility_pane_title 0x7f080167 ++int id tag_on_apply_window_listener 0x7f080168 ++int id tag_on_receive_content_listener 0x7f080169 ++int id tag_on_receive_content_mime_types 0x7f08016a ++int id tag_screen_reader_focusable 0x7f08016b ++int id tag_state_description 0x7f08016c ++int id tag_transition_group 0x7f08016d ++int id tag_unhandled_key_event_manager 0x7f08016e ++int id tag_unhandled_key_listeners 0x7f08016f ++int id tag_window_insets_animation_callback 0x7f080170 ++int id test_checkbox_android_button_tint 0x7f080171 ++int id test_checkbox_app_button_tint 0x7f080172 ++int id test_radiobutton_android_button_tint 0x7f080173 ++int id test_radiobutton_app_button_tint 0x7f080174 ++int id text 0x7f080175 ++int id text2 0x7f080176 ++int id textEnd 0x7f080177 ++int id textSpacerNoButtons 0x7f080178 ++int id textSpacerNoTitle 0x7f080179 ++int id textStart 0x7f08017a ++int id textTop 0x7f08017b ++int id text_input_end_icon 0x7f08017c ++int id text_input_error_icon 0x7f08017d ++int id text_input_start_icon 0x7f08017e ++int id textinput_counter 0x7f08017f ++int id textinput_error 0x7f080180 ++int id textinput_helper_text 0x7f080181 ++int id textinput_placeholder 0x7f080182 ++int id textinput_prefix_text 0x7f080183 ++int id textinput_suffix_text 0x7f080184 ++int id time 0x7f080185 ++int id title 0x7f080186 ++int id titleDividerNoCustom 0x7f080187 ++int id title_template 0x7f080188 ++int id toggle 0x7f080189 ++int id top 0x7f08018a ++int id topPanel 0x7f08018b ++int id touch_outside 0x7f08018c ++int id transitionToEnd 0x7f08018d ++int id transitionToStart 0x7f08018e ++int id transition_current_scene 0x7f08018f ++int id transition_layout_save 0x7f080190 ++int id transition_position 0x7f080191 ++int id transition_scene_layoutid_cache 0x7f080192 ++int id transition_transform 0x7f080193 ++int id triangle 0x7f080194 ++int id unchecked 0x7f080195 ++int id uniform 0x7f080196 ++int id unlabeled 0x7f080197 ++int id up 0x7f080198 ++int id useLogo 0x7f080199 ++int id view_offset_helper 0x7f08019a ++int id view_tree_lifecycle_owner 0x7f08019b ++int id view_tree_saved_state_registry_owner 0x7f08019c ++int id view_tree_view_model_store_owner 0x7f08019d ++int id visible 0x7f08019e ++int id visible_removing_fragment_view_tag 0x7f08019f ++int id withText 0x7f0801a0 ++int id withinBounds 0x7f0801a1 ++int id wrap 0x7f0801a2 ++int id wrap_content 0x7f0801a3 ++int id zero_corner_chip 0x7f0801a4 ++int integer abc_config_activityDefaultDur 0x7f090000 ++int integer abc_config_activityShortDur 0x7f090001 ++int integer app_bar_elevation_anim_duration 0x7f090002 ++int integer bottom_sheet_slide_duration 0x7f090003 ++int integer cancel_button_image_alpha 0x7f090004 ++int integer config_tooltipAnimTime 0x7f090005 ++int integer design_snackbar_text_max_lines 0x7f090006 ++int integer design_tab_indicator_anim_duration_ms 0x7f090007 ++int integer hide_password_duration 0x7f090008 ++int integer material_motion_duration_long_1 0x7f090009 ++int integer material_motion_duration_long_2 0x7f09000a ++int integer material_motion_duration_medium_1 0x7f09000b ++int integer material_motion_duration_medium_2 0x7f09000c ++int integer material_motion_duration_short_1 0x7f09000d ++int integer material_motion_duration_short_2 0x7f09000e ++int integer material_motion_path 0x7f09000f ++int integer mtrl_badge_max_character_count 0x7f090010 ++int integer mtrl_btn_anim_delay_ms 0x7f090011 ++int integer mtrl_btn_anim_duration_ms 0x7f090012 ++int integer mtrl_calendar_header_orientation 0x7f090013 ++int integer mtrl_calendar_selection_text_lines 0x7f090014 ++int integer mtrl_calendar_year_selector_span 0x7f090015 ++int integer mtrl_card_anim_delay_ms 0x7f090016 ++int integer mtrl_card_anim_duration_ms 0x7f090017 ++int integer mtrl_chip_anim_duration 0x7f090018 ++int integer mtrl_tab_indicator_anim_duration_ms 0x7f090019 ++int integer show_password_duration 0x7f09001a ++int integer status_bar_notification_info_maxnum 0x7f09001b ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0a0000 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0a0001 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0a0002 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0a0003 ++int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0a0004 ++int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0a0005 ++int interpolator fast_out_slow_in 0x7f0a0006 ++int interpolator mtrl_fast_out_linear_in 0x7f0a0007 ++int interpolator mtrl_fast_out_slow_in 0x7f0a0008 ++int interpolator mtrl_linear 0x7f0a0009 ++int interpolator mtrl_linear_out_slow_in 0x7f0a000a ++int layout abc_action_bar_title_item 0x7f0b0000 ++int layout abc_action_bar_up_container 0x7f0b0001 ++int layout abc_action_menu_item_layout 0x7f0b0002 ++int layout abc_action_menu_layout 0x7f0b0003 ++int layout abc_action_mode_bar 0x7f0b0004 ++int layout abc_action_mode_close_item_material 0x7f0b0005 ++int layout abc_activity_chooser_view 0x7f0b0006 ++int layout abc_activity_chooser_view_list_item 0x7f0b0007 ++int layout abc_alert_dialog_button_bar_material 0x7f0b0008 ++int layout abc_alert_dialog_material 0x7f0b0009 ++int layout abc_alert_dialog_title_material 0x7f0b000a ++int layout abc_cascading_menu_item_layout 0x7f0b000b ++int layout abc_dialog_title_material 0x7f0b000c ++int layout abc_expanded_menu_layout 0x7f0b000d ++int layout abc_list_menu_item_checkbox 0x7f0b000e ++int layout abc_list_menu_item_icon 0x7f0b000f ++int layout abc_list_menu_item_layout 0x7f0b0010 ++int layout abc_list_menu_item_radio 0x7f0b0011 ++int layout abc_popup_menu_header_item_layout 0x7f0b0012 ++int layout abc_popup_menu_item_layout 0x7f0b0013 ++int layout abc_screen_content_include 0x7f0b0014 ++int layout abc_screen_simple 0x7f0b0015 ++int layout abc_screen_simple_overlay_action_mode 0x7f0b0016 ++int layout abc_screen_toolbar 0x7f0b0017 ++int layout abc_search_dropdown_item_icons_2line 0x7f0b0018 ++int layout abc_search_view 0x7f0b0019 ++int layout abc_select_dialog_material 0x7f0b001a ++int layout abc_tooltip 0x7f0b001b ++int layout custom_dialog 0x7f0b001c ++int layout design_bottom_navigation_item 0x7f0b001d ++int layout design_bottom_sheet_dialog 0x7f0b001e ++int layout design_layout_snackbar 0x7f0b001f ++int layout design_layout_snackbar_include 0x7f0b0020 ++int layout design_layout_tab_icon 0x7f0b0021 ++int layout design_layout_tab_text 0x7f0b0022 ++int layout design_menu_item_action_area 0x7f0b0023 ++int layout design_navigation_item 0x7f0b0024 ++int layout design_navigation_item_header 0x7f0b0025 ++int layout design_navigation_item_separator 0x7f0b0026 ++int layout design_navigation_item_subheader 0x7f0b0027 ++int layout design_navigation_menu 0x7f0b0028 ++int layout design_navigation_menu_item 0x7f0b0029 ++int layout design_text_input_end_icon 0x7f0b002a ++int layout design_text_input_start_icon 0x7f0b002b ++int layout material_chip_input_combo 0x7f0b002c ++int layout material_clock_display 0x7f0b002d ++int layout material_clock_display_divider 0x7f0b002e ++int layout material_clock_period_toggle 0x7f0b002f ++int layout material_clock_period_toggle_land 0x7f0b0030 ++int layout material_clockface_textview 0x7f0b0031 ++int layout material_clockface_view 0x7f0b0032 ++int layout material_radial_view_group 0x7f0b0033 ++int layout material_textinput_timepicker 0x7f0b0034 ++int layout material_time_chip 0x7f0b0035 ++int layout material_time_input 0x7f0b0036 ++int layout material_timepicker 0x7f0b0037 ++int layout material_timepicker_dialog 0x7f0b0038 ++int layout material_timepicker_textinput_display 0x7f0b0039 ++int layout mtrl_alert_dialog 0x7f0b003a ++int layout mtrl_alert_dialog_actions 0x7f0b003b ++int layout mtrl_alert_dialog_title 0x7f0b003c ++int layout mtrl_alert_select_dialog_item 0x7f0b003d ++int layout mtrl_alert_select_dialog_multichoice 0x7f0b003e ++int layout mtrl_alert_select_dialog_singlechoice 0x7f0b003f ++int layout mtrl_calendar_day 0x7f0b0040 ++int layout mtrl_calendar_day_of_week 0x7f0b0041 ++int layout mtrl_calendar_days_of_week 0x7f0b0042 ++int layout mtrl_calendar_horizontal 0x7f0b0043 ++int layout mtrl_calendar_month 0x7f0b0044 ++int layout mtrl_calendar_month_labeled 0x7f0b0045 ++int layout mtrl_calendar_month_navigation 0x7f0b0046 ++int layout mtrl_calendar_months 0x7f0b0047 ++int layout mtrl_calendar_vertical 0x7f0b0048 ++int layout mtrl_calendar_year 0x7f0b0049 ++int layout mtrl_layout_snackbar 0x7f0b004a ++int layout mtrl_layout_snackbar_include 0x7f0b004b ++int layout mtrl_navigation_rail_item 0x7f0b004c ++int layout mtrl_picker_actions 0x7f0b004d ++int layout mtrl_picker_dialog 0x7f0b004e ++int layout mtrl_picker_fullscreen 0x7f0b004f ++int layout mtrl_picker_header_dialog 0x7f0b0050 ++int layout mtrl_picker_header_fullscreen 0x7f0b0051 ++int layout mtrl_picker_header_selection_text 0x7f0b0052 ++int layout mtrl_picker_header_title_text 0x7f0b0053 ++int layout mtrl_picker_header_toggle 0x7f0b0054 ++int layout mtrl_picker_text_input_date 0x7f0b0055 ++int layout mtrl_picker_text_input_date_range 0x7f0b0056 ++int layout notification_action 0x7f0b0057 ++int layout notification_action_tombstone 0x7f0b0058 ++int layout notification_template_custom_big 0x7f0b0059 ++int layout notification_template_icon_group 0x7f0b005a ++int layout notification_template_part_chronometer 0x7f0b005b ++int layout notification_template_part_time 0x7f0b005c ++int layout select_dialog_item_material 0x7f0b005d ++int layout select_dialog_multichoice_material 0x7f0b005e ++int layout select_dialog_singlechoice_material 0x7f0b005f ++int layout support_simple_spinner_dropdown_item 0x7f0b0060 ++int layout test_action_chip 0x7f0b0061 ++int layout test_chip_zero_corner_radius 0x7f0b0062 ++int layout test_design_checkbox 0x7f0b0063 ++int layout test_design_radiobutton 0x7f0b0064 ++int layout test_navigation_bar_item_layout 0x7f0b0065 ++int layout test_reflow_chipgroup 0x7f0b0066 ++int layout test_toolbar 0x7f0b0067 ++int layout test_toolbar_custom_background 0x7f0b0068 ++int layout test_toolbar_elevation 0x7f0b0069 ++int layout test_toolbar_surface 0x7f0b006a ++int layout text_view_with_line_height_from_appearance 0x7f0b006b ++int layout text_view_with_line_height_from_layout 0x7f0b006c ++int layout text_view_with_line_height_from_style 0x7f0b006d ++int layout text_view_with_theme_line_height 0x7f0b006e ++int layout text_view_without_line_height 0x7f0b006f ++int plurals mtrl_badge_content_description 0x7f0c0000 ++int string abc_action_bar_home_description 0x7f0d0000 ++int string abc_action_bar_up_description 0x7f0d0001 ++int string abc_action_menu_overflow_description 0x7f0d0002 ++int string abc_action_mode_done 0x7f0d0003 ++int string abc_activity_chooser_view_see_all 0x7f0d0004 ++int string abc_activitychooserview_choose_application 0x7f0d0005 ++int string abc_capital_off 0x7f0d0006 ++int string abc_capital_on 0x7f0d0007 ++int string abc_menu_alt_shortcut_label 0x7f0d0008 ++int string abc_menu_ctrl_shortcut_label 0x7f0d0009 ++int string abc_menu_delete_shortcut_label 0x7f0d000a ++int string abc_menu_enter_shortcut_label 0x7f0d000b ++int string abc_menu_function_shortcut_label 0x7f0d000c ++int string abc_menu_meta_shortcut_label 0x7f0d000d ++int string abc_menu_shift_shortcut_label 0x7f0d000e ++int string abc_menu_space_shortcut_label 0x7f0d000f ++int string abc_menu_sym_shortcut_label 0x7f0d0010 ++int string abc_prepend_shortcut_label 0x7f0d0011 ++int string abc_search_hint 0x7f0d0012 ++int string abc_searchview_description_clear 0x7f0d0013 ++int string abc_searchview_description_query 0x7f0d0014 ++int string abc_searchview_description_search 0x7f0d0015 ++int string abc_searchview_description_submit 0x7f0d0016 ++int string abc_searchview_description_voice 0x7f0d0017 ++int string abc_shareactionprovider_share_with 0x7f0d0018 ++int string abc_shareactionprovider_share_with_application 0x7f0d0019 ++int string abc_toolbar_collapse_description 0x7f0d001a ++int string app_name 0x7f0d001b ++int string appbar_scrolling_view_behavior 0x7f0d001c ++int string bottom_sheet_behavior 0x7f0d001d ++int string bottomsheet_action_expand_halfway 0x7f0d001e ++int string character_counter_content_description 0x7f0d001f ++int string character_counter_overflowed_content_description 0x7f0d0020 ++int string character_counter_pattern 0x7f0d0021 ++int string chip_text 0x7f0d0022 ++int string clear_text_end_icon_content_description 0x7f0d0023 ++int string error_icon_content_description 0x7f0d0024 ++int string exposed_dropdown_menu_content_description 0x7f0d0025 ++int string fab_transformation_scrim_behavior 0x7f0d0026 ++int string fab_transformation_sheet_behavior 0x7f0d0027 ++int string hide_bottom_view_on_scroll_behavior 0x7f0d0028 ++int string icon_content_description 0x7f0d0029 ++int string item_view_role_description 0x7f0d002a ++int string material_clock_display_divider 0x7f0d002b ++int string material_clock_toggle_content_description 0x7f0d002c ++int string material_hour_selection 0x7f0d002d ++int string material_hour_suffix 0x7f0d002e ++int string material_minute_selection 0x7f0d002f ++int string material_minute_suffix 0x7f0d0030 ++int string material_motion_easing_accelerated 0x7f0d0031 ++int string material_motion_easing_decelerated 0x7f0d0032 ++int string material_motion_easing_emphasized 0x7f0d0033 ++int string material_motion_easing_linear 0x7f0d0034 ++int string material_motion_easing_standard 0x7f0d0035 ++int string material_slider_range_end 0x7f0d0036 ++int string material_slider_range_start 0x7f0d0037 ++int string material_timepicker_am 0x7f0d0038 ++int string material_timepicker_clock_mode_description 0x7f0d0039 ++int string material_timepicker_hour 0x7f0d003a ++int string material_timepicker_minute 0x7f0d003b ++int string material_timepicker_pm 0x7f0d003c ++int string material_timepicker_select_time 0x7f0d003d ++int string material_timepicker_text_input_mode_description 0x7f0d003e ++int string mtrl_badge_numberless_content_description 0x7f0d003f ++int string mtrl_chip_close_icon_content_description 0x7f0d0040 ++int string mtrl_exceed_max_badge_number_content_description 0x7f0d0041 ++int string mtrl_exceed_max_badge_number_suffix 0x7f0d0042 ++int string mtrl_picker_a11y_next_month 0x7f0d0043 ++int string mtrl_picker_a11y_prev_month 0x7f0d0044 ++int string mtrl_picker_announce_current_selection 0x7f0d0045 ++int string mtrl_picker_cancel 0x7f0d0046 ++int string mtrl_picker_confirm 0x7f0d0047 ++int string mtrl_picker_date_header_selected 0x7f0d0048 ++int string mtrl_picker_date_header_title 0x7f0d0049 ++int string mtrl_picker_date_header_unselected 0x7f0d004a ++int string mtrl_picker_day_of_week_column_header 0x7f0d004b ++int string mtrl_picker_invalid_format 0x7f0d004c ++int string mtrl_picker_invalid_format_example 0x7f0d004d ++int string mtrl_picker_invalid_format_use 0x7f0d004e ++int string mtrl_picker_invalid_range 0x7f0d004f ++int string mtrl_picker_navigate_to_year_description 0x7f0d0050 ++int string mtrl_picker_out_of_range 0x7f0d0051 ++int string mtrl_picker_range_header_only_end_selected 0x7f0d0052 ++int string mtrl_picker_range_header_only_start_selected 0x7f0d0053 ++int string mtrl_picker_range_header_selected 0x7f0d0054 ++int string mtrl_picker_range_header_title 0x7f0d0055 ++int string mtrl_picker_range_header_unselected 0x7f0d0056 ++int string mtrl_picker_save 0x7f0d0057 ++int string mtrl_picker_text_input_date_hint 0x7f0d0058 ++int string mtrl_picker_text_input_date_range_end_hint 0x7f0d0059 ++int string mtrl_picker_text_input_date_range_start_hint 0x7f0d005a ++int string mtrl_picker_text_input_day_abbr 0x7f0d005b ++int string mtrl_picker_text_input_month_abbr 0x7f0d005c ++int string mtrl_picker_text_input_year_abbr 0x7f0d005d ++int string mtrl_picker_toggle_to_calendar_input_mode 0x7f0d005e ++int string mtrl_picker_toggle_to_day_selection 0x7f0d005f ++int string mtrl_picker_toggle_to_text_input_mode 0x7f0d0060 ++int string mtrl_picker_toggle_to_year_selection 0x7f0d0061 ++int string password_toggle_content_description 0x7f0d0062 ++int string path_password_eye 0x7f0d0063 ++int string path_password_eye_mask_strike_through 0x7f0d0064 ++int string path_password_eye_mask_visible 0x7f0d0065 ++int string path_password_strike_through 0x7f0d0066 ++int string search_menu_title 0x7f0d0067 ++int string status_bar_notification_info_overflow 0x7f0d0068 ++int style AlertDialog_AppCompat 0x7f0e0000 ++int style AlertDialog_AppCompat_Light 0x7f0e0001 ++int style AndroidThemeColorAccentYellow 0x7f0e0002 ++int style Animation_AppCompat_Dialog 0x7f0e0003 ++int style Animation_AppCompat_DropDownUp 0x7f0e0004 ++int style Animation_AppCompat_Tooltip 0x7f0e0005 ++int style Animation_Design_BottomSheetDialog 0x7f0e0006 ++int style Animation_MaterialComponents_BottomSheetDialog 0x7f0e0007 ++int style Base_AlertDialog_AppCompat 0x7f0e0008 ++int style Base_AlertDialog_AppCompat_Light 0x7f0e0009 ++int style Base_Animation_AppCompat_Dialog 0x7f0e000a ++int style Base_Animation_AppCompat_DropDownUp 0x7f0e000b ++int style Base_Animation_AppCompat_Tooltip 0x7f0e000c ++int style Base_CardView 0x7f0e000d ++int style Base_DialogWindowTitle_AppCompat 0x7f0e000e ++int style Base_DialogWindowTitleBackground_AppCompat 0x7f0e000f ++int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f0e0010 ++int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f0e0011 ++int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x7f0e0012 ++int style Base_TextAppearance_AppCompat 0x7f0e0013 ++int style Base_TextAppearance_AppCompat_Body1 0x7f0e0014 ++int style Base_TextAppearance_AppCompat_Body2 0x7f0e0015 ++int style Base_TextAppearance_AppCompat_Button 0x7f0e0016 ++int style Base_TextAppearance_AppCompat_Caption 0x7f0e0017 ++int style Base_TextAppearance_AppCompat_Display1 0x7f0e0018 ++int style Base_TextAppearance_AppCompat_Display2 0x7f0e0019 ++int style Base_TextAppearance_AppCompat_Display3 0x7f0e001a ++int style Base_TextAppearance_AppCompat_Display4 0x7f0e001b ++int style Base_TextAppearance_AppCompat_Headline 0x7f0e001c ++int style Base_TextAppearance_AppCompat_Inverse 0x7f0e001d ++int style Base_TextAppearance_AppCompat_Large 0x7f0e001e ++int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0e001f ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0e0020 ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0e0021 ++int style Base_TextAppearance_AppCompat_Medium 0x7f0e0022 ++int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0e0023 ++int style Base_TextAppearance_AppCompat_Menu 0x7f0e0024 ++int style Base_TextAppearance_AppCompat_SearchResult 0x7f0e0025 ++int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0e0026 ++int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0e0027 ++int style Base_TextAppearance_AppCompat_Small 0x7f0e0028 ++int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0e0029 ++int style Base_TextAppearance_AppCompat_Subhead 0x7f0e002a ++int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0e002b ++int style Base_TextAppearance_AppCompat_Title 0x7f0e002c ++int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0e002d ++int style Base_TextAppearance_AppCompat_Tooltip 0x7f0e002e ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0e002f ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0e0030 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0e0031 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0e0032 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0e0033 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0e0034 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0e0035 ++int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0e0036 ++int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0e0037 ++int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0e0038 ++int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0e0039 ++int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0e003a ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0e003b ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0e003c ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0e003d ++int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0e003e ++int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0e003f ++int style Base_TextAppearance_MaterialComponents_Badge 0x7f0e0040 ++int style Base_TextAppearance_MaterialComponents_Button 0x7f0e0041 ++int style Base_TextAppearance_MaterialComponents_Headline6 0x7f0e0042 ++int style Base_TextAppearance_MaterialComponents_Subtitle2 0x7f0e0043 ++int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0e0044 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0e0045 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0e0046 ++int style Base_Theme_AppCompat 0x7f0e0047 ++int style Base_Theme_AppCompat_CompactMenu 0x7f0e0048 ++int style Base_Theme_AppCompat_Dialog 0x7f0e0049 ++int style Base_Theme_AppCompat_Dialog_Alert 0x7f0e004a ++int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0e004b ++int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0e004c ++int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0e004d ++int style Base_Theme_AppCompat_Light 0x7f0e004e ++int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0e004f ++int style Base_Theme_AppCompat_Light_Dialog 0x7f0e0050 ++int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0e0051 ++int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0e0052 ++int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0e0053 ++int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0e0054 ++int style Base_Theme_MaterialComponents 0x7f0e0055 ++int style Base_Theme_MaterialComponents_Bridge 0x7f0e0056 ++int style Base_Theme_MaterialComponents_CompactMenu 0x7f0e0057 ++int style Base_Theme_MaterialComponents_Dialog 0x7f0e0058 ++int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f0e0059 ++int style Base_Theme_MaterialComponents_Dialog_Bridge 0x7f0e005a ++int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f0e005b ++int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f0e005c ++int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f0e005d ++int style Base_Theme_MaterialComponents_Light 0x7f0e005e ++int style Base_Theme_MaterialComponents_Light_Bridge 0x7f0e005f ++int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f0e0060 ++int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e0061 ++int style Base_Theme_MaterialComponents_Light_Dialog 0x7f0e0062 ++int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f0e0063 ++int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f0e0064 ++int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f0e0065 ++int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0e0066 ++int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0e0067 ++int style Base_ThemeOverlay_AppCompat 0x7f0e0068 ++int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0e0069 ++int style Base_ThemeOverlay_AppCompat_Dark 0x7f0e006a ++int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0e006b ++int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0e006c ++int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0e006d ++int style Base_ThemeOverlay_AppCompat_Light 0x7f0e006e ++int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f0e006f ++int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e0070 ++int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f0e0071 ++int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f0e0072 ++int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f0e0073 ++int style Base_V14_Theme_MaterialComponents 0x7f0e0074 ++int style Base_V14_Theme_MaterialComponents_Bridge 0x7f0e0075 ++int style Base_V14_Theme_MaterialComponents_Dialog 0x7f0e0076 ++int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x7f0e0077 ++int style Base_V14_Theme_MaterialComponents_Light 0x7f0e0078 ++int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f0e0079 ++int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e007a ++int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f0e007b ++int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f0e007c ++int style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f0e007d ++int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f0e007e ++int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e007f ++int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f0e0080 ++int style Base_V21_Theme_AppCompat 0x7f0e0081 ++int style Base_V21_Theme_AppCompat_Dialog 0x7f0e0082 ++int style Base_V21_Theme_AppCompat_Light 0x7f0e0083 ++int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0e0084 ++int style Base_V21_Theme_MaterialComponents 0x7f0e0085 ++int style Base_V21_Theme_MaterialComponents_Dialog 0x7f0e0086 ++int style Base_V21_Theme_MaterialComponents_Light 0x7f0e0087 ++int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x7f0e0088 ++int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0e0089 ++int style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f0e008a ++int style Base_V22_Theme_AppCompat 0x7f0e008b ++int style Base_V22_Theme_AppCompat_Light 0x7f0e008c ++int style Base_V23_Theme_AppCompat 0x7f0e008d ++int style Base_V23_Theme_AppCompat_Light 0x7f0e008e ++int style Base_V26_Theme_AppCompat 0x7f0e008f ++int style Base_V26_Theme_AppCompat_Light 0x7f0e0090 ++int style Base_V26_Widget_AppCompat_Toolbar 0x7f0e0091 ++int style Base_V28_Theme_AppCompat 0x7f0e0092 ++int style Base_V28_Theme_AppCompat_Light 0x7f0e0093 ++int style Base_V7_Theme_AppCompat 0x7f0e0094 ++int style Base_V7_Theme_AppCompat_Dialog 0x7f0e0095 ++int style Base_V7_Theme_AppCompat_Light 0x7f0e0096 ++int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0e0097 ++int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0e0098 ++int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0e0099 ++int style Base_V7_Widget_AppCompat_EditText 0x7f0e009a ++int style Base_V7_Widget_AppCompat_Toolbar 0x7f0e009b ++int style Base_Widget_AppCompat_ActionBar 0x7f0e009c ++int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0e009d ++int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0e009e ++int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0e009f ++int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0e00a0 ++int style Base_Widget_AppCompat_ActionButton 0x7f0e00a1 ++int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0e00a2 ++int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0e00a3 ++int style Base_Widget_AppCompat_ActionMode 0x7f0e00a4 ++int style Base_Widget_AppCompat_ActivityChooserView 0x7f0e00a5 ++int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0e00a6 ++int style Base_Widget_AppCompat_Button 0x7f0e00a7 ++int style Base_Widget_AppCompat_Button_Borderless 0x7f0e00a8 ++int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0e00a9 ++int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0e00aa ++int style Base_Widget_AppCompat_Button_Colored 0x7f0e00ab ++int style Base_Widget_AppCompat_Button_Small 0x7f0e00ac ++int style Base_Widget_AppCompat_ButtonBar 0x7f0e00ad ++int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0e00ae ++int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0e00af ++int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0e00b0 ++int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0e00b1 ++int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0e00b2 ++int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0e00b3 ++int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0e00b4 ++int style Base_Widget_AppCompat_EditText 0x7f0e00b5 ++int style Base_Widget_AppCompat_ImageButton 0x7f0e00b6 ++int style Base_Widget_AppCompat_Light_ActionBar 0x7f0e00b7 ++int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0e00b8 ++int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0e00b9 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0e00ba ++int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0e00bb ++int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0e00bc ++int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0e00bd ++int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0e00be ++int style Base_Widget_AppCompat_ListMenuView 0x7f0e00bf ++int style Base_Widget_AppCompat_ListPopupWindow 0x7f0e00c0 ++int style Base_Widget_AppCompat_ListView 0x7f0e00c1 ++int style Base_Widget_AppCompat_ListView_DropDown 0x7f0e00c2 ++int style Base_Widget_AppCompat_ListView_Menu 0x7f0e00c3 ++int style Base_Widget_AppCompat_PopupMenu 0x7f0e00c4 ++int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0e00c5 ++int style Base_Widget_AppCompat_PopupWindow 0x7f0e00c6 ++int style Base_Widget_AppCompat_ProgressBar 0x7f0e00c7 ++int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0e00c8 ++int style Base_Widget_AppCompat_RatingBar 0x7f0e00c9 ++int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0e00ca ++int style Base_Widget_AppCompat_RatingBar_Small 0x7f0e00cb ++int style Base_Widget_AppCompat_SearchView 0x7f0e00cc ++int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0e00cd ++int style Base_Widget_AppCompat_SeekBar 0x7f0e00ce ++int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0e00cf ++int style Base_Widget_AppCompat_Spinner 0x7f0e00d0 ++int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0e00d1 ++int style Base_Widget_AppCompat_TextView 0x7f0e00d2 ++int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0e00d3 ++int style Base_Widget_AppCompat_Toolbar 0x7f0e00d4 ++int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0e00d5 ++int style Base_Widget_Design_TabLayout 0x7f0e00d6 ++int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x7f0e00d7 ++int style Base_Widget_MaterialComponents_CheckedTextView 0x7f0e00d8 ++int style Base_Widget_MaterialComponents_Chip 0x7f0e00d9 ++int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x7f0e00da ++int style Base_Widget_MaterialComponents_PopupMenu 0x7f0e00db ++int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f0e00dc ++int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f0e00dd ++int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x7f0e00de ++int style Base_Widget_MaterialComponents_Slider 0x7f0e00df ++int style Base_Widget_MaterialComponents_Snackbar 0x7f0e00e0 ++int style Base_Widget_MaterialComponents_TextInputEditText 0x7f0e00e1 ++int style Base_Widget_MaterialComponents_TextInputLayout 0x7f0e00e2 ++int style Base_Widget_MaterialComponents_TextView 0x7f0e00e3 ++int style CardView 0x7f0e00e4 ++int style CardView_Dark 0x7f0e00e5 ++int style CardView_Light 0x7f0e00e6 ++int style EmptyTheme 0x7f0e00e7 ++int style MaterialAlertDialog_MaterialComponents 0x7f0e00e8 ++int style MaterialAlertDialog_MaterialComponents_Body_Text 0x7f0e00e9 ++int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x7f0e00ea ++int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x7f0e00eb ++int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f0e00ec ++int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x7f0e00ed ++int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f0e00ee ++int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x7f0e00ef ++int style MaterialAlertDialog_MaterialComponents_Title_Text 0x7f0e00f0 ++int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x7f0e00f1 ++int style Platform_AppCompat 0x7f0e00f2 ++int style Platform_AppCompat_Light 0x7f0e00f3 ++int style Platform_MaterialComponents 0x7f0e00f4 ++int style Platform_MaterialComponents_Dialog 0x7f0e00f5 ++int style Platform_MaterialComponents_Light 0x7f0e00f6 ++int style Platform_MaterialComponents_Light_Dialog 0x7f0e00f7 ++int style Platform_ThemeOverlay_AppCompat 0x7f0e00f8 ++int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0e00f9 ++int style Platform_ThemeOverlay_AppCompat_Light 0x7f0e00fa ++int style Platform_V21_AppCompat 0x7f0e00fb ++int style Platform_V21_AppCompat_Light 0x7f0e00fc ++int style Platform_V25_AppCompat 0x7f0e00fd ++int style Platform_V25_AppCompat_Light 0x7f0e00fe ++int style Platform_Widget_AppCompat_Spinner 0x7f0e00ff ++int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0e0100 ++int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0e0101 ++int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0e0102 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0e0103 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0e0104 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f0e0105 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f0e0106 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0e0107 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f0e0108 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0e0109 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0e010a ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0e010b ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0e010c ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0e010d ++int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0e010e ++int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0e010f ++int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0e0110 ++int style ShapeAppearance_MaterialComponents 0x7f0e0111 ++int style ShapeAppearance_MaterialComponents_LargeComponent 0x7f0e0112 ++int style ShapeAppearance_MaterialComponents_MediumComponent 0x7f0e0113 ++int style ShapeAppearance_MaterialComponents_SmallComponent 0x7f0e0114 ++int style ShapeAppearance_MaterialComponents_Test 0x7f0e0115 ++int style ShapeAppearance_MaterialComponents_Tooltip 0x7f0e0116 ++int style ShapeAppearanceOverlay 0x7f0e0117 ++int style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize 0x7f0e0118 ++int style ShapeAppearanceOverlay_BottomRightCut 0x7f0e0119 ++int style ShapeAppearanceOverlay_Cut 0x7f0e011a ++int style ShapeAppearanceOverlay_DifferentCornerSize 0x7f0e011b ++int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x7f0e011c ++int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x7f0e011d ++int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x7f0e011e ++int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x7f0e011f ++int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f0e0120 ++int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x7f0e0121 ++int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x7f0e0122 ++int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x7f0e0123 ++int style ShapeAppearanceOverlay_TopLeftCut 0x7f0e0124 ++int style ShapeAppearanceOverlay_TopRightDifferentCornerSize 0x7f0e0125 ++int style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f0e0126 ++int style Test_Theme_MaterialComponents_MaterialCalendar 0x7f0e0127 ++int style Test_Widget_MaterialComponents_MaterialCalendar 0x7f0e0128 ++int style Test_Widget_MaterialComponents_MaterialCalendar_Day 0x7f0e0129 ++int style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f0e012a ++int style TestStyleWithLineHeight 0x7f0e012b ++int style TestStyleWithLineHeightAppearance 0x7f0e012c ++int style TestStyleWithThemeLineHeightAttribute 0x7f0e012d ++int style TestStyleWithoutLineHeight 0x7f0e012e ++int style TestThemeWithLineHeight 0x7f0e012f ++int style TestThemeWithLineHeightDisabled 0x7f0e0130 ++int style TextAppearance_AppCompat 0x7f0e0131 ++int style TextAppearance_AppCompat_Body1 0x7f0e0132 ++int style TextAppearance_AppCompat_Body2 0x7f0e0133 ++int style TextAppearance_AppCompat_Button 0x7f0e0134 ++int style TextAppearance_AppCompat_Caption 0x7f0e0135 ++int style TextAppearance_AppCompat_Display1 0x7f0e0136 ++int style TextAppearance_AppCompat_Display2 0x7f0e0137 ++int style TextAppearance_AppCompat_Display3 0x7f0e0138 ++int style TextAppearance_AppCompat_Display4 0x7f0e0139 ++int style TextAppearance_AppCompat_Headline 0x7f0e013a ++int style TextAppearance_AppCompat_Inverse 0x7f0e013b ++int style TextAppearance_AppCompat_Large 0x7f0e013c ++int style TextAppearance_AppCompat_Large_Inverse 0x7f0e013d ++int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0e013e ++int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0e013f ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0e0140 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0e0141 ++int style TextAppearance_AppCompat_Medium 0x7f0e0142 ++int style TextAppearance_AppCompat_Medium_Inverse 0x7f0e0143 ++int style TextAppearance_AppCompat_Menu 0x7f0e0144 ++int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0e0145 ++int style TextAppearance_AppCompat_SearchResult_Title 0x7f0e0146 ++int style TextAppearance_AppCompat_Small 0x7f0e0147 ++int style TextAppearance_AppCompat_Small_Inverse 0x7f0e0148 ++int style TextAppearance_AppCompat_Subhead 0x7f0e0149 ++int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0e014a ++int style TextAppearance_AppCompat_Title 0x7f0e014b ++int style TextAppearance_AppCompat_Title_Inverse 0x7f0e014c ++int style TextAppearance_AppCompat_Tooltip 0x7f0e014d ++int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0e014e ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0e014f ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0e0150 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0e0151 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0e0152 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0e0153 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0e0154 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0e0155 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0e0156 ++int style TextAppearance_AppCompat_Widget_Button 0x7f0e0157 ++int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0e0158 ++int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0e0159 ++int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0e015a ++int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0e015b ++int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0e015c ++int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0e015d ++int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0e015e ++int style TextAppearance_AppCompat_Widget_Switch 0x7f0e015f ++int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0e0160 ++int style TextAppearance_Compat_Notification 0x7f0e0161 ++int style TextAppearance_Compat_Notification_Info 0x7f0e0162 ++int style TextAppearance_Compat_Notification_Line2 0x7f0e0163 ++int style TextAppearance_Compat_Notification_Time 0x7f0e0164 ++int style TextAppearance_Compat_Notification_Title 0x7f0e0165 ++int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0e0166 ++int style TextAppearance_Design_Counter 0x7f0e0167 ++int style TextAppearance_Design_Counter_Overflow 0x7f0e0168 ++int style TextAppearance_Design_Error 0x7f0e0169 ++int style TextAppearance_Design_HelperText 0x7f0e016a ++int style TextAppearance_Design_Hint 0x7f0e016b ++int style TextAppearance_Design_Placeholder 0x7f0e016c ++int style TextAppearance_Design_Prefix 0x7f0e016d ++int style TextAppearance_Design_Snackbar_Message 0x7f0e016e ++int style TextAppearance_Design_Suffix 0x7f0e016f ++int style TextAppearance_Design_Tab 0x7f0e0170 ++int style TextAppearance_MaterialComponents_Badge 0x7f0e0171 ++int style TextAppearance_MaterialComponents_Body1 0x7f0e0172 ++int style TextAppearance_MaterialComponents_Body2 0x7f0e0173 ++int style TextAppearance_MaterialComponents_Button 0x7f0e0174 ++int style TextAppearance_MaterialComponents_Caption 0x7f0e0175 ++int style TextAppearance_MaterialComponents_Chip 0x7f0e0176 ++int style TextAppearance_MaterialComponents_Headline1 0x7f0e0177 ++int style TextAppearance_MaterialComponents_Headline2 0x7f0e0178 ++int style TextAppearance_MaterialComponents_Headline3 0x7f0e0179 ++int style TextAppearance_MaterialComponents_Headline4 0x7f0e017a ++int style TextAppearance_MaterialComponents_Headline5 0x7f0e017b ++int style TextAppearance_MaterialComponents_Headline6 0x7f0e017c ++int style TextAppearance_MaterialComponents_Overline 0x7f0e017d ++int style TextAppearance_MaterialComponents_Subtitle1 0x7f0e017e ++int style TextAppearance_MaterialComponents_Subtitle2 0x7f0e017f ++int style TextAppearance_MaterialComponents_TimePicker_Title 0x7f0e0180 ++int style TextAppearance_MaterialComponents_Tooltip 0x7f0e0181 ++int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0e0182 ++int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0e0183 ++int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0e0184 ++int style Theme_AppCompat 0x7f0e0185 ++int style Theme_AppCompat_CompactMenu 0x7f0e0186 ++int style Theme_AppCompat_DayNight 0x7f0e0187 ++int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0e0188 ++int style Theme_AppCompat_DayNight_Dialog 0x7f0e0189 ++int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0e018a ++int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0e018b ++int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0e018c ++int style Theme_AppCompat_DayNight_NoActionBar 0x7f0e018d ++int style Theme_AppCompat_Dialog 0x7f0e018e ++int style Theme_AppCompat_Dialog_Alert 0x7f0e018f ++int style Theme_AppCompat_Dialog_MinWidth 0x7f0e0190 ++int style Theme_AppCompat_DialogWhenLarge 0x7f0e0191 ++int style Theme_AppCompat_Empty 0x7f0e0192 ++int style Theme_AppCompat_Light 0x7f0e0193 ++int style Theme_AppCompat_Light_DarkActionBar 0x7f0e0194 ++int style Theme_AppCompat_Light_Dialog 0x7f0e0195 ++int style Theme_AppCompat_Light_Dialog_Alert 0x7f0e0196 ++int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0e0197 ++int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0e0198 ++int style Theme_AppCompat_Light_NoActionBar 0x7f0e0199 ++int style Theme_AppCompat_NoActionBar 0x7f0e019a ++int style Theme_Design 0x7f0e019b ++int style Theme_Design_BottomSheetDialog 0x7f0e019c ++int style Theme_Design_Light 0x7f0e019d ++int style Theme_Design_Light_BottomSheetDialog 0x7f0e019e ++int style Theme_Design_Light_NoActionBar 0x7f0e019f ++int style Theme_Design_NoActionBar 0x7f0e01a0 ++int style Theme_MaterialComponents 0x7f0e01a1 ++int style Theme_MaterialComponents_BottomSheetDialog 0x7f0e01a2 ++int style Theme_MaterialComponents_Bridge 0x7f0e01a3 ++int style Theme_MaterialComponents_CompactMenu 0x7f0e01a4 ++int style Theme_MaterialComponents_DayNight 0x7f0e01a5 ++int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x7f0e01a6 ++int style Theme_MaterialComponents_DayNight_Bridge 0x7f0e01a7 ++int style Theme_MaterialComponents_DayNight_DarkActionBar 0x7f0e01a8 ++int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x7f0e01a9 ++int style Theme_MaterialComponents_DayNight_Dialog 0x7f0e01aa ++int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x7f0e01ab ++int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x7f0e01ac ++int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x7f0e01ad ++int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x7f0e01ae ++int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x7f0e01af ++int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x7f0e01b0 ++int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x7f0e01b1 ++int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x7f0e01b2 ++int style Theme_MaterialComponents_DayNight_NoActionBar 0x7f0e01b3 ++int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x7f0e01b4 ++int style Theme_MaterialComponents_Dialog 0x7f0e01b5 ++int style Theme_MaterialComponents_Dialog_Alert 0x7f0e01b6 ++int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x7f0e01b7 ++int style Theme_MaterialComponents_Dialog_Bridge 0x7f0e01b8 ++int style Theme_MaterialComponents_Dialog_FixedSize 0x7f0e01b9 ++int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x7f0e01ba ++int style Theme_MaterialComponents_Dialog_MinWidth 0x7f0e01bb ++int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x7f0e01bc ++int style Theme_MaterialComponents_DialogWhenLarge 0x7f0e01bd ++int style Theme_MaterialComponents_Light 0x7f0e01be ++int style Theme_MaterialComponents_Light_BarSize 0x7f0e01bf ++int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f0e01c0 ++int style Theme_MaterialComponents_Light_Bridge 0x7f0e01c1 ++int style Theme_MaterialComponents_Light_DarkActionBar 0x7f0e01c2 ++int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e01c3 ++int style Theme_MaterialComponents_Light_Dialog 0x7f0e01c4 ++int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f0e01c5 ++int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x7f0e01c6 ++int style Theme_MaterialComponents_Light_Dialog_Bridge 0x7f0e01c7 ++int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f0e01c8 ++int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x7f0e01c9 ++int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0e01ca ++int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x7f0e01cb ++int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0e01cc ++int style Theme_MaterialComponents_Light_LargeTouch 0x7f0e01cd ++int style Theme_MaterialComponents_Light_NoActionBar 0x7f0e01ce ++int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f0e01cf ++int style Theme_MaterialComponents_NoActionBar 0x7f0e01d0 ++int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f0e01d1 ++int style ThemeOverlay_AppCompat 0x7f0e01d2 ++int style ThemeOverlay_AppCompat_ActionBar 0x7f0e01d3 ++int style ThemeOverlay_AppCompat_Dark 0x7f0e01d4 ++int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0e01d5 ++int style ThemeOverlay_AppCompat_DayNight 0x7f0e01d6 ++int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f0e01d7 ++int style ThemeOverlay_AppCompat_Dialog 0x7f0e01d8 ++int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0e01d9 ++int style ThemeOverlay_AppCompat_Light 0x7f0e01da ++int style ThemeOverlay_Design_TextInputEditText 0x7f0e01db ++int style ThemeOverlay_MaterialComponents 0x7f0e01dc ++int style ThemeOverlay_MaterialComponents_ActionBar 0x7f0e01dd ++int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x7f0e01de ++int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x7f0e01df ++int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x7f0e01e0 ++int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f0e01e1 ++int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f0e01e2 ++int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f0e01e3 ++int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f0e01e4 ++int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x7f0e01e5 ++int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x7f0e01e6 ++int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f0e01e7 ++int style ThemeOverlay_MaterialComponents_Dark 0x7f0e01e8 ++int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f0e01e9 ++int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x7f0e01ea ++int style ThemeOverlay_MaterialComponents_Dialog 0x7f0e01eb ++int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e01ec ++int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f0e01ed ++int style ThemeOverlay_MaterialComponents_Light 0x7f0e01ee ++int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f0e01ef ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f0e01f0 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x7f0e01f1 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x7f0e01f2 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x7f0e01f3 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x7f0e01f4 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x7f0e01f5 ++int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x7f0e01f6 ++int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x7f0e01f7 ++int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x7f0e01f8 ++int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f0e01f9 ++int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f0e01fa ++int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0e01fb ++int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0e01fc ++int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0e01fd ++int style ThemeOverlay_MaterialComponents_TimePicker 0x7f0e01fe ++int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x7f0e01ff ++int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x7f0e0200 ++int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x7f0e0201 ++int style ThemeOverlayColorAccentRed 0x7f0e0202 ++int style WhiteBackgroundDialogTheme 0x7f0e0203 ++int style WhiteBackgroundTheme 0x7f0e0204 ++int style Widget_AppCompat_ActionBar 0x7f0e0205 ++int style Widget_AppCompat_ActionBar_Solid 0x7f0e0206 ++int style Widget_AppCompat_ActionBar_TabBar 0x7f0e0207 ++int style Widget_AppCompat_ActionBar_TabText 0x7f0e0208 ++int style Widget_AppCompat_ActionBar_TabView 0x7f0e0209 ++int style Widget_AppCompat_ActionButton 0x7f0e020a ++int style Widget_AppCompat_ActionButton_CloseMode 0x7f0e020b ++int style Widget_AppCompat_ActionButton_Overflow 0x7f0e020c ++int style Widget_AppCompat_ActionMode 0x7f0e020d ++int style Widget_AppCompat_ActivityChooserView 0x7f0e020e ++int style Widget_AppCompat_AutoCompleteTextView 0x7f0e020f ++int style Widget_AppCompat_Button 0x7f0e0210 ++int style Widget_AppCompat_Button_Borderless 0x7f0e0211 ++int style Widget_AppCompat_Button_Borderless_Colored 0x7f0e0212 ++int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0e0213 ++int style Widget_AppCompat_Button_Colored 0x7f0e0214 ++int style Widget_AppCompat_Button_Small 0x7f0e0215 ++int style Widget_AppCompat_ButtonBar 0x7f0e0216 ++int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0e0217 ++int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0e0218 ++int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0e0219 ++int style Widget_AppCompat_CompoundButton_Switch 0x7f0e021a ++int style Widget_AppCompat_DrawerArrowToggle 0x7f0e021b ++int style Widget_AppCompat_DropDownItem_Spinner 0x7f0e021c ++int style Widget_AppCompat_EditText 0x7f0e021d ++int style Widget_AppCompat_ImageButton 0x7f0e021e ++int style Widget_AppCompat_Light_ActionBar 0x7f0e021f ++int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0e0220 ++int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0e0221 ++int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0e0222 ++int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0e0223 ++int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0e0224 ++int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0e0225 ++int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0e0226 ++int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0e0227 ++int style Widget_AppCompat_Light_ActionButton 0x7f0e0228 ++int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0e0229 ++int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0e022a ++int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0e022b ++int style Widget_AppCompat_Light_ActivityChooserView 0x7f0e022c ++int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0e022d ++int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0e022e ++int style Widget_AppCompat_Light_ListPopupWindow 0x7f0e022f ++int style Widget_AppCompat_Light_ListView_DropDown 0x7f0e0230 ++int style Widget_AppCompat_Light_PopupMenu 0x7f0e0231 ++int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0e0232 ++int style Widget_AppCompat_Light_SearchView 0x7f0e0233 ++int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0e0234 ++int style Widget_AppCompat_ListMenuView 0x7f0e0235 ++int style Widget_AppCompat_ListPopupWindow 0x7f0e0236 ++int style Widget_AppCompat_ListView 0x7f0e0237 ++int style Widget_AppCompat_ListView_DropDown 0x7f0e0238 ++int style Widget_AppCompat_ListView_Menu 0x7f0e0239 ++int style Widget_AppCompat_PopupMenu 0x7f0e023a ++int style Widget_AppCompat_PopupMenu_Overflow 0x7f0e023b ++int style Widget_AppCompat_PopupWindow 0x7f0e023c ++int style Widget_AppCompat_ProgressBar 0x7f0e023d ++int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0e023e ++int style Widget_AppCompat_RatingBar 0x7f0e023f ++int style Widget_AppCompat_RatingBar_Indicator 0x7f0e0240 ++int style Widget_AppCompat_RatingBar_Small 0x7f0e0241 ++int style Widget_AppCompat_SearchView 0x7f0e0242 ++int style Widget_AppCompat_SearchView_ActionBar 0x7f0e0243 ++int style Widget_AppCompat_SeekBar 0x7f0e0244 ++int style Widget_AppCompat_SeekBar_Discrete 0x7f0e0245 ++int style Widget_AppCompat_Spinner 0x7f0e0246 ++int style Widget_AppCompat_Spinner_DropDown 0x7f0e0247 ++int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0e0248 ++int style Widget_AppCompat_Spinner_Underlined 0x7f0e0249 ++int style Widget_AppCompat_TextView 0x7f0e024a ++int style Widget_AppCompat_TextView_SpinnerItem 0x7f0e024b ++int style Widget_AppCompat_Toolbar 0x7f0e024c ++int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0e024d ++int style Widget_Compat_NotificationActionContainer 0x7f0e024e ++int style Widget_Compat_NotificationActionText 0x7f0e024f ++int style Widget_Design_AppBarLayout 0x7f0e0250 ++int style Widget_Design_BottomNavigationView 0x7f0e0251 ++int style Widget_Design_BottomSheet_Modal 0x7f0e0252 ++int style Widget_Design_CollapsingToolbar 0x7f0e0253 ++int style Widget_Design_FloatingActionButton 0x7f0e0254 ++int style Widget_Design_NavigationView 0x7f0e0255 ++int style Widget_Design_ScrimInsetsFrameLayout 0x7f0e0256 ++int style Widget_Design_Snackbar 0x7f0e0257 ++int style Widget_Design_TabLayout 0x7f0e0258 ++int style Widget_Design_TextInputEditText 0x7f0e0259 ++int style Widget_Design_TextInputLayout 0x7f0e025a ++int style Widget_MaterialComponents_ActionBar_Primary 0x7f0e025b ++int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x7f0e025c ++int style Widget_MaterialComponents_ActionBar_Solid 0x7f0e025d ++int style Widget_MaterialComponents_ActionBar_Surface 0x7f0e025e ++int style Widget_MaterialComponents_AppBarLayout_Primary 0x7f0e025f ++int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x7f0e0260 ++int style Widget_MaterialComponents_AppBarLayout_Surface 0x7f0e0261 ++int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f0e0262 ++int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f0e0263 ++int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f0e0264 ++int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f0e0265 ++int style Widget_MaterialComponents_Badge 0x7f0e0266 ++int style Widget_MaterialComponents_BottomAppBar 0x7f0e0267 ++int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f0e0268 ++int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x7f0e0269 ++int style Widget_MaterialComponents_BottomNavigationView 0x7f0e026a ++int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f0e026b ++int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x7f0e026c ++int style Widget_MaterialComponents_BottomSheet 0x7f0e026d ++int style Widget_MaterialComponents_BottomSheet_Modal 0x7f0e026e ++int style Widget_MaterialComponents_Button 0x7f0e026f ++int style Widget_MaterialComponents_Button_Icon 0x7f0e0270 ++int style Widget_MaterialComponents_Button_OutlinedButton 0x7f0e0271 ++int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f0e0272 ++int style Widget_MaterialComponents_Button_TextButton 0x7f0e0273 ++int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f0e0274 ++int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x7f0e0275 ++int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f0e0276 ++int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f0e0277 ++int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x7f0e0278 ++int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f0e0279 ++int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f0e027a ++int style Widget_MaterialComponents_CardView 0x7f0e027b ++int style Widget_MaterialComponents_CheckedTextView 0x7f0e027c ++int style Widget_MaterialComponents_Chip_Action 0x7f0e027d ++int style Widget_MaterialComponents_Chip_Choice 0x7f0e027e ++int style Widget_MaterialComponents_Chip_Entry 0x7f0e027f ++int style Widget_MaterialComponents_Chip_Filter 0x7f0e0280 ++int style Widget_MaterialComponents_ChipGroup 0x7f0e0281 ++int style Widget_MaterialComponents_CircularProgressIndicator 0x7f0e0282 ++int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x7f0e0283 ++int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x7f0e0284 ++int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x7f0e0285 ++int style Widget_MaterialComponents_CollapsingToolbar 0x7f0e0286 ++int style Widget_MaterialComponents_CompoundButton_CheckBox 0x7f0e0287 ++int style Widget_MaterialComponents_CompoundButton_RadioButton 0x7f0e0288 ++int style Widget_MaterialComponents_CompoundButton_Switch 0x7f0e0289 ++int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x7f0e028a ++int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x7f0e028b ++int style Widget_MaterialComponents_FloatingActionButton 0x7f0e028c ++int style Widget_MaterialComponents_Light_ActionBar_Solid 0x7f0e028d ++int style Widget_MaterialComponents_LinearProgressIndicator 0x7f0e028e ++int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x7f0e028f ++int style Widget_MaterialComponents_MaterialCalendar 0x7f0e0290 ++int style Widget_MaterialComponents_MaterialCalendar_Day 0x7f0e0291 ++int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x7f0e0292 ++int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f0e0293 ++int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x7f0e0294 ++int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x7f0e0295 ++int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x7f0e0296 ++int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x7f0e0297 ++int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x7f0e0298 ++int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x7f0e0299 ++int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x7f0e029a ++int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x7f0e029b ++int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x7f0e029c ++int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x7f0e029d ++int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f0e029e ++int style Widget_MaterialComponents_MaterialCalendar_Item 0x7f0e029f ++int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x7f0e02a0 ++int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x7f0e02a1 ++int style Widget_MaterialComponents_MaterialCalendar_Year 0x7f0e02a2 ++int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x7f0e02a3 ++int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x7f0e02a4 ++int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x7f0e02a5 ++int style Widget_MaterialComponents_NavigationRailView 0x7f0e02a6 ++int style Widget_MaterialComponents_NavigationRailView_Colored 0x7f0e02a7 ++int style Widget_MaterialComponents_NavigationRailView_Colored_Compact 0x7f0e02a8 ++int style Widget_MaterialComponents_NavigationRailView_Compact 0x7f0e02a9 ++int style Widget_MaterialComponents_NavigationRailView_PrimarySurface 0x7f0e02aa ++int style Widget_MaterialComponents_NavigationView 0x7f0e02ab ++int style Widget_MaterialComponents_PopupMenu 0x7f0e02ac ++int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f0e02ad ++int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f0e02ae ++int style Widget_MaterialComponents_PopupMenu_Overflow 0x7f0e02af ++int style Widget_MaterialComponents_ProgressIndicator 0x7f0e02b0 ++int style Widget_MaterialComponents_ShapeableImageView 0x7f0e02b1 ++int style Widget_MaterialComponents_Slider 0x7f0e02b2 ++int style Widget_MaterialComponents_Snackbar 0x7f0e02b3 ++int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f0e02b4 ++int style Widget_MaterialComponents_Snackbar_TextView 0x7f0e02b5 ++int style Widget_MaterialComponents_TabLayout 0x7f0e02b6 ++int style Widget_MaterialComponents_TabLayout_Colored 0x7f0e02b7 ++int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x7f0e02b8 ++int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f0e02b9 ++int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0e02ba ++int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0e02bb ++int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0e02bc ++int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f0e02bd ++int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f0e02be ++int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f0e02bf ++int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f0e02c0 ++int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f0e02c1 ++int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f0e02c2 ++int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f0e02c3 ++int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f0e02c4 ++int style Widget_MaterialComponents_TextView 0x7f0e02c5 ++int style Widget_MaterialComponents_TimePicker 0x7f0e02c6 ++int style Widget_MaterialComponents_TimePicker_Button 0x7f0e02c7 ++int style Widget_MaterialComponents_TimePicker_Clock 0x7f0e02c8 ++int style Widget_MaterialComponents_TimePicker_Display 0x7f0e02c9 ++int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f0e02ca ++int style Widget_MaterialComponents_TimePicker_ImageButton 0x7f0e02cb ++int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x7f0e02cc ++int style Widget_MaterialComponents_Toolbar 0x7f0e02cd ++int style Widget_MaterialComponents_Toolbar_Primary 0x7f0e02ce ++int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x7f0e02cf ++int style Widget_MaterialComponents_Toolbar_Surface 0x7f0e02d0 ++int style Widget_MaterialComponents_Tooltip 0x7f0e02d1 ++int style Widget_Support_CoordinatorLayout 0x7f0e02d2 ++int[] styleable ActionBar { 0x7f03003c, 0x7f030043, 0x7f030044, 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7, 0x7f0300fd, 0x7f03010d, 0x7f03010e, 0x7f030127, 0x7f03017e, 0x7f030185, 0x7f03018b, 0x7f03018c, 0x7f03018f, 0x7f03019a, 0x7f0301ac, 0x7f03021a, 0x7f030268, 0x7f030296, 0x7f03029d, 0x7f03029e, 0x7f0302ed, 0x7f0302f1, 0x7f03034b, 0x7f030357 } ++int styleable ActionBar_background 0 ++int styleable ActionBar_backgroundSplit 1 ++int styleable ActionBar_backgroundStacked 2 ++int styleable ActionBar_contentInsetEnd 3 ++int styleable ActionBar_contentInsetEndWithActions 4 ++int styleable ActionBar_contentInsetLeft 5 ++int styleable ActionBar_contentInsetRight 6 ++int styleable ActionBar_contentInsetStart 7 ++int styleable ActionBar_contentInsetStartWithNavigation 8 ++int styleable ActionBar_customNavigationLayout 9 ++int styleable ActionBar_displayOptions 10 ++int styleable ActionBar_divider 11 ++int styleable ActionBar_elevation 12 ++int styleable ActionBar_height 13 ++int styleable ActionBar_hideOnContentScroll 14 ++int styleable ActionBar_homeAsUpIndicator 15 ++int styleable ActionBar_homeLayout 16 ++int styleable ActionBar_icon 17 ++int styleable ActionBar_indeterminateProgressStyle 18 ++int styleable ActionBar_itemPadding 19 ++int styleable ActionBar_logo 20 ++int styleable ActionBar_navigationMode 21 ++int styleable ActionBar_popupTheme 22 ++int styleable ActionBar_progressBarPadding 23 ++int styleable ActionBar_progressBarStyle 24 ++int styleable ActionBar_subtitle 25 ++int styleable ActionBar_subtitleTextStyle 26 ++int styleable ActionBar_title 27 ++int styleable ActionBar_titleTextStyle 28 ++int[] styleable ActionBarLayout { 0x010100b3 } ++int styleable ActionBarLayout_android_layout_gravity 0 ++int[] styleable ActionMenuItemView { 0x0101013f } ++int styleable ActionMenuItemView_android_minWidth 0 ++int[] styleable ActionMenuView { } ++int[] styleable ActionMode { 0x7f03003c, 0x7f030043, 0x7f0300ad, 0x7f03017e, 0x7f0302f1, 0x7f030357 } ++int styleable ActionMode_background 0 ++int styleable ActionMode_backgroundSplit 1 ++int styleable ActionMode_closeItemLayout 2 ++int styleable ActionMode_height 3 ++int styleable ActionMode_subtitleTextStyle 4 ++int styleable ActionMode_titleTextStyle 5 ++int[] styleable ActivityChooserView { 0x7f03013b, 0x7f0301a0 } ++int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 ++int styleable ActivityChooserView_initialActivityCount 1 ++int[] styleable AlertDialog { 0x010100f2, 0x7f030072, 0x7f030073, 0x7f03020f, 0x7f030210, 0x7f030264, 0x7f0302c9, 0x7f0302cb } ++int styleable AlertDialog_android_layout 0 ++int styleable AlertDialog_buttonIconDimen 1 ++int styleable AlertDialog_buttonPanelSideLayout 2 ++int styleable AlertDialog_listItemLayout 3 ++int styleable AlertDialog_listLayout 4 ++int styleable AlertDialog_multiChoiceItemLayout 5 ++int styleable AlertDialog_showTitle 6 ++int styleable AlertDialog_singleChoiceItemLayout 7 ++int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } ++int styleable AnimatedStateListDrawableCompat_android_dither 0 ++int styleable AnimatedStateListDrawableCompat_android_visible 1 ++int styleable AnimatedStateListDrawableCompat_android_variablePadding 2 ++int styleable AnimatedStateListDrawableCompat_android_constantSize 3 ++int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4 ++int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5 ++int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 } ++int styleable AnimatedStateListDrawableItem_android_id 0 ++int styleable AnimatedStateListDrawableItem_android_drawable 1 ++int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b } ++int styleable AnimatedStateListDrawableTransition_android_drawable 0 ++int styleable AnimatedStateListDrawableTransition_android_toId 1 ++int styleable AnimatedStateListDrawableTransition_android_fromId 2 ++int styleable AnimatedStateListDrawableTransition_android_reversible 3 ++int[] styleable AppBarLayout { 0x010100d4, 0x0101048f, 0x01010540, 0x7f030127, 0x7f03013c, 0x7f030205, 0x7f030206, 0x7f0302e7 } ++int styleable AppBarLayout_android_background 0 ++int styleable AppBarLayout_android_touchscreenBlocksFocus 1 ++int styleable AppBarLayout_android_keyboardNavigationCluster 2 ++int styleable AppBarLayout_elevation 3 ++int styleable AppBarLayout_expanded 4 ++int styleable AppBarLayout_liftOnScroll 5 ++int styleable AppBarLayout_liftOnScrollTargetViewId 6 ++int styleable AppBarLayout_statusBarForeground 7 ++int[] styleable AppBarLayoutStates { 0x7f0302e1, 0x7f0302e2, 0x7f0302e4, 0x7f0302e5 } ++int styleable AppBarLayoutStates_state_collapsed 0 ++int styleable AppBarLayoutStates_state_collapsible 1 ++int styleable AppBarLayoutStates_state_liftable 2 ++int styleable AppBarLayoutStates_state_lifted 3 ++int[] styleable AppBarLayout_Layout { 0x7f030203, 0x7f030204 } ++int styleable AppBarLayout_Layout_layout_scrollFlags 0 ++int styleable AppBarLayout_Layout_layout_scrollInterpolator 1 ++int[] styleable AppCompatImageView { 0x01010119, 0x7f0302d8, 0x7f030349, 0x7f03034a } ++int styleable AppCompatImageView_android_src 0 ++int styleable AppCompatImageView_srcCompat 1 ++int styleable AppCompatImageView_tint 2 ++int styleable AppCompatImageView_tintMode 3 ++int[] styleable AppCompatSeekBar { 0x01010142, 0x7f030345, 0x7f030346, 0x7f030347 } ++int styleable AppCompatSeekBar_android_thumb 0 ++int styleable AppCompatSeekBar_tickMark 1 ++int styleable AppCompatSeekBar_tickMarkTint 2 ++int styleable AppCompatSeekBar_tickMarkTintMode 3 ++int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } ++int styleable AppCompatTextHelper_android_textAppearance 0 ++int styleable AppCompatTextHelper_android_drawableTop 1 ++int styleable AppCompatTextHelper_android_drawableBottom 2 ++int styleable AppCompatTextHelper_android_drawableLeft 3 ++int styleable AppCompatTextHelper_android_drawableRight 4 ++int styleable AppCompatTextHelper_android_drawableStart 5 ++int styleable AppCompatTextHelper_android_drawableEnd 6 ++int[] styleable AppCompatTextView { 0x01010034, 0x7f030036, 0x7f030037, 0x7f030038, 0x7f030039, 0x7f03003a, 0x7f030116, 0x7f030117, 0x7f030118, 0x7f030119, 0x7f03011b, 0x7f03011c, 0x7f03011d, 0x7f03011e, 0x7f030154, 0x7f03016a, 0x7f030173, 0x7f0301c3, 0x7f030208, 0x7f030319, 0x7f030335 } ++int styleable AppCompatTextView_android_textAppearance 0 ++int styleable AppCompatTextView_autoSizeMaxTextSize 1 ++int styleable AppCompatTextView_autoSizeMinTextSize 2 ++int styleable AppCompatTextView_autoSizePresetSizes 3 ++int styleable AppCompatTextView_autoSizeStepGranularity 4 ++int styleable AppCompatTextView_autoSizeTextType 5 ++int styleable AppCompatTextView_drawableBottomCompat 6 ++int styleable AppCompatTextView_drawableEndCompat 7 ++int styleable AppCompatTextView_drawableLeftCompat 8 ++int styleable AppCompatTextView_drawableRightCompat 9 ++int styleable AppCompatTextView_drawableStartCompat 10 ++int styleable AppCompatTextView_drawableTint 11 ++int styleable AppCompatTextView_drawableTintMode 12 ++int styleable AppCompatTextView_drawableTopCompat 13 ++int styleable AppCompatTextView_firstBaselineToTopHeight 14 ++int styleable AppCompatTextView_fontFamily 15 ++int styleable AppCompatTextView_fontVariationSettings 16 ++int styleable AppCompatTextView_lastBaselineToBottomHeight 17 ++int styleable AppCompatTextView_lineHeight 18 ++int styleable AppCompatTextView_textAllCaps 19 ++int styleable AppCompatTextView_textLocale 20 ++int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030024, 0x7f030025, 0x7f030026, 0x7f030027, 0x7f030028, 0x7f030035, 0x7f03005a, 0x7f03006b, 0x7f03006c, 0x7f03006d, 0x7f03006e, 0x7f03006f, 0x7f030074, 0x7f030075, 0x7f030081, 0x7f03008a, 0x7f0300b5, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8, 0x7f0300b9, 0x7f0300ba, 0x7f0300bb, 0x7f0300c2, 0x7f0300c3, 0x7f0300c9, 0x7f0300e1, 0x7f03010a, 0x7f03010b, 0x7f03010c, 0x7f03010f, 0x7f030111, 0x7f030121, 0x7f030122, 0x7f030124, 0x7f030125, 0x7f030126, 0x7f03018b, 0x7f030198, 0x7f03020b, 0x7f03020c, 0x7f03020d, 0x7f03020e, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f030214, 0x7f030215, 0x7f030216, 0x7f030217, 0x7f030218, 0x7f030219, 0x7f030280, 0x7f030281, 0x7f030282, 0x7f030295, 0x7f030297, 0x7f0302a2, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302d5, 0x7f0302d6, 0x7f0302f8, 0x7f030324, 0x7f030326, 0x7f030327, 0x7f030328, 0x7f03032a, 0x7f03032b, 0x7f03032c, 0x7f03032d, 0x7f030330, 0x7f030331, 0x7f030359, 0x7f03035a, 0x7f03035b, 0x7f03035c, 0x7f030378, 0x7f030381, 0x7f030382, 0x7f030383, 0x7f030384, 0x7f030385, 0x7f030386, 0x7f030387, 0x7f030388, 0x7f030389, 0x7f03038a } ++int styleable AppCompatTheme_android_windowIsFloating 0 ++int styleable AppCompatTheme_android_windowAnimationStyle 1 ++int styleable AppCompatTheme_actionBarDivider 2 ++int styleable AppCompatTheme_actionBarItemBackground 3 ++int styleable AppCompatTheme_actionBarPopupTheme 4 ++int styleable AppCompatTheme_actionBarSize 5 ++int styleable AppCompatTheme_actionBarSplitStyle 6 ++int styleable AppCompatTheme_actionBarStyle 7 ++int styleable AppCompatTheme_actionBarTabBarStyle 8 ++int styleable AppCompatTheme_actionBarTabStyle 9 ++int styleable AppCompatTheme_actionBarTabTextStyle 10 ++int styleable AppCompatTheme_actionBarTheme 11 ++int styleable AppCompatTheme_actionBarWidgetTheme 12 ++int styleable AppCompatTheme_actionButtonStyle 13 ++int styleable AppCompatTheme_actionDropDownStyle 14 ++int styleable AppCompatTheme_actionMenuTextAppearance 15 ++int styleable AppCompatTheme_actionMenuTextColor 16 ++int styleable AppCompatTheme_actionModeBackground 17 ++int styleable AppCompatTheme_actionModeCloseButtonStyle 18 ++int styleable AppCompatTheme_actionModeCloseContentDescription 19 ++int styleable AppCompatTheme_actionModeCloseDrawable 20 ++int styleable AppCompatTheme_actionModeCopyDrawable 21 ++int styleable AppCompatTheme_actionModeCutDrawable 22 ++int styleable AppCompatTheme_actionModeFindDrawable 23 ++int styleable AppCompatTheme_actionModePasteDrawable 24 ++int styleable AppCompatTheme_actionModePopupWindowStyle 25 ++int styleable AppCompatTheme_actionModeSelectAllDrawable 26 ++int styleable AppCompatTheme_actionModeShareDrawable 27 ++int styleable AppCompatTheme_actionModeSplitBackground 28 ++int styleable AppCompatTheme_actionModeStyle 29 ++int styleable AppCompatTheme_actionModeTheme 30 ++int styleable AppCompatTheme_actionModeWebSearchDrawable 31 ++int styleable AppCompatTheme_actionOverflowButtonStyle 32 ++int styleable AppCompatTheme_actionOverflowMenuStyle 33 ++int styleable AppCompatTheme_activityChooserViewStyle 34 ++int styleable AppCompatTheme_alertDialogButtonGroupStyle 35 ++int styleable AppCompatTheme_alertDialogCenterButtons 36 ++int styleable AppCompatTheme_alertDialogStyle 37 ++int styleable AppCompatTheme_alertDialogTheme 38 ++int styleable AppCompatTheme_autoCompleteTextViewStyle 39 ++int styleable AppCompatTheme_borderlessButtonStyle 40 ++int styleable AppCompatTheme_buttonBarButtonStyle 41 ++int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 ++int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 ++int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 ++int styleable AppCompatTheme_buttonBarStyle 45 ++int styleable AppCompatTheme_buttonStyle 46 ++int styleable AppCompatTheme_buttonStyleSmall 47 ++int styleable AppCompatTheme_checkboxStyle 48 ++int styleable AppCompatTheme_checkedTextViewStyle 49 ++int styleable AppCompatTheme_colorAccent 50 ++int styleable AppCompatTheme_colorBackgroundFloating 51 ++int styleable AppCompatTheme_colorButtonNormal 52 ++int styleable AppCompatTheme_colorControlActivated 53 ++int styleable AppCompatTheme_colorControlHighlight 54 ++int styleable AppCompatTheme_colorControlNormal 55 ++int styleable AppCompatTheme_colorError 56 ++int styleable AppCompatTheme_colorPrimary 57 ++int styleable AppCompatTheme_colorPrimaryDark 58 ++int styleable AppCompatTheme_colorSwitchThumbNormal 59 ++int styleable AppCompatTheme_controlBackground 60 ++int styleable AppCompatTheme_dialogCornerRadius 61 ++int styleable AppCompatTheme_dialogPreferredPadding 62 ++int styleable AppCompatTheme_dialogTheme 63 ++int styleable AppCompatTheme_dividerHorizontal 64 ++int styleable AppCompatTheme_dividerVertical 65 ++int styleable AppCompatTheme_dropDownListViewStyle 66 ++int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 ++int styleable AppCompatTheme_editTextBackground 68 ++int styleable AppCompatTheme_editTextColor 69 ++int styleable AppCompatTheme_editTextStyle 70 ++int styleable AppCompatTheme_homeAsUpIndicator 71 ++int styleable AppCompatTheme_imageButtonStyle 72 ++int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 ++int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 ++int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 ++int styleable AppCompatTheme_listDividerAlertDialog 76 ++int styleable AppCompatTheme_listMenuViewStyle 77 ++int styleable AppCompatTheme_listPopupWindowStyle 78 ++int styleable AppCompatTheme_listPreferredItemHeight 79 ++int styleable AppCompatTheme_listPreferredItemHeightLarge 80 ++int styleable AppCompatTheme_listPreferredItemHeightSmall 81 ++int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 ++int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 ++int styleable AppCompatTheme_listPreferredItemPaddingRight 84 ++int styleable AppCompatTheme_listPreferredItemPaddingStart 85 ++int styleable AppCompatTheme_panelBackground 86 ++int styleable AppCompatTheme_panelMenuListTheme 87 ++int styleable AppCompatTheme_panelMenuListWidth 88 ++int styleable AppCompatTheme_popupMenuStyle 89 ++int styleable AppCompatTheme_popupWindowStyle 90 ++int styleable AppCompatTheme_radioButtonStyle 91 ++int styleable AppCompatTheme_ratingBarStyle 92 ++int styleable AppCompatTheme_ratingBarStyleIndicator 93 ++int styleable AppCompatTheme_ratingBarStyleSmall 94 ++int styleable AppCompatTheme_searchViewStyle 95 ++int styleable AppCompatTheme_seekBarStyle 96 ++int styleable AppCompatTheme_selectableItemBackground 97 ++int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 ++int styleable AppCompatTheme_spinnerDropDownItemStyle 99 ++int styleable AppCompatTheme_spinnerStyle 100 ++int styleable AppCompatTheme_switchStyle 101 ++int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 ++int styleable AppCompatTheme_textAppearanceListItem 103 ++int styleable AppCompatTheme_textAppearanceListItemSecondary 104 ++int styleable AppCompatTheme_textAppearanceListItemSmall 105 ++int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 ++int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 ++int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 ++int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 ++int styleable AppCompatTheme_textColorAlertDialogListItem 110 ++int styleable AppCompatTheme_textColorSearchUrl 111 ++int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 ++int styleable AppCompatTheme_toolbarStyle 113 ++int styleable AppCompatTheme_tooltipForegroundColor 114 ++int styleable AppCompatTheme_tooltipFrameBackground 115 ++int styleable AppCompatTheme_viewInflaterClass 116 ++int styleable AppCompatTheme_windowActionBar 117 ++int styleable AppCompatTheme_windowActionBarOverlay 118 ++int styleable AppCompatTheme_windowActionModeOverlay 119 ++int styleable AppCompatTheme_windowFixedHeightMajor 120 ++int styleable AppCompatTheme_windowFixedHeightMinor 121 ++int styleable AppCompatTheme_windowFixedWidthMajor 122 ++int styleable AppCompatTheme_windowFixedWidthMinor 123 ++int styleable AppCompatTheme_windowMinWidthMajor 124 ++int styleable AppCompatTheme_windowMinWidthMinor 125 ++int styleable AppCompatTheme_windowNoTitle 126 ++int[] styleable Badge { 0x7f03003d, 0x7f030047, 0x7f030049, 0x7f03018d, 0x7f03023b, 0x7f03026e, 0x7f030377 } ++int styleable Badge_backgroundColor 0 ++int styleable Badge_badgeGravity 1 ++int styleable Badge_badgeTextColor 2 ++int styleable Badge_horizontalOffset 3 ++int styleable Badge_maxCharacterCount 4 ++int styleable Badge_number 5 ++int styleable Badge_verticalOffset 6 ++int[] styleable BaseProgressIndicator { 0x01010139, 0x7f030183, 0x7f03019b, 0x7f030245, 0x7f0302c2, 0x7f0302c4, 0x7f030363, 0x7f030366, 0x7f030368 } ++int styleable BaseProgressIndicator_android_indeterminate 0 ++int styleable BaseProgressIndicator_hideAnimationBehavior 1 ++int styleable BaseProgressIndicator_indicatorColor 2 ++int styleable BaseProgressIndicator_minHideDelay 3 ++int styleable BaseProgressIndicator_showAnimationBehavior 4 ++int styleable BaseProgressIndicator_showDelay 5 ++int styleable BaseProgressIndicator_trackColor 6 ++int styleable BaseProgressIndicator_trackCornerRadius 7 ++int styleable BaseProgressIndicator_trackThickness 8 ++int[] styleable BottomAppBar { 0x7f030045, 0x7f030127, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f03014c, 0x7f030186, 0x7f030279, 0x7f03027b, 0x7f03027c } ++int styleable BottomAppBar_backgroundTint 0 ++int styleable BottomAppBar_elevation 1 ++int styleable BottomAppBar_fabAlignmentMode 2 ++int styleable BottomAppBar_fabAnimationMode 3 ++int styleable BottomAppBar_fabCradleMargin 4 ++int styleable BottomAppBar_fabCradleRoundedCornerRadius 5 ++int styleable BottomAppBar_fabCradleVerticalOffset 6 ++int styleable BottomAppBar_hideOnScroll 7 ++int styleable BottomAppBar_paddingBottomSystemWindowInsets 8 ++int styleable BottomAppBar_paddingLeftSystemWindowInsets 9 ++int styleable BottomAppBar_paddingRightSystemWindowInsets 10 ++int[] styleable BottomNavigationView { 0x7f0301a7 } ++int styleable BottomNavigationView_itemHorizontalTranslationEnabled 0 ++int[] styleable BottomSheetBehavior_Layout { 0x0101011f, 0x01010440, 0x7f030045, 0x7f030050, 0x7f030051, 0x7f030052, 0x7f030053, 0x7f030054, 0x7f030056, 0x7f030057, 0x7f030058, 0x7f030179, 0x7f030279, 0x7f03027b, 0x7f03027c, 0x7f03027f, 0x7f0302bc, 0x7f0302bf } ++int styleable BottomSheetBehavior_Layout_android_maxWidth 0 ++int styleable BottomSheetBehavior_Layout_android_elevation 1 ++int styleable BottomSheetBehavior_Layout_backgroundTint 2 ++int styleable BottomSheetBehavior_Layout_behavior_draggable 3 ++int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 4 ++int styleable BottomSheetBehavior_Layout_behavior_fitToContents 5 ++int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 6 ++int styleable BottomSheetBehavior_Layout_behavior_hideable 7 ++int styleable BottomSheetBehavior_Layout_behavior_peekHeight 8 ++int styleable BottomSheetBehavior_Layout_behavior_saveFlags 9 ++int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 10 ++int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 11 ++int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 12 ++int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 13 ++int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 14 ++int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 15 ++int styleable BottomSheetBehavior_Layout_shapeAppearance 16 ++int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 17 ++int[] styleable ButtonBarLayout { 0x7f030029 } ++int styleable ButtonBarLayout_allowStacking 0 ++int[] styleable Capability { 0x7f0302a1, 0x7f0302c1 } ++int styleable Capability_queryPatterns 0 ++int styleable Capability_shortcutMatchRequired 1 ++int[] styleable CardView { 0x0101013f, 0x01010140, 0x7f030078, 0x7f030079, 0x7f03007a, 0x7f03007c, 0x7f03007d, 0x7f03007e, 0x7f0300d8, 0x7f0300d9, 0x7f0300db, 0x7f0300dc, 0x7f0300de } ++int styleable CardView_android_minWidth 0 ++int styleable CardView_android_minHeight 1 ++int styleable CardView_cardBackgroundColor 2 ++int styleable CardView_cardCornerRadius 3 ++int styleable CardView_cardElevation 4 ++int styleable CardView_cardMaxElevation 5 ++int styleable CardView_cardPreventCornerOverlap 6 ++int styleable CardView_cardUseCompatPadding 7 ++int styleable CardView_contentPadding 8 ++int styleable CardView_contentPaddingBottom 9 ++int styleable CardView_contentPaddingLeft 10 ++int styleable CardView_contentPaddingRight 11 ++int styleable CardView_contentPaddingTop 12 ++int[] styleable Chip { 0x01010034, 0x01010095, 0x01010098, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f030084, 0x7f030085, 0x7f030088, 0x7f030089, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f03008f, 0x7f030090, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f03009a, 0x7f03009b, 0x7f03009c, 0x7f03009e, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300a9, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac, 0x7f030133, 0x7f030184, 0x7f030190, 0x7f030194, 0x7f0302ad, 0x7f0302bc, 0x7f0302bf, 0x7f0302c6, 0x7f030332, 0x7f030336 } ++int styleable Chip_android_textAppearance 0 ++int styleable Chip_android_textSize 1 ++int styleable Chip_android_textColor 2 ++int styleable Chip_android_ellipsize 3 ++int styleable Chip_android_maxWidth 4 ++int styleable Chip_android_text 5 ++int styleable Chip_android_checkable 6 ++int styleable Chip_checkedIcon 7 ++int styleable Chip_checkedIconEnabled 8 ++int styleable Chip_checkedIconTint 9 ++int styleable Chip_checkedIconVisible 10 ++int styleable Chip_chipBackgroundColor 11 ++int styleable Chip_chipCornerRadius 12 ++int styleable Chip_chipEndPadding 13 ++int styleable Chip_chipIcon 14 ++int styleable Chip_chipIconEnabled 15 ++int styleable Chip_chipIconSize 16 ++int styleable Chip_chipIconTint 17 ++int styleable Chip_chipIconVisible 18 ++int styleable Chip_chipMinHeight 19 ++int styleable Chip_chipMinTouchTargetSize 20 ++int styleable Chip_chipStartPadding 21 ++int styleable Chip_chipStrokeColor 22 ++int styleable Chip_chipStrokeWidth 23 ++int styleable Chip_chipSurfaceColor 24 ++int styleable Chip_closeIcon 25 ++int styleable Chip_closeIconEnabled 26 ++int styleable Chip_closeIconEndPadding 27 ++int styleable Chip_closeIconSize 28 ++int styleable Chip_closeIconStartPadding 29 ++int styleable Chip_closeIconTint 30 ++int styleable Chip_closeIconVisible 31 ++int styleable Chip_ensureMinTouchTargetSize 32 ++int styleable Chip_hideMotionSpec 33 ++int styleable Chip_iconEndPadding 34 ++int styleable Chip_iconStartPadding 35 ++int styleable Chip_rippleColor 36 ++int styleable Chip_shapeAppearance 37 ++int styleable Chip_shapeAppearanceOverlay 38 ++int styleable Chip_showMotionSpec 39 ++int styleable Chip_textEndPadding 40 ++int styleable Chip_textStartPadding 41 ++int[] styleable ChipGroup { 0x7f030083, 0x7f030096, 0x7f030097, 0x7f030098, 0x7f0302ba, 0x7f0302cc, 0x7f0302cd } ++int styleable ChipGroup_checkedChip 0 ++int styleable ChipGroup_chipSpacing 1 ++int styleable ChipGroup_chipSpacingHorizontal 2 ++int styleable ChipGroup_chipSpacingVertical 3 ++int styleable ChipGroup_selectionRequired 4 ++int styleable ChipGroup_singleLine 5 ++int styleable ChipGroup_singleSelection 6 ++int[] styleable CircularProgressIndicator { 0x7f03019c, 0x7f03019e, 0x7f03019f } ++int styleable CircularProgressIndicator_indicatorDirectionCircular 0 ++int styleable CircularProgressIndicator_indicatorInset 1 ++int styleable CircularProgressIndicator_indicatorSize 2 ++int[] styleable ClockFaceView { 0x7f0300a2, 0x7f0300a5 } ++int styleable ClockFaceView_clockFaceBackgroundColor 0 ++int styleable ClockFaceView_clockNumberTextColor 1 ++int[] styleable ClockHandView { 0x7f0300a3, 0x7f030233, 0x7f0302bb } ++int styleable ClockHandView_clockHandColor 0 ++int styleable ClockHandView_materialCircleRadius 1 ++int styleable ClockHandView_selectorSize 2 ++int[] styleable CollapsingToolbarLayout { 0x7f0300b1, 0x7f0300b2, 0x7f0300df, 0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f030144, 0x7f030147, 0x7f030175, 0x7f03023e, 0x7f0302b1, 0x7f0302b3, 0x7f0302e8, 0x7f03034b, 0x7f03034d, 0x7f03034e, 0x7f030358 } ++int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 ++int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 ++int styleable CollapsingToolbarLayout_contentScrim 2 ++int styleable CollapsingToolbarLayout_expandedTitleGravity 3 ++int styleable CollapsingToolbarLayout_expandedTitleMargin 4 ++int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5 ++int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6 ++int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7 ++int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8 ++int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9 ++int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 10 ++int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 11 ++int styleable CollapsingToolbarLayout_maxLines 12 ++int styleable CollapsingToolbarLayout_scrimAnimationDuration 13 ++int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 14 ++int styleable CollapsingToolbarLayout_statusBarScrim 15 ++int styleable CollapsingToolbarLayout_title 16 ++int styleable CollapsingToolbarLayout_titleCollapseMode 17 ++int styleable CollapsingToolbarLayout_titleEnabled 18 ++int styleable CollapsingToolbarLayout_toolbarId 19 ++int[] styleable CollapsingToolbarLayout_Layout { 0x7f0301cb, 0x7f0301cc } ++int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 ++int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 ++int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x01010647, 0x7f03002a, 0x7f0301bf } ++int styleable ColorStateListItem_android_color 0 ++int styleable ColorStateListItem_android_alpha 1 ++int styleable ColorStateListItem_android_lStar 2 ++int styleable ColorStateListItem_alpha 3 ++int styleable ColorStateListItem_lStar 4 ++int[] styleable CompoundButton { 0x01010107, 0x7f030070, 0x7f030076, 0x7f030077 } ++int styleable CompoundButton_android_button 0 ++int styleable CompoundButton_buttonCompat 1 ++int styleable CompoundButton_buttonTint 2 ++int styleable CompoundButton_buttonTintMode 3 ++int[] styleable Constraint { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f03002d, 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f030080, 0x7f0300ce, 0x7f030115, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f030164, 0x7f030165, 0x7f030166, 0x7f030167, 0x7f030168, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f0301e7, 0x7f0301e8, 0x7f0301e9, 0x7f0301ea, 0x7f0301eb, 0x7f0301ec, 0x7f0301ed, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f03025e, 0x7f03025f, 0x7f030288, 0x7f03028f, 0x7f03036c, 0x7f03036e, 0x7f030379 } ++int styleable Constraint_android_orientation 0 ++int styleable Constraint_android_id 1 ++int styleable Constraint_android_visibility 2 ++int styleable Constraint_android_layout_width 3 ++int styleable Constraint_android_layout_height 4 ++int styleable Constraint_android_layout_marginLeft 5 ++int styleable Constraint_android_layout_marginTop 6 ++int styleable Constraint_android_layout_marginRight 7 ++int styleable Constraint_android_layout_marginBottom 8 ++int styleable Constraint_android_maxWidth 9 ++int styleable Constraint_android_maxHeight 10 ++int styleable Constraint_android_minWidth 11 ++int styleable Constraint_android_minHeight 12 ++int styleable Constraint_android_alpha 13 ++int styleable Constraint_android_transformPivotX 14 ++int styleable Constraint_android_transformPivotY 15 ++int styleable Constraint_android_translationX 16 ++int styleable Constraint_android_translationY 17 ++int styleable Constraint_android_scaleX 18 ++int styleable Constraint_android_scaleY 19 ++int styleable Constraint_android_rotation 20 ++int styleable Constraint_android_rotationX 21 ++int styleable Constraint_android_rotationY 22 ++int styleable Constraint_android_layout_marginStart 23 ++int styleable Constraint_android_layout_marginEnd 24 ++int styleable Constraint_android_translationZ 25 ++int styleable Constraint_android_elevation 26 ++int styleable Constraint_animate_relativeTo 27 ++int styleable Constraint_barrierAllowsGoneWidgets 28 ++int styleable Constraint_barrierDirection 29 ++int styleable Constraint_barrierMargin 30 ++int styleable Constraint_chainUseRtl 31 ++int styleable Constraint_constraint_referenced_ids 32 ++int styleable Constraint_drawPath 33 ++int styleable Constraint_flow_firstHorizontalBias 34 ++int styleable Constraint_flow_firstHorizontalStyle 35 ++int styleable Constraint_flow_firstVerticalBias 36 ++int styleable Constraint_flow_firstVerticalStyle 37 ++int styleable Constraint_flow_horizontalAlign 38 ++int styleable Constraint_flow_horizontalBias 39 ++int styleable Constraint_flow_horizontalGap 40 ++int styleable Constraint_flow_horizontalStyle 41 ++int styleable Constraint_flow_lastHorizontalBias 42 ++int styleable Constraint_flow_lastHorizontalStyle 43 ++int styleable Constraint_flow_lastVerticalBias 44 ++int styleable Constraint_flow_lastVerticalStyle 45 ++int styleable Constraint_flow_maxElementsWrap 46 ++int styleable Constraint_flow_verticalAlign 47 ++int styleable Constraint_flow_verticalBias 48 ++int styleable Constraint_flow_verticalGap 49 ++int styleable Constraint_flow_verticalStyle 50 ++int styleable Constraint_flow_wrapMode 51 ++int styleable Constraint_layout_constrainedHeight 52 ++int styleable Constraint_layout_constrainedWidth 53 ++int styleable Constraint_layout_constraintBaseline_creator 54 ++int styleable Constraint_layout_constraintBaseline_toBaselineOf 55 ++int styleable Constraint_layout_constraintBottom_creator 56 ++int styleable Constraint_layout_constraintBottom_toBottomOf 57 ++int styleable Constraint_layout_constraintBottom_toTopOf 58 ++int styleable Constraint_layout_constraintCircle 59 ++int styleable Constraint_layout_constraintCircleAngle 60 ++int styleable Constraint_layout_constraintCircleRadius 61 ++int styleable Constraint_layout_constraintDimensionRatio 62 ++int styleable Constraint_layout_constraintEnd_toEndOf 63 ++int styleable Constraint_layout_constraintEnd_toStartOf 64 ++int styleable Constraint_layout_constraintGuide_begin 65 ++int styleable Constraint_layout_constraintGuide_end 66 ++int styleable Constraint_layout_constraintGuide_percent 67 ++int styleable Constraint_layout_constraintHeight_default 68 ++int styleable Constraint_layout_constraintHeight_max 69 ++int styleable Constraint_layout_constraintHeight_min 70 ++int styleable Constraint_layout_constraintHeight_percent 71 ++int styleable Constraint_layout_constraintHorizontal_bias 72 ++int styleable Constraint_layout_constraintHorizontal_chainStyle 73 ++int styleable Constraint_layout_constraintHorizontal_weight 74 ++int styleable Constraint_layout_constraintLeft_creator 75 ++int styleable Constraint_layout_constraintLeft_toLeftOf 76 ++int styleable Constraint_layout_constraintLeft_toRightOf 77 ++int styleable Constraint_layout_constraintRight_creator 78 ++int styleable Constraint_layout_constraintRight_toLeftOf 79 ++int styleable Constraint_layout_constraintRight_toRightOf 80 ++int styleable Constraint_layout_constraintStart_toEndOf 81 ++int styleable Constraint_layout_constraintStart_toStartOf 82 ++int styleable Constraint_layout_constraintTag 83 ++int styleable Constraint_layout_constraintTop_creator 84 ++int styleable Constraint_layout_constraintTop_toBottomOf 85 ++int styleable Constraint_layout_constraintTop_toTopOf 86 ++int styleable Constraint_layout_constraintVertical_bias 87 ++int styleable Constraint_layout_constraintVertical_chainStyle 88 ++int styleable Constraint_layout_constraintVertical_weight 89 ++int styleable Constraint_layout_constraintWidth_default 90 ++int styleable Constraint_layout_constraintWidth_max 91 ++int styleable Constraint_layout_constraintWidth_min 92 ++int styleable Constraint_layout_constraintWidth_percent 93 ++int styleable Constraint_layout_editor_absoluteX 94 ++int styleable Constraint_layout_editor_absoluteY 95 ++int styleable Constraint_layout_goneMarginBottom 96 ++int styleable Constraint_layout_goneMarginEnd 97 ++int styleable Constraint_layout_goneMarginLeft 98 ++int styleable Constraint_layout_goneMarginRight 99 ++int styleable Constraint_layout_goneMarginStart 100 ++int styleable Constraint_layout_goneMarginTop 101 ++int styleable Constraint_motionProgress 102 ++int styleable Constraint_motionStagger 103 ++int styleable Constraint_pathMotionArc 104 ++int styleable Constraint_pivotAnchor 105 ++int styleable Constraint_transitionEasing 106 ++int styleable Constraint_transitionPathRotate 107 ++int styleable Constraint_visibilityMode 108 ++int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x010100d5, 0x010100d6, 0x010100d7, 0x010100d8, 0x010100d9, 0x010100dc, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010103b3, 0x010103b4, 0x01010440, 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f030080, 0x7f0300cb, 0x7f0300ce, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f030164, 0x7f030165, 0x7f030166, 0x7f030167, 0x7f030168, 0x7f0301c5, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f0301e7, 0x7f0301e8, 0x7f0301e9, 0x7f0301ea, 0x7f0301eb, 0x7f0301ec, 0x7f0301ed, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030202 } ++int styleable ConstraintLayout_Layout_android_orientation 0 ++int styleable ConstraintLayout_Layout_android_padding 1 ++int styleable ConstraintLayout_Layout_android_paddingLeft 2 ++int styleable ConstraintLayout_Layout_android_paddingTop 3 ++int styleable ConstraintLayout_Layout_android_paddingRight 4 ++int styleable ConstraintLayout_Layout_android_paddingBottom 5 ++int styleable ConstraintLayout_Layout_android_visibility 6 ++int styleable ConstraintLayout_Layout_android_maxWidth 7 ++int styleable ConstraintLayout_Layout_android_maxHeight 8 ++int styleable ConstraintLayout_Layout_android_minWidth 9 ++int styleable ConstraintLayout_Layout_android_minHeight 10 ++int styleable ConstraintLayout_Layout_android_paddingStart 11 ++int styleable ConstraintLayout_Layout_android_paddingEnd 12 ++int styleable ConstraintLayout_Layout_android_elevation 13 ++int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 14 ++int styleable ConstraintLayout_Layout_barrierDirection 15 ++int styleable ConstraintLayout_Layout_barrierMargin 16 ++int styleable ConstraintLayout_Layout_chainUseRtl 17 ++int styleable ConstraintLayout_Layout_constraintSet 18 ++int styleable ConstraintLayout_Layout_constraint_referenced_ids 19 ++int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 20 ++int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 21 ++int styleable ConstraintLayout_Layout_flow_firstVerticalBias 22 ++int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 23 ++int styleable ConstraintLayout_Layout_flow_horizontalAlign 24 ++int styleable ConstraintLayout_Layout_flow_horizontalBias 25 ++int styleable ConstraintLayout_Layout_flow_horizontalGap 26 ++int styleable ConstraintLayout_Layout_flow_horizontalStyle 27 ++int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 28 ++int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 29 ++int styleable ConstraintLayout_Layout_flow_lastVerticalBias 30 ++int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 31 ++int styleable ConstraintLayout_Layout_flow_maxElementsWrap 32 ++int styleable ConstraintLayout_Layout_flow_verticalAlign 33 ++int styleable ConstraintLayout_Layout_flow_verticalBias 34 ++int styleable ConstraintLayout_Layout_flow_verticalGap 35 ++int styleable ConstraintLayout_Layout_flow_verticalStyle 36 ++int styleable ConstraintLayout_Layout_flow_wrapMode 37 ++int styleable ConstraintLayout_Layout_layoutDescription 38 ++int styleable ConstraintLayout_Layout_layout_constrainedHeight 39 ++int styleable ConstraintLayout_Layout_layout_constrainedWidth 40 ++int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 41 ++int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 42 ++int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 43 ++int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 44 ++int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 45 ++int styleable ConstraintLayout_Layout_layout_constraintCircle 46 ++int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 47 ++int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 48 ++int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 49 ++int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 50 ++int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 51 ++int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 52 ++int styleable ConstraintLayout_Layout_layout_constraintGuide_end 53 ++int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 54 ++int styleable ConstraintLayout_Layout_layout_constraintHeight_default 55 ++int styleable ConstraintLayout_Layout_layout_constraintHeight_max 56 ++int styleable ConstraintLayout_Layout_layout_constraintHeight_min 57 ++int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 58 ++int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 59 ++int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 60 ++int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 61 ++int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 62 ++int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 63 ++int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 64 ++int styleable ConstraintLayout_Layout_layout_constraintRight_creator 65 ++int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 66 ++int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 67 ++int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 68 ++int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 69 ++int styleable ConstraintLayout_Layout_layout_constraintTag 70 ++int styleable ConstraintLayout_Layout_layout_constraintTop_creator 71 ++int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 72 ++int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 73 ++int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 74 ++int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 75 ++int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 76 ++int styleable ConstraintLayout_Layout_layout_constraintWidth_default 77 ++int styleable ConstraintLayout_Layout_layout_constraintWidth_max 78 ++int styleable ConstraintLayout_Layout_layout_constraintWidth_min 79 ++int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 80 ++int styleable ConstraintLayout_Layout_layout_editor_absoluteX 81 ++int styleable ConstraintLayout_Layout_layout_editor_absoluteY 82 ++int styleable ConstraintLayout_Layout_layout_goneMarginBottom 83 ++int styleable ConstraintLayout_Layout_layout_goneMarginEnd 84 ++int styleable ConstraintLayout_Layout_layout_goneMarginLeft 85 ++int styleable ConstraintLayout_Layout_layout_goneMarginRight 86 ++int styleable ConstraintLayout_Layout_layout_goneMarginStart 87 ++int styleable ConstraintLayout_Layout_layout_goneMarginTop 88 ++int styleable ConstraintLayout_Layout_layout_optimizationLevel 89 ++int[] styleable ConstraintLayout_placeholder { 0x7f0300d0, 0x7f030293 } ++int styleable ConstraintLayout_placeholder_content 0 ++int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 ++int[] styleable ConstraintSet { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x010101b5, 0x010101b6, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f03002d, 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f030080, 0x7f0300ce, 0x7f030109, 0x7f030115, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f030164, 0x7f030165, 0x7f030166, 0x7f030167, 0x7f030168, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f0301e7, 0x7f0301e8, 0x7f0301e9, 0x7f0301ea, 0x7f0301eb, 0x7f0301ec, 0x7f0301ed, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f03025e, 0x7f03025f, 0x7f030288, 0x7f03028f, 0x7f03036c, 0x7f03036e } ++int styleable ConstraintSet_android_orientation 0 ++int styleable ConstraintSet_android_id 1 ++int styleable ConstraintSet_android_visibility 2 ++int styleable ConstraintSet_android_layout_width 3 ++int styleable ConstraintSet_android_layout_height 4 ++int styleable ConstraintSet_android_layout_marginLeft 5 ++int styleable ConstraintSet_android_layout_marginTop 6 ++int styleable ConstraintSet_android_layout_marginRight 7 ++int styleable ConstraintSet_android_layout_marginBottom 8 ++int styleable ConstraintSet_android_maxWidth 9 ++int styleable ConstraintSet_android_maxHeight 10 ++int styleable ConstraintSet_android_minWidth 11 ++int styleable ConstraintSet_android_minHeight 12 ++int styleable ConstraintSet_android_pivotX 13 ++int styleable ConstraintSet_android_pivotY 14 ++int styleable ConstraintSet_android_alpha 15 ++int styleable ConstraintSet_android_transformPivotX 16 ++int styleable ConstraintSet_android_transformPivotY 17 ++int styleable ConstraintSet_android_translationX 18 ++int styleable ConstraintSet_android_translationY 19 ++int styleable ConstraintSet_android_scaleX 20 ++int styleable ConstraintSet_android_scaleY 21 ++int styleable ConstraintSet_android_rotation 22 ++int styleable ConstraintSet_android_rotationX 23 ++int styleable ConstraintSet_android_rotationY 24 ++int styleable ConstraintSet_android_layout_marginStart 25 ++int styleable ConstraintSet_android_layout_marginEnd 26 ++int styleable ConstraintSet_android_translationZ 27 ++int styleable ConstraintSet_android_elevation 28 ++int styleable ConstraintSet_animate_relativeTo 29 ++int styleable ConstraintSet_barrierAllowsGoneWidgets 30 ++int styleable ConstraintSet_barrierDirection 31 ++int styleable ConstraintSet_barrierMargin 32 ++int styleable ConstraintSet_chainUseRtl 33 ++int styleable ConstraintSet_constraint_referenced_ids 34 ++int styleable ConstraintSet_deriveConstraintsFrom 35 ++int styleable ConstraintSet_drawPath 36 ++int styleable ConstraintSet_flow_firstHorizontalBias 37 ++int styleable ConstraintSet_flow_firstHorizontalStyle 38 ++int styleable ConstraintSet_flow_firstVerticalBias 39 ++int styleable ConstraintSet_flow_firstVerticalStyle 40 ++int styleable ConstraintSet_flow_horizontalAlign 41 ++int styleable ConstraintSet_flow_horizontalBias 42 ++int styleable ConstraintSet_flow_horizontalGap 43 ++int styleable ConstraintSet_flow_horizontalStyle 44 ++int styleable ConstraintSet_flow_lastHorizontalBias 45 ++int styleable ConstraintSet_flow_lastHorizontalStyle 46 ++int styleable ConstraintSet_flow_lastVerticalBias 47 ++int styleable ConstraintSet_flow_lastVerticalStyle 48 ++int styleable ConstraintSet_flow_maxElementsWrap 49 ++int styleable ConstraintSet_flow_verticalAlign 50 ++int styleable ConstraintSet_flow_verticalBias 51 ++int styleable ConstraintSet_flow_verticalGap 52 ++int styleable ConstraintSet_flow_verticalStyle 53 ++int styleable ConstraintSet_flow_wrapMode 54 ++int styleable ConstraintSet_layout_constrainedHeight 55 ++int styleable ConstraintSet_layout_constrainedWidth 56 ++int styleable ConstraintSet_layout_constraintBaseline_creator 57 ++int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 58 ++int styleable ConstraintSet_layout_constraintBottom_creator 59 ++int styleable ConstraintSet_layout_constraintBottom_toBottomOf 60 ++int styleable ConstraintSet_layout_constraintBottom_toTopOf 61 ++int styleable ConstraintSet_layout_constraintCircle 62 ++int styleable ConstraintSet_layout_constraintCircleAngle 63 ++int styleable ConstraintSet_layout_constraintCircleRadius 64 ++int styleable ConstraintSet_layout_constraintDimensionRatio 65 ++int styleable ConstraintSet_layout_constraintEnd_toEndOf 66 ++int styleable ConstraintSet_layout_constraintEnd_toStartOf 67 ++int styleable ConstraintSet_layout_constraintGuide_begin 68 ++int styleable ConstraintSet_layout_constraintGuide_end 69 ++int styleable ConstraintSet_layout_constraintGuide_percent 70 ++int styleable ConstraintSet_layout_constraintHeight_default 71 ++int styleable ConstraintSet_layout_constraintHeight_max 72 ++int styleable ConstraintSet_layout_constraintHeight_min 73 ++int styleable ConstraintSet_layout_constraintHeight_percent 74 ++int styleable ConstraintSet_layout_constraintHorizontal_bias 75 ++int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 76 ++int styleable ConstraintSet_layout_constraintHorizontal_weight 77 ++int styleable ConstraintSet_layout_constraintLeft_creator 78 ++int styleable ConstraintSet_layout_constraintLeft_toLeftOf 79 ++int styleable ConstraintSet_layout_constraintLeft_toRightOf 80 ++int styleable ConstraintSet_layout_constraintRight_creator 81 ++int styleable ConstraintSet_layout_constraintRight_toLeftOf 82 ++int styleable ConstraintSet_layout_constraintRight_toRightOf 83 ++int styleable ConstraintSet_layout_constraintStart_toEndOf 84 ++int styleable ConstraintSet_layout_constraintStart_toStartOf 85 ++int styleable ConstraintSet_layout_constraintTag 86 ++int styleable ConstraintSet_layout_constraintTop_creator 87 ++int styleable ConstraintSet_layout_constraintTop_toBottomOf 88 ++int styleable ConstraintSet_layout_constraintTop_toTopOf 89 ++int styleable ConstraintSet_layout_constraintVertical_bias 90 ++int styleable ConstraintSet_layout_constraintVertical_chainStyle 91 ++int styleable ConstraintSet_layout_constraintVertical_weight 92 ++int styleable ConstraintSet_layout_constraintWidth_default 93 ++int styleable ConstraintSet_layout_constraintWidth_max 94 ++int styleable ConstraintSet_layout_constraintWidth_min 95 ++int styleable ConstraintSet_layout_constraintWidth_percent 96 ++int styleable ConstraintSet_layout_editor_absoluteX 97 ++int styleable ConstraintSet_layout_editor_absoluteY 98 ++int styleable ConstraintSet_layout_goneMarginBottom 99 ++int styleable ConstraintSet_layout_goneMarginEnd 100 ++int styleable ConstraintSet_layout_goneMarginLeft 101 ++int styleable ConstraintSet_layout_goneMarginRight 102 ++int styleable ConstraintSet_layout_goneMarginStart 103 ++int styleable ConstraintSet_layout_goneMarginTop 104 ++int styleable ConstraintSet_motionProgress 105 ++int styleable ConstraintSet_motionStagger 106 ++int styleable ConstraintSet_pathMotionArc 107 ++int styleable ConstraintSet_pivotAnchor 108 ++int styleable ConstraintSet_transitionEasing 109 ++int styleable ConstraintSet_transitionPathRotate 110 ++int[] styleable CoordinatorLayout { 0x7f0301be, 0x7f0302e6 } ++int styleable CoordinatorLayout_keylines 0 ++int styleable CoordinatorLayout_statusBarBackground 1 ++int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301f7, 0x7f030200, 0x7f030201 } ++int styleable CoordinatorLayout_Layout_android_layout_gravity 0 ++int styleable CoordinatorLayout_Layout_layout_anchor 1 ++int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 ++int styleable CoordinatorLayout_Layout_layout_behavior 3 ++int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 ++int styleable CoordinatorLayout_Layout_layout_insetEdge 5 ++int styleable CoordinatorLayout_Layout_layout_keyline 6 ++int[] styleable CustomAttribute { 0x7f030034, 0x7f0300f7, 0x7f0300f8, 0x7f0300f9, 0x7f0300fa, 0x7f0300fb, 0x7f0300fc, 0x7f0300fe, 0x7f0300ff } ++int styleable CustomAttribute_attributeName 0 ++int styleable CustomAttribute_customBoolean 1 ++int styleable CustomAttribute_customColorDrawableValue 2 ++int styleable CustomAttribute_customColorValue 3 ++int styleable CustomAttribute_customDimension 4 ++int styleable CustomAttribute_customFloatValue 5 ++int styleable CustomAttribute_customIntegerValue 6 ++int styleable CustomAttribute_customPixelDimension 7 ++int styleable CustomAttribute_customStringValue 8 ++int[] styleable DrawerArrowToggle { 0x7f030032, 0x7f030033, 0x7f03004a, 0x7f0300b4, 0x7f03011a, 0x7f030178, 0x7f0302d4, 0x7f030339 } ++int styleable DrawerArrowToggle_arrowHeadLength 0 ++int styleable DrawerArrowToggle_arrowShaftLength 1 ++int styleable DrawerArrowToggle_barLength 2 ++int styleable DrawerArrowToggle_color 3 ++int styleable DrawerArrowToggle_drawableSize 4 ++int styleable DrawerArrowToggle_gapBetweenBars 5 ++int styleable DrawerArrowToggle_spinBars 6 ++int styleable DrawerArrowToggle_thickness 7 ++int[] styleable DrawerLayout { 0x7f030127 } ++int styleable DrawerLayout_elevation 0 ++int[] styleable ExtendedFloatingActionButton { 0x7f0300b0, 0x7f030127, 0x7f030145, 0x7f030184, 0x7f0302c6, 0x7f0302ca } ++int styleable ExtendedFloatingActionButton_collapsedSize 0 ++int styleable ExtendedFloatingActionButton_elevation 1 ++int styleable ExtendedFloatingActionButton_extendMotionSpec 2 ++int styleable ExtendedFloatingActionButton_hideMotionSpec 3 ++int styleable ExtendedFloatingActionButton_showMotionSpec 4 ++int styleable ExtendedFloatingActionButton_shrinkMotionSpec 5 ++int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f03004e, 0x7f03004f } ++int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 ++int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 ++int[] styleable FloatingActionButton { 0x0101000e, 0x7f030045, 0x7f030046, 0x7f030059, 0x7f030127, 0x7f030133, 0x7f03014d, 0x7f03014e, 0x7f030184, 0x7f03018e, 0x7f03023d, 0x7f03029c, 0x7f0302ad, 0x7f0302bc, 0x7f0302bf, 0x7f0302c6, 0x7f030374 } ++int styleable FloatingActionButton_android_enabled 0 ++int styleable FloatingActionButton_backgroundTint 1 ++int styleable FloatingActionButton_backgroundTintMode 2 ++int styleable FloatingActionButton_borderWidth 3 ++int styleable FloatingActionButton_elevation 4 ++int styleable FloatingActionButton_ensureMinTouchTargetSize 5 ++int styleable FloatingActionButton_fabCustomSize 6 ++int styleable FloatingActionButton_fabSize 7 ++int styleable FloatingActionButton_hideMotionSpec 8 ++int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 ++int styleable FloatingActionButton_maxImageSize 10 ++int styleable FloatingActionButton_pressedTranslationZ 11 ++int styleable FloatingActionButton_rippleColor 12 ++int styleable FloatingActionButton_shapeAppearance 13 ++int styleable FloatingActionButton_shapeAppearanceOverlay 14 ++int styleable FloatingActionButton_showMotionSpec 15 ++int styleable FloatingActionButton_useCompatPadding 16 ++int[] styleable FloatingActionButton_Behavior_Layout { 0x7f03004e } ++int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 ++int[] styleable FlowLayout { 0x7f0301b5, 0x7f030209 } ++int styleable FlowLayout_itemSpacing 0 ++int styleable FlowLayout_lineSpacing 1 ++int[] styleable FontFamily { 0x7f03016b, 0x7f03016c, 0x7f03016d, 0x7f03016e, 0x7f03016f, 0x7f030170, 0x7f030171 } ++int styleable FontFamily_fontProviderAuthority 0 ++int styleable FontFamily_fontProviderCerts 1 ++int styleable FontFamily_fontProviderFetchStrategy 2 ++int styleable FontFamily_fontProviderFetchTimeout 3 ++int styleable FontFamily_fontProviderPackage 4 ++int styleable FontFamily_fontProviderQuery 5 ++int styleable FontFamily_fontProviderSystemFontFamily 6 ++int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f030169, 0x7f030172, 0x7f030173, 0x7f030174, 0x7f030373 } ++int styleable FontFamilyFont_android_font 0 ++int styleable FontFamilyFont_android_fontWeight 1 ++int styleable FontFamilyFont_android_fontStyle 2 ++int styleable FontFamilyFont_android_ttcIndex 3 ++int styleable FontFamilyFont_android_fontVariationSettings 4 ++int styleable FontFamilyFont_font 5 ++int styleable FontFamilyFont_fontStyle 6 ++int styleable FontFamilyFont_fontVariationSettings 7 ++int styleable FontFamilyFont_fontWeight 8 ++int styleable FontFamilyFont_ttcIndex 9 ++int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f030176 } ++int styleable ForegroundLinearLayout_android_foreground 0 ++int styleable ForegroundLinearLayout_android_foregroundGravity 1 ++int styleable ForegroundLinearLayout_foregroundInsidePadding 2 ++int[] styleable Fragment { 0x01010003, 0x010100d0, 0x010100d1 } ++int styleable Fragment_android_name 0 ++int styleable Fragment_android_id 1 ++int styleable Fragment_android_tag 2 ++int[] styleable FragmentContainerView { 0x01010003, 0x010100d1 } ++int styleable FragmentContainerView_android_name 0 ++int styleable FragmentContainerView_android_tag 1 ++int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 } ++int styleable GradientColor_android_startColor 0 ++int styleable GradientColor_android_endColor 1 ++int styleable GradientColor_android_type 2 ++int styleable GradientColor_android_centerX 3 ++int styleable GradientColor_android_centerY 4 ++int styleable GradientColor_android_gradientRadius 5 ++int styleable GradientColor_android_tileMode 6 ++int styleable GradientColor_android_centerColor 7 ++int styleable GradientColor_android_startX 8 ++int styleable GradientColor_android_startY 9 ++int styleable GradientColor_android_endX 10 ++int styleable GradientColor_android_endY 11 ++int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } ++int styleable GradientColorItem_android_color 0 ++int styleable GradientColorItem_android_offset 1 ++int[] styleable ImageFilterView { 0x7f03002c, 0x7f03006a, 0x7f0300e0, 0x7f0300f4, 0x7f030277, 0x7f0302ae, 0x7f0302af, 0x7f0302b0, 0x7f03037b } ++int styleable ImageFilterView_altSrc 0 ++int styleable ImageFilterView_brightness 1 ++int styleable ImageFilterView_contrast 2 ++int styleable ImageFilterView_crossfade 3 ++int styleable ImageFilterView_overlay 4 ++int styleable ImageFilterView_round 5 ++int styleable ImageFilterView_roundPercent 6 ++int styleable ImageFilterView_saturation 7 ++int styleable ImageFilterView_warmth 8 ++int[] styleable Insets { 0x7f030279, 0x7f03027b, 0x7f03027c, 0x7f03027f } ++int styleable Insets_paddingBottomSystemWindowInsets 0 ++int styleable Insets_paddingLeftSystemWindowInsets 1 ++int styleable Insets_paddingRightSystemWindowInsets 2 ++int styleable Insets_paddingTopSystemWindowInsets 3 ++int[] styleable KeyAttribute { 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f0300f6, 0x7f030177, 0x7f03025e, 0x7f030260, 0x7f03036c, 0x7f03036e } ++int styleable KeyAttribute_android_alpha 0 ++int styleable KeyAttribute_android_transformPivotX 1 ++int styleable KeyAttribute_android_transformPivotY 2 ++int styleable KeyAttribute_android_translationX 3 ++int styleable KeyAttribute_android_translationY 4 ++int styleable KeyAttribute_android_scaleX 5 ++int styleable KeyAttribute_android_scaleY 6 ++int styleable KeyAttribute_android_rotation 7 ++int styleable KeyAttribute_android_rotationX 8 ++int styleable KeyAttribute_android_rotationY 9 ++int styleable KeyAttribute_android_translationZ 10 ++int styleable KeyAttribute_android_elevation 11 ++int styleable KeyAttribute_curveFit 12 ++int styleable KeyAttribute_framePosition 13 ++int styleable KeyAttribute_motionProgress 14 ++int styleable KeyAttribute_motionTarget 15 ++int styleable KeyAttribute_transitionEasing 16 ++int styleable KeyAttribute_transitionPathRotate 17 ++int[] styleable KeyCycle { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f0300f6, 0x7f030177, 0x7f03025e, 0x7f030260, 0x7f03036c, 0x7f03036e, 0x7f03037d, 0x7f03037e, 0x7f03037f, 0x7f030380 } ++int styleable KeyCycle_android_alpha 0 ++int styleable KeyCycle_android_translationX 1 ++int styleable KeyCycle_android_translationY 2 ++int styleable KeyCycle_android_scaleX 3 ++int styleable KeyCycle_android_scaleY 4 ++int styleable KeyCycle_android_rotation 5 ++int styleable KeyCycle_android_rotationX 6 ++int styleable KeyCycle_android_rotationY 7 ++int styleable KeyCycle_android_translationZ 8 ++int styleable KeyCycle_android_elevation 9 ++int styleable KeyCycle_curveFit 10 ++int styleable KeyCycle_framePosition 11 ++int styleable KeyCycle_motionProgress 12 ++int styleable KeyCycle_motionTarget 13 ++int styleable KeyCycle_transitionEasing 14 ++int styleable KeyCycle_transitionPathRotate 15 ++int styleable KeyCycle_waveOffset 16 ++int styleable KeyCycle_wavePeriod 17 ++int styleable KeyCycle_waveShape 18 ++int styleable KeyCycle_waveVariesBy 19 ++int[] styleable KeyFrame { } ++int[] styleable KeyFramesAcceleration { } ++int[] styleable KeyFramesVelocity { } ++int[] styleable KeyPosition { 0x7f0300f6, 0x7f030115, 0x7f030177, 0x7f0301bc, 0x7f030260, 0x7f030288, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f0302ce, 0x7f03036c } ++int styleable KeyPosition_curveFit 0 ++int styleable KeyPosition_drawPath 1 ++int styleable KeyPosition_framePosition 2 ++int styleable KeyPosition_keyPositionType 3 ++int styleable KeyPosition_motionTarget 4 ++int styleable KeyPosition_pathMotionArc 5 ++int styleable KeyPosition_percentHeight 6 ++int styleable KeyPosition_percentWidth 7 ++int styleable KeyPosition_percentX 8 ++int styleable KeyPosition_percentY 9 ++int styleable KeyPosition_sizePercent 10 ++int styleable KeyPosition_transitionEasing 11 ++int[] styleable KeyTimeCycle { 0x0101031f, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440, 0x7f0300f6, 0x7f030177, 0x7f03025e, 0x7f030260, 0x7f03036c, 0x7f03036e, 0x7f03037c, 0x7f03037d, 0x7f03037e, 0x7f03037f } ++int styleable KeyTimeCycle_android_alpha 0 ++int styleable KeyTimeCycle_android_translationX 1 ++int styleable KeyTimeCycle_android_translationY 2 ++int styleable KeyTimeCycle_android_scaleX 3 ++int styleable KeyTimeCycle_android_scaleY 4 ++int styleable KeyTimeCycle_android_rotation 5 ++int styleable KeyTimeCycle_android_rotationX 6 ++int styleable KeyTimeCycle_android_rotationY 7 ++int styleable KeyTimeCycle_android_translationZ 8 ++int styleable KeyTimeCycle_android_elevation 9 ++int styleable KeyTimeCycle_curveFit 10 ++int styleable KeyTimeCycle_framePosition 11 ++int styleable KeyTimeCycle_motionProgress 12 ++int styleable KeyTimeCycle_motionTarget 13 ++int styleable KeyTimeCycle_transitionEasing 14 ++int styleable KeyTimeCycle_transitionPathRotate 15 ++int styleable KeyTimeCycle_waveDecay 16 ++int styleable KeyTimeCycle_waveOffset 17 ++int styleable KeyTimeCycle_wavePeriod 18 ++int styleable KeyTimeCycle_waveShape 19 ++int[] styleable KeyTrigger { 0x7f030177, 0x7f030260, 0x7f030261, 0x7f030262, 0x7f030270, 0x7f030272, 0x7f030273, 0x7f030370, 0x7f030371, 0x7f030372 } ++int styleable KeyTrigger_framePosition 0 ++int styleable KeyTrigger_motionTarget 1 ++int styleable KeyTrigger_motion_postLayoutCollision 2 ++int styleable KeyTrigger_motion_triggerOnCollision 3 ++int styleable KeyTrigger_onCross 4 ++int styleable KeyTrigger_onNegativeCross 5 ++int styleable KeyTrigger_onPositiveCross 6 ++int styleable KeyTrigger_triggerId 7 ++int styleable KeyTrigger_triggerReceiver 8 ++int styleable KeyTrigger_triggerSlack 9 ++int[] styleable Layout { 0x010100c4, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x010103b5, 0x010103b6, 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f030080, 0x7f0300ce, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f0301e2, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f0301e7, 0x7f0301e8, 0x7f0301e9, 0x7f0301ea, 0x7f0301eb, 0x7f0301ed, 0x7f0301ee, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1, 0x7f0301f2, 0x7f0301f3, 0x7f0301f4, 0x7f0301f5, 0x7f0301f6, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f03023c, 0x7f030240, 0x7f030244, 0x7f030248 } ++int styleable Layout_android_orientation 0 ++int styleable Layout_android_layout_width 1 ++int styleable Layout_android_layout_height 2 ++int styleable Layout_android_layout_marginLeft 3 ++int styleable Layout_android_layout_marginTop 4 ++int styleable Layout_android_layout_marginRight 5 ++int styleable Layout_android_layout_marginBottom 6 ++int styleable Layout_android_layout_marginStart 7 ++int styleable Layout_android_layout_marginEnd 8 ++int styleable Layout_barrierAllowsGoneWidgets 9 ++int styleable Layout_barrierDirection 10 ++int styleable Layout_barrierMargin 11 ++int styleable Layout_chainUseRtl 12 ++int styleable Layout_constraint_referenced_ids 13 ++int styleable Layout_layout_constrainedHeight 14 ++int styleable Layout_layout_constrainedWidth 15 ++int styleable Layout_layout_constraintBaseline_creator 16 ++int styleable Layout_layout_constraintBaseline_toBaselineOf 17 ++int styleable Layout_layout_constraintBottom_creator 18 ++int styleable Layout_layout_constraintBottom_toBottomOf 19 ++int styleable Layout_layout_constraintBottom_toTopOf 20 ++int styleable Layout_layout_constraintCircle 21 ++int styleable Layout_layout_constraintCircleAngle 22 ++int styleable Layout_layout_constraintCircleRadius 23 ++int styleable Layout_layout_constraintDimensionRatio 24 ++int styleable Layout_layout_constraintEnd_toEndOf 25 ++int styleable Layout_layout_constraintEnd_toStartOf 26 ++int styleable Layout_layout_constraintGuide_begin 27 ++int styleable Layout_layout_constraintGuide_end 28 ++int styleable Layout_layout_constraintGuide_percent 29 ++int styleable Layout_layout_constraintHeight_default 30 ++int styleable Layout_layout_constraintHeight_max 31 ++int styleable Layout_layout_constraintHeight_min 32 ++int styleable Layout_layout_constraintHeight_percent 33 ++int styleable Layout_layout_constraintHorizontal_bias 34 ++int styleable Layout_layout_constraintHorizontal_chainStyle 35 ++int styleable Layout_layout_constraintHorizontal_weight 36 ++int styleable Layout_layout_constraintLeft_creator 37 ++int styleable Layout_layout_constraintLeft_toLeftOf 38 ++int styleable Layout_layout_constraintLeft_toRightOf 39 ++int styleable Layout_layout_constraintRight_creator 40 ++int styleable Layout_layout_constraintRight_toLeftOf 41 ++int styleable Layout_layout_constraintRight_toRightOf 42 ++int styleable Layout_layout_constraintStart_toEndOf 43 ++int styleable Layout_layout_constraintStart_toStartOf 44 ++int styleable Layout_layout_constraintTop_creator 45 ++int styleable Layout_layout_constraintTop_toBottomOf 46 ++int styleable Layout_layout_constraintTop_toTopOf 47 ++int styleable Layout_layout_constraintVertical_bias 48 ++int styleable Layout_layout_constraintVertical_chainStyle 49 ++int styleable Layout_layout_constraintVertical_weight 50 ++int styleable Layout_layout_constraintWidth_default 51 ++int styleable Layout_layout_constraintWidth_max 52 ++int styleable Layout_layout_constraintWidth_min 53 ++int styleable Layout_layout_constraintWidth_percent 54 ++int styleable Layout_layout_editor_absoluteX 55 ++int styleable Layout_layout_editor_absoluteY 56 ++int styleable Layout_layout_goneMarginBottom 57 ++int styleable Layout_layout_goneMarginEnd 58 ++int styleable Layout_layout_goneMarginLeft 59 ++int styleable Layout_layout_goneMarginRight 60 ++int styleable Layout_layout_goneMarginStart 61 ++int styleable Layout_layout_goneMarginTop 62 ++int styleable Layout_maxHeight 63 ++int styleable Layout_maxWidth 64 ++int styleable Layout_minHeight 65 ++int styleable Layout_minWidth 66 ++int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f03010e, 0x7f030110, 0x7f030241, 0x7f0302c5 } ++int styleable LinearLayoutCompat_android_gravity 0 ++int styleable LinearLayoutCompat_android_orientation 1 ++int styleable LinearLayoutCompat_android_baselineAligned 2 ++int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 ++int styleable LinearLayoutCompat_android_weightSum 4 ++int styleable LinearLayoutCompat_divider 5 ++int styleable LinearLayoutCompat_dividerPadding 6 ++int styleable LinearLayoutCompat_measureWithLargestChild 7 ++int styleable LinearLayoutCompat_showDividers 8 ++int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } ++int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 ++int styleable LinearLayoutCompat_Layout_android_layout_width 1 ++int styleable LinearLayoutCompat_Layout_android_layout_height 2 ++int styleable LinearLayoutCompat_Layout_android_layout_weight 3 ++int[] styleable LinearProgressIndicator { 0x7f030199, 0x7f03019d } ++int styleable LinearProgressIndicator_indeterminateAnimationType 0 ++int styleable LinearProgressIndicator_indicatorDirectionLinear 1 ++int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } ++int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 ++int styleable ListPopupWindow_android_dropDownVerticalOffset 1 ++int[] styleable MaterialAlertDialog { 0x7f03003e, 0x7f03003f, 0x7f030040, 0x7f030041 } ++int styleable MaterialAlertDialog_backgroundInsetBottom 0 ++int styleable MaterialAlertDialog_backgroundInsetEnd 1 ++int styleable MaterialAlertDialog_backgroundInsetStart 2 ++int styleable MaterialAlertDialog_backgroundInsetTop 3 ++int[] styleable MaterialAlertDialogTheme { 0x7f03021c, 0x7f03021d, 0x7f03021e, 0x7f03021f, 0x7f030220 } ++int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 ++int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 1 ++int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 2 ++int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 3 ++int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 4 ++int[] styleable MaterialAutoCompleteTextView { 0x01010220 } ++int styleable MaterialAutoCompleteTextView_android_inputType 0 ++int[] styleable MaterialButton { 0x010100d4, 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x010101e5, 0x7f030045, 0x7f030046, 0x7f0300e8, 0x7f030127, 0x7f03018f, 0x7f030191, 0x7f030192, 0x7f030193, 0x7f030195, 0x7f030196, 0x7f0302ad, 0x7f0302bc, 0x7f0302bf, 0x7f0302e9, 0x7f0302ea } ++int styleable MaterialButton_android_background 0 ++int styleable MaterialButton_android_insetLeft 1 ++int styleable MaterialButton_android_insetRight 2 ++int styleable MaterialButton_android_insetTop 3 ++int styleable MaterialButton_android_insetBottom 4 ++int styleable MaterialButton_android_checkable 5 ++int styleable MaterialButton_backgroundTint 6 ++int styleable MaterialButton_backgroundTintMode 7 ++int styleable MaterialButton_cornerRadius 8 ++int styleable MaterialButton_elevation 9 ++int styleable MaterialButton_icon 10 ++int styleable MaterialButton_iconGravity 11 ++int styleable MaterialButton_iconPadding 12 ++int styleable MaterialButton_iconSize 13 ++int styleable MaterialButton_iconTint 14 ++int styleable MaterialButton_iconTintMode 15 ++int styleable MaterialButton_rippleColor 16 ++int styleable MaterialButton_shapeAppearance 17 ++int styleable MaterialButton_shapeAppearanceOverlay 18 ++int styleable MaterialButton_strokeColor 19 ++int styleable MaterialButton_strokeWidth 20 ++int[] styleable MaterialButtonToggleGroup { 0x7f030082, 0x7f0302ba, 0x7f0302cd } ++int styleable MaterialButtonToggleGroup_checkedButton 0 ++int styleable MaterialButtonToggleGroup_selectionRequired 1 ++int styleable MaterialButtonToggleGroup_singleSelection 2 ++int[] styleable MaterialCalendar { 0x0101020d, 0x7f030100, 0x7f030101, 0x7f030102, 0x7f030103, 0x7f03026d, 0x7f0302a3, 0x7f03038b, 0x7f03038c, 0x7f03038d } ++int styleable MaterialCalendar_android_windowFullscreen 0 ++int styleable MaterialCalendar_dayInvalidStyle 1 ++int styleable MaterialCalendar_daySelectedStyle 2 ++int styleable MaterialCalendar_dayStyle 3 ++int styleable MaterialCalendar_dayTodayStyle 4 ++int styleable MaterialCalendar_nestedScrollable 5 ++int styleable MaterialCalendar_rangeFillColor 6 ++int styleable MaterialCalendar_yearSelectedStyle 7 ++int styleable MaterialCalendar_yearStyle 8 ++int styleable MaterialCalendar_yearTodayStyle 9 ++int[] styleable MaterialCalendarItem { 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f0301a5, 0x7f0301ae, 0x7f0301af, 0x7f0301b6, 0x7f0301b7, 0x7f0301bb } ++int styleable MaterialCalendarItem_android_insetLeft 0 ++int styleable MaterialCalendarItem_android_insetRight 1 ++int styleable MaterialCalendarItem_android_insetTop 2 ++int styleable MaterialCalendarItem_android_insetBottom 3 ++int styleable MaterialCalendarItem_itemFillColor 4 ++int styleable MaterialCalendarItem_itemShapeAppearance 5 ++int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 ++int styleable MaterialCalendarItem_itemStrokeColor 7 ++int styleable MaterialCalendarItem_itemStrokeWidth 8 ++int styleable MaterialCalendarItem_itemTextColor 9 ++int[] styleable MaterialCardView { 0x010101e5, 0x7f03007b, 0x7f030084, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f0302ad, 0x7f0302bc, 0x7f0302bf, 0x7f0302e3, 0x7f0302e9, 0x7f0302ea } ++int styleable MaterialCardView_android_checkable 0 ++int styleable MaterialCardView_cardForegroundColor 1 ++int styleable MaterialCardView_checkedIcon 2 ++int styleable MaterialCardView_checkedIconMargin 3 ++int styleable MaterialCardView_checkedIconSize 4 ++int styleable MaterialCardView_checkedIconTint 5 ++int styleable MaterialCardView_rippleColor 6 ++int styleable MaterialCardView_shapeAppearance 7 ++int styleable MaterialCardView_shapeAppearanceOverlay 8 ++int styleable MaterialCardView_state_dragged 9 ++int styleable MaterialCardView_strokeColor 10 ++int styleable MaterialCardView_strokeWidth 11 ++int[] styleable MaterialCheckBox { 0x7f030076, 0x7f030375 } ++int styleable MaterialCheckBox_buttonTint 0 ++int styleable MaterialCheckBox_useMaterialThemeColors 1 ++int[] styleable MaterialRadioButton { 0x7f030076, 0x7f030375 } ++int styleable MaterialRadioButton_buttonTint 0 ++int styleable MaterialRadioButton_useMaterialThemeColors 1 ++int[] styleable MaterialShape { 0x7f0302bc, 0x7f0302bf } ++int styleable MaterialShape_shapeAppearance 0 ++int styleable MaterialShape_shapeAppearanceOverlay 1 ++int[] styleable MaterialTextAppearance { 0x010104b6, 0x0101057f, 0x7f030208 } ++int styleable MaterialTextAppearance_android_letterSpacing 0 ++int styleable MaterialTextAppearance_android_lineHeight 1 ++int styleable MaterialTextAppearance_lineHeight 2 ++int[] styleable MaterialTextView { 0x01010034, 0x0101057f, 0x7f030208 } ++int styleable MaterialTextView_android_textAppearance 0 ++int styleable MaterialTextView_android_lineHeight 1 ++int styleable MaterialTextView_lineHeight 2 ++int[] styleable MaterialTimePicker { 0x7f0300a4, 0x7f0301bd } ++int styleable MaterialTimePicker_clockIcon 0 ++int styleable MaterialTimePicker_keyboardIcon 1 ++int[] styleable MaterialToolbar { 0x7f030267, 0x7f0302ee, 0x7f03034c } ++int styleable MaterialToolbar_navigationIconTint 0 ++int styleable MaterialToolbar_subtitleCentered 1 ++int styleable MaterialToolbar_titleCentered 2 ++int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } ++int styleable MenuGroup_android_enabled 0 ++int styleable MenuGroup_android_id 1 ++int styleable MenuGroup_android_visible 2 ++int styleable MenuGroup_android_menuCategory 3 ++int styleable MenuGroup_android_orderInCategory 4 ++int styleable MenuGroup_android_checkableBehavior 5 ++int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000d, 0x7f030021, 0x7f030023, 0x7f03002b, 0x7f0300d1, 0x7f030195, 0x7f030196, 0x7f03026f, 0x7f0302c3, 0x7f03035e } ++int styleable MenuItem_android_icon 0 ++int styleable MenuItem_android_enabled 1 ++int styleable MenuItem_android_id 2 ++int styleable MenuItem_android_checked 3 ++int styleable MenuItem_android_visible 4 ++int styleable MenuItem_android_menuCategory 5 ++int styleable MenuItem_android_orderInCategory 6 ++int styleable MenuItem_android_title 7 ++int styleable MenuItem_android_titleCondensed 8 ++int styleable MenuItem_android_alphabeticShortcut 9 ++int styleable MenuItem_android_numericShortcut 10 ++int styleable MenuItem_android_checkable 11 ++int styleable MenuItem_android_onClick 12 ++int styleable MenuItem_actionLayout 13 ++int styleable MenuItem_actionProviderClass 14 ++int styleable MenuItem_actionViewClass 15 ++int styleable MenuItem_alphabeticModifiers 16 ++int styleable MenuItem_contentDescription 17 ++int styleable MenuItem_iconTint 18 ++int styleable MenuItem_iconTintMode 19 ++int styleable MenuItem_numericModifiers 20 ++int styleable MenuItem_showAsAction 21 ++int styleable MenuItem_tooltipText 22 ++int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f03029b, 0x7f0302eb } ++int styleable MenuView_android_windowAnimationStyle 0 ++int styleable MenuView_android_itemTextAppearance 1 ++int styleable MenuView_android_horizontalDivider 2 ++int styleable MenuView_android_verticalDivider 3 ++int styleable MenuView_android_headerBackground 4 ++int styleable MenuView_android_itemBackground 5 ++int styleable MenuView_android_itemIconDisabledAlpha 6 ++int styleable MenuView_preserveIconSpacing 7 ++int styleable MenuView_subMenuArrow 8 ++int[] styleable MockView { 0x7f030249, 0x7f03024a, 0x7f03024b, 0x7f03024c, 0x7f03024d, 0x7f03024e } ++int styleable MockView_mock_diagonalsColor 0 ++int styleable MockView_mock_label 1 ++int styleable MockView_mock_labelBackgroundColor 2 ++int styleable MockView_mock_labelColor 3 ++int styleable MockView_mock_showDiagonals 4 ++int styleable MockView_mock_showLabel 5 ++int[] styleable Motion { 0x7f03002d, 0x7f030115, 0x7f03025d, 0x7f03025f, 0x7f030288, 0x7f03036c } ++int styleable Motion_animate_relativeTo 0 ++int styleable Motion_drawPath 1 ++int styleable Motion_motionPathRotate 2 ++int styleable Motion_motionStagger 3 ++int styleable Motion_pathMotionArc 4 ++int styleable Motion_transitionEasing 5 ++int[] styleable MotionHelper { 0x7f030271, 0x7f030274 } ++int styleable MotionHelper_onHide 0 ++int styleable MotionHelper_onShow 1 ++int[] styleable MotionLayout { 0x7f030030, 0x7f0300f5, 0x7f0301c5, 0x7f03024f, 0x7f03025e, 0x7f0302c7 } ++int styleable MotionLayout_applyMotionScene 0 ++int styleable MotionLayout_currentState 1 ++int styleable MotionLayout_layoutDescription 2 ++int styleable MotionLayout_motionDebug 3 ++int styleable MotionLayout_motionProgress 4 ++int styleable MotionLayout_showPaths 5 ++int[] styleable MotionScene { 0x7f030104, 0x7f0301c6 } ++int styleable MotionScene_defaultDuration 0 ++int styleable MotionScene_layoutDuringTransition 1 ++int[] styleable MotionTelltales { 0x7f030316, 0x7f030317, 0x7f030318 } ++int styleable MotionTelltales_telltales_tailColor 0 ++int styleable MotionTelltales_telltales_tailScale 1 ++int styleable MotionTelltales_telltales_velocityMode 2 ++int[] styleable NavigationBarView { 0x7f030045, 0x7f030127, 0x7f0301a4, 0x7f0301a9, 0x7f0301aa, 0x7f0301ad, 0x7f0301b9, 0x7f0301ba, 0x7f0301bb, 0x7f0301c2, 0x7f030242 } ++int styleable NavigationBarView_backgroundTint 0 ++int styleable NavigationBarView_elevation 1 ++int styleable NavigationBarView_itemBackground 2 ++int styleable NavigationBarView_itemIconSize 3 ++int styleable NavigationBarView_itemIconTint 4 ++int styleable NavigationBarView_itemRippleColor 5 ++int styleable NavigationBarView_itemTextAppearanceActive 6 ++int styleable NavigationBarView_itemTextAppearanceInactive 7 ++int styleable NavigationBarView_itemTextColor 8 ++int styleable NavigationBarView_labelVisibilityMode 9 ++int styleable NavigationBarView_menu 10 ++int[] styleable NavigationRailView { 0x7f03017d, 0x7f030243 } ++int styleable NavigationRailView_headerLayout 0 ++int styleable NavigationRailView_menuGravity 1 ++int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f030127, 0x7f03017d, 0x7f0301a4, 0x7f0301a6, 0x7f0301a8, 0x7f0301a9, 0x7f0301aa, 0x7f0301ab, 0x7f0301ae, 0x7f0301af, 0x7f0301b0, 0x7f0301b1, 0x7f0301b2, 0x7f0301b3, 0x7f0301b4, 0x7f0301b8, 0x7f0301bb, 0x7f030242, 0x7f0302bc, 0x7f0302bf } ++int styleable NavigationView_android_background 0 ++int styleable NavigationView_android_fitsSystemWindows 1 ++int styleable NavigationView_android_maxWidth 2 ++int styleable NavigationView_elevation 3 ++int styleable NavigationView_headerLayout 4 ++int styleable NavigationView_itemBackground 5 ++int styleable NavigationView_itemHorizontalPadding 6 ++int styleable NavigationView_itemIconPadding 7 ++int styleable NavigationView_itemIconSize 8 ++int styleable NavigationView_itemIconTint 9 ++int styleable NavigationView_itemMaxLines 10 ++int styleable NavigationView_itemShapeAppearance 11 ++int styleable NavigationView_itemShapeAppearanceOverlay 12 ++int styleable NavigationView_itemShapeFillColor 13 ++int styleable NavigationView_itemShapeInsetBottom 14 ++int styleable NavigationView_itemShapeInsetEnd 15 ++int styleable NavigationView_itemShapeInsetStart 16 ++int styleable NavigationView_itemShapeInsetTop 17 ++int styleable NavigationView_itemTextAppearance 18 ++int styleable NavigationView_itemTextColor 19 ++int styleable NavigationView_menu 20 ++int styleable NavigationView_shapeAppearance 21 ++int styleable NavigationView_shapeAppearanceOverlay 22 ++int[] styleable OnClick { 0x7f0300a1, 0x7f030315 } ++int styleable OnClick_clickAction 0 ++int styleable OnClick_targetId 1 ++int[] styleable OnSwipe { 0x7f030112, 0x7f030113, 0x7f030114, 0x7f030207, 0x7f030238, 0x7f03023f, 0x7f030263, 0x7f03026b, 0x7f030275, 0x7f03035f, 0x7f030360, 0x7f030361 } ++int styleable OnSwipe_dragDirection 0 ++int styleable OnSwipe_dragScale 1 ++int styleable OnSwipe_dragThreshold 2 ++int styleable OnSwipe_limitBoundsTo 3 ++int styleable OnSwipe_maxAcceleration 4 ++int styleable OnSwipe_maxVelocity 5 ++int styleable OnSwipe_moveWhenScrollAtTop 6 ++int styleable OnSwipe_nestedScrollFlags 7 ++int styleable OnSwipe_onTouchUp 8 ++int styleable OnSwipe_touchAnchorId 9 ++int styleable OnSwipe_touchAnchorSide 10 ++int styleable OnSwipe_touchRegionId 11 ++int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f030276 } ++int styleable PopupWindow_android_popupBackground 0 ++int styleable PopupWindow_android_popupAnimationStyle 1 ++int styleable PopupWindow_overlapAnchor 2 ++int[] styleable PopupWindowBackgroundState { 0x7f0302e0 } ++int styleable PopupWindowBackgroundState_state_above_anchor 0 ++int[] styleable PropertySet { 0x010100dc, 0x0101031f, 0x7f0301ec, 0x7f03025e, 0x7f030379 } ++int styleable PropertySet_android_visibility 0 ++int styleable PropertySet_android_alpha 1 ++int styleable PropertySet_layout_constraintTag 2 ++int styleable PropertySet_motionProgress 3 ++int styleable PropertySet_visibilityMode 4 ++int[] styleable RadialViewGroup { 0x7f030233 } ++int styleable RadialViewGroup_materialCircleRadius 0 ++int[] styleable RangeSlider { 0x7f030246, 0x7f030376 } ++int styleable RangeSlider_minSeparation 0 ++int styleable RangeSlider_values 1 ++int[] styleable RecycleListView { 0x7f030278, 0x7f03027e } ++int styleable RecycleListView_paddingBottomNoButtons 0 ++int styleable RecycleListView_paddingTopNoTitle 1 ++int[] styleable RecyclerView { 0x010100c4, 0x010100eb, 0x010100f1, 0x7f03014f, 0x7f030150, 0x7f030151, 0x7f030152, 0x7f030153, 0x7f0301c7, 0x7f0302ac, 0x7f0302d3, 0x7f0302d9 } ++int styleable RecyclerView_android_orientation 0 ++int styleable RecyclerView_android_clipToPadding 1 ++int styleable RecyclerView_android_descendantFocusability 2 ++int styleable RecyclerView_fastScrollEnabled 3 ++int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 ++int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 ++int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 ++int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 ++int styleable RecyclerView_layoutManager 8 ++int styleable RecyclerView_reverseLayout 9 ++int styleable RecyclerView_spanCount 10 ++int styleable RecyclerView_stackFromEnd 11 ++int[] styleable ScrimInsetsFrameLayout { 0x7f0301a1 } ++int styleable ScrimInsetsFrameLayout_insetForeground 0 ++int[] styleable ScrollingViewBehavior_Layout { 0x7f030055 } ++int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 ++int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0300a6, 0x7f0300ca, 0x7f030105, 0x7f03017a, 0x7f030197, 0x7f0301c4, 0x7f03029f, 0x7f0302a0, 0x7f0302b4, 0x7f0302b5, 0x7f0302ec, 0x7f0302f5, 0x7f03037a } ++int styleable SearchView_android_focusable 0 ++int styleable SearchView_android_maxWidth 1 ++int styleable SearchView_android_inputType 2 ++int styleable SearchView_android_imeOptions 3 ++int styleable SearchView_closeIcon 4 ++int styleable SearchView_commitIcon 5 ++int styleable SearchView_defaultQueryHint 6 ++int styleable SearchView_goIcon 7 ++int styleable SearchView_iconifiedByDefault 8 ++int styleable SearchView_layout 9 ++int styleable SearchView_queryBackground 10 ++int styleable SearchView_queryHint 11 ++int styleable SearchView_searchHintIcon 12 ++int styleable SearchView_searchIcon 13 ++int styleable SearchView_submitBackground 14 ++int styleable SearchView_suggestionRowLayout 15 ++int styleable SearchView_voiceIcon 16 ++int[] styleable ShapeAppearance { 0x7f0300e3, 0x7f0300e4, 0x7f0300e5, 0x7f0300e6, 0x7f0300e7, 0x7f0300e9, 0x7f0300ea, 0x7f0300eb, 0x7f0300ec, 0x7f0300ed } ++int styleable ShapeAppearance_cornerFamily 0 ++int styleable ShapeAppearance_cornerFamilyBottomLeft 1 ++int styleable ShapeAppearance_cornerFamilyBottomRight 2 ++int styleable ShapeAppearance_cornerFamilyTopLeft 3 ++int styleable ShapeAppearance_cornerFamilyTopRight 4 ++int styleable ShapeAppearance_cornerSize 5 ++int styleable ShapeAppearance_cornerSizeBottomLeft 6 ++int styleable ShapeAppearance_cornerSizeBottomRight 7 ++int styleable ShapeAppearance_cornerSizeTopLeft 8 ++int styleable ShapeAppearance_cornerSizeTopRight 9 ++int[] styleable ShapeableImageView { 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0300db, 0x7f0300dc, 0x7f0300dd, 0x7f0300de, 0x7f0302bc, 0x7f0302bf, 0x7f0302e9, 0x7f0302ea } ++int styleable ShapeableImageView_contentPadding 0 ++int styleable ShapeableImageView_contentPaddingBottom 1 ++int styleable ShapeableImageView_contentPaddingEnd 2 ++int styleable ShapeableImageView_contentPaddingLeft 3 ++int styleable ShapeableImageView_contentPaddingRight 4 ++int styleable ShapeableImageView_contentPaddingStart 5 ++int styleable ShapeableImageView_contentPaddingTop 6 ++int styleable ShapeableImageView_shapeAppearance 7 ++int styleable ShapeableImageView_shapeAppearanceOverlay 8 ++int styleable ShapeableImageView_strokeColor 9 ++int styleable ShapeableImageView_strokeWidth 10 ++int[] styleable Slider { 0x0101000e, 0x01010024, 0x01010146, 0x010102de, 0x010102df, 0x7f03017b, 0x7f03017c, 0x7f0301c0, 0x7f0301c1, 0x7f03033a, 0x7f03033b, 0x7f03033c, 0x7f03033d, 0x7f03033e, 0x7f030342, 0x7f030343, 0x7f030344, 0x7f030348, 0x7f030363, 0x7f030364, 0x7f030365, 0x7f030367 } ++int styleable Slider_android_enabled 0 ++int styleable Slider_android_value 1 ++int styleable Slider_android_stepSize 2 ++int styleable Slider_android_valueFrom 3 ++int styleable Slider_android_valueTo 4 ++int styleable Slider_haloColor 5 ++int styleable Slider_haloRadius 6 ++int styleable Slider_labelBehavior 7 ++int styleable Slider_labelStyle 8 ++int styleable Slider_thumbColor 9 ++int styleable Slider_thumbElevation 10 ++int styleable Slider_thumbRadius 11 ++int styleable Slider_thumbStrokeColor 12 ++int styleable Slider_thumbStrokeWidth 13 ++int styleable Slider_tickColor 14 ++int styleable Slider_tickColorActive 15 ++int styleable Slider_tickColorInactive 16 ++int styleable Slider_tickVisible 17 ++int styleable Slider_trackColor 18 ++int styleable Slider_trackColorActive 19 ++int styleable Slider_trackColorInactive 20 ++int styleable Slider_trackHeight 21 ++int[] styleable Snackbar { 0x7f0302d0, 0x7f0302d1, 0x7f0302d2 } ++int styleable Snackbar_snackbarButtonStyle 0 ++int styleable Snackbar_snackbarStyle 1 ++int styleable Snackbar_snackbarTextViewStyle 2 ++int[] styleable SnackbarLayout { 0x0101011f, 0x7f030022, 0x7f03002e, 0x7f030042, 0x7f030045, 0x7f030046, 0x7f030127, 0x7f030239 } ++int styleable SnackbarLayout_android_maxWidth 0 ++int styleable SnackbarLayout_actionTextColorAlpha 1 ++int styleable SnackbarLayout_animationMode 2 ++int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 ++int styleable SnackbarLayout_backgroundTint 4 ++int styleable SnackbarLayout_backgroundTintMode 5 ++int styleable SnackbarLayout_elevation 6 ++int styleable SnackbarLayout_maxActionInlineWidth 7 ++int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f030296 } ++int styleable Spinner_android_entries 0 ++int styleable Spinner_android_popupBackground 1 ++int styleable Spinner_android_prompt 2 ++int styleable Spinner_android_dropDownWidth 3 ++int styleable Spinner_popupTheme 4 ++int[] styleable State { 0x010100d0, 0x7f0300cf } ++int styleable State_android_id 0 ++int styleable State_constraints 1 ++int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } ++int styleable StateListDrawable_android_dither 0 ++int styleable StateListDrawable_android_visible 1 ++int styleable StateListDrawable_android_variablePadding 2 ++int styleable StateListDrawable_android_constantSize 3 ++int styleable StateListDrawable_android_enterFadeDuration 4 ++int styleable StateListDrawable_android_exitFadeDuration 5 ++int[] styleable StateListDrawableItem { 0x01010199 } ++int styleable StateListDrawableItem_android_drawable 0 ++int[] styleable StateSet { 0x7f030106 } ++int styleable StateSet_defaultState 0 ++int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0302c8, 0x7f0302d7, 0x7f0302f6, 0x7f0302f7, 0x7f0302f9, 0x7f03033f, 0x7f030340, 0x7f030341, 0x7f030362, 0x7f030369, 0x7f03036a } ++int styleable SwitchCompat_android_textOn 0 ++int styleable SwitchCompat_android_textOff 1 ++int styleable SwitchCompat_android_thumb 2 ++int styleable SwitchCompat_showText 3 ++int styleable SwitchCompat_splitTrack 4 ++int styleable SwitchCompat_switchMinWidth 5 ++int styleable SwitchCompat_switchPadding 6 ++int styleable SwitchCompat_switchTextAppearance 7 ++int styleable SwitchCompat_thumbTextPadding 8 ++int styleable SwitchCompat_thumbTint 9 ++int styleable SwitchCompat_thumbTintMode 10 ++int styleable SwitchCompat_track 11 ++int styleable SwitchCompat_trackTint 12 ++int styleable SwitchCompat_trackTintMode 13 ++int[] styleable SwitchMaterial { 0x7f030375 } ++int styleable SwitchMaterial_useMaterialThemeColors 0 ++int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f } ++int styleable TabItem_android_icon 0 ++int styleable TabItem_android_layout 1 ++int styleable TabItem_android_text 2 ++int[] styleable TabLayout { 0x7f0302fa, 0x7f0302fb, 0x7f0302fc, 0x7f0302fd, 0x7f0302fe, 0x7f0302ff, 0x7f030300, 0x7f030301, 0x7f030302, 0x7f030303, 0x7f030304, 0x7f030305, 0x7f030306, 0x7f030307, 0x7f030308, 0x7f030309, 0x7f03030a, 0x7f03030b, 0x7f03030c, 0x7f03030d, 0x7f03030e, 0x7f03030f, 0x7f030310, 0x7f030312, 0x7f030313, 0x7f030314 } ++int styleable TabLayout_tabBackground 0 ++int styleable TabLayout_tabContentStart 1 ++int styleable TabLayout_tabGravity 2 ++int styleable TabLayout_tabIconTint 3 ++int styleable TabLayout_tabIconTintMode 4 ++int styleable TabLayout_tabIndicator 5 ++int styleable TabLayout_tabIndicatorAnimationDuration 6 ++int styleable TabLayout_tabIndicatorAnimationMode 7 ++int styleable TabLayout_tabIndicatorColor 8 ++int styleable TabLayout_tabIndicatorFullWidth 9 ++int styleable TabLayout_tabIndicatorGravity 10 ++int styleable TabLayout_tabIndicatorHeight 11 ++int styleable TabLayout_tabInlineLabel 12 ++int styleable TabLayout_tabMaxWidth 13 ++int styleable TabLayout_tabMinWidth 14 ++int styleable TabLayout_tabMode 15 ++int styleable TabLayout_tabPadding 16 ++int styleable TabLayout_tabPaddingBottom 17 ++int styleable TabLayout_tabPaddingEnd 18 ++int styleable TabLayout_tabPaddingStart 19 ++int styleable TabLayout_tabPaddingTop 20 ++int styleable TabLayout_tabRippleColor 21 ++int styleable TabLayout_tabSelectedTextColor 22 ++int styleable TabLayout_tabTextAppearance 23 ++int styleable TabLayout_tabTextColor 24 ++int styleable TabLayout_tabUnboundedRipple 25 ++int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f03016a, 0x7f030173, 0x7f030319, 0x7f030335 } ++int styleable TextAppearance_android_textSize 0 ++int styleable TextAppearance_android_typeface 1 ++int styleable TextAppearance_android_textStyle 2 ++int styleable TextAppearance_android_textColor 3 ++int styleable TextAppearance_android_textColorHint 4 ++int styleable TextAppearance_android_textColorLink 5 ++int styleable TextAppearance_android_shadowColor 6 ++int styleable TextAppearance_android_shadowDx 7 ++int styleable TextAppearance_android_shadowDy 8 ++int styleable TextAppearance_android_shadowRadius 9 ++int styleable TextAppearance_android_fontFamily 10 ++int styleable TextAppearance_android_textFontWeight 11 ++int styleable TextAppearance_fontFamily 12 ++int styleable TextAppearance_fontVariationSettings 13 ++int styleable TextAppearance_textAllCaps 14 ++int styleable TextAppearance_textLocale 15 ++int[] styleable TextInputEditText { 0x7f030333 } ++int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 ++int[] styleable TextInputLayout { 0x0101000e, 0x0101009a, 0x0101011f, 0x0101013f, 0x01010150, 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f030069, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f1, 0x7f0300f2, 0x7f0300f3, 0x7f03012b, 0x7f03012c, 0x7f03012d, 0x7f03012e, 0x7f03012f, 0x7f030130, 0x7f030134, 0x7f030135, 0x7f030136, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013a, 0x7f03013d, 0x7f03017f, 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030187, 0x7f030188, 0x7f030189, 0x7f03018a, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f0302bc, 0x7f0302bf, 0x7f0302db, 0x7f0302dc, 0x7f0302dd, 0x7f0302de, 0x7f0302df, 0x7f0302f2, 0x7f0302f3, 0x7f0302f4 } ++int styleable TextInputLayout_android_enabled 0 ++int styleable TextInputLayout_android_textColorHint 1 ++int styleable TextInputLayout_android_maxWidth 2 ++int styleable TextInputLayout_android_minWidth 3 ++int styleable TextInputLayout_android_hint 4 ++int styleable TextInputLayout_boxBackgroundColor 5 ++int styleable TextInputLayout_boxBackgroundMode 6 ++int styleable TextInputLayout_boxCollapsedPaddingTop 7 ++int styleable TextInputLayout_boxCornerRadiusBottomEnd 8 ++int styleable TextInputLayout_boxCornerRadiusBottomStart 9 ++int styleable TextInputLayout_boxCornerRadiusTopEnd 10 ++int styleable TextInputLayout_boxCornerRadiusTopStart 11 ++int styleable TextInputLayout_boxStrokeColor 12 ++int styleable TextInputLayout_boxStrokeErrorColor 13 ++int styleable TextInputLayout_boxStrokeWidth 14 ++int styleable TextInputLayout_boxStrokeWidthFocused 15 ++int styleable TextInputLayout_counterEnabled 16 ++int styleable TextInputLayout_counterMaxLength 17 ++int styleable TextInputLayout_counterOverflowTextAppearance 18 ++int styleable TextInputLayout_counterOverflowTextColor 19 ++int styleable TextInputLayout_counterTextAppearance 20 ++int styleable TextInputLayout_counterTextColor 21 ++int styleable TextInputLayout_endIconCheckable 22 ++int styleable TextInputLayout_endIconContentDescription 23 ++int styleable TextInputLayout_endIconDrawable 24 ++int styleable TextInputLayout_endIconMode 25 ++int styleable TextInputLayout_endIconTint 26 ++int styleable TextInputLayout_endIconTintMode 27 ++int styleable TextInputLayout_errorContentDescription 28 ++int styleable TextInputLayout_errorEnabled 29 ++int styleable TextInputLayout_errorIconDrawable 30 ++int styleable TextInputLayout_errorIconTint 31 ++int styleable TextInputLayout_errorIconTintMode 32 ++int styleable TextInputLayout_errorTextAppearance 33 ++int styleable TextInputLayout_errorTextColor 34 ++int styleable TextInputLayout_expandedHintEnabled 35 ++int styleable TextInputLayout_helperText 36 ++int styleable TextInputLayout_helperTextEnabled 37 ++int styleable TextInputLayout_helperTextTextAppearance 38 ++int styleable TextInputLayout_helperTextTextColor 39 ++int styleable TextInputLayout_hintAnimationEnabled 40 ++int styleable TextInputLayout_hintEnabled 41 ++int styleable TextInputLayout_hintTextAppearance 42 ++int styleable TextInputLayout_hintTextColor 43 ++int styleable TextInputLayout_passwordToggleContentDescription 44 ++int styleable TextInputLayout_passwordToggleDrawable 45 ++int styleable TextInputLayout_passwordToggleEnabled 46 ++int styleable TextInputLayout_passwordToggleTint 47 ++int styleable TextInputLayout_passwordToggleTintMode 48 ++int styleable TextInputLayout_placeholderText 49 ++int styleable TextInputLayout_placeholderTextAppearance 50 ++int styleable TextInputLayout_placeholderTextColor 51 ++int styleable TextInputLayout_prefixText 52 ++int styleable TextInputLayout_prefixTextAppearance 53 ++int styleable TextInputLayout_prefixTextColor 54 ++int styleable TextInputLayout_shapeAppearance 55 ++int styleable TextInputLayout_shapeAppearanceOverlay 56 ++int styleable TextInputLayout_startIconCheckable 57 ++int styleable TextInputLayout_startIconContentDescription 58 ++int styleable TextInputLayout_startIconDrawable 59 ++int styleable TextInputLayout_startIconTint 60 ++int styleable TextInputLayout_startIconTintMode 61 ++int styleable TextInputLayout_suffixText 62 ++int styleable TextInputLayout_suffixTextAppearance 63 ++int styleable TextInputLayout_suffixTextColor 64 ++int[] styleable ThemeEnforcement { 0x01010034, 0x7f030131, 0x7f030132 } ++int styleable ThemeEnforcement_android_textAppearance 0 ++int styleable ThemeEnforcement_enforceMaterialTheme 1 ++int styleable ThemeEnforcement_enforceTextAppearance 2 ++int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f030071, 0x7f0300ae, 0x7f0300af, 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7, 0x7f03021a, 0x7f03021b, 0x7f03023a, 0x7f030242, 0x7f030265, 0x7f030266, 0x7f030296, 0x7f0302ed, 0x7f0302ef, 0x7f0302f0, 0x7f03034b, 0x7f03034f, 0x7f030350, 0x7f030351, 0x7f030352, 0x7f030353, 0x7f030354, 0x7f030355, 0x7f030356 } ++int styleable Toolbar_android_gravity 0 ++int styleable Toolbar_android_minHeight 1 ++int styleable Toolbar_buttonGravity 2 ++int styleable Toolbar_collapseContentDescription 3 ++int styleable Toolbar_collapseIcon 4 ++int styleable Toolbar_contentInsetEnd 5 ++int styleable Toolbar_contentInsetEndWithActions 6 ++int styleable Toolbar_contentInsetLeft 7 ++int styleable Toolbar_contentInsetRight 8 ++int styleable Toolbar_contentInsetStart 9 ++int styleable Toolbar_contentInsetStartWithNavigation 10 ++int styleable Toolbar_logo 11 ++int styleable Toolbar_logoDescription 12 ++int styleable Toolbar_maxButtonHeight 13 ++int styleable Toolbar_menu 14 ++int styleable Toolbar_navigationContentDescription 15 ++int styleable Toolbar_navigationIcon 16 ++int styleable Toolbar_popupTheme 17 ++int styleable Toolbar_subtitle 18 ++int styleable Toolbar_subtitleTextAppearance 19 ++int styleable Toolbar_subtitleTextColor 20 ++int styleable Toolbar_title 21 ++int styleable Toolbar_titleMargin 22 ++int styleable Toolbar_titleMarginBottom 23 ++int styleable Toolbar_titleMarginEnd 24 ++int styleable Toolbar_titleMarginStart 25 ++int styleable Toolbar_titleMarginTop 26 ++int styleable Toolbar_titleMargins 27 ++int styleable Toolbar_titleTextAppearance 28 ++int styleable Toolbar_titleTextColor 29 ++int[] styleable Tooltip { 0x01010034, 0x010100d5, 0x010100f6, 0x0101013f, 0x01010140, 0x0101014f, 0x7f030045 } ++int styleable Tooltip_android_textAppearance 0 ++int styleable Tooltip_android_padding 1 ++int styleable Tooltip_android_layout_margin 2 ++int styleable Tooltip_android_minWidth 3 ++int styleable Tooltip_android_minHeight 4 ++int styleable Tooltip_android_text 5 ++int styleable Tooltip_backgroundTint 6 ++int[] styleable Transform { 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103fa, 0x01010440 } ++int styleable Transform_android_transformPivotX 0 ++int styleable Transform_android_transformPivotY 1 ++int styleable Transform_android_translationX 2 ++int styleable Transform_android_translationY 3 ++int styleable Transform_android_scaleX 4 ++int styleable Transform_android_scaleY 5 ++int styleable Transform_android_rotation 6 ++int styleable Transform_android_rotationX 7 ++int styleable Transform_android_rotationY 8 ++int styleable Transform_android_translationZ 9 ++int styleable Transform_android_elevation 10 ++int[] styleable Transition { 0x010100d0, 0x7f03003b, 0x7f0300cc, 0x7f0300cd, 0x7f030123, 0x7f0301c6, 0x7f03025b, 0x7f030288, 0x7f0302da, 0x7f03036b, 0x7f03036d } ++int styleable Transition_android_id 0 ++int styleable Transition_autoTransition 1 ++int styleable Transition_constraintSetEnd 2 ++int styleable Transition_constraintSetStart 3 ++int styleable Transition_duration 4 ++int styleable Transition_layoutDuringTransition 5 ++int styleable Transition_motionInterpolator 6 ++int styleable Transition_pathMotionArc 7 ++int styleable Transition_staggered 8 ++int styleable Transition_transitionDisable 9 ++int styleable Transition_transitionFlags 10 ++int[] styleable Variant { 0x7f0300cf, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab } ++int styleable Variant_constraints 0 ++int styleable Variant_region_heightLessThan 1 ++int styleable Variant_region_heightMoreThan 2 ++int styleable Variant_region_widthLessThan 3 ++int styleable Variant_region_widthMoreThan 4 ++int[] styleable View { 0x01010000, 0x010100da, 0x7f03027a, 0x7f03027d, 0x7f030337 } ++int styleable View_android_theme 0 ++int styleable View_android_focusable 1 ++int styleable View_paddingEnd 2 ++int styleable View_paddingStart 3 ++int styleable View_theme 4 ++int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030045, 0x7f030046 } ++int styleable ViewBackgroundHelper_android_background 0 ++int styleable ViewBackgroundHelper_backgroundTint 1 ++int styleable ViewBackgroundHelper_backgroundTintMode 2 ++int[] styleable ViewPager2 { 0x010100c4 } ++int styleable ViewPager2_android_orientation 0 ++int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } ++int styleable ViewStubCompat_android_id 0 ++int styleable ViewStubCompat_android_layout 1 ++int styleable ViewStubCompat_android_inflatedId 2 ++int xml standalone_badge 0x7f100000 ++int xml standalone_badge_gravity_bottom_end 0x7f100001 ++int xml standalone_badge_gravity_bottom_start 0x7f100002 ++int xml standalone_badge_gravity_top_start 0x7f100003 ++int xml standalone_badge_offset 0x7f100004 +diff --git a/node_modules/detox/android/detox/build/intermediates/signing_config_versions/coreNativeDebugAndroidTest/writeCoreNativeDebugAndroidTestSigningConfigVersions/signing-config-versions.json b/node_modules/detox/android/detox/build/intermediates/signing_config_versions/coreNativeDebugAndroidTest/writeCoreNativeDebugAndroidTestSigningConfigVersions/signing-config-versions.json +new file mode 100644 +index 0000000..51f6368 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/signing_config_versions/coreNativeDebugAndroidTest/writeCoreNativeDebugAndroidTestSigningConfigVersions/signing-config-versions.json +@@ -0,0 +1 @@ ++{"enableV1Signing":false,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/signing_config_versions/fullDebugAndroidTest/writeFullDebugAndroidTestSigningConfigVersions/signing-config-versions.json b/node_modules/detox/android/detox/build/intermediates/signing_config_versions/fullDebugAndroidTest/writeFullDebugAndroidTestSigningConfigVersions/signing-config-versions.json +new file mode 100644 +index 0000000..51f6368 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/signing_config_versions/fullDebugAndroidTest/writeFullDebugAndroidTestSigningConfigVersions/signing-config-versions.json +@@ -0,0 +1 @@ ++{"enableV1Signing":false,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false} +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/intermediates/source_set_path_map/coreNativeDebugAndroidTest/mapCoreNativeDebugAndroidTestSourceSetPaths/file-map.txt b/node_modules/detox/android/detox/build/intermediates/source_set_path_map/coreNativeDebugAndroidTest/mapCoreNativeDebugAndroidTestSourceSetPaths/file-map.txt +new file mode 100644 +index 0000000..9eeb2d8 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/source_set_path_map/coreNativeDebugAndroidTest/mapCoreNativeDebugAndroidTestSourceSetPaths/file-map.txt +@@ -0,0 +1,24 @@ ++com.wix.detox.test.detox-appcompat-resources-1.3.1-0 /Users/mike/.gradle/caches/8.10.2/transforms/113a9edb5eab6212082ea70ac0555d5e/transformed/appcompat-resources-1.3.1/res ++com.wix.detox.test.detox-tracing-1.1.0-1 /Users/mike/.gradle/caches/8.10.2/transforms/2c040609e983c4f5d8ec7475a37766fd/transformed/tracing-1.1.0/res ++com.wix.detox.test.detox-core-1.8.0-2 /Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res ++com.wix.detox.test.detox-espresso-contrib-3.6.1-3 /Users/mike/.gradle/caches/8.10.2/transforms/461d7c19ef38b4f9b46fbdeb7e398449/transformed/espresso-contrib-3.6.1/res ++com.wix.detox.test.detox-lifecycle-runtime-2.3.1-4 /Users/mike/.gradle/caches/8.10.2/transforms/4dd5b2b5dff266b02e3d542070c12c10/transformed/lifecycle-runtime-2.3.1/res ++com.wix.detox.test.detox-appcompat-1.3.1-5 /Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res ++com.wix.detox.test.detox-cardview-1.0.0-6 /Users/mike/.gradle/caches/8.10.2/transforms/5ac2b811be8f6b6e801e40541beb0df8/transformed/cardview-1.0.0/res ++com.wix.detox.test.detox-coordinatorlayout-1.1.0-7 /Users/mike/.gradle/caches/8.10.2/transforms/5ffe1920c397f0b305742d655a3e2f95/transformed/coordinatorlayout-1.1.0/res ++com.wix.detox.test.detox-recyclerview-1.2.1-8 /Users/mike/.gradle/caches/8.10.2/transforms/6193ccf8266fe7e7acf873e6a6e33027/transformed/recyclerview-1.2.1/res ++com.wix.detox.test.detox-viewpager2-1.0.0-9 /Users/mike/.gradle/caches/8.10.2/transforms/7cf662db696d7c0bf4b24c08fd87c12c/transformed/viewpager2-1.0.0/res ++com.wix.detox.test.detox-core-1.6.1-10 /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res ++com.wix.detox.test.detox-drawerlayout-1.1.1-11 /Users/mike/.gradle/caches/8.10.2/transforms/9db7760b0deff7e4ab8d80cd4aa38e52/transformed/drawerlayout-1.1.1/res ++com.wix.detox.test.detox-transition-1.2.0-12 /Users/mike/.gradle/caches/8.10.2/transforms/a44dd8dae0f5566110296e3edaa8fb5a/transformed/transition-1.2.0/res ++com.wix.detox.test.detox-material-1.4.0-13 /Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res ++com.wix.detox.test.detox-fragment-1.3.6-14 /Users/mike/.gradle/caches/8.10.2/transforms/aab319f82c96efbdcc73962788b25c1d/transformed/fragment-1.3.6/res ++com.wix.detox.test.detox-savedstate-1.1.0-15 /Users/mike/.gradle/caches/8.10.2/transforms/bc43dd7f4418060d7e97eafa583bae0e/transformed/savedstate-1.1.0/res ++com.wix.detox.test.detox-annotation-experimental-1.1.0-16 /Users/mike/.gradle/caches/8.10.2/transforms/e555c439d671b2e9afb9fc0a22608c52/transformed/annotation-experimental-1.1.0/res ++com.wix.detox.test.detox-constraintlayout-2.0.1-17 /Users/mike/.gradle/caches/8.10.2/transforms/fe7845793de81b169cc70f2cabd7542f/transformed/constraintlayout-2.0.1/res ++com.wix.detox.test.detox-lifecycle-viewmodel-2.3.1-18 /Users/mike/.gradle/caches/8.10.2/transforms/fef64e29f65a0374786979b4dd8facf7/transformed/lifecycle-viewmodel-2.3.1/res ++com.wix.detox.test.detox-coreNative-19 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/generated/res/resValues/androidTest/coreNative/debug ++com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-20 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/merged.dir ++com.wix.detox.test.detox-mergeCoreNativeDebugAndroidTestResources-21 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/incremental/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources/stripped.dir ++com.wix.detox.test.detox-coreNativeDebugAndroidTest-22 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/merged_res/coreNativeDebugAndroidTest/mergeCoreNativeDebugAndroidTestResources ++com.wix.detox.test.detox-coreNativeDebug-23 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/packaged_res/coreNativeDebug/packageCoreNativeDebugResources +diff --git a/node_modules/detox/android/detox/build/intermediates/source_set_path_map/fullDebugAndroidTest/mapFullDebugAndroidTestSourceSetPaths/file-map.txt b/node_modules/detox/android/detox/build/intermediates/source_set_path_map/fullDebugAndroidTest/mapFullDebugAndroidTestSourceSetPaths/file-map.txt +new file mode 100644 +index 0000000..cd4ba8f +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/source_set_path_map/fullDebugAndroidTest/mapFullDebugAndroidTestSourceSetPaths/file-map.txt +@@ -0,0 +1,24 @@ ++com.wix.detox.test.detox-appcompat-resources-1.3.1-0 /Users/mike/.gradle/caches/8.10.2/transforms/113a9edb5eab6212082ea70ac0555d5e/transformed/appcompat-resources-1.3.1/res ++com.wix.detox.test.detox-tracing-1.1.0-1 /Users/mike/.gradle/caches/8.10.2/transforms/2c040609e983c4f5d8ec7475a37766fd/transformed/tracing-1.1.0/res ++com.wix.detox.test.detox-core-1.8.0-2 /Users/mike/.gradle/caches/8.10.2/transforms/3089ae0084c6227b4a2021e0c593e671/transformed/core-1.8.0/res ++com.wix.detox.test.detox-espresso-contrib-3.6.1-3 /Users/mike/.gradle/caches/8.10.2/transforms/461d7c19ef38b4f9b46fbdeb7e398449/transformed/espresso-contrib-3.6.1/res ++com.wix.detox.test.detox-lifecycle-runtime-2.3.1-4 /Users/mike/.gradle/caches/8.10.2/transforms/4dd5b2b5dff266b02e3d542070c12c10/transformed/lifecycle-runtime-2.3.1/res ++com.wix.detox.test.detox-appcompat-1.3.1-5 /Users/mike/.gradle/caches/8.10.2/transforms/53cf9eec453924390d1d7d6d7821c0ec/transformed/appcompat-1.3.1/res ++com.wix.detox.test.detox-cardview-1.0.0-6 /Users/mike/.gradle/caches/8.10.2/transforms/5ac2b811be8f6b6e801e40541beb0df8/transformed/cardview-1.0.0/res ++com.wix.detox.test.detox-coordinatorlayout-1.1.0-7 /Users/mike/.gradle/caches/8.10.2/transforms/5ffe1920c397f0b305742d655a3e2f95/transformed/coordinatorlayout-1.1.0/res ++com.wix.detox.test.detox-recyclerview-1.2.1-8 /Users/mike/.gradle/caches/8.10.2/transforms/6193ccf8266fe7e7acf873e6a6e33027/transformed/recyclerview-1.2.1/res ++com.wix.detox.test.detox-viewpager2-1.0.0-9 /Users/mike/.gradle/caches/8.10.2/transforms/7cf662db696d7c0bf4b24c08fd87c12c/transformed/viewpager2-1.0.0/res ++com.wix.detox.test.detox-core-1.6.1-10 /Users/mike/.gradle/caches/8.10.2/transforms/933b86cfed76b72bc65834d25ab1f1cb/transformed/core-1.6.1/res ++com.wix.detox.test.detox-drawerlayout-1.1.1-11 /Users/mike/.gradle/caches/8.10.2/transforms/9db7760b0deff7e4ab8d80cd4aa38e52/transformed/drawerlayout-1.1.1/res ++com.wix.detox.test.detox-transition-1.2.0-12 /Users/mike/.gradle/caches/8.10.2/transforms/a44dd8dae0f5566110296e3edaa8fb5a/transformed/transition-1.2.0/res ++com.wix.detox.test.detox-material-1.4.0-13 /Users/mike/.gradle/caches/8.10.2/transforms/a6ef6d4b98bdc6ddb41f1f83aa46e149/transformed/material-1.4.0/res ++com.wix.detox.test.detox-fragment-1.3.6-14 /Users/mike/.gradle/caches/8.10.2/transforms/aab319f82c96efbdcc73962788b25c1d/transformed/fragment-1.3.6/res ++com.wix.detox.test.detox-savedstate-1.1.0-15 /Users/mike/.gradle/caches/8.10.2/transforms/bc43dd7f4418060d7e97eafa583bae0e/transformed/savedstate-1.1.0/res ++com.wix.detox.test.detox-annotation-experimental-1.1.0-16 /Users/mike/.gradle/caches/8.10.2/transforms/e555c439d671b2e9afb9fc0a22608c52/transformed/annotation-experimental-1.1.0/res ++com.wix.detox.test.detox-constraintlayout-2.0.1-17 /Users/mike/.gradle/caches/8.10.2/transforms/fe7845793de81b169cc70f2cabd7542f/transformed/constraintlayout-2.0.1/res ++com.wix.detox.test.detox-lifecycle-viewmodel-2.3.1-18 /Users/mike/.gradle/caches/8.10.2/transforms/fef64e29f65a0374786979b4dd8facf7/transformed/lifecycle-viewmodel-2.3.1/res ++com.wix.detox.test.detox-full-19 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/generated/res/resValues/androidTest/full/debug ++com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-20 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/merged.dir ++com.wix.detox.test.detox-mergeFullDebugAndroidTestResources-21 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/incremental/fullDebugAndroidTest/mergeFullDebugAndroidTestResources/stripped.dir ++com.wix.detox.test.detox-fullDebugAndroidTest-22 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/merged_res/fullDebugAndroidTest/mergeFullDebugAndroidTestResources ++com.wix.detox.test.detox-fullDebug-23 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/detox/android/detox/build/intermediates/packaged_res/fullDebug/packageFullDebugResources +diff --git a/node_modules/detox/android/detox/build/intermediates/stable_resource_ids_file/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/stableIds.txt b/node_modules/detox/android/detox/build/intermediates/stable_resource_ids_file/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/stableIds.txt +new file mode 100644 +index 0000000..ba75333 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/stable_resource_ids_file/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/stableIds.txt +@@ -0,0 +1,3285 @@ ++com.wix.detox.test:xml/standalone_badge_gravity_bottom_end = 0x7f100001 ++com.wix.detox.test:xml/standalone_badge = 0x7f100000 ++com.wix.detox.test:styleable/ViewStubCompat = 0x7f0f0088 ++com.wix.detox.test:styleable/View = 0x7f0f0085 ++com.wix.detox.test:styleable/Variant = 0x7f0f0084 ++com.wix.detox.test:styleable/Transition = 0x7f0f0083 ++com.wix.detox.test:styleable/Transform = 0x7f0f0082 ++com.wix.detox.test:styleable/Tooltip = 0x7f0f0081 ++com.wix.detox.test:styleable/TextInputLayout = 0x7f0f007e ++com.wix.detox.test:styleable/TextInputEditText = 0x7f0f007d ++com.wix.detox.test:styleable/TextAppearance = 0x7f0f007c ++com.wix.detox.test:styleable/TabLayout = 0x7f0f007b ++com.wix.detox.test:styleable/TabItem = 0x7f0f007a ++com.wix.detox.test:styleable/StateSet = 0x7f0f0077 ++com.wix.detox.test:styleable/StateListDrawableItem = 0x7f0f0076 ++com.wix.detox.test:styleable/State = 0x7f0f0074 ++com.wix.detox.test:styleable/Spinner = 0x7f0f0073 ++com.wix.detox.test:styleable/SnackbarLayout = 0x7f0f0072 ++com.wix.detox.test:styleable/ShapeableImageView = 0x7f0f006f ++com.wix.detox.test:styleable/ShapeAppearance = 0x7f0f006e ++com.wix.detox.test:styleable/SearchView = 0x7f0f006d ++com.wix.detox.test:styleable/ScrimInsetsFrameLayout = 0x7f0f006b ++com.wix.detox.test:styleable/RecyclerView = 0x7f0f006a ++com.wix.detox.test:styleable/RecycleListView = 0x7f0f0069 ++com.wix.detox.test:styleable/RangeSlider = 0x7f0f0068 ++com.wix.detox.test:styleable/PopupWindow = 0x7f0f0064 ++com.wix.detox.test:styleable/OnSwipe = 0x7f0f0063 ++com.wix.detox.test:styleable/NavigationView = 0x7f0f0061 ++com.wix.detox.test:styleable/NavigationRailView = 0x7f0f0060 ++com.wix.detox.test:styleable/NavigationBarView = 0x7f0f005f ++com.wix.detox.test:styleable/MotionScene = 0x7f0f005d ++com.wix.detox.test:styleable/Motion = 0x7f0f005a ++com.wix.detox.test:styleable/MenuItem = 0x7f0f0057 ++com.wix.detox.test:styleable/MaterialToolbar = 0x7f0f0055 ++com.wix.detox.test:styleable/MaterialTextView = 0x7f0f0053 ++com.wix.detox.test:styleable/MaterialTextAppearance = 0x7f0f0052 ++com.wix.detox.test:styleable/MaterialCheckBox = 0x7f0f004f ++com.wix.detox.test:styleable/MaterialCardView = 0x7f0f004e ++com.wix.detox.test:styleable/MaterialCalendarItem = 0x7f0f004d ++com.wix.detox.test:styleable/MaterialCalendar = 0x7f0f004c ++com.wix.detox.test:styleable/MaterialButtonToggleGroup = 0x7f0f004b ++com.wix.detox.test:styleable/MaterialButton = 0x7f0f004a ++com.wix.detox.test:styleable/MaterialAutoCompleteTextView = 0x7f0f0049 ++com.wix.detox.test:styleable/MaterialAlertDialogTheme = 0x7f0f0048 ++com.wix.detox.test:styleable/MaterialAlertDialog = 0x7f0f0047 ++com.wix.detox.test:styleable/LinearLayoutCompat_Layout = 0x7f0f0044 ++com.wix.detox.test:styleable/Layout = 0x7f0f0042 ++com.wix.detox.test:styleable/KeyTrigger = 0x7f0f0041 ++com.wix.detox.test:styleable/KeyTimeCycle = 0x7f0f0040 ++com.wix.detox.test:styleable/KeyFramesVelocity = 0x7f0f003e ++com.wix.detox.test:styleable/KeyFramesAcceleration = 0x7f0f003d ++com.wix.detox.test:styleable/KeyFrame = 0x7f0f003c ++com.wix.detox.test:styleable/ImageFilterView = 0x7f0f0038 ++com.wix.detox.test:styleable/GradientColor = 0x7f0f0036 ++com.wix.detox.test:attr/scrimVisibleHeightTrigger = 0x7f0302b3 ++com.wix.detox.test:dimen/mtrl_extended_fab_start_padding = 0x7f06012d ++com.wix.detox.test:styleable/Fragment = 0x7f0f0034 ++com.wix.detox.test:styleable/FontFamilyFont = 0x7f0f0032 ++com.wix.detox.test:styleable/FlowLayout = 0x7f0f0030 ++com.wix.detox.test:drawable/btn_radio_on_to_off_mtrl_animation = 0x7f07005e ++com.wix.detox.test:styleable/DrawerLayout = 0x7f0f002b ++com.wix.detox.test:styleable/FloatingActionButton = 0x7f0f002e ++com.wix.detox.test:styleable/ExtendedFloatingActionButton_Behavior_Layout = 0x7f0f002d ++com.wix.detox.test:styleable/DrawerArrowToggle = 0x7f0f002a ++com.wix.detox.test:id/linear = 0x7f0800c9 ++com.wix.detox.test:styleable/CustomAttribute = 0x7f0f0029 ++com.wix.detox.test:style/Base.Widget.AppCompat.ListMenuView = 0x7f0e00bf ++com.wix.detox.test:styleable/CoordinatorLayout = 0x7f0f0027 ++com.wix.detox.test:attr/sliderStyle = 0x7f0302cf ++com.wix.detox.test:attr/itemHorizontalPadding = 0x7f0301a6 ++com.wix.detox.test:styleable/ConstraintSet = 0x7f0f0026 ++com.wix.detox.test:styleable/Constraint = 0x7f0f0023 ++com.wix.detox.test:attr/actionTextColorAlpha = 0x7f030022 ++com.wix.detox.test:styleable/ChipGroup = 0x7f0f001b ++com.wix.detox.test:styleable/BottomNavigationView = 0x7f0f0015 ++com.wix.detox.test:styleable/AppCompatTheme = 0x7f0f0011 ++com.wix.detox.test:styleable/AppCompatSeekBar = 0x7f0f000e ++com.wix.detox.test:layout/mtrl_picker_header_title_text = 0x7f0b0053 ++com.wix.detox.test:styleable/AppBarLayout = 0x7f0f000a ++com.wix.detox.test:attr/windowActionBar = 0x7f030381 ++com.wix.detox.test:dimen/notification_main_column_padding_top = 0x7f06018a ++com.wix.detox.test:styleable/ActionMode = 0x7f0f0004 ++com.wix.detox.test:id/disableHome = 0x7f080087 ++com.wix.detox.test:styleable/ActionMenuView = 0x7f0f0003 ++com.wix.detox.test:attr/thumbTextPadding = 0x7f03033f ++com.wix.detox.test:styleable/ActionBar = 0x7f0f0000 ++com.wix.detox.test:style/Widget.Support.CoordinatorLayout = 0x7f0e02d2 ++com.wix.detox.test:attr/boxStrokeWidth = 0x7f030068 ++com.wix.detox.test:style/Widget.MaterialComponents.Toolbar.Surface = 0x7f0e02d0 ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.ImageButton = 0x7f0e02cb ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.Display.TextInputEditText = 0x7f0e02ca ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.Button = 0x7f0e02c7 ++com.wix.detox.test:attr/telltales_velocityMode = 0x7f030318 ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker = 0x7f0e02c6 ++com.wix.detox.test:styleable/ActivityChooserView = 0x7f0f0005 ++com.wix.detox.test:style/Widget.MaterialComponents.TextView = 0x7f0e02c5 ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu = 0x7f0e02c0 ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense = 0x7f0e02be ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.FilledBox = 0x7f0e02bd ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f0e02bb ++com.wix.detox.test:style/Widget.MaterialComponents.TabLayout = 0x7f0e02b6 ++com.wix.detox.test:attr/listPreferredItemPaddingEnd = 0x7f030216 ++com.wix.detox.test:attr/listPreferredItemPaddingStart = 0x7f030219 ++com.wix.detox.test:style/Widget.MaterialComponents.Snackbar.FullWidth = 0x7f0e02b4 ++com.wix.detox.test:style/Widget.MaterialComponents.PopupMenu.ListPopupWindow = 0x7f0e02ae ++com.wix.detox.test:id/action_bar_container = 0x7f080032 ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationRailView.Colored.Compact = 0x7f0e02a8 ++com.wix.detox.test:color/abc_search_url_text_pressed = 0x7f05000f ++com.wix.detox.test:dimen/abc_list_item_height_material = 0x7f060031 ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationRailView.Colored = 0x7f0e02a7 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Year.Today = 0x7f0e02a4 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Year = 0x7f0e02a2 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.MonthTextView = 0x7f0e02a1 ++com.wix.detox.test:attr/itemShapeAppearance = 0x7f0301ae ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.MonthNavigationButton = 0x7f0e02a0 ++com.wix.detox.test:attr/chipSpacingHorizontal = 0x7f030097 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Item = 0x7f0e029f ++com.wix.detox.test:color/design_dark_default_color_background = 0x7f050030 ++com.wix.detox.test:id/action_mode_bar = 0x7f08003d ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton = 0x7f0e029e ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderDivider = 0x7f0e0299 ++com.wix.detox.test:styleable/ViewPager2 = 0x7f0f0087 ++com.wix.detox.test:style/Widget.AppCompat.ActionBar = 0x7f0e0205 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Fullscreen = 0x7f0e0296 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Day.Today = 0x7f0e0294 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Day = 0x7f0e0291 ++com.wix.detox.test:id/unchecked = 0x7f080195 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomAppBar.Colored = 0x7f0e0268 ++com.wix.detox.test:style/Widget.MaterialComponents.ExtendedFloatingActionButton = 0x7f0e028a ++com.wix.detox.test:style/TextAppearance.AppCompat.Display2 = 0x7f0e0137 ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.Display = 0x7f0e02c9 ++com.wix.detox.test:style/Widget.MaterialComponents.CompoundButton.RadioButton = 0x7f0e0288 ++com.wix.detox.test:style/Widget.MaterialComponents.CircularProgressIndicator.Small = 0x7f0e0285 ++com.wix.detox.test:style/Widget.MaterialComponents.CircularProgressIndicator.Medium = 0x7f0e0284 ++com.wix.detox.test:style/Widget.MaterialComponents.Chip.Filter = 0x7f0e0280 ++com.wix.detox.test:style/Widget.MaterialComponents.Chip.Entry = 0x7f0e027f ++com.wix.detox.test:drawable/abc_btn_check_to_on_mtrl_000 = 0x7f07000b ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton.Dialog = 0x7f0e0274 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.SearchResult.Title = 0x7f0e0027 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton = 0x7f0e0273 ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Panel = 0x7f0e00ee ++com.wix.detox.test:style/Widget.MaterialComponents.Button.Icon = 0x7f0e0270 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomNavigationView = 0x7f0e026a ++com.wix.detox.test:style/Widget.MaterialComponents.Badge = 0x7f0e0266 ++com.wix.detox.test:style/TextAppearance.Compat.Notification.Time = 0x7f0e0164 ++com.wix.detox.test:style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense = 0x7f0e0263 ++com.wix.detox.test:style/Widget.MaterialComponents.AppBarLayout.Primary = 0x7f0e025f ++com.wix.detox.test:style/Widget.MaterialComponents.ActionBar.Surface = 0x7f0e025e ++com.wix.detox.test:attr/bottomSheetDialogTheme = 0x7f03005d ++com.wix.detox.test:style/Widget.MaterialComponents.ActionBar.Solid = 0x7f0e025d ++com.wix.detox.test:attr/statusBarForeground = 0x7f0302e7 ++com.wix.detox.test:attr/chipStyle = 0x7f03009d ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Toolbar.Primary = 0x7f0e0200 ++com.wix.detox.test:style/Widget.Design.TextInputLayout = 0x7f0e025a ++com.wix.detox.test:style/Widget.Design.TextInputEditText = 0x7f0e0259 ++com.wix.detox.test:id/enterAlways = 0x7f080099 ++com.wix.detox.test:style/Widget.Design.TabLayout = 0x7f0e0258 ++com.wix.detox.test:dimen/item_touch_helper_max_drag_scroll_per_frame = 0x7f06009b ++com.wix.detox.test:style/Widget.Design.NavigationView = 0x7f0e0255 ++com.wix.detox.test:style/Widget.Design.FloatingActionButton = 0x7f0e0254 ++com.wix.detox.test:attr/maxImageSize = 0x7f03023d ++com.wix.detox.test:style/Widget.AppCompat.RatingBar = 0x7f0e023f ++com.wix.detox.test:attr/layout_constraintHeight_percent = 0x7f0301e0 ++com.wix.detox.test:style/Widget.AppCompat.ProgressBar.Horizontal = 0x7f0e023e ++com.wix.detox.test:style/Widget.AppCompat.ProgressBar = 0x7f0e023d ++com.wix.detox.test:style/ShapeAppearanceOverlay.TopRightDifferentCornerSize = 0x7f0e0125 ++com.wix.detox.test:styleable/ConstraintLayout_placeholder = 0x7f0f0025 ++com.wix.detox.test:style/TextAppearance.Design.CollapsingToolbar.Expanded = 0x7f0e0166 ++com.wix.detox.test:style/TextAppearance.Design.Counter.Overflow = 0x7f0e0168 ++com.wix.detox.test:style/Widget.AppCompat.ListView.Menu = 0x7f0e0239 ++com.wix.detox.test:style/Widget.AppCompat.ListView.DropDown = 0x7f0e0238 ++com.wix.detox.test:attr/layout_constraintVertical_bias = 0x7f0301f0 ++com.wix.detox.test:style/Widget.AppCompat.ListView = 0x7f0e0237 ++com.wix.detox.test:color/error_color_material_light = 0x7f050059 ++com.wix.detox.test:style/Widget.AppCompat.ListMenuView = 0x7f0e0235 ++com.wix.detox.test:style/Widget.AppCompat.Light.ListPopupWindow = 0x7f0e022f ++com.wix.detox.test:dimen/mtrl_tooltip_minHeight = 0x7f060180 ++com.wix.detox.test:style/Widget.AppCompat.Light.DropDownItem.Spinner = 0x7f0e022e ++com.wix.detox.test:integer/mtrl_calendar_year_selector_span = 0x7f090015 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActivityChooserView = 0x7f0e022c ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionMode.Inverse = 0x7f0e022b ++com.wix.detox.test:dimen/notification_action_text_size = 0x7f060185 ++com.wix.detox.test:id/ratio = 0x7f080123 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionButton.CloseMode = 0x7f0e0229 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionButton = 0x7f0e0228 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabView = 0x7f0e0226 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse = 0x7f0e0223 ++com.wix.detox.test:string/mtrl_picker_toggle_to_text_input_mode = 0x7f0d0060 ++com.wix.detox.test:style/Widget.AppCompat.Light.SearchView = 0x7f0e0233 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.MinWidth = 0x7f0e01b0 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.Solid = 0x7f0e0220 ++com.wix.detox.test:style/Widget.AppCompat.ImageButton = 0x7f0e021e ++com.wix.detox.test:style/Widget.AppCompat.EditText = 0x7f0e021d ++com.wix.detox.test:styleable/ClockFaceView = 0x7f0f001d ++com.wix.detox.test:style/Widget.AppCompat.DropDownItem.Spinner = 0x7f0e021c ++com.wix.detox.test:dimen/material_textinput_max_width = 0x7f0600bc ++com.wix.detox.test:style/Widget.AppCompat.DrawerArrowToggle = 0x7f0e021b ++com.wix.detox.test:attr/errorContentDescription = 0x7f030134 ++com.wix.detox.test:style/Widget.AppCompat.CompoundButton.RadioButton = 0x7f0e0219 ++com.wix.detox.test:style/Widget.AppCompat.Button.Small = 0x7f0e0215 ++com.wix.detox.test:style/Widget.AppCompat.ActivityChooserView = 0x7f0e020e ++com.wix.detox.test:dimen/mtrl_calendar_text_input_padding_top = 0x7f06010e ++com.wix.detox.test:layout/material_clock_display_divider = 0x7f0b002e ++com.wix.detox.test:style/Widget.AppCompat.ActionButton = 0x7f0e020a ++com.wix.detox.test:style/Widget.AppCompat.ActionBar.TabView = 0x7f0e0209 ++com.wix.detox.test:style/Widget.AppCompat.ActionBar.TabText = 0x7f0e0208 ++com.wix.detox.test:style/Widget.AppCompat.ActionBar.TabBar = 0x7f0e0207 ++com.wix.detox.test:string/bottomsheet_action_expand_halfway = 0x7f0d001e ++com.wix.detox.test:style/ThemeOverlayColorAccentRed = 0x7f0e0202 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Toolbar.Surface = 0x7f0e0201 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TimePicker.Display = 0x7f0e01ff ++com.wix.detox.test:attr/materialCircleRadius = 0x7f030233 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense = 0x7f0e01fd ++com.wix.detox.test:style/Widget.MaterialComponents.Button.UnelevatedButton = 0x7f0e0279 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TextInputEditText = 0x7f0e01f9 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen = 0x7f0e01f8 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialCalendar = 0x7f0e01f7 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Spinner = 0x7f0e01f6 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date = 0x7f0e01f2 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered = 0x7f0e01f1 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework = 0x7f0e01ef ++com.wix.detox.test:string/material_timepicker_minute = 0x7f0d003b ++com.wix.detox.test:id/beginning = 0x7f080055 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Light = 0x7f0e01ee ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Dialog.Alert.Framework = 0x7f0e01ed ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Dark.ActionBar = 0x7f0e01e9 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.BottomAppBar.Primary = 0x7f0e01e5 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox = 0x7f0e01e3 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense = 0x7f0e01e2 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f0e01e1 ++com.wix.detox.test:dimen/compat_button_padding_vertical_material = 0x7f06005a ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.ActionBar.Primary = 0x7f0e01de ++com.wix.detox.test:attr/minHeight = 0x7f030244 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents = 0x7f0e01dc ++com.wix.detox.test:style/ThemeOverlay.AppCompat.Light = 0x7f0e01da ++com.wix.detox.test:style/Widget.MaterialComponents.BottomAppBar.PrimarySurface = 0x7f0e0269 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.Dialog.Alert = 0x7f0e01d9 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.DayNight.ActionBar = 0x7f0e01d7 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.DayNight = 0x7f0e01d6 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.Dark = 0x7f0e01d4 ++com.wix.detox.test:dimen/abc_text_size_caption_material = 0x7f060042 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.ActionBar = 0x7f0e01d3 ++com.wix.detox.test:layout/custom_dialog = 0x7f0b001c ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked = 0x7f0e00ed ++com.wix.detox.test:style/Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f0e01cc ++com.wix.detox.test:dimen/abc_search_view_preferred_width = 0x7f060037 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge = 0x7f0e01cb ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f0e01c8 ++com.wix.detox.test:layout/test_chip_zero_corner_radius = 0x7f0b0062 ++com.wix.detox.test:style/Widget.MaterialComponents.Slider = 0x7f0e02b2 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Body1 = 0x7f0e0014 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.Alert.Bridge = 0x7f0e01c6 ++com.wix.detox.test:id/radio = 0x7f080122 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog = 0x7f0e01c4 ++com.wix.detox.test:id/textinput_placeholder = 0x7f080182 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f0e01c3 ++com.wix.detox.test:style/Widget.Compat.NotificationActionContainer = 0x7f0e024e ++com.wix.detox.test:id/dragUp = 0x7f080090 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.FixedSize.Bridge = 0x7f0e01ba ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.NoActionBar.Bridge = 0x7f0e01b4 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.NoActionBar = 0x7f0e01b3 ++com.wix.detox.test:drawable/abc_textfield_activated_mtrl_alpha = 0x7f07004f ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.DialogWhenLarge = 0x7f0e01b2 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize = 0x7f0e01ae ++com.wix.detox.test:id/mtrl_anchor_parent = 0x7f0800ea ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.Alert = 0x7f0e01ab ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog = 0x7f0e01aa ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.DarkActionBar.Bridge = 0x7f0e01a9 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.DarkActionBar = 0x7f0e01a8 ++com.wix.detox.test:attr/textAllCaps = 0x7f030319 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Bridge = 0x7f0e01a7 ++com.wix.detox.test:style/Theme.MaterialComponents.Bridge = 0x7f0e01a3 ++com.wix.detox.test:id/transition_scene_layoutid_cache = 0x7f080192 ++com.wix.detox.test:style/Theme.MaterialComponents = 0x7f0e01a1 ++com.wix.detox.test:style/Theme.Design.NoActionBar = 0x7f0e01a0 ++com.wix.detox.test:dimen/mtrl_calendar_navigation_bottom_padding = 0x7f060106 ++com.wix.detox.test:style/Theme.Design.Light = 0x7f0e019d ++com.wix.detox.test:attr/percentHeight = 0x7f03028a ++com.wix.detox.test:style/Theme.Design.BottomSheetDialog = 0x7f0e019c ++com.wix.detox.test:style/Theme.AppCompat.NoActionBar = 0x7f0e019a ++com.wix.detox.test:style/Theme.AppCompat.Light.NoActionBar = 0x7f0e0199 ++com.wix.detox.test:style/Theme.AppCompat.DialogWhenLarge = 0x7f0e0191 ++com.wix.detox.test:styleable/ExtendedFloatingActionButton = 0x7f0f002c ++com.wix.detox.test:style/Theme.AppCompat.DayNight.DialogWhenLarge = 0x7f0e018c ++com.wix.detox.test:integer/mtrl_tab_indicator_anim_duration_ms = 0x7f090019 ++com.wix.detox.test:style/Theme.AppCompat.DayNight.Dialog.MinWidth = 0x7f0e018b ++com.wix.detox.test:style/TextAppearance.AppCompat.Display3 = 0x7f0e0138 ++com.wix.detox.test:style/Theme.AppCompat.CompactMenu = 0x7f0e0186 ++com.wix.detox.test:style/TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f0e0184 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.TimePicker.Title = 0x7f0e0180 ++com.wix.detox.test:style/Widget.AppCompat.CompoundButton.CheckBox = 0x7f0e0218 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Subtitle2 = 0x7f0e017f ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f0e00ec ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline4 = 0x7f0e017a ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Badge = 0x7f0e0171 ++com.wix.detox.test:style/TextAppearance.Design.HelperText = 0x7f0e016a ++com.wix.detox.test:style/TextAppearance.Design.Counter = 0x7f0e0167 ++com.wix.detox.test:style/TextAppearance.Compat.Notification.Title = 0x7f0e0165 ++com.wix.detox.test:style/Widget.AppCompat.RatingBar.Small = 0x7f0e0241 ++com.wix.detox.test:style/TextAppearance.Compat.Notification = 0x7f0e0161 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.Switch = 0x7f0e015f ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f0e015e ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f0e015c ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.Button.Colored = 0x7f0e0159 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.Button = 0x7f0e0157 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f0e0153 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f0e0152 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f0e0151 ++com.wix.detox.test:attr/startIconDrawable = 0x7f0302dd ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f0e014f ++com.wix.detox.test:attr/layoutDescription = 0x7f0301c5 ++com.wix.detox.test:id/exitUntilCollapsed = 0x7f08009b ++com.wix.detox.test:style/TextAppearance.AppCompat.Subhead.Inverse = 0x7f0e014a ++com.wix.detox.test:style/TextAppearance.AppCompat.Subhead = 0x7f0e0149 ++com.wix.detox.test:style/Widget.MaterialComponents.AppBarLayout.PrimarySurface = 0x7f0e0260 ++com.wix.detox.test:style/TextAppearance.AppCompat.Small.Inverse = 0x7f0e0148 ++com.wix.detox.test:animator/fragment_close_exit = 0x7f020004 ++com.wix.detox.test:style/TextAppearance.AppCompat.Menu = 0x7f0e0144 ++com.wix.detox.test:style/TextAppearance.AppCompat.Medium.Inverse = 0x7f0e0143 ++com.wix.detox.test:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f0e0141 ++com.wix.detox.test:style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f0e0183 ++com.wix.detox.test:style/TextAppearance.AppCompat.Large = 0x7f0e013c ++com.wix.detox.test:style/TextAppearance.AppCompat.Headline = 0x7f0e013a ++com.wix.detox.test:attr/counterMaxLength = 0x7f0300ef ++com.wix.detox.test:style/TextAppearance.AppCompat.Button = 0x7f0e0134 ++com.wix.detox.test:color/abc_color_highlight_material = 0x7f050004 ++com.wix.detox.test:style/TextAppearance.AppCompat.Body1 = 0x7f0e0132 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Body1 = 0x7f0e0172 ++com.wix.detox.test:style/TextAppearance.AppCompat = 0x7f0e0131 ++com.wix.detox.test:style/TestStyleWithLineHeight = 0x7f0e012b ++com.wix.detox.test:style/Test.Widget.MaterialComponents.MaterialCalendar.Day = 0x7f0e0129 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f0e0061 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabView.Inverse = 0x7f0e0227 ++com.wix.detox.test:style/Test.Widget.MaterialComponents.MaterialCalendar = 0x7f0e0128 ++com.wix.detox.test:id/tag_accessibility_actions = 0x7f080164 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight = 0x7f0e01a5 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox = 0x7f0e0123 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.Chip = 0x7f0e011d ++com.wix.detox.test:style/ShapeAppearanceOverlay.BottomRightCut = 0x7f0e0119 ++com.wix.detox.test:style/ShapeAppearanceOverlay = 0x7f0e0117 ++com.wix.detox.test:attr/iconGravity = 0x7f030191 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomAppBar = 0x7f0e0267 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents.Tooltip = 0x7f0e0116 ++com.wix.detox.test:attr/expandedTitleMargin = 0x7f03013f ++com.wix.detox.test:id/snackbar_action = 0x7f08014a ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f0e01fc ++com.wix.detox.test:attr/roundPercent = 0x7f0302af ++com.wix.detox.test:id/progress_horizontal = 0x7f080121 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Chip = 0x7f0e0176 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents.Test = 0x7f0e0115 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents.SmallComponent = 0x7f0e0114 ++com.wix.detox.test:attr/flow_firstHorizontalStyle = 0x7f030157 ++com.wix.detox.test:style/Base.Widget.AppCompat.RatingBar = 0x7f0e00c9 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents.MediumComponent = 0x7f0e0113 ++com.wix.detox.test:color/mtrl_on_primary_text_btn_text_color_selector = 0x7f0500a2 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents = 0x7f0e0111 ++com.wix.detox.test:style/RtlUnderlay.Widget.AppCompat.ActionButton.Overflow = 0x7f0e0110 ++com.wix.detox.test:attr/showAsAction = 0x7f0302c3 ++com.wix.detox.test:style/TestThemeWithLineHeight = 0x7f0e012f ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Text = 0x7f0e010d ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query = 0x7f0e010c ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown = 0x7f0e0109 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Title = 0x7f0e0108 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem = 0x7f0e0103 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.DialogTitle.Icon = 0x7f0e0102 ++com.wix.detox.test:style/TextAppearance.Design.Error = 0x7f0e0169 ++com.wix.detox.test:animator/mtrl_fab_hide_motion_spec = 0x7f020016 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem = 0x7f0e0101 ++com.wix.detox.test:style/Base.Animation.AppCompat.DropDownUp = 0x7f0e000b ++com.wix.detox.test:style/RtlOverlay.DialogWindowTitle.AppCompat = 0x7f0e0100 ++com.wix.detox.test:style/Platform.V25.AppCompat = 0x7f0e00fd ++com.wix.detox.test:style/Platform.V21.AppCompat = 0x7f0e00fb ++com.wix.detox.test:styleable/AlertDialog = 0x7f0f0006 ++com.wix.detox.test:attr/icon = 0x7f03018f ++com.wix.detox.test:style/Platform.ThemeOverlay.AppCompat.Light = 0x7f0e00fa ++com.wix.detox.test:drawable/design_ic_visibility = 0x7f070060 ++com.wix.detox.test:style/Platform.ThemeOverlay.AppCompat = 0x7f0e00f8 ++com.wix.detox.test:style/Platform.MaterialComponents.Light.Dialog = 0x7f0e00f7 ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked = 0x7f0e00f1 ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Text = 0x7f0e00f0 ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked = 0x7f0e00ef ++com.wix.detox.test:color/material_blue_grey_900 = 0x7f05005f ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f0e01ec ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.Light = 0x7f0e006e ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner = 0x7f0e00eb ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Picker.Date.Calendar = 0x7f0e00ea ++com.wix.detox.test:dimen/highlight_alpha_material_light = 0x7f060096 ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Body.Text = 0x7f0e00e9 ++com.wix.detox.test:dimen/mtrl_calendar_selection_text_baseline_to_bottom = 0x7f06010b ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents = 0x7f0e00e8 ++com.wix.detox.test:style/Widget.MaterialComponents.TabLayout.Colored = 0x7f0e02b7 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.TextView = 0x7f0e00e3 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.TextInputLayout = 0x7f0e00e2 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.TextInputEditText = 0x7f0e00e1 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.Slider = 0x7f0e00df ++com.wix.detox.test:style/Base.Widget.MaterialComponents.PopupMenu.ContextMenu = 0x7f0e00dc ++com.wix.detox.test:style/Base.Widget.MaterialComponents.PopupMenu = 0x7f0e00db ++com.wix.detox.test:style/Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton = 0x7f0e00da ++com.wix.detox.test:style/Base.Widget.MaterialComponents.CheckedTextView = 0x7f0e00d8 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.AutoCompleteTextView = 0x7f0e00d7 ++com.wix.detox.test:style/Base.Widget.Design.TabLayout = 0x7f0e00d6 ++com.wix.detox.test:style/Base.Widget.AppCompat.Toolbar.Button.Navigation = 0x7f0e00d5 ++com.wix.detox.test:style/Base.Widget.AppCompat.Toolbar = 0x7f0e00d4 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f0e0150 ++com.wix.detox.test:style/Base.Widget.AppCompat.TextView.SpinnerItem = 0x7f0e00d3 ++com.wix.detox.test:dimen/mtrl_calendar_year_vertical_padding = 0x7f060114 ++com.wix.detox.test:style/Widget.AppCompat.ButtonBar = 0x7f0e0216 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.BottomSheetDialog = 0x7f0e01c0 ++com.wix.detox.test:style/Base.Widget.AppCompat.TextView = 0x7f0e00d2 ++com.wix.detox.test:style/Base.Widget.AppCompat.Spinner.Underlined = 0x7f0e00d1 ++com.wix.detox.test:layout/test_reflow_chipgroup = 0x7f0b0066 ++com.wix.detox.test:style/Widget.MaterialComponents.CircularProgressIndicator = 0x7f0e0282 ++com.wix.detox.test:style/Base.Widget.AppCompat.Spinner = 0x7f0e00d0 ++com.wix.detox.test:style/Base.Widget.AppCompat.SeekBar.Discrete = 0x7f0e00cf ++com.wix.detox.test:style/Base.Widget.AppCompat.SeekBar = 0x7f0e00ce ++com.wix.detox.test:style/TextAppearance.Design.Prefix = 0x7f0e016d ++com.wix.detox.test:style/Base.Widget.AppCompat.SearchView = 0x7f0e00cc ++com.wix.detox.test:style/Base.Widget.AppCompat.RatingBar.Small = 0x7f0e00cb ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year = 0x7f0e0122 ++com.wix.detox.test:style/Base.Widget.AppCompat.ProgressBar.Horizontal = 0x7f0e00c8 ++com.wix.detox.test:styleable/SwitchMaterial = 0x7f0f0079 ++com.wix.detox.test:id/leftToRight = 0x7f0800c6 ++com.wix.detox.test:style/Base.Widget.AppCompat.ListView.DropDown = 0x7f0e00c2 ++com.wix.detox.test:attr/layout_editor_absoluteY = 0x7f0301f9 ++com.wix.detox.test:style/Base.Widget.AppCompat.ListView = 0x7f0e00c1 ++com.wix.detox.test:attr/textAppearanceHeadline3 = 0x7f030320 ++com.wix.detox.test:attr/goIcon = 0x7f03017a ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Calendar = 0x7f0e01f3 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f0e00be ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.PopupMenu = 0x7f0e00bd ++com.wix.detox.test:attr/itemTextColor = 0x7f0301bb ++com.wix.detox.test:dimen/abc_action_bar_content_inset_with_nav = 0x7f060001 ++com.wix.detox.test:id/material_value_index = 0x7f0800df ++com.wix.detox.test:style/Base.Widget.MaterialComponents.Snackbar = 0x7f0e00e0 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f0e00bb ++com.wix.detox.test:style/Base.Widget.AppCompat.DropDownItem.Spinner = 0x7f0e00b4 ++com.wix.detox.test:style/Base.Widget.AppCompat.DrawerArrowToggle = 0x7f0e00b2 ++com.wix.detox.test:style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon = 0x7f0e028b ++com.wix.detox.test:id/uniform = 0x7f080196 ++com.wix.detox.test:color/mtrl_choice_chip_text_color = 0x7f050092 ++com.wix.detox.test:style/Base.Widget.AppCompat.ButtonBar.AlertDialog = 0x7f0e00ae ++com.wix.detox.test:attr/lStar = 0x7f0301bf ++com.wix.detox.test:dimen/abc_action_bar_stacked_tab_max_width = 0x7f06000a ++com.wix.detox.test:style/Base.Widget.AppCompat.ButtonBar = 0x7f0e00ad ++com.wix.detox.test:dimen/abc_disabled_alpha_material_light = 0x7f060028 ++com.wix.detox.test:style/Base.Widget.AppCompat.Button.Colored = 0x7f0e00ab ++com.wix.detox.test:style/WhiteBackgroundDialogTheme = 0x7f0e0203 ++com.wix.detox.test:style/Base.Widget.AppCompat.Button.Borderless.Colored = 0x7f0e00a9 ++com.wix.detox.test:style/Base.Widget.AppCompat.Button = 0x7f0e00a7 ++com.wix.detox.test:attr/tabIconTintMode = 0x7f0302fe ++com.wix.detox.test:style/Base.Widget.AppCompat.AutoCompleteTextView = 0x7f0e00a6 ++com.wix.detox.test:id/FUNCTION = 0x7f080004 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActivityChooserView = 0x7f0e00a5 ++com.wix.detox.test:dimen/material_helper_text_default_padding_top = 0x7f0600b5 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionButton.Overflow = 0x7f0e00a3 ++com.wix.detox.test:id/accessibility_custom_action_25 = 0x7f080022 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionButton = 0x7f0e00a1 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Bridge = 0x7f0e005f ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionBar.TabBar = 0x7f0e009e ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionBar.Solid = 0x7f0e009d ++com.wix.detox.test:style/Base.V7.Widget.AppCompat.EditText = 0x7f0e009a ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance = 0x7f0e02cc ++com.wix.detox.test:style/Base.V7.Theme.AppCompat.Light.Dialog = 0x7f0e0097 ++com.wix.detox.test:style/Base.V7.Theme.AppCompat.Dialog = 0x7f0e0095 ++com.wix.detox.test:attr/windowFixedHeightMinor = 0x7f030385 ++com.wix.detox.test:style/Base.V28.Theme.AppCompat = 0x7f0e0092 ++com.wix.detox.test:style/Base.V7.Widget.AppCompat.AutoCompleteTextView = 0x7f0e0099 ++com.wix.detox.test:id/dragLeft = 0x7f08008d ++com.wix.detox.test:style/Base.V23.Theme.AppCompat = 0x7f0e008d ++com.wix.detox.test:style/Base.V22.Theme.AppCompat.Light = 0x7f0e008c ++com.wix.detox.test:style/Base.V22.Theme.AppCompat = 0x7f0e008b ++com.wix.detox.test:style/Base.V21.ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f0e008a ++com.wix.detox.test:attr/hideMotionSpec = 0x7f030184 ++com.wix.detox.test:styleable/ActionMenuItemView = 0x7f0f0002 ++com.wix.detox.test:color/abc_search_url_text = 0x7f05000d ++com.wix.detox.test:style/Base.V21.Theme.MaterialComponents.Light = 0x7f0e0087 ++com.wix.detox.test:dimen/mtrl_fab_elevation = 0x7f060133 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomNavigationView.PrimarySurface = 0x7f0e026c ++com.wix.detox.test:style/Base.V21.Theme.MaterialComponents = 0x7f0e0085 ++com.wix.detox.test:style/Base.V21.Theme.AppCompat.Light.Dialog = 0x7f0e0084 ++com.wix.detox.test:color/material_grey_800 = 0x7f050068 ++com.wix.detox.test:style/Base.V21.Theme.AppCompat = 0x7f0e0081 ++com.wix.detox.test:drawable/mtrl_navigation_bar_item_background = 0x7f07007a ++com.wix.detox.test:style/Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f0e007d ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f0e007c ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Light.Bridge = 0x7f0e0079 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.OutlinedButton.Icon = 0x7f0e0272 ++com.wix.detox.test:attr/actionModeSelectAllDrawable = 0x7f030019 ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Dialog.Bridge = 0x7f0e0077 ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Dialog = 0x7f0e0076 ++com.wix.detox.test:styleable/ForegroundLinearLayout = 0x7f0f0033 ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.Dialog.Alert = 0x7f0e006d ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.Dialog = 0x7f0e006c ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Dialog.MinWidth = 0x7f0e0066 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f0e0064 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Dialog.Alert = 0x7f0e0063 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.DarkActionBar = 0x7f0e0060 ++com.wix.detox.test:style/ShapeAppearanceOverlay.DifferentCornerSize = 0x7f0e011b ++com.wix.detox.test:style/Base.Theme.MaterialComponents.DialogWhenLarge = 0x7f0e005d ++com.wix.detox.test:style/Widget.MaterialComponents.ShapeableImageView = 0x7f0e02b1 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Dialog.FixedSize = 0x7f0e005b ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Dialog.Alert = 0x7f0e0059 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.CompactMenu = 0x7f0e0057 ++com.wix.detox.test:color/design_default_color_on_primary = 0x7f050041 ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense = 0x7f0e02ba ++com.wix.detox.test:style/Base.Theme.MaterialComponents = 0x7f0e0055 ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.DialogWhenLarge = 0x7f0e0054 ++com.wix.detox.test:integer/mtrl_calendar_selection_text_lines = 0x7f090014 ++com.wix.detox.test:style/Widget.AppCompat.SearchView = 0x7f0e0242 ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.Dialog.Alert = 0x7f0e0051 ++com.wix.detox.test:style/Platform.V21.AppCompat.Light = 0x7f0e00fc ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.Dialog = 0x7f0e0050 ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.DarkActionBar = 0x7f0e004f ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.DayTextView = 0x7f0e0295 ++com.wix.detox.test:id/textinput_suffix_text = 0x7f080184 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Display3 = 0x7f0e001a ++com.wix.detox.test:style/Base.Theme.AppCompat.Light = 0x7f0e004e ++com.wix.detox.test:style/Base.Theme.AppCompat.DialogWhenLarge = 0x7f0e004d ++com.wix.detox.test:dimen/abc_action_bar_stacked_max_height = 0x7f060009 ++com.wix.detox.test:string/material_motion_easing_standard = 0x7f0d0035 ++com.wix.detox.test:style/Base.Theme.AppCompat.Dialog = 0x7f0e0049 ++com.wix.detox.test:attr/dialogCornerRadius = 0x7f03010a ++com.wix.detox.test:id/dropdown_menu = 0x7f080091 ++com.wix.detox.test:layout/mtrl_calendar_day = 0x7f0b0040 ++com.wix.detox.test:style/Base.Theme.AppCompat = 0x7f0e0047 ++com.wix.detox.test:style/Base.TextAppearance.MaterialComponents.Subtitle2 = 0x7f0e0043 ++com.wix.detox.test:id/bounce = 0x7f080058 ++com.wix.detox.test:attr/buttonPanelSideLayout = 0x7f030073 ++com.wix.detox.test:style/Base.TextAppearance.MaterialComponents.Headline6 = 0x7f0e0042 ++com.wix.detox.test:style/Base.TextAppearance.MaterialComponents.Button = 0x7f0e0041 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f0e003f ++com.wix.detox.test:style/Widget.MaterialComponents.Button.UnelevatedButton.Icon = 0x7f0e027a ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Bridge = 0x7f0e01c1 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f0e0039 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense = 0x7f0e01fb ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f0e0037 ++com.wix.detox.test:attr/thumbRadius = 0x7f03033c ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f0e0035 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f0e0033 ++com.wix.detox.test:style/CardView.Dark = 0x7f0e00e5 ++com.wix.detox.test:color/switch_thumb_disabled_material_dark = 0x7f0500c4 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f0e0032 ++com.wix.detox.test:attr/colorSurface = 0x7f0300c8 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Title = 0x7f0e002c ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Subhead.Inverse = 0x7f0e002b ++com.wix.detox.test:dimen/abc_dialog_padding_top_material = 0x7f060025 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Subhead = 0x7f0e002a ++com.wix.detox.test:animator/mtrl_card_state_list_anim = 0x7f02000f ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Small = 0x7f0e0028 ++com.wix.detox.test:attr/drawableTintMode = 0x7f03011d ++com.wix.detox.test:dimen/design_navigation_separator_vertical_padding = 0x7f06007e ++com.wix.detox.test:style/Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f0e0073 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f0e0026 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Menu = 0x7f0e0024 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Large = 0x7f0e001e ++com.wix.detox.test:style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f0e0262 ++com.wix.detox.test:string/abc_action_bar_home_description = 0x7f0d0000 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Display2 = 0x7f0e0019 ++com.wix.detox.test:style/Base.MaterialAlertDialog.MaterialComponents.Title.Panel = 0x7f0e0011 ++com.wix.detox.test:attr/chipCornerRadius = 0x7f03008c ++com.wix.detox.test:style/Theme.Design = 0x7f0e019b ++com.wix.detox.test:style/Base.ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework = 0x7f0e0072 ++com.wix.detox.test:dimen/abc_action_bar_content_inset_material = 0x7f060000 ++com.wix.detox.test:dimen/mtrl_textinput_box_corner_radius_medium = 0x7f060174 ++com.wix.detox.test:style/Base.MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f0e0010 ++com.wix.detox.test:style/Base.DialogWindowTitleBackground.AppCompat = 0x7f0e000f ++com.wix.detox.test:style/Base.CardView = 0x7f0e000d ++com.wix.detox.test:style/Base.Animation.AppCompat.Tooltip = 0x7f0e000c ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Day.Invalid = 0x7f0e0292 ++com.wix.detox.test:id/split_action_bar = 0x7f080151 ++com.wix.detox.test:style/Base.Animation.AppCompat.Dialog = 0x7f0e000a ++com.wix.detox.test:style/Base.AlertDialog.AppCompat.Light = 0x7f0e0009 ++com.wix.detox.test:style/Base.V21.ThemeOverlay.AppCompat.Dialog = 0x7f0e0089 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.YearNavigationButton = 0x7f0e02a5 ++com.wix.detox.test:style/Base.AlertDialog.AppCompat = 0x7f0e0008 ++com.wix.detox.test:attr/materialCalendarMonthNavigationButton = 0x7f03022e ++com.wix.detox.test:style/Animation.MaterialComponents.BottomSheetDialog = 0x7f0e0007 ++com.wix.detox.test:style/Animation.AppCompat.Tooltip = 0x7f0e0005 ++com.wix.detox.test:style/Animation.AppCompat.DropDownUp = 0x7f0e0004 ++com.wix.detox.test:style/AlertDialog.AppCompat.Light = 0x7f0e0001 ++com.wix.detox.test:drawable/notification_action_background = 0x7f07007f ++com.wix.detox.test:style/AlertDialog.AppCompat = 0x7f0e0000 ++com.wix.detox.test:string/item_view_role_description = 0x7f0d002a ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text = 0x7f0e0107 ++com.wix.detox.test:string/search_menu_title = 0x7f0d0067 ++com.wix.detox.test:string/path_password_strike_through = 0x7f0d0066 ++com.wix.detox.test:style/Widget.MaterialComponents.Toolbar.PrimarySurface = 0x7f0e02cf ++com.wix.detox.test:string/path_password_eye = 0x7f0d0063 ++com.wix.detox.test:dimen/mtrl_slider_track_side_padding = 0x7f06016a ++com.wix.detox.test:string/mtrl_picker_toggle_to_day_selection = 0x7f0d005f ++com.wix.detox.test:style/Theme.MaterialComponents.Light = 0x7f0e01be ++com.wix.detox.test:string/mtrl_picker_text_input_month_abbr = 0x7f0d005c ++com.wix.detox.test:anim/abc_slide_in_top = 0x7f010007 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Dialog = 0x7f0e01eb ++com.wix.detox.test:string/mtrl_picker_text_input_day_abbr = 0x7f0d005b ++com.wix.detox.test:string/mtrl_picker_text_input_date_hint = 0x7f0d0058 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.OutlinedButton = 0x7f0e0271 ++com.wix.detox.test:string/mtrl_picker_save = 0x7f0d0057 ++com.wix.detox.test:string/mtrl_picker_range_header_only_start_selected = 0x7f0d0053 ++com.wix.detox.test:dimen/compat_button_inset_horizontal_material = 0x7f060057 ++com.wix.detox.test:string/mtrl_picker_range_header_only_end_selected = 0x7f0d0052 ++com.wix.detox.test:string/mtrl_picker_navigate_to_year_description = 0x7f0d0050 ++com.wix.detox.test:styleable/Insets = 0x7f0f0039 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomSheet = 0x7f0e026d ++com.wix.detox.test:drawable/abc_list_pressed_holo_light = 0x7f07002f ++com.wix.detox.test:string/mtrl_picker_invalid_format_example = 0x7f0d004d ++com.wix.detox.test:string/mtrl_picker_invalid_format = 0x7f0d004c ++com.wix.detox.test:attr/paddingBottomNoButtons = 0x7f030278 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Medium = 0x7f0e0022 ++com.wix.detox.test:string/mtrl_picker_day_of_week_column_header = 0x7f0d004b ++com.wix.detox.test:string/mtrl_picker_date_header_title = 0x7f0d0049 ++com.wix.detox.test:attr/collapseIcon = 0x7f0300af ++com.wix.detox.test:string/mtrl_picker_date_header_selected = 0x7f0d0048 ++com.wix.detox.test:string/material_timepicker_text_input_mode_description = 0x7f0d003e ++com.wix.detox.test:drawable/avd_show_password = 0x7f070056 ++com.wix.detox.test:string/material_timepicker_select_time = 0x7f0d003d ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionMode = 0x7f0e00a4 ++com.wix.detox.test:string/material_timepicker_hour = 0x7f0d003a ++com.wix.detox.test:string/material_motion_easing_emphasized = 0x7f0d0033 ++com.wix.detox.test:string/material_motion_easing_decelerated = 0x7f0d0032 ++com.wix.detox.test:id/material_timepicker_view = 0x7f0800de ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.MinWidth = 0x7f0e01ca ++com.wix.detox.test:string/material_minute_selection = 0x7f0d002f ++com.wix.detox.test:styleable/CoordinatorLayout_Layout = 0x7f0f0028 ++com.wix.detox.test:id/design_menu_item_text = 0x7f080082 ++com.wix.detox.test:string/material_hour_suffix = 0x7f0d002e ++com.wix.detox.test:string/material_hour_selection = 0x7f0d002d ++com.wix.detox.test:string/material_clock_display_divider = 0x7f0d002b ++com.wix.detox.test:id/mtrl_child_content_container = 0x7f0800f4 ++com.wix.detox.test:string/hide_bottom_view_on_scroll_behavior = 0x7f0d0028 ++com.wix.detox.test:drawable/abc_ic_arrow_drop_right_black_24dp = 0x7f07001c ++com.wix.detox.test:string/fab_transformation_sheet_behavior = 0x7f0d0027 ++com.wix.detox.test:attr/textAppearanceListItemSmall = 0x7f030328 ++com.wix.detox.test:string/exposed_dropdown_menu_content_description = 0x7f0d0025 ++com.wix.detox.test:string/clear_text_end_icon_content_description = 0x7f0d0023 ++com.wix.detox.test:string/chip_text = 0x7f0d0022 ++com.wix.detox.test:style/Base.Widget.AppCompat.Button.Borderless = 0x7f0e00a8 ++com.wix.detox.test:string/character_counter_pattern = 0x7f0d0021 ++com.wix.detox.test:id/navigation_bar_item_icon_view = 0x7f080102 ++com.wix.detox.test:string/character_counter_overflowed_content_description = 0x7f0d0020 ++com.wix.detox.test:style/Widget.MaterialComponents.PopupMenu = 0x7f0e02ac ++com.wix.detox.test:style/Widget.AppCompat.CompoundButton.Switch = 0x7f0e021a ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog = 0x7f0e01b5 ++com.wix.detox.test:string/character_counter_content_description = 0x7f0d001f ++com.wix.detox.test:string/app_name = 0x7f0d001b ++com.wix.detox.test:string/abc_toolbar_collapse_description = 0x7f0d001a ++com.wix.detox.test:attr/hintTextColor = 0x7f03018a ++com.wix.detox.test:string/abc_shareactionprovider_share_with_application = 0x7f0d0019 ++com.wix.detox.test:string/abc_searchview_description_submit = 0x7f0d0016 ++com.wix.detox.test:string/abc_search_hint = 0x7f0d0012 ++com.wix.detox.test:styleable/ConstraintLayout_Layout = 0x7f0f0024 ++com.wix.detox.test:drawable/abc_btn_switch_to_on_mtrl_00012 = 0x7f070014 ++com.wix.detox.test:attr/font = 0x7f030169 ++com.wix.detox.test:string/abc_menu_space_shortcut_label = 0x7f0d000f ++com.wix.detox.test:id/material_clock_hand = 0x7f0800cf ++com.wix.detox.test:string/abc_menu_shift_shortcut_label = 0x7f0d000e ++com.wix.detox.test:anim/fragment_fast_out_extra_slow_in = 0x7f01001c ++com.wix.detox.test:dimen/abc_action_bar_icon_vertical_padding_material = 0x7f060006 ++com.wix.detox.test:string/abc_menu_function_shortcut_label = 0x7f0d000c ++com.wix.detox.test:dimen/mtrl_calendar_action_confirm_button_min_width = 0x7f0600ec ++com.wix.detox.test:string/abc_menu_enter_shortcut_label = 0x7f0d000b ++com.wix.detox.test:string/abc_menu_alt_shortcut_label = 0x7f0d0008 ++com.wix.detox.test:string/abc_capital_on = 0x7f0d0007 ++com.wix.detox.test:string/abc_capital_off = 0x7f0d0006 ++com.wix.detox.test:string/abc_action_mode_done = 0x7f0d0003 ++com.wix.detox.test:string/abc_action_menu_overflow_description = 0x7f0d0002 ++com.wix.detox.test:plurals/mtrl_badge_content_description = 0x7f0c0000 ++com.wix.detox.test:layout/text_view_without_line_height = 0x7f0b006f ++com.wix.detox.test:id/accessibility_custom_action_10 = 0x7f080012 ++com.wix.detox.test:layout/text_view_with_theme_line_height = 0x7f0b006e ++com.wix.detox.test:layout/text_view_with_line_height_from_style = 0x7f0b006d ++com.wix.detox.test:color/dim_foreground_disabled_material_dark = 0x7f050054 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Caption = 0x7f0e0175 ++com.wix.detox.test:layout/text_view_with_line_height_from_appearance = 0x7f0b006b ++com.wix.detox.test:layout/test_toolbar_surface = 0x7f0b006a ++com.wix.detox.test:layout/test_toolbar = 0x7f0b0067 ++com.wix.detox.test:id/blocking = 0x7f080056 ++com.wix.detox.test:style/Widget.AppCompat.Spinner = 0x7f0e0246 ++com.wix.detox.test:layout/test_navigation_bar_item_layout = 0x7f0b0065 ++com.wix.detox.test:string/abc_searchview_description_query = 0x7f0d0014 ++com.wix.detox.test:attr/actionBarSplitStyle = 0x7f030004 ++com.wix.detox.test:dimen/design_bottom_navigation_text_size = 0x7f06006c ++com.wix.detox.test:string/abc_action_bar_up_description = 0x7f0d0001 ++com.wix.detox.test:layout/select_dialog_singlechoice_material = 0x7f0b005f ++com.wix.detox.test:layout/select_dialog_multichoice_material = 0x7f0b005e ++com.wix.detox.test:layout/notification_template_part_time = 0x7f0b005c ++com.wix.detox.test:layout/notification_action = 0x7f0b0057 ++com.wix.detox.test:interpolator/fast_out_slow_in = 0x7f0a0006 ++com.wix.detox.test:layout/mtrl_picker_header_toggle = 0x7f0b0054 ++com.wix.detox.test:styleable/AppCompatTextHelper = 0x7f0f000f ++com.wix.detox.test:layout/mtrl_picker_header_selection_text = 0x7f0b0052 ++com.wix.detox.test:style/TestThemeWithLineHeightDisabled = 0x7f0e0130 ++com.wix.detox.test:color/design_dark_default_color_primary_dark = 0x7f050038 ++com.wix.detox.test:layout/mtrl_picker_fullscreen = 0x7f0b004f ++com.wix.detox.test:attr/behavior_autoShrink = 0x7f03004f ++com.wix.detox.test:layout/mtrl_picker_dialog = 0x7f0b004e ++com.wix.detox.test:layout/mtrl_layout_snackbar = 0x7f0b004a ++com.wix.detox.test:id/mtrl_picker_header_selection_text = 0x7f0800f9 ++com.wix.detox.test:string/abc_shareactionprovider_share_with = 0x7f0d0018 ++com.wix.detox.test:id/tag_unhandled_key_event_manager = 0x7f08016e ++com.wix.detox.test:layout/mtrl_calendar_year = 0x7f0b0049 ++com.wix.detox.test:dimen/mtrl_btn_snackbar_margin_horizontal = 0x7f0600e5 ++com.wix.detox.test:layout/mtrl_calendar_vertical = 0x7f0b0048 ++com.wix.detox.test:layout/mtrl_calendar_months = 0x7f0b0047 ++com.wix.detox.test:dimen/mtrl_bottomappbar_fab_cradle_vertical_offset = 0x7f0600d2 ++com.wix.detox.test:layout/mtrl_calendar_horizontal = 0x7f0b0043 ++com.wix.detox.test:layout/mtrl_alert_select_dialog_singlechoice = 0x7f0b003f ++com.wix.detox.test:layout/mtrl_alert_select_dialog_multichoice = 0x7f0b003e ++com.wix.detox.test:layout/mtrl_alert_dialog_title = 0x7f0b003c ++com.wix.detox.test:layout/mtrl_alert_dialog_actions = 0x7f0b003b ++com.wix.detox.test:dimen/material_emphasis_high_type = 0x7f0600ad ++com.wix.detox.test:layout/mtrl_alert_dialog = 0x7f0b003a ++com.wix.detox.test:styleable/FontFamily = 0x7f0f0031 ++com.wix.detox.test:attr/singleChoiceItemLayout = 0x7f0302cb ++com.wix.detox.test:layout/material_timepicker_textinput_display = 0x7f0b0039 ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationRailView.Compact = 0x7f0e02a9 ++com.wix.detox.test:layout/material_timepicker_dialog = 0x7f0b0038 ++com.wix.detox.test:id/time = 0x7f080185 ++com.wix.detox.test:layout/material_timepicker = 0x7f0b0037 ++com.wix.detox.test:attr/buttonIconDimen = 0x7f030072 ++com.wix.detox.test:layout/material_radial_view_group = 0x7f0b0033 ++com.wix.detox.test:attr/contentPaddingLeft = 0x7f0300db ++com.wix.detox.test:layout/material_clockface_view = 0x7f0b0032 ++com.wix.detox.test:layout/material_chip_input_combo = 0x7f0b002c ++com.wix.detox.test:layout/design_text_input_end_icon = 0x7f0b002a ++com.wix.detox.test:layout/design_navigation_menu_item = 0x7f0b0029 ++com.wix.detox.test:layout/design_navigation_menu = 0x7f0b0028 ++com.wix.detox.test:layout/design_navigation_item_separator = 0x7f0b0026 ++com.wix.detox.test:layout/design_layout_tab_text = 0x7f0b0022 ++com.wix.detox.test:integer/mtrl_calendar_header_orientation = 0x7f090013 ++com.wix.detox.test:layout/design_layout_tab_icon = 0x7f0b0021 ++com.wix.detox.test:layout/design_layout_snackbar = 0x7f0b001f ++com.wix.detox.test:layout/abc_select_dialog_material = 0x7f0b001a ++com.wix.detox.test:style/Base.Widget.AppCompat.RatingBar.Indicator = 0x7f0e00ca ++com.wix.detox.test:layout/abc_search_view = 0x7f0b0019 ++com.wix.detox.test:layout/abc_search_dropdown_item_icons_2line = 0x7f0b0018 ++com.wix.detox.test:layout/abc_screen_toolbar = 0x7f0b0017 ++com.wix.detox.test:layout/abc_screen_simple_overlay_action_mode = 0x7f0b0016 ++com.wix.detox.test:layout/abc_screen_simple = 0x7f0b0015 ++com.wix.detox.test:attr/circleRadius = 0x7f03009f ++com.wix.detox.test:attr/wavePeriod = 0x7f03037e ++com.wix.detox.test:style/Base.V21.Theme.MaterialComponents.Dialog = 0x7f0e0086 ++com.wix.detox.test:dimen/abc_text_size_body_1_material = 0x7f06003f ++com.wix.detox.test:layout/abc_popup_menu_item_layout = 0x7f0b0013 ++com.wix.detox.test:layout/abc_popup_menu_header_item_layout = 0x7f0b0012 ++com.wix.detox.test:styleable/MaterialShape = 0x7f0f0051 ++com.wix.detox.test:layout/abc_list_menu_item_checkbox = 0x7f0b000e ++com.wix.detox.test:style/Widget.MaterialComponents.ActionBar.Primary = 0x7f0e025b ++com.wix.detox.test:layout/abc_expanded_menu_layout = 0x7f0b000d ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Button = 0x7f0e0016 ++com.wix.detox.test:drawable/abc_ic_menu_paste_mtrl_am_alpha = 0x7f070023 ++com.wix.detox.test:layout/abc_dialog_title_material = 0x7f0b000c ++com.wix.detox.test:layout/abc_cascading_menu_item_layout = 0x7f0b000b ++com.wix.detox.test:layout/abc_alert_dialog_title_material = 0x7f0b000a ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse = 0x7f0e0156 ++com.wix.detox.test:layout/abc_alert_dialog_material = 0x7f0b0009 ++com.wix.detox.test:dimen/abc_seekbar_track_background_height_material = 0x7f060038 ++com.wix.detox.test:layout/abc_alert_dialog_button_bar_material = 0x7f0b0008 ++com.wix.detox.test:attr/layout_constraintHorizontal_bias = 0x7f0301e1 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Small.Inverse = 0x7f0e0029 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.MinWidth.Bridge = 0x7f0e01b1 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Tooltip = 0x7f0e002e ++com.wix.detox.test:layout/abc_activity_chooser_view_list_item = 0x7f0b0007 ++com.wix.detox.test:id/showHome = 0x7f080145 ++com.wix.detox.test:layout/abc_activity_chooser_view = 0x7f0b0006 ++com.wix.detox.test:layout/abc_action_mode_close_item_material = 0x7f0b0005 ++com.wix.detox.test:layout/abc_action_bar_up_container = 0x7f0b0001 ++com.wix.detox.test:id/text = 0x7f080175 ++com.wix.detox.test:interpolator/mtrl_linear_out_slow_in = 0x7f0a000a ++com.wix.detox.test:drawable/abc_scrubber_control_off_mtrl_alpha = 0x7f07003b ++com.wix.detox.test:interpolator/mtrl_linear = 0x7f0a0009 ++com.wix.detox.test:interpolator/mtrl_fast_out_slow_in = 0x7f0a0008 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.Alert = 0x7f0e01b6 ++com.wix.detox.test:interpolator/mtrl_fast_out_linear_in = 0x7f0a0007 ++com.wix.detox.test:style/Widget.MaterialComponents.Snackbar = 0x7f0e02b3 ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f0e007a ++com.wix.detox.test:dimen/design_bottom_navigation_icon_size = 0x7f060066 ++com.wix.detox.test:interpolator/btn_radio_to_off_mtrl_animation_interpolator_0 = 0x7f0a0004 ++com.wix.detox.test:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f0a0002 ++com.wix.detox.test:integer/show_password_duration = 0x7f09001a ++com.wix.detox.test:attr/layout_anchorGravity = 0x7f0301c9 ++com.wix.detox.test:integer/mtrl_card_anim_duration_ms = 0x7f090017 ++com.wix.detox.test:attr/layout_scrollFlags = 0x7f030203 ++com.wix.detox.test:integer/material_motion_duration_short_1 = 0x7f09000d ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.Solid.Inverse = 0x7f0e0221 ++com.wix.detox.test:integer/material_motion_duration_medium_2 = 0x7f09000c ++com.wix.detox.test:integer/material_motion_duration_long_2 = 0x7f09000a ++com.wix.detox.test:drawable/abc_textfield_search_activated_mtrl_alpha = 0x7f070051 ++com.wix.detox.test:integer/material_motion_duration_long_1 = 0x7f090009 ++com.wix.detox.test:id/zero_corner_chip = 0x7f0801a4 ++com.wix.detox.test:integer/design_tab_indicator_anim_duration_ms = 0x7f090007 ++com.wix.detox.test:attr/height = 0x7f03017e ++com.wix.detox.test:integer/design_snackbar_text_max_lines = 0x7f090006 ++com.wix.detox.test:integer/app_bar_elevation_anim_duration = 0x7f090002 ++com.wix.detox.test:id/easeInOut = 0x7f080093 ++com.wix.detox.test:integer/abc_config_activityShortDur = 0x7f090001 ++com.wix.detox.test:attr/itemShapeInsetStart = 0x7f0301b3 ++com.wix.detox.test:integer/abc_config_activityDefaultDur = 0x7f090000 ++com.wix.detox.test:attr/backgroundInsetTop = 0x7f030041 ++com.wix.detox.test:attr/listPopupWindowStyle = 0x7f030212 ++com.wix.detox.test:style/Theme.AppCompat.Light.DarkActionBar = 0x7f0e0194 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabText = 0x7f0e0224 ++com.wix.detox.test:id/wrap_content = 0x7f0801a3 ++com.wix.detox.test:attr/flow_verticalAlign = 0x7f030164 ++com.wix.detox.test:id/wrap = 0x7f0801a2 ++com.wix.detox.test:id/withText = 0x7f0801a0 ++com.wix.detox.test:id/view_tree_saved_state_registry_owner = 0x7f08019c ++com.wix.detox.test:id/view_tree_lifecycle_owner = 0x7f08019b ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionButton.Overflow = 0x7f0e022a ++com.wix.detox.test:id/view_offset_helper = 0x7f08019a ++com.wix.detox.test:id/useLogo = 0x7f080199 ++com.wix.detox.test:attr/indicatorColor = 0x7f03019b ++com.wix.detox.test:id/up = 0x7f080198 ++com.wix.detox.test:id/clear_text = 0x7f080069 ++com.wix.detox.test:id/unlabeled = 0x7f080197 ++com.wix.detox.test:id/chain = 0x7f08005e ++com.wix.detox.test:id/transition_position = 0x7f080191 ++com.wix.detox.test:color/mtrl_choice_chip_ripple_color = 0x7f050091 ++com.wix.detox.test:id/transitionToStart = 0x7f08018e ++com.wix.detox.test:layout/support_simple_spinner_dropdown_item = 0x7f0b0060 ++com.wix.detox.test:id/touch_outside = 0x7f08018c ++com.wix.detox.test:id/ignore = 0x7f0800b9 ++com.wix.detox.test:id/top = 0x7f08018a ++com.wix.detox.test:dimen/mtrl_progress_circular_inset_medium = 0x7f060154 ++com.wix.detox.test:id/auto = 0x7f08004e ++com.wix.detox.test:id/toggle = 0x7f080189 ++com.wix.detox.test:id/accessibility_custom_action_3 = 0x7f080027 ++com.wix.detox.test:style/Theme.MaterialComponents.BottomSheetDialog = 0x7f0e01a2 ++com.wix.detox.test:id/title_template = 0x7f080188 ++com.wix.detox.test:styleable/AnimatedStateListDrawableItem = 0x7f0f0008 ++com.wix.detox.test:id/titleDividerNoCustom = 0x7f080187 ++com.wix.detox.test:dimen/mtrl_btn_elevation = 0x7f0600d8 ++com.wix.detox.test:id/textinput_prefix_text = 0x7f080183 ++com.wix.detox.test:id/textinput_error = 0x7f080180 ++com.wix.detox.test:id/scrollIndicatorDown = 0x7f080132 ++com.wix.detox.test:id/text_input_error_icon = 0x7f08017d ++com.wix.detox.test:id/textTop = 0x7f08017b ++com.wix.detox.test:id/textEnd = 0x7f080177 ++com.wix.detox.test:id/test_radiobutton_app_button_tint = 0x7f080174 ++com.wix.detox.test:id/test_radiobutton_android_button_tint = 0x7f080173 ++com.wix.detox.test:dimen/highlight_alpha_material_colored = 0x7f060094 ++com.wix.detox.test:attr/endIconContentDescription = 0x7f03012c ++com.wix.detox.test:id/test_checkbox_app_button_tint = 0x7f080172 ++com.wix.detox.test:id/test_checkbox_android_button_tint = 0x7f080171 ++com.wix.detox.test:id/fragment_container_view_tag = 0x7f0800a8 ++com.wix.detox.test:id/tag_window_insets_animation_callback = 0x7f080170 ++com.wix.detox.test:color/cardview_dark_background = 0x7f050029 ++com.wix.detox.test:id/tag_transition_group = 0x7f08016d ++com.wix.detox.test:style/Base.ThemeOverlay.MaterialComponents.Dialog = 0x7f0e006f ++com.wix.detox.test:drawable/abc_textfield_search_material = 0x7f070053 ++com.wix.detox.test:id/tag_screen_reader_focusable = 0x7f08016b ++com.wix.detox.test:id/tabMode = 0x7f080163 ++com.wix.detox.test:id/submit_area = 0x7f080162 ++com.wix.detox.test:string/mtrl_picker_announce_current_selection = 0x7f0d0045 ++com.wix.detox.test:id/submenuarrow = 0x7f080161 ++com.wix.detox.test:style/Base.Widget.AppCompat.PopupMenu = 0x7f0e00c4 ++com.wix.detox.test:id/stretch = 0x7f080160 ++com.wix.detox.test:id/startVertical = 0x7f08015c ++com.wix.detox.test:id/src_over = 0x7f080157 ++com.wix.detox.test:id/src_atop = 0x7f080155 ++com.wix.detox.test:id/spread_inside = 0x7f080153 ++com.wix.detox.test:attr/textAppearanceButton = 0x7f03031c ++com.wix.detox.test:id/special_effects_controller_view_tag = 0x7f08014f ++com.wix.detox.test:attr/drawableSize = 0x7f03011a ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.MinWidth.Bridge = 0x7f0e01bc ++com.wix.detox.test:style/Widget.AppCompat.ActionMode = 0x7f0e020d ++com.wix.detox.test:style/Base.V21.Theme.MaterialComponents.Light.Dialog = 0x7f0e0088 ++com.wix.detox.test:id/spacer = 0x7f08014e ++com.wix.detox.test:id/snapMargins = 0x7f08014d ++com.wix.detox.test:integer/material_motion_duration_short_2 = 0x7f09000e ++com.wix.detox.test:id/slide = 0x7f080149 ++com.wix.detox.test:style/TextAppearance.AppCompat.Light.SearchResult.Title = 0x7f0e013f ++com.wix.detox.test:style/TextAppearance.Compat.Notification.Line2 = 0x7f0e0163 ++com.wix.detox.test:id/showCustom = 0x7f080144 ++com.wix.detox.test:id/selected = 0x7f080141 ++com.wix.detox.test:style/Base.V7.Theme.AppCompat.Light = 0x7f0e0096 ++com.wix.detox.test:id/ALT = 0x7f080000 ++com.wix.detox.test:id/select_dialog_listview = 0x7f080140 ++com.wix.detox.test:color/androidx_core_ripple_material_light = 0x7f05001b ++com.wix.detox.test:id/search_close_btn = 0x7f080139 ++com.wix.detox.test:id/search_button = 0x7f080138 ++com.wix.detox.test:layout/notification_template_part_chronometer = 0x7f0b005b ++com.wix.detox.test:id/search_badge = 0x7f080136 ++com.wix.detox.test:id/scrollable = 0x7f080135 ++com.wix.detox.test:attr/srcCompat = 0x7f0302d8 ++com.wix.detox.test:layout/material_clock_display = 0x7f0b002d ++com.wix.detox.test:dimen/mtrl_calendar_action_padding = 0x7f0600ee ++com.wix.detox.test:string/mtrl_picker_range_header_title = 0x7f0d0055 ++com.wix.detox.test:id/scroll = 0x7f080131 ++com.wix.detox.test:color/mtrl_textinput_default_box_stroke_color = 0x7f0500ae ++com.wix.detox.test:id/screen = 0x7f080130 ++com.wix.detox.test:id/scale = 0x7f08012f ++com.wix.detox.test:id/save_non_transition_alpha = 0x7f08012c ++com.wix.detox.test:dimen/test_navigation_bar_item_min_width = 0x7f06019b ++com.wix.detox.test:style/Widget.AppCompat.SeekBar = 0x7f0e0244 ++com.wix.detox.test:id/rounded = 0x7f08012a ++com.wix.detox.test:id/right_side = 0x7f080129 ++com.wix.detox.test:id/right_icon = 0x7f080128 ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Bridge = 0x7f0e0075 ++com.wix.detox.test:id/rightToLeft = 0x7f080127 ++com.wix.detox.test:id/right = 0x7f080126 ++com.wix.detox.test:id/reverseSawtooth = 0x7f080125 ++com.wix.detox.test:attr/chipGroupStyle = 0x7f03008e ++com.wix.detox.test:id/rectangles = 0x7f080124 ++com.wix.detox.test:id/textStart = 0x7f08017a ++com.wix.detox.test:id/postLayout = 0x7f08011f ++com.wix.detox.test:id/pathRelative = 0x7f08011a ++com.wix.detox.test:attr/track = 0x7f030362 ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox = 0x7f0e02c1 ++com.wix.detox.test:attr/borderlessButtonStyle = 0x7f03005a ++com.wix.detox.test:id/path = 0x7f080119 ++com.wix.detox.test:id/password_toggle = 0x7f080118 ++com.wix.detox.test:style/Theme.AppCompat.Light.Dialog = 0x7f0e0195 ++com.wix.detox.test:id/parentRelative = 0x7f080116 ++com.wix.detox.test:id/packed = 0x7f080112 ++com.wix.detox.test:id/outward = 0x7f080111 ++com.wix.detox.test:id/on = 0x7f08010f ++com.wix.detox.test:styleable/CollapsingToolbarLayout = 0x7f0f001f ++com.wix.detox.test:attr/cornerFamilyBottomLeft = 0x7f0300e4 ++com.wix.detox.test:id/notification_main_column_container = 0x7f08010d ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.FixedSize.Bridge = 0x7f0e01c9 ++com.wix.detox.test:dimen/design_navigation_icon_size = 0x7f060079 ++com.wix.detox.test:id/notification_background = 0x7f08010b ++com.wix.detox.test:id/fill_horizontal = 0x7f0800a0 ++com.wix.detox.test:id/normal = 0x7f08010a ++com.wix.detox.test:id/noScroll = 0x7f080108 ++com.wix.detox.test:id/never = 0x7f080107 ++com.wix.detox.test:id/navigation_bar_item_labels_group = 0x7f080103 ++com.wix.detox.test:id/multiply = 0x7f080101 ++com.wix.detox.test:id/mtrl_picker_text_input_range_start = 0x7f0800fe ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f0e0021 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton.Dialog.Icon = 0x7f0e0276 ++com.wix.detox.test:id/mtrl_picker_text_input_range_end = 0x7f0800fd ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu = 0x7f0e02bf ++com.wix.detox.test:id/mtrl_picker_header_title_and_selection = 0x7f0800fa ++com.wix.detox.test:id/mtrl_picker_header = 0x7f0800f8 ++com.wix.detox.test:id/search_edit_frame = 0x7f08013a ++com.wix.detox.test:attr/enforceMaterialTheme = 0x7f030131 ++com.wix.detox.test:id/mtrl_picker_fullscreen = 0x7f0800f7 ++com.wix.detox.test:id/mtrl_motion_snapshot_view = 0x7f0800f6 ++com.wix.detox.test:styleable/MenuGroup = 0x7f0f0056 ++com.wix.detox.test:id/direct = 0x7f080086 ++com.wix.detox.test:id/tag_accessibility_clickable_spans = 0x7f080165 ++com.wix.detox.test:id/mtrl_internal_children_alpha_tag = 0x7f0800f5 ++com.wix.detox.test:id/motion_base = 0x7f0800e9 ++com.wix.detox.test:dimen/abc_text_size_menu_header_material = 0x7f06004a ++com.wix.detox.test:id/month_title = 0x7f0800e8 ++com.wix.detox.test:id/staticPostLayout = 0x7f08015e ++com.wix.detox.test:id/month_navigation_previous = 0x7f0800e7 ++com.wix.detox.test:style/Theme.AppCompat.Light = 0x7f0e0193 ++com.wix.detox.test:id/month_navigation_next = 0x7f0800e6 ++com.wix.detox.test:id/month_navigation_bar = 0x7f0800e4 ++com.wix.detox.test:id/month_grid = 0x7f0800e3 ++com.wix.detox.test:color/material_on_surface_stroke = 0x7f050074 ++com.wix.detox.test:id/textSpacerNoButtons = 0x7f080178 ++com.wix.detox.test:color/ripple_material_dark = 0x7f0500be ++com.wix.detox.test:id/middle = 0x7f0800e1 ++com.wix.detox.test:id/message = 0x7f0800e0 ++com.wix.detox.test:layout/design_navigation_item_header = 0x7f0b0025 ++com.wix.detox.test:id/material_timepicker_ok_button = 0x7f0800dd ++com.wix.detox.test:style/RtlUnderlay.Widget.AppCompat.ActionButton = 0x7f0e010f ++com.wix.detox.test:id/material_timepicker_mode_button = 0x7f0800dc ++com.wix.detox.test:id/material_timepicker_edit_text = 0x7f0800db ++com.wix.detox.test:id/material_timepicker_container = 0x7f0800da ++com.wix.detox.test:animator/design_appbar_state_list_animator = 0x7f020000 ++com.wix.detox.test:dimen/mtrl_low_ripple_focused_alpha = 0x7f06013d ++com.wix.detox.test:id/visible = 0x7f08019e ++com.wix.detox.test:styleable/ScrollingViewBehavior_Layout = 0x7f0f006c ++com.wix.detox.test:attr/layout_constraintWidth_percent = 0x7f0301f6 ++com.wix.detox.test:id/material_timepicker_cancel_button = 0x7f0800d9 ++com.wix.detox.test:id/material_minute_tv = 0x7f0800d7 ++com.wix.detox.test:layout/material_clockface_textview = 0x7f0b0031 ++com.wix.detox.test:id/material_clock_period_pm_button = 0x7f0800d1 ++com.wix.detox.test:id/material_clock_period_am_button = 0x7f0800d0 ++com.wix.detox.test:id/material_clock_display = 0x7f0800cd ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f0e002f ++com.wix.detox.test:attr/colorAccent = 0x7f0300b5 ++com.wix.detox.test:id/masked = 0x7f0800cc ++com.wix.detox.test:id/listMode = 0x7f0800ca ++com.wix.detox.test:id/line1 = 0x7f0800c7 ++com.wix.detox.test:attr/round = 0x7f0302ae ++com.wix.detox.test:dimen/disabled_alpha_material_dark = 0x7f06008f ++com.wix.detox.test:id/left = 0x7f0800c5 ++com.wix.detox.test:id/item_touch_helper_previous_elevation = 0x7f0800c0 ++com.wix.detox.test:attr/nestedScrollable = 0x7f03026d ++com.wix.detox.test:id/italic = 0x7f0800bf ++com.wix.detox.test:attr/collapseContentDescription = 0x7f0300ae ++com.wix.detox.test:id/info = 0x7f0800bc ++com.wix.detox.test:id/ignoreRequest = 0x7f0800ba ++com.wix.detox.test:id/ifRoom = 0x7f0800b8 ++com.wix.detox.test:id/progress_circular = 0x7f080120 ++com.wix.detox.test:id/icon_group = 0x7f0800b7 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Year.Selected = 0x7f0e02a3 ++com.wix.detox.test:style/Base.V7.Widget.AppCompat.Toolbar = 0x7f0e009b ++com.wix.detox.test:id/icon = 0x7f0800b6 ++com.wix.detox.test:attr/autoSizeMinTextSize = 0x7f030037 ++com.wix.detox.test:id/honorRequest = 0x7f0800b5 ++com.wix.detox.test:string/mtrl_picker_confirm = 0x7f0d0047 ++com.wix.detox.test:id/home = 0x7f0800b3 ++com.wix.detox.test:animator/design_fab_show_motion_spec = 0x7f020002 ++com.wix.detox.test:id/hideable = 0x7f0800b2 ++com.wix.detox.test:attr/actionButtonStyle = 0x7f03000b ++com.wix.detox.test:id/header_title = 0x7f0800b1 ++com.wix.detox.test:id/guideline = 0x7f0800b0 ++com.wix.detox.test:attr/editTextBackground = 0x7f030124 ++com.wix.detox.test:id/group_divider = 0x7f0800ae ++com.wix.detox.test:layout/material_textinput_timepicker = 0x7f0b0034 ++com.wix.detox.test:id/graph = 0x7f0800ac ++com.wix.detox.test:id/gone = 0x7f0800ab ++com.wix.detox.test:id/ghost_view = 0x7f0800a9 ++com.wix.detox.test:id/mtrl_card_checked_layer_id = 0x7f0800f3 ++com.wix.detox.test:id/floating = 0x7f0800a6 ++com.wix.detox.test:id/flip = 0x7f0800a5 ++com.wix.detox.test:id/fill_vertical = 0x7f0800a1 ++com.wix.detox.test:layout/design_bottom_navigation_item = 0x7f0b001d ++com.wix.detox.test:id/fill = 0x7f08009f ++com.wix.detox.test:id/expanded_menu = 0x7f08009d ++com.wix.detox.test:id/enterAlwaysCollapsed = 0x7f08009a ++com.wix.detox.test:id/edit_query = 0x7f080095 ++com.wix.detox.test:attr/useMaterialThemeColors = 0x7f030375 ++com.wix.detox.test:color/material_timepicker_button_stroke = 0x7f05007c ++com.wix.detox.test:style/Theme.AppCompat.Light.Dialog.MinWidth = 0x7f0e0197 ++com.wix.detox.test:id/easeOut = 0x7f080094 ++com.wix.detox.test:id/fixed = 0x7f0800a4 ++com.wix.detox.test:color/primary_text_default_material_dark = 0x7f0500b9 ++com.wix.detox.test:id/dragStart = 0x7f08008f ++com.wix.detox.test:color/design_fab_stroke_top_outer_color = 0x7f050051 ++com.wix.detox.test:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense = 0x7f0e0265 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionButton.CloseMode = 0x7f0e00a2 ++com.wix.detox.test:id/dragRight = 0x7f08008e ++com.wix.detox.test:color/mtrl_btn_text_btn_bg_color_selector = 0x7f050083 ++com.wix.detox.test:id/dragEnd = 0x7f08008c ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationRailView.PrimarySurface = 0x7f0e02aa ++com.wix.detox.test:id/disableScroll = 0x7f080089 ++com.wix.detox.test:id/dialog_button = 0x7f080084 ++com.wix.detox.test:color/tooltip_background_dark = 0x7f0500cc ++com.wix.detox.test:id/design_menu_item_action_area_stub = 0x7f080081 ++com.wix.detox.test:id/skipCollapsed = 0x7f080148 ++com.wix.detox.test:color/bright_foreground_material_light = 0x7f050026 ++com.wix.detox.test:dimen/mtrl_slider_thumb_radius = 0x7f060168 ++com.wix.detox.test:id/design_menu_item_action_area = 0x7f080080 ++com.wix.detox.test:string/mtrl_picker_a11y_prev_month = 0x7f0d0044 ++com.wix.detox.test:id/material_textinput_timepicker = 0x7f0800d8 ++com.wix.detox.test:id/design_bottom_sheet = 0x7f08007f ++com.wix.detox.test:dimen/tooltip_corner_radius = 0x7f06019f ++com.wix.detox.test:id/snap = 0x7f08014c ++com.wix.detox.test:id/deltaRelative = 0x7f08007e ++com.wix.detox.test:id/staticLayout = 0x7f08015d ++com.wix.detox.test:id/default_activity_button = 0x7f08007d ++com.wix.detox.test:id/decelerate = 0x7f08007a ++com.wix.detox.test:id/cut = 0x7f080078 ++com.wix.detox.test:id/customPanel = 0x7f080077 ++com.wix.detox.test:attr/tickMarkTint = 0x7f030346 ++com.wix.detox.test:id/counterclockwise = 0x7f080075 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon = 0x7f0e010e ++com.wix.detox.test:id/inward = 0x7f0800be ++com.wix.detox.test:id/contiguous = 0x7f080072 ++com.wix.detox.test:attr/viewInflaterClass = 0x7f030378 ++com.wix.detox.test:id/contentPanel = 0x7f080071 ++com.wix.detox.test:id/content = 0x7f080070 ++com.wix.detox.test:id/clockwise = 0x7f08006c ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.ActionBar = 0x7f0e0069 ++com.wix.detox.test:dimen/mtrl_textinput_box_stroke_width_default = 0x7f060177 ++com.wix.detox.test:id/clip_horizontal = 0x7f08006a ++com.wix.detox.test:id/circle_center = 0x7f080068 ++com.wix.detox.test:id/chronometer = 0x7f080067 ++com.wix.detox.test:layout/design_navigation_item = 0x7f0b0024 ++com.wix.detox.test:id/chip_group = 0x7f080066 ++com.wix.detox.test:id/chip3 = 0x7f080065 ++com.wix.detox.test:id/SHIFT = 0x7f080007 ++com.wix.detox.test:id/chip1 = 0x7f080063 ++com.wix.detox.test:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f0e0140 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen = 0x7f0e029c ++com.wix.detox.test:id/chip = 0x7f080062 ++com.wix.detox.test:attr/layout_constraintDimensionRatio = 0x7f0301d7 ++com.wix.detox.test:id/chains = 0x7f08005f ++com.wix.detox.test:id/center_vertical = 0x7f08005d ++com.wix.detox.test:styleable/AppBarLayout_Layout = 0x7f0f000c ++com.wix.detox.test:attr/buttonCompat = 0x7f030070 ++com.wix.detox.test:id/center = 0x7f08005b ++com.wix.detox.test:style/TestStyleWithoutLineHeight = 0x7f0e012e ++com.wix.detox.test:id/cancel_button = 0x7f08005a ++com.wix.detox.test:id/baseline = 0x7f080053 ++com.wix.detox.test:id/barrier = 0x7f080052 ++com.wix.detox.test:id/autoCompleteToStart = 0x7f080051 ++com.wix.detox.test:style/Widget.AppCompat.Spinner.DropDown = 0x7f0e0247 ++com.wix.detox.test:id/async = 0x7f08004d ++com.wix.detox.test:attr/backgroundInsetBottom = 0x7f03003e ++com.wix.detox.test:id/asConfigured = 0x7f08004c ++com.wix.detox.test:drawable/mtrl_popupmenu_background_dark = 0x7f07007c ++com.wix.detox.test:attr/colorButtonNormal = 0x7f0300b7 ++com.wix.detox.test:attr/textAppearanceSubtitle1 = 0x7f03032e ++com.wix.detox.test:id/arc = 0x7f08004b ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline6 = 0x7f0e017c ++com.wix.detox.test:id/animateToStart = 0x7f08004a ++com.wix.detox.test:id/animateToEnd = 0x7f080049 ++com.wix.detox.test:id/androidx_test_espresso_contrib_drawer_layout_tag = 0x7f080048 ++com.wix.detox.test:id/aligned = 0x7f080045 ++com.wix.detox.test:string/mtrl_picker_text_input_date_range_start_hint = 0x7f0d005a ++com.wix.detox.test:id/labeled = 0x7f0800c3 ++com.wix.detox.test:id/alertTitle = 0x7f080044 ++com.wix.detox.test:attr/forceApplySystemWindowInsetTop = 0x7f030175 ++com.wix.detox.test:id/add = 0x7f080043 ++com.wix.detox.test:id/activity_chooser_view_content = 0x7f080042 ++com.wix.detox.test:id/scrollIndicatorUp = 0x7f080133 ++com.wix.detox.test:id/action_text = 0x7f080040 ++com.wix.detox.test:style/Widget.MaterialComponents.PopupMenu.Overflow = 0x7f0e02af ++com.wix.detox.test:animator/mtrl_btn_unelevated_state_list_anim = 0x7f02000e ++com.wix.detox.test:drawable/abc_list_selector_background_transition_holo_light = 0x7f070031 ++com.wix.detox.test:id/action_mode_close_button = 0x7f08003f ++com.wix.detox.test:id/action_menu_divider = 0x7f08003b ++com.wix.detox.test:dimen/test_navigation_bar_shadow_height = 0x7f06019d ++com.wix.detox.test:id/action_divider = 0x7f080039 ++com.wix.detox.test:attr/layout_constraintTop_creator = 0x7f0301ed ++com.wix.detox.test:id/action_context_bar = 0x7f080038 ++com.wix.detox.test:style/ShapeAppearanceOverlay.Cut = 0x7f0e011a ++com.wix.detox.test:style/Base.Theme.AppCompat.Dialog.MinWidth = 0x7f0e004c ++com.wix.detox.test:id/action_container = 0x7f080037 ++com.wix.detox.test:id/action_bar_title = 0x7f080036 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar.TabBar = 0x7f0e00b9 ++com.wix.detox.test:id/text_input_start_icon = 0x7f08017e ++com.wix.detox.test:id/showTitle = 0x7f080146 ++com.wix.detox.test:id/action_bar_root = 0x7f080033 ++com.wix.detox.test:attr/chipSpacing = 0x7f030096 ++com.wix.detox.test:color/mtrl_navigation_bar_colored_ripple_color = 0x7f05009c ++com.wix.detox.test:id/action_bar_activity_content = 0x7f080031 ++com.wix.detox.test:id/mtrl_view_tag_bottom_padding = 0x7f080100 ++com.wix.detox.test:id/action_bar = 0x7f080030 ++com.wix.detox.test:id/accessibility_custom_action_8 = 0x7f08002e ++com.wix.detox.test:id/accessibility_custom_action_7 = 0x7f08002d ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge = 0x7f0e01af ++com.wix.detox.test:id/accessibility_custom_action_6 = 0x7f08002c ++com.wix.detox.test:id/accessibility_custom_action_31 = 0x7f080029 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.Alert.Bridge = 0x7f0e01b7 ++com.wix.detox.test:id/accessibility_custom_action_30 = 0x7f080028 ++com.wix.detox.test:id/accessibility_custom_action_29 = 0x7f080026 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderLayout = 0x7f0e029a ++com.wix.detox.test:color/material_slider_inactive_tick_marks_color = 0x7f050078 ++com.wix.detox.test:id/accessibility_custom_action_28 = 0x7f080025 ++com.wix.detox.test:id/accessibility_custom_action_27 = 0x7f080024 ++com.wix.detox.test:style/AndroidThemeColorAccentYellow = 0x7f0e0002 ++com.wix.detox.test:id/accessibility_custom_action_26 = 0x7f080023 ++com.wix.detox.test:attr/clockNumberTextColor = 0x7f0300a5 ++com.wix.detox.test:styleable/KeyCycle = 0x7f0f003b ++com.wix.detox.test:id/cos = 0x7f080074 ++com.wix.detox.test:id/accessibility_custom_action_23 = 0x7f080020 ++com.wix.detox.test:attr/state_dragged = 0x7f0302e3 ++com.wix.detox.test:id/accessibility_custom_action_22 = 0x7f08001f ++com.wix.detox.test:id/accessibility_custom_action_21 = 0x7f08001e ++com.wix.detox.test:attr/layout_constraintEnd_toEndOf = 0x7f0301d8 ++com.wix.detox.test:id/accessibility_custom_action_20 = 0x7f08001d ++com.wix.detox.test:color/mtrl_textinput_focused_box_stroke_color = 0x7f0500b1 ++com.wix.detox.test:id/accessibility_custom_action_2 = 0x7f08001c ++com.wix.detox.test:id/accessibility_custom_action_19 = 0x7f08001b ++com.wix.detox.test:id/accessibility_custom_action_15 = 0x7f080017 ++com.wix.detox.test:id/accessibility_custom_action_13 = 0x7f080015 ++com.wix.detox.test:id/accessibility_custom_action_11 = 0x7f080013 ++com.wix.detox.test:id/accelerate = 0x7f08000e ++com.wix.detox.test:id/TOP_START = 0x7f08000d ++com.wix.detox.test:id/SHOW_PATH = 0x7f080009 ++com.wix.detox.test:style/Widget.AppCompat.Toolbar.Button.Navigation = 0x7f0e024d ++com.wix.detox.test:id/SHOW_ALL = 0x7f080008 ++com.wix.detox.test:attr/number = 0x7f03026e ++com.wix.detox.test:style/Widget.AppCompat.ListPopupWindow = 0x7f0e0236 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Title.Inverse = 0x7f0e002d ++com.wix.detox.test:color/mtrl_navigation_bar_colored_item_tint = 0x7f05009b ++com.wix.detox.test:id/NO_DEBUG = 0x7f080006 ++com.wix.detox.test:styleable/SwitchCompat = 0x7f0f0078 ++com.wix.detox.test:style/Widget.AppCompat.ActionButton.Overflow = 0x7f0e020c ++com.wix.detox.test:style/TextAppearance.AppCompat.Small = 0x7f0e0147 ++com.wix.detox.test:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0 = 0x7f0a0000 ++com.wix.detox.test:id/CTRL = 0x7f080003 ++com.wix.detox.test:style/Platform.MaterialComponents.Light = 0x7f0e00f6 ++com.wix.detox.test:id/BOTTOM_START = 0x7f080002 ++com.wix.detox.test:drawable/test_custom_background = 0x7f07008b ++com.wix.detox.test:drawable/notification_tile_bg = 0x7f070089 ++com.wix.detox.test:id/off = 0x7f08010e ++com.wix.detox.test:style/Widget.AppCompat.ActionBar.Solid = 0x7f0e0206 ++com.wix.detox.test:color/abc_btn_colored_text_material = 0x7f050003 ++com.wix.detox.test:drawable/notification_template_icon_bg = 0x7f070087 ++com.wix.detox.test:drawable/notification_bg_low_pressed = 0x7f070083 ++com.wix.detox.test:styleable/LinearLayoutCompat = 0x7f0f0043 ++com.wix.detox.test:attr/mock_labelBackgroundColor = 0x7f03024b ++com.wix.detox.test:style/WhiteBackgroundTheme = 0x7f0e0204 ++com.wix.detox.test:drawable/notification_bg_low_normal = 0x7f070082 ++com.wix.detox.test:drawable/notification_bg = 0x7f070080 ++com.wix.detox.test:id/standard = 0x7f080158 ++com.wix.detox.test:drawable/mtrl_popupmenu_background = 0x7f07007b ++com.wix.detox.test:drawable/mtrl_ic_cancel = 0x7f070078 ++com.wix.detox.test:dimen/abc_action_button_min_width_overflow_material = 0x7f06000f ++com.wix.detox.test:drawable/mtrl_ic_arrow_drop_down = 0x7f070076 ++com.wix.detox.test:id/action_bar_spinner = 0x7f080034 ++com.wix.detox.test:drawable/mtrl_dropdown_arrow = 0x7f070075 ++com.wix.detox.test:dimen/mtrl_extended_fab_elevation = 0x7f060126 ++com.wix.detox.test:style/Widget.AppCompat.ButtonBar.AlertDialog = 0x7f0e0217 ++com.wix.detox.test:attr/helperTextTextColor = 0x7f030182 ++com.wix.detox.test:color/design_fab_shadow_start_color = 0x7f05004d ++com.wix.detox.test:drawable/material_ic_menu_arrow_up_black_24dp = 0x7f070073 ++com.wix.detox.test:drawable/material_ic_menu_arrow_down_black_24dp = 0x7f070072 ++com.wix.detox.test:drawable/material_ic_keyboard_arrow_right_black_24dp = 0x7f070071 ++com.wix.detox.test:xml/standalone_badge_offset = 0x7f100004 ++com.wix.detox.test:drawable/material_ic_keyboard_arrow_previous_black_24dp = 0x7f070070 ++com.wix.detox.test:color/mtrl_filled_background_color = 0x7f050097 ++com.wix.detox.test:drawable/material_ic_keyboard_arrow_left_black_24dp = 0x7f07006e ++com.wix.detox.test:attr/liftOnScroll = 0x7f030205 ++com.wix.detox.test:styleable/BaseProgressIndicator = 0x7f0f0013 ++com.wix.detox.test:drawable/material_ic_edit_black_24dp = 0x7f07006d ++com.wix.detox.test:drawable/material_ic_calendar_black_24dp = 0x7f07006b ++com.wix.detox.test:drawable/material_cursor_drawable = 0x7f07006a ++com.wix.detox.test:attr/tabIndicatorGravity = 0x7f030304 ++com.wix.detox.test:drawable/ic_mtrl_chip_checked_circle = 0x7f070068 ++com.wix.detox.test:id/invisible = 0x7f0800bd ++com.wix.detox.test:drawable/ic_mtrl_chip_checked_black = 0x7f070067 ++com.wix.detox.test:drawable/design_password_eye = 0x7f070062 ++com.wix.detox.test:string/status_bar_notification_info_overflow = 0x7f0d0068 ++com.wix.detox.test:attr/dropDownListViewStyle = 0x7f030121 ++com.wix.detox.test:drawable/design_fab_background = 0x7f07005f ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f0e0065 ++com.wix.detox.test:styleable/MaterialTimePicker = 0x7f0f0054 ++com.wix.detox.test:dimen/mtrl_edittext_rectangle_top_offset = 0x7f06011e ++com.wix.detox.test:styleable/CardView = 0x7f0f0019 ++com.wix.detox.test:drawable/btn_radio_off_mtrl = 0x7f07005b ++com.wix.detox.test:id/parent_matrix = 0x7f080117 ++com.wix.detox.test:drawable/btn_checkbox_checked_to_unchecked_mtrl_animation = 0x7f070058 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton = 0x7f0e011e ++com.wix.detox.test:drawable/abc_textfield_search_default_mtrl_alpha = 0x7f070052 ++com.wix.detox.test:drawable/abc_text_select_handle_right_mtrl = 0x7f07004e ++com.wix.detox.test:attr/barrierAllowsGoneWidgets = 0x7f03004b ++com.wix.detox.test:drawable/abc_text_select_handle_middle_mtrl = 0x7f07004d ++com.wix.detox.test:style/Base.Widget.AppCompat.PopupMenu.Overflow = 0x7f0e00c5 ++com.wix.detox.test:drawable/abc_tab_indicator_mtrl_alpha = 0x7f07004a ++com.wix.detox.test:integer/material_motion_path = 0x7f09000f ++com.wix.detox.test:drawable/abc_switch_track_mtrl_alpha = 0x7f070048 ++com.wix.detox.test:drawable/abc_switch_thumb_material = 0x7f070047 ++com.wix.detox.test:drawable/abc_star_half_black_48dp = 0x7f070046 ++com.wix.detox.test:style/Base.DialogWindowTitle.AppCompat = 0x7f0e000e ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton.Snackbar = 0x7f0e0278 ++com.wix.detox.test:drawable/abc_spinner_textfield_background_material = 0x7f070044 ++com.wix.detox.test:attr/labelVisibilityMode = 0x7f0301c2 ++com.wix.detox.test:style/TextAppearance.Design.Snackbar.Message = 0x7f0e016e ++com.wix.detox.test:drawable/abc_seekbar_track_material = 0x7f070042 ++com.wix.detox.test:dimen/material_input_text_to_prefix_suffix_padding = 0x7f0600b8 ++com.wix.detox.test:drawable/abc_seekbar_thumb_material = 0x7f070040 ++com.wix.detox.test:drawable/abc_scrubber_primary_mtrl_alpha = 0x7f07003e ++com.wix.detox.test:drawable/abc_scrubber_control_to_pressed_mtrl_005 = 0x7f07003d ++com.wix.detox.test:drawable/abc_ratingbar_small_material = 0x7f07003a ++com.wix.detox.test:color/design_default_color_on_secondary = 0x7f050042 ++com.wix.detox.test:id/tag_on_receive_content_listener = 0x7f080169 ++com.wix.detox.test:style/Test.ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day = 0x7f0e0126 ++com.wix.detox.test:drawable/abc_ratingbar_indicator_material = 0x7f070038 ++com.wix.detox.test:dimen/abc_dialog_title_divider_material = 0x7f060026 ++com.wix.detox.test:drawable/abc_popup_background_mtrl_mult = 0x7f070037 ++com.wix.detox.test:drawable/abc_list_selector_holo_light = 0x7f070035 ++com.wix.detox.test:drawable/abc_list_selector_holo_dark = 0x7f070034 ++com.wix.detox.test:attr/checkedTextViewStyle = 0x7f03008a ++com.wix.detox.test:styleable/GradientColorItem = 0x7f0f0037 ++com.wix.detox.test:style/ShapeAppearanceOverlay.TopLeftCut = 0x7f0e0124 ++com.wix.detox.test:layout/abc_action_menu_layout = 0x7f0b0003 ++com.wix.detox.test:drawable/abc_list_selector_disabled_holo_light = 0x7f070033 ++com.wix.detox.test:id/groups = 0x7f0800af ++com.wix.detox.test:bool/mtrl_btn_textappearance_all_caps = 0x7f040002 ++com.wix.detox.test:drawable/abc_list_selector_disabled_holo_dark = 0x7f070032 ++com.wix.detox.test:drawable/abc_menu_hardkey_panel_mtrl_mult = 0x7f070036 ++com.wix.detox.test:drawable/abc_list_selector_background_transition_holo_dark = 0x7f070030 ++com.wix.detox.test:attr/chipSpacingVertical = 0x7f030098 ++com.wix.detox.test:style/Platform.Widget.AppCompat.Spinner = 0x7f0e00ff ++com.wix.detox.test:drawable/abc_list_pressed_holo_dark = 0x7f07002e ++com.wix.detox.test:drawable/abc_list_focused_holo = 0x7f07002c ++com.wix.detox.test:id/decelerateAndComplete = 0x7f08007b ++com.wix.detox.test:drawable/abc_list_divider_mtrl_alpha = 0x7f07002b ++com.wix.detox.test:drawable/abc_item_background_holo_dark = 0x7f070028 ++com.wix.detox.test:drawable/abc_ic_voice_search_api_material = 0x7f070027 ++com.wix.detox.test:drawable/abc_ic_search_api_material = 0x7f070026 ++com.wix.detox.test:drawable/notify_panel_notification_icon_bg = 0x7f07008a ++com.wix.detox.test:drawable/abc_ic_go_search_api_material = 0x7f07001f ++com.wix.detox.test:layout/notification_action_tombstone = 0x7f0b0058 ++com.wix.detox.test:attr/textAppearanceHeadline5 = 0x7f030322 ++com.wix.detox.test:drawable/abc_ic_commit_search_api_mtrl_alpha = 0x7f07001e ++com.wix.detox.test:drawable/abc_ic_clear_material = 0x7f07001d ++com.wix.detox.test:attr/backgroundTintMode = 0x7f030046 ++com.wix.detox.test:styleable/AnimatedStateListDrawableTransition = 0x7f0f0009 ++com.wix.detox.test:drawable/abc_ic_ab_back_material = 0x7f07001b ++com.wix.detox.test:drawable/abc_control_background_material = 0x7f070018 ++com.wix.detox.test:styleable/ViewBackgroundHelper = 0x7f0f0086 ++com.wix.detox.test:drawable/abc_cab_background_top_material = 0x7f070016 ++com.wix.detox.test:attr/statusBarBackground = 0x7f0302e6 ++com.wix.detox.test:string/mtrl_picker_toggle_to_year_selection = 0x7f0d0061 ++com.wix.detox.test:drawable/abc_cab_background_internal_bg = 0x7f070015 ++com.wix.detox.test:drawable/abc_btn_radio_to_on_mtrl_015 = 0x7f070012 ++com.wix.detox.test:id/mtrl_picker_header_toggle = 0x7f0800fb ++com.wix.detox.test:style/Theme.MaterialComponents.Light.NoActionBar = 0x7f0e01ce ++com.wix.detox.test:style/Base.Widget.AppCompat.ProgressBar = 0x7f0e00c7 ++com.wix.detox.test:layout/mtrl_calendar_days_of_week = 0x7f0b0042 ++com.wix.detox.test:drawable/abc_btn_radio_to_on_mtrl_000 = 0x7f070011 ++com.wix.detox.test:style/Widget.AppCompat.PopupWindow = 0x7f0e023c ++com.wix.detox.test:attr/rippleColor = 0x7f0302ad ++com.wix.detox.test:dimen/mtrl_badge_toolbar_action_menu_item_horizontal_offset = 0x7f0600cb ++com.wix.detox.test:drawable/abc_btn_radio_material_anim = 0x7f070010 ++com.wix.detox.test:drawable/abc_btn_check_material = 0x7f070009 ++com.wix.detox.test:drawable/abc_btn_borderless_material = 0x7f070008 ++com.wix.detox.test:attr/actionBarTheme = 0x7f030009 ++com.wix.detox.test:drawable/$avd_show_password__1 = 0x7f070004 ++com.wix.detox.test:attr/customNavigationLayout = 0x7f0300fd ++com.wix.detox.test:layout/abc_list_menu_item_layout = 0x7f0b0010 ++com.wix.detox.test:id/square = 0x7f080154 ++com.wix.detox.test:drawable/$avd_hide_password__1 = 0x7f070001 ++com.wix.detox.test:attr/homeAsUpIndicator = 0x7f03018b ++com.wix.detox.test:dimen/tooltip_y_offset_touch = 0x7f0601a6 ++com.wix.detox.test:attr/windowMinWidthMinor = 0x7f030389 ++com.wix.detox.test:dimen/tooltip_y_offset_non_touch = 0x7f0601a5 ++com.wix.detox.test:style/CardView.Light = 0x7f0e00e6 ++com.wix.detox.test:style/Widget.MaterialComponents.ActionBar.PrimarySurface = 0x7f0e025c ++com.wix.detox.test:dimen/tooltip_vertical_padding = 0x7f0601a4 ++com.wix.detox.test:dimen/tooltip_precise_anchor_threshold = 0x7f0601a3 ++com.wix.detox.test:attr/actionBarSize = 0x7f030003 ++com.wix.detox.test:id/buttonPanel = 0x7f080059 ++com.wix.detox.test:dimen/material_clock_number_text_size = 0x7f0600a4 ++com.wix.detox.test:dimen/test_navigation_bar_text_size = 0x7f06019e ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu = 0x7f0e02c4 ++com.wix.detox.test:drawable/mtrl_ic_error = 0x7f070079 ++com.wix.detox.test:color/material_timepicker_button_background = 0x7f05007b ++com.wix.detox.test:style/Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall = 0x7f0e0283 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton = 0x7f0e011f ++com.wix.detox.test:id/position = 0x7f08011e ++com.wix.detox.test:style/Widget.MaterialComponents.Chip.Action = 0x7f0e027d ++com.wix.detox.test:dimen/test_navigation_bar_label_padding = 0x7f06019c ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Light.Dialog = 0x7f0e007b ++com.wix.detox.test:dimen/test_navigation_bar_elevation = 0x7f060197 ++com.wix.detox.test:dimen/test_mtrl_calendar_day_cornerSize = 0x7f060193 ++com.wix.detox.test:dimen/notification_subtext_size = 0x7f060190 ++com.wix.detox.test:dimen/notification_small_icon_size_as_large = 0x7f06018f ++com.wix.detox.test:dimen/notification_right_side_padding_top = 0x7f06018d ++com.wix.detox.test:dimen/notification_large_icon_height = 0x7f060188 ++com.wix.detox.test:color/accent_material_light = 0x7f05001a ++com.wix.detox.test:dimen/abc_dialog_fixed_width_minor = 0x7f06001f ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Display4 = 0x7f0e001b ++com.wix.detox.test:dimen/notification_content_margin_start = 0x7f060187 ++com.wix.detox.test:style/Widget.AppCompat.AutoCompleteTextView = 0x7f0e020f ++com.wix.detox.test:dimen/notification_big_circle_margin = 0x7f060186 ++com.wix.detox.test:attr/materialThemeOverlay = 0x7f030235 ++com.wix.detox.test:id/transition_current_scene = 0x7f08018f ++com.wix.detox.test:dimen/notification_action_icon_size = 0x7f060184 ++com.wix.detox.test:dimen/mtrl_transition_shared_axis_slide_distance = 0x7f060183 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day = 0x7f0e0120 ++com.wix.detox.test:attr/startIconCheckable = 0x7f0302db ++com.wix.detox.test:attr/snackbarStyle = 0x7f0302d1 ++com.wix.detox.test:dimen/mtrl_tooltip_cornerSize = 0x7f06017f ++com.wix.detox.test:dimen/mtrl_textinput_start_icon_margin_end = 0x7f06017c ++com.wix.detox.test:dimen/design_snackbar_background_corner_radius = 0x7f060081 ++com.wix.detox.test:dimen/mtrl_textinput_counter_margin_start = 0x7f060179 ++com.wix.detox.test:id/layout = 0x7f0800c4 ++com.wix.detox.test:id/mtrl_calendar_selection_frame = 0x7f0800f0 ++com.wix.detox.test:id/month_navigation_fragment_toggle = 0x7f0800e5 ++com.wix.detox.test:dimen/mtrl_textinput_box_label_cutout_padding = 0x7f060176 ++com.wix.detox.test:style/Base.Widget.AppCompat.ImageButton = 0x7f0e00b6 ++com.wix.detox.test:attr/boxCollapsedPaddingTop = 0x7f030061 ++com.wix.detox.test:dimen/mtrl_snackbar_padding_horizontal = 0x7f060172 ++com.wix.detox.test:attr/state_liftable = 0x7f0302e4 ++com.wix.detox.test:id/accessibility_custom_action_16 = 0x7f080018 ++com.wix.detox.test:dimen/mtrl_snackbar_background_overlay_color_alpha = 0x7f06016f ++com.wix.detox.test:style/Widget.AppCompat.Light.AutoCompleteTextView = 0x7f0e022d ++com.wix.detox.test:id/custom = 0x7f080076 ++com.wix.detox.test:dimen/mtrl_slider_widget_height = 0x7f06016c ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Button = 0x7f0e0174 ++com.wix.detox.test:attr/actionOverflowMenuStyle = 0x7f030020 ++com.wix.detox.test:dimen/mtrl_slider_track_top = 0x7f06016b ++com.wix.detox.test:dimen/mtrl_slider_track_height = 0x7f060169 ++com.wix.detox.test:attr/maxActionInlineWidth = 0x7f030239 ++com.wix.detox.test:dimen/mtrl_slider_label_padding = 0x7f060164 ++com.wix.detox.test:dimen/mtrl_shape_corner_size_small_component = 0x7f060162 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar.Solid = 0x7f0e00b8 ++com.wix.detox.test:dimen/mtrl_shape_corner_size_medium_component = 0x7f060161 ++com.wix.detox.test:style/Widget.MaterialComponents.CollapsingToolbar = 0x7f0e0286 ++com.wix.detox.test:layout/abc_list_menu_item_icon = 0x7f0b000f ++com.wix.detox.test:dimen/mtrl_progress_indicator_full_rounded_corner_radius = 0x7f06015e ++com.wix.detox.test:dimen/mtrl_slider_thumb_elevation = 0x7f060167 ++com.wix.detox.test:attr/listPreferredItemHeightLarge = 0x7f030214 ++com.wix.detox.test:dimen/mtrl_progress_circular_track_thickness_medium = 0x7f06015c ++com.wix.detox.test:attr/placeholder_emptyVisibility = 0x7f030293 ++com.wix.detox.test:attr/selectorSize = 0x7f0302bb ++com.wix.detox.test:dimen/mtrl_progress_circular_size_small = 0x7f06015a ++com.wix.detox.test:id/fade = 0x7f08009e ++com.wix.detox.test:attr/flow_horizontalStyle = 0x7f03015d ++com.wix.detox.test:attr/customColorDrawableValue = 0x7f0300f8 ++com.wix.detox.test:color/mtrl_scrim_color = 0x7f0500a7 ++com.wix.detox.test:dimen/mtrl_progress_circular_size_medium = 0x7f060159 ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat = 0x7f0e0068 ++com.wix.detox.test:dimen/material_helper_text_font_1_3_padding_top = 0x7f0600b7 ++com.wix.detox.test:attr/contrast = 0x7f0300e0 ++com.wix.detox.test:attr/editTextColor = 0x7f030125 ++com.wix.detox.test:dimen/mtrl_progress_circular_size_extra_small = 0x7f060158 ++com.wix.detox.test:attr/motion_postLayoutCollision = 0x7f030261 ++com.wix.detox.test:layout/test_design_radiobutton = 0x7f0b0064 ++com.wix.detox.test:dimen/mtrl_progress_circular_size = 0x7f060157 ++com.wix.detox.test:dimen/mtrl_progress_circular_inset_extra_small = 0x7f060153 ++com.wix.detox.test:id/bottom = 0x7f080057 ++com.wix.detox.test:dimen/mtrl_navigation_rail_compact_width = 0x7f06014a ++com.wix.detox.test:dimen/mtrl_navigation_item_shape_vertical_margin = 0x7f060148 ++com.wix.detox.test:attr/searchHintIcon = 0x7f0302b4 ++com.wix.detox.test:dimen/mtrl_navigation_elevation = 0x7f060143 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton = 0x7f0e0298 ++com.wix.detox.test:id/parallax = 0x7f080113 ++com.wix.detox.test:dimen/mtrl_low_ripple_hovered_alpha = 0x7f06013e ++com.wix.detox.test:attr/tabContentStart = 0x7f0302fb ++com.wix.detox.test:dimen/mtrl_large_touch_target = 0x7f06013b ++com.wix.detox.test:integer/material_motion_duration_medium_1 = 0x7f09000b ++com.wix.detox.test:id/filled = 0x7f0800a2 ++com.wix.detox.test:dimen/mtrl_high_ripple_pressed_alpha = 0x7f06013a ++com.wix.detox.test:drawable/abc_scrubber_track_mtrl_alpha = 0x7f07003f ++com.wix.detox.test:attr/onShow = 0x7f030274 ++com.wix.detox.test:dimen/mtrl_low_ripple_pressed_alpha = 0x7f06013f ++com.wix.detox.test:dimen/mtrl_high_ripple_hovered_alpha = 0x7f060139 ++com.wix.detox.test:dimen/design_snackbar_action_text_color_alpha = 0x7f060080 ++com.wix.detox.test:dimen/mtrl_high_ripple_focused_alpha = 0x7f060138 ++com.wix.detox.test:attr/cardMaxElevation = 0x7f03007c ++com.wix.detox.test:dimen/mtrl_extended_fab_translation_z_hovered_focused = 0x7f060131 ++com.wix.detox.test:dimen/mtrl_extended_fab_translation_z_base = 0x7f060130 ++com.wix.detox.test:attr/materialClockStyle = 0x7f030234 ++com.wix.detox.test:dimen/mtrl_extended_fab_top_padding = 0x7f06012f ++com.wix.detox.test:dimen/abc_button_inset_vertical_material = 0x7f060013 ++com.wix.detox.test:color/mtrl_tabs_colored_ripple_color = 0x7f0500a8 ++com.wix.detox.test:attr/textAppearanceLargePopupMenu = 0x7f030324 ++com.wix.detox.test:dimen/mtrl_extended_fab_icon_text_spacing = 0x7f06012a ++com.wix.detox.test:id/list_item = 0x7f0800cb ++com.wix.detox.test:id/material_label = 0x7f0800d5 ++com.wix.detox.test:attr/itemTextAppearanceActive = 0x7f0301b9 ++com.wix.detox.test:dimen/mtrl_extended_fab_end_padding_icon = 0x7f060128 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge = 0x7f0e01ac ++com.wix.detox.test:dimen/mtrl_extended_fab_end_padding = 0x7f060127 ++com.wix.detox.test:style/Widget.AppCompat.Spinner.Underlined = 0x7f0e0249 ++com.wix.detox.test:style/Widget.AppCompat.Button.Colored = 0x7f0e0214 ++com.wix.detox.test:drawable/btn_radio_off_to_on_mtrl_animation = 0x7f07005c ++com.wix.detox.test:dimen/abc_action_button_min_width_material = 0x7f06000e ++com.wix.detox.test:dimen/mtrl_exposed_dropdown_menu_popup_vertical_padding = 0x7f060121 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Medium.Inverse = 0x7f0e0023 ++com.wix.detox.test:dimen/abc_dropdownitem_text_padding_right = 0x7f06002b ++com.wix.detox.test:layout/mtrl_navigation_rail_item = 0x7f0b004c ++com.wix.detox.test:id/search_plate = 0x7f08013d ++com.wix.detox.test:attr/fabCradleMargin = 0x7f03014a ++com.wix.detox.test:id/navigation_header_container = 0x7f080106 ++com.wix.detox.test:dimen/mtrl_exposed_dropdown_menu_popup_vertical_offset = 0x7f060120 ++com.wix.detox.test:attr/dragScale = 0x7f030113 ++com.wix.detox.test:style/Test.Widget.MaterialComponents.MaterialCalendar.Day.Selected = 0x7f0e012a ++com.wix.detox.test:dimen/mtrl_card_elevation = 0x7f06011a ++com.wix.detox.test:id/textSpacerNoTitle = 0x7f080179 ++com.wix.detox.test:styleable/BottomAppBar = 0x7f0f0014 ++com.wix.detox.test:attr/autoCompleteTextViewStyle = 0x7f030035 ++com.wix.detox.test:dimen/mtrl_calendar_header_height = 0x7f0600fc ++com.wix.detox.test:animator/mtrl_fab_transformation_sheet_expand_spec = 0x7f020019 ++com.wix.detox.test:dimen/mtrl_card_corner_radius = 0x7f060118 ++com.wix.detox.test:string/material_timepicker_pm = 0x7f0d003c ++com.wix.detox.test:dimen/mtrl_calendar_year_horizontal_padding = 0x7f060113 ++com.wix.detox.test:dimen/mtrl_calendar_year_corner = 0x7f060111 ++com.wix.detox.test:attr/splitTrack = 0x7f0302d7 ++com.wix.detox.test:attr/chipIconTint = 0x7f030092 ++com.wix.detox.test:dimen/mtrl_calendar_title_baseline_to_top_fullscreen = 0x7f060110 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f0e0155 ++com.wix.detox.test:drawable/abc_tab_indicator_material = 0x7f070049 ++com.wix.detox.test:dimen/mtrl_calendar_header_content_padding = 0x7f0600f9 ++com.wix.detox.test:color/tooltip_background_light = 0x7f0500cd ++com.wix.detox.test:dimen/mtrl_calendar_pre_l_text_clip_padding = 0x7f060109 ++com.wix.detox.test:style/TextAppearance.AppCompat.Display1 = 0x7f0e0136 ++com.wix.detox.test:dimen/mtrl_calendar_navigation_top_padding = 0x7f060108 ++com.wix.detox.test:dimen/mtrl_calendar_maximum_default_fullscreen_minor_axis = 0x7f060103 ++com.wix.detox.test:dimen/mtrl_calendar_header_toggle_margin_top = 0x7f060101 ++com.wix.detox.test:dimen/mtrl_calendar_header_text_padding = 0x7f0600ff ++com.wix.detox.test:drawable/notification_bg_normal = 0x7f070084 ++com.wix.detox.test:color/abc_secondary_text_material_light = 0x7f050012 ++com.wix.detox.test:dimen/mtrl_calendar_header_height_fullscreen = 0x7f0600fd ++com.wix.detox.test:dimen/mtrl_calendar_header_divider_thickness = 0x7f0600fb ++com.wix.detox.test:attr/fastScrollHorizontalThumbDrawable = 0x7f030150 ++com.wix.detox.test:attr/colorOnPrimary = 0x7f0300be ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline2 = 0x7f0e0178 ++com.wix.detox.test:dimen/mtrl_calendar_header_content_padding_fullscreen = 0x7f0600fa ++com.wix.detox.test:color/design_dark_default_color_primary_variant = 0x7f050039 ++com.wix.detox.test:dimen/mtrl_calendar_day_width = 0x7f0600f6 ++com.wix.detox.test:attr/passwordToggleTint = 0x7f030286 ++com.wix.detox.test:dimen/mtrl_calendar_day_vertical_padding = 0x7f0600f5 ++com.wix.detox.test:dimen/mtrl_shape_corner_size_large_component = 0x7f060160 ++com.wix.detox.test:attr/paddingBottomSystemWindowInsets = 0x7f030279 ++com.wix.detox.test:attr/windowFixedHeightMajor = 0x7f030384 ++com.wix.detox.test:dimen/material_text_view_test_line_height_override = 0x7f0600ba ++com.wix.detox.test:dimen/mtrl_calendar_action_height = 0x7f0600ed ++com.wix.detox.test:dimen/mtrl_btn_z = 0x7f0600eb ++com.wix.detox.test:attr/behavior_draggable = 0x7f030050 ++com.wix.detox.test:dimen/mtrl_btn_text_size = 0x7f0600ea ++com.wix.detox.test:dimen/mtrl_btn_text_btn_icon_padding = 0x7f0600e7 ++com.wix.detox.test:drawable/$avd_show_password__0 = 0x7f070003 ++com.wix.detox.test:attr/tintMode = 0x7f03034a ++com.wix.detox.test:dimen/mtrl_btn_padding_right = 0x7f0600e2 ++com.wix.detox.test:attr/materialAlertDialogBodyTextStyle = 0x7f03021c ++com.wix.detox.test:drawable/abc_scrubber_control_to_pressed_mtrl_000 = 0x7f07003c ++com.wix.detox.test:attr/colorControlActivated = 0x7f0300b8 ++com.wix.detox.test:dimen/mtrl_btn_padding_bottom = 0x7f0600e0 ++com.wix.detox.test:anim/abc_popup_exit = 0x7f010004 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 = 0x7f0e010b ++com.wix.detox.test:dimen/hint_pressed_alpha_material_dark = 0x7f060099 ++com.wix.detox.test:string/abc_activitychooserview_choose_application = 0x7f0d0005 ++com.wix.detox.test:id/mtrl_picker_text_input_date = 0x7f0800fc ++com.wix.detox.test:color/foreground_material_dark = 0x7f05005a ++com.wix.detox.test:dimen/mtrl_btn_icon_padding = 0x7f0600dc ++com.wix.detox.test:dimen/mtrl_btn_corner_radius = 0x7f0600d4 ++com.wix.detox.test:drawable/abc_btn_check_material_anim = 0x7f07000a ++com.wix.detox.test:style/Theme.MaterialComponents.DialogWhenLarge = 0x7f0e01bd ++com.wix.detox.test:drawable/abc_btn_colored_material = 0x7f07000d ++com.wix.detox.test:attr/itemBackground = 0x7f0301a4 ++com.wix.detox.test:attr/boxCornerRadiusBottomStart = 0x7f030063 ++com.wix.detox.test:dimen/mtrl_extended_fab_min_height = 0x7f06012b ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Light = 0x7f0e0078 ++com.wix.detox.test:dimen/abc_dropdownitem_text_padding_left = 0x7f06002a ++com.wix.detox.test:attr/shortcutMatchRequired = 0x7f0302c1 ++com.wix.detox.test:dimen/mtrl_switch_thumb_elevation = 0x7f060173 ++com.wix.detox.test:dimen/mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f0600d1 ++com.wix.detox.test:id/title = 0x7f080186 ++com.wix.detox.test:integer/mtrl_chip_anim_duration = 0x7f090018 ++com.wix.detox.test:dimen/mtrl_bottomappbar_fabOffsetEndMode = 0x7f0600ce ++com.wix.detox.test:style/TextAppearance.Compat.Notification.Info = 0x7f0e0162 ++com.wix.detox.test:attr/arrowShaftLength = 0x7f030033 ++com.wix.detox.test:dimen/design_textinput_caption_translate_y = 0x7f06008e ++com.wix.detox.test:dimen/abc_action_bar_overflow_padding_end_material = 0x7f060007 ++com.wix.detox.test:dimen/mtrl_badge_radius = 0x7f0600c8 ++com.wix.detox.test:attr/defaultQueryHint = 0x7f030105 ++com.wix.detox.test:dimen/mtrl_alert_dialog_background_inset_end = 0x7f0600c2 ++com.wix.detox.test:color/design_fab_stroke_top_inner_color = 0x7f050050 ++com.wix.detox.test:attr/materialCalendarHeaderTitle = 0x7f03022b ++com.wix.detox.test:dimen/mtrl_alert_dialog_background_inset_bottom = 0x7f0600c1 ++com.wix.detox.test:color/design_dark_default_color_on_background = 0x7f050032 ++com.wix.detox.test:dimen/mtrl_extended_fab_min_width = 0x7f06012c ++com.wix.detox.test:dimen/material_timepicker_dialog_buttons_margin_top = 0x7f0600c0 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox = 0x7f0e01fa ++com.wix.detox.test:dimen/material_time_picker_minimum_screen_height = 0x7f0600be ++com.wix.detox.test:id/design_navigation_view = 0x7f080083 ++com.wix.detox.test:dimen/mtrl_card_checked_icon_margin = 0x7f060116 ++com.wix.detox.test:attr/queryHint = 0x7f0302a0 ++com.wix.detox.test:dimen/material_textinput_default_width = 0x7f0600bb ++com.wix.detox.test:style/Theme.Design.Light.BottomSheetDialog = 0x7f0e019e ++com.wix.detox.test:dimen/mtrl_btn_pressed_z = 0x7f0600e4 ++com.wix.detox.test:dimen/abc_dialog_fixed_height_major = 0x7f06001c ++com.wix.detox.test:dimen/material_helper_text_font_1_3_padding_horizontal = 0x7f0600b6 ++com.wix.detox.test:dimen/material_font_1_3_box_collapsed_padding_top = 0x7f0600b3 ++com.wix.detox.test:style/TextAppearance.AppCompat.Medium = 0x7f0e0142 ++com.wix.detox.test:attr/itemShapeInsetEnd = 0x7f0301b2 ++com.wix.detox.test:attr/listPreferredItemHeight = 0x7f030213 ++com.wix.detox.test:dimen/material_filled_edittext_font_1_3_padding_top = 0x7f0600b0 ++com.wix.detox.test:drawable/abc_action_bar_item_background_material = 0x7f070007 ++com.wix.detox.test:dimen/material_filled_edittext_font_1_3_padding_bottom = 0x7f0600af ++com.wix.detox.test:style/Widget.Design.Snackbar = 0x7f0e0257 ++com.wix.detox.test:attr/textLocale = 0x7f030335 ++com.wix.detox.test:animator/mtrl_extended_fab_hide_motion_spec = 0x7f020013 ++com.wix.detox.test:dimen/material_cursor_width = 0x7f0600ab ++com.wix.detox.test:dimen/material_clock_period_toggle_width = 0x7f0600a7 ++com.wix.detox.test:attr/alertDialogButtonGroupStyle = 0x7f030025 ++com.wix.detox.test:dimen/mtrl_btn_disabled_elevation = 0x7f0600d6 ++com.wix.detox.test:color/mtrl_navigation_bar_item_tint = 0x7f05009d ++com.wix.detox.test:dimen/material_clock_display_padding = 0x7f06009f ++com.wix.detox.test:string/bottom_sheet_behavior = 0x7f0d001d ++com.wix.detox.test:attr/navigationViewStyle = 0x7f03026a ++com.wix.detox.test:dimen/hint_pressed_alpha_material_light = 0x7f06009a ++com.wix.detox.test:layout/material_time_input = 0x7f0b0036 ++com.wix.detox.test:style/Widget.AppCompat.Button.Borderless = 0x7f0e0211 ++com.wix.detox.test:id/triangle = 0x7f080194 ++com.wix.detox.test:attr/content = 0x7f0300d0 ++com.wix.detox.test:dimen/highlight_alpha_material_dark = 0x7f060095 ++com.wix.detox.test:attr/limitBoundsTo = 0x7f030207 ++com.wix.detox.test:dimen/fastscroll_margin = 0x7f060092 ++com.wix.detox.test:attr/fabAlignmentMode = 0x7f030148 ++com.wix.detox.test:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f0e0070 ++com.wix.detox.test:drawable/abc_btn_default_mtrl_shape = 0x7f07000e ++com.wix.detox.test:color/abc_search_url_text_selected = 0x7f050010 ++com.wix.detox.test:dimen/design_tab_text_size_2line = 0x7f06008d ++com.wix.detox.test:dimen/design_tab_scrollable_min_width = 0x7f06008b ++com.wix.detox.test:id/outline = 0x7f080110 ++com.wix.detox.test:dimen/design_snackbar_min_width = 0x7f060085 ++com.wix.detox.test:style/Widget.MaterialComponents.ChipGroup = 0x7f0e0281 ++com.wix.detox.test:dimen/design_snackbar_extra_spacing_horizontal = 0x7f060083 ++com.wix.detox.test:attr/chipStrokeColor = 0x7f03009b ++com.wix.detox.test:dimen/hint_alpha_material_dark = 0x7f060097 ++com.wix.detox.test:color/ripple_material_light = 0x7f0500bf ++com.wix.detox.test:dimen/mtrl_snackbar_message_margin_horizontal = 0x7f060171 ++com.wix.detox.test:attr/contentPadding = 0x7f0300d8 ++com.wix.detox.test:color/test_mtrl_calendar_day = 0x7f0500ca ++com.wix.detox.test:attr/materialCalendarFullscreenTheme = 0x7f030225 ++com.wix.detox.test:color/abc_tint_edittext = 0x7f050015 ++com.wix.detox.test:dimen/abc_text_size_subtitle_material_toolbar = 0x7f06004e ++com.wix.detox.test:dimen/design_snackbar_action_inline_max_width = 0x7f06007f ++com.wix.detox.test:style/ShapeAppearanceOverlay.BottomLeftDifferentCornerSize = 0x7f0e0118 ++com.wix.detox.test:dimen/mtrl_navigation_rail_elevation = 0x7f06014c ++com.wix.detox.test:styleable/FragmentContainerView = 0x7f0f0035 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Headline = 0x7f0e001c ++com.wix.detox.test:id/expand_activities_button = 0x7f08009c ++com.wix.detox.test:layout/abc_tooltip = 0x7f0b001b ++com.wix.detox.test:dimen/design_navigation_item_icon_padding = 0x7f06007b ++com.wix.detox.test:layout/mtrl_picker_text_input_date_range = 0x7f0b0056 ++com.wix.detox.test:styleable/MaterialRadioButton = 0x7f0f0050 ++com.wix.detox.test:dimen/design_navigation_item_horizontal_padding = 0x7f06007a ++com.wix.detox.test:style/Widget.MaterialComponents.PopupMenu.ContextMenu = 0x7f0e02ad ++com.wix.detox.test:color/abc_hint_foreground_material_light = 0x7f050008 ++com.wix.detox.test:drawable/avd_hide_password = 0x7f070055 ++com.wix.detox.test:dimen/design_navigation_elevation = 0x7f060077 ++com.wix.detox.test:dimen/design_fab_size_normal = 0x7f060074 ++com.wix.detox.test:dimen/mtrl_textinput_end_icon_margin_start = 0x7f06017a ++com.wix.detox.test:dimen/notification_large_icon_width = 0x7f060189 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.SearchResult = 0x7f0e0025 ++com.wix.detox.test:dimen/design_fab_translation_z_pressed = 0x7f060076 ++com.wix.detox.test:attr/listDividerAlertDialog = 0x7f03020e ++com.wix.detox.test:styleable/ThemeEnforcement = 0x7f0f007f ++com.wix.detox.test:dimen/design_fab_translation_z_hovered_focused = 0x7f060075 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f0e015a ++com.wix.detox.test:dimen/design_fab_size_mini = 0x7f060073 ++com.wix.detox.test:dimen/design_fab_border_width = 0x7f060070 ++com.wix.detox.test:dimen/design_bottom_sheet_modal_elevation = 0x7f06006e ++com.wix.detox.test:dimen/design_bottom_navigation_shadow_height = 0x7f06006b ++com.wix.detox.test:color/switch_thumb_disabled_material_light = 0x7f0500c5 ++com.wix.detox.test:style/Widget.MaterialComponents.Tooltip = 0x7f0e02d1 ++com.wix.detox.test:attr/chipIconVisible = 0x7f030093 ++com.wix.detox.test:style/Theme.AppCompat.Light.DialogWhenLarge = 0x7f0e0198 ++com.wix.detox.test:dimen/design_bottom_navigation_margin = 0x7f06006a ++com.wix.detox.test:dimen/mtrl_snackbar_background_corner_radius = 0x7f06016e ++com.wix.detox.test:dimen/mtrl_navigation_item_icon_padding = 0x7f060145 ++com.wix.detox.test:dimen/design_bottom_navigation_item_max_width = 0x7f060067 ++com.wix.detox.test:dimen/abc_action_bar_default_padding_start_material = 0x7f060004 ++com.wix.detox.test:string/icon_content_description = 0x7f0d0029 ++com.wix.detox.test:dimen/mtrl_calendar_selection_baseline_to_top_fullscreen = 0x7f06010a ++com.wix.detox.test:integer/mtrl_btn_anim_delay_ms = 0x7f090011 ++com.wix.detox.test:attr/dragThreshold = 0x7f030114 ++com.wix.detox.test:styleable/RadialViewGroup = 0x7f0f0067 ++com.wix.detox.test:attr/tabPaddingEnd = 0x7f03030c ++com.wix.detox.test:dimen/design_bottom_navigation_elevation = 0x7f060064 ++com.wix.detox.test:bool/abc_action_bar_embed_tabs = 0x7f040000 ++com.wix.detox.test:string/material_slider_range_end = 0x7f0d0036 ++com.wix.detox.test:attr/itemShapeInsetTop = 0x7f0301b4 ++com.wix.detox.test:id/tag_state_description = 0x7f08016c ++com.wix.detox.test:id/mtrl_calendar_main_pane = 0x7f0800ee ++com.wix.detox.test:dimen/design_bottom_navigation_active_text_size = 0x7f060063 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Tooltip = 0x7f0e0181 ++com.wix.detox.test:dimen/design_appbar_elevation = 0x7f060060 ++com.wix.detox.test:drawable/material_ic_clear_black_24dp = 0x7f07006c ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.Dark = 0x7f0e006a ++com.wix.detox.test:dimen/def_drawer_elevation = 0x7f06005e ++com.wix.detox.test:dimen/compat_notification_large_icon_max_height = 0x7f06005c ++com.wix.detox.test:layout/mtrl_calendar_day_of_week = 0x7f0b0041 ++com.wix.detox.test:style/Base.V7.ThemeOverlay.AppCompat.Dialog = 0x7f0e0098 ++com.wix.detox.test:attr/checkboxStyle = 0x7f030081 ++com.wix.detox.test:dimen/test_navigation_bar_item_max_width = 0x7f06019a ++com.wix.detox.test:attr/actionModePasteDrawable = 0x7f030017 ++com.wix.detox.test:attr/layout_constraintHorizontal_weight = 0x7f0301e3 ++com.wix.detox.test:attr/overlapAnchor = 0x7f030276 ++com.wix.detox.test:style/Base.Widget.AppCompat.ListPopupWindow = 0x7f0e00c0 ++com.wix.detox.test:dimen/compat_control_corner_material = 0x7f06005b ++com.wix.detox.test:layout/abc_action_bar_title_item = 0x7f0b0000 ++com.wix.detox.test:dimen/compat_button_padding_horizontal_material = 0x7f060059 ++com.wix.detox.test:attr/materialTimePickerTheme = 0x7f030237 ++com.wix.detox.test:dimen/compat_button_inset_vertical_material = 0x7f060058 ++com.wix.detox.test:dimen/cardview_compat_inset_shadow = 0x7f060053 ++com.wix.detox.test:dimen/abc_text_size_title_material_toolbar = 0x7f060050 ++com.wix.detox.test:styleable/AppCompatImageView = 0x7f0f000d ++com.wix.detox.test:attr/actionLayout = 0x7f03000d ++com.wix.detox.test:dimen/abc_text_size_subhead_material = 0x7f06004d ++com.wix.detox.test:dimen/abc_text_size_button_material = 0x7f060041 ++com.wix.detox.test:dimen/abc_text_size_menu_material = 0x7f06004b ++com.wix.detox.test:attr/iconStartPadding = 0x7f030194 ++com.wix.detox.test:dimen/abc_text_size_medium_material = 0x7f060049 ++com.wix.detox.test:dimen/abc_text_size_headline_material = 0x7f060047 ++com.wix.detox.test:color/material_on_background_emphasis_high_type = 0x7f05006c ++com.wix.detox.test:attr/fabCustomSize = 0x7f03014d ++com.wix.detox.test:dimen/abc_text_size_display_4_material = 0x7f060046 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialButtonToggleGroup = 0x7f0e028f ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text.Day = 0x7f0e01f5 ++com.wix.detox.test:style/TextAppearance.Design.Suffix = 0x7f0e016f ++com.wix.detox.test:id/material_hour_text_input = 0x7f0800d3 ++com.wix.detox.test:dimen/abc_text_size_body_2_material = 0x7f060040 ++com.wix.detox.test:dimen/abc_progress_bar_height_material = 0x7f060035 ++com.wix.detox.test:dimen/abc_list_item_height_large_material = 0x7f060030 ++com.wix.detox.test:dimen/abc_edit_text_inset_top_material = 0x7f06002e ++com.wix.detox.test:attr/toolbarNavigationButtonStyle = 0x7f030359 ++com.wix.detox.test:dimen/abc_edit_text_inset_horizontal_material = 0x7f06002d ++com.wix.detox.test:dimen/mtrl_alert_dialog_picker_background_inset = 0x7f0600c5 ++com.wix.detox.test:layout/text_view_with_line_height_from_layout = 0x7f0b006c ++com.wix.detox.test:dimen/abc_action_bar_default_height_material = 0x7f060002 ++com.wix.detox.test:dimen/abc_dialog_min_width_minor = 0x7f060023 ++com.wix.detox.test:dimen/design_bottom_navigation_label_padding = 0x7f060069 ++com.wix.detox.test:dimen/design_bottom_navigation_height = 0x7f060065 ++com.wix.detox.test:id/disablePostScroll = 0x7f080088 ++com.wix.detox.test:dimen/abc_dialog_min_width_major = 0x7f060022 ++com.wix.detox.test:color/mtrl_textinput_disabled_color = 0x7f0500af ++com.wix.detox.test:dimen/mtrl_progress_track_thickness = 0x7f06015f ++com.wix.detox.test:dimen/abc_dialog_list_padding_top_no_title = 0x7f060021 ++com.wix.detox.test:dimen/abc_dialog_fixed_width_major = 0x7f06001e ++com.wix.detox.test:attr/backgroundInsetStart = 0x7f030040 ++com.wix.detox.test:dimen/abc_dialog_fixed_height_minor = 0x7f06001d ++com.wix.detox.test:attr/titleMarginEnd = 0x7f030351 ++com.wix.detox.test:attr/closeIcon = 0x7f0300a6 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.Button = 0x7f0e0036 ++com.wix.detox.test:attr/backgroundOverlayColorAlpha = 0x7f030042 ++com.wix.detox.test:dimen/abc_control_padding_material = 0x7f06001a ++com.wix.detox.test:attr/itemIconTint = 0x7f0301aa ++com.wix.detox.test:dimen/mtrl_progress_circular_inset = 0x7f060152 ++com.wix.detox.test:dimen/abc_control_inset_material = 0x7f060019 ++com.wix.detox.test:dimen/abc_config_prefDialogWidth = 0x7f060017 ++com.wix.detox.test:dimen/mtrl_calendar_day_height = 0x7f0600f2 ++com.wix.detox.test:dimen/abc_alert_dialog_button_bar_height = 0x7f060010 ++com.wix.detox.test:style/Widget.Design.CollapsingToolbar = 0x7f0e0253 ++com.wix.detox.test:layout/notification_template_custom_big = 0x7f0b0059 ++com.wix.detox.test:styleable/Capability = 0x7f0f0018 ++com.wix.detox.test:id/material_clock_face = 0x7f0800ce ++com.wix.detox.test:dimen/abc_action_bar_subtitle_bottom_margin_material = 0x7f06000b ++com.wix.detox.test:attr/layout_constraintTag = 0x7f0301ec ++com.wix.detox.test:dimen/cardview_default_elevation = 0x7f060054 ++com.wix.detox.test:string/material_minute_suffix = 0x7f0d0030 ++com.wix.detox.test:dimen/test_navigation_bar_active_item_min_width = 0x7f060195 ++com.wix.detox.test:attr/brightness = 0x7f03006a ++com.wix.detox.test:color/design_default_color_secondary_variant = 0x7f050048 ++com.wix.detox.test:color/design_default_color_primary_variant = 0x7f050046 ++com.wix.detox.test:dimen/abc_action_bar_overflow_padding_start_material = 0x7f060008 ++com.wix.detox.test:layout/design_text_input_start_icon = 0x7f0b002b ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.Clock = 0x7f0e02c8 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.LargeTouch = 0x7f0e01cd ++com.wix.detox.test:string/mtrl_picker_a11y_next_month = 0x7f0d0043 ++com.wix.detox.test:dimen/mtrl_calendar_days_of_week_height = 0x7f0600f7 ++com.wix.detox.test:anim/abc_grow_fade_in_from_bottom = 0x7f010002 ++com.wix.detox.test:color/switch_thumb_normal_material_light = 0x7f0500c9 ++com.wix.detox.test:dimen/mtrl_exposed_dropdown_menu_popup_elevation = 0x7f06011f ++com.wix.detox.test:attr/trackHeight = 0x7f030367 ++com.wix.detox.test:color/switch_thumb_material_dark = 0x7f0500c6 ++com.wix.detox.test:styleable/MotionLayout = 0x7f0f005c ++com.wix.detox.test:attr/actionBarWidgetTheme = 0x7f03000a ++com.wix.detox.test:id/accessibility_custom_action_18 = 0x7f08001a ++com.wix.detox.test:color/secondary_text_default_material_light = 0x7f0500c1 ++com.wix.detox.test:attr/endIconMode = 0x7f03012e ++com.wix.detox.test:color/secondary_text_default_material_dark = 0x7f0500c0 ++com.wix.detox.test:attr/flow_horizontalAlign = 0x7f03015a ++com.wix.detox.test:dimen/mtrl_calendar_title_baseline_to_top = 0x7f06010f ++com.wix.detox.test:attr/fastScrollEnabled = 0x7f03014f ++com.wix.detox.test:color/radiobutton_themeable_attribute_color = 0x7f0500bd ++com.wix.detox.test:attr/onHide = 0x7f030271 ++com.wix.detox.test:color/primary_text_default_material_light = 0x7f0500ba ++com.wix.detox.test:color/primary_material_light = 0x7f0500b8 ++com.wix.detox.test:layout/test_action_chip = 0x7f0b0061 ++com.wix.detox.test:attr/barLength = 0x7f03004a ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f0e003b ++com.wix.detox.test:attr/layout_constrainedHeight = 0x7f0301cd ++com.wix.detox.test:attr/expandedTitleMarginBottom = 0x7f030140 ++com.wix.detox.test:color/primary_dark_material_light = 0x7f0500b6 ++com.wix.detox.test:color/primary_dark_material_dark = 0x7f0500b5 ++com.wix.detox.test:drawable/btn_checkbox_unchecked_to_checked_mtrl_animation = 0x7f07005a ++com.wix.detox.test:color/button_material_dark = 0x7f050027 ++com.wix.detox.test:attr/fabCradleVerticalOffset = 0x7f03014c ++com.wix.detox.test:color/notification_action_color_filter = 0x7f0500b3 ++com.wix.detox.test:style/Platform.MaterialComponents.Dialog = 0x7f0e00f5 ++com.wix.detox.test:attr/moveWhenScrollAtTop = 0x7f030263 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TimePicker = 0x7f0e01fe ++com.wix.detox.test:attr/searchViewStyle = 0x7f0302b6 ++com.wix.detox.test:dimen/abc_edit_text_inset_bottom_material = 0x7f06002c ++com.wix.detox.test:attr/thumbColor = 0x7f03033a ++com.wix.detox.test:color/mtrl_textinput_filled_box_default_background_color = 0x7f0500b0 ++com.wix.detox.test:id/material_hour_tv = 0x7f0800d4 ++com.wix.detox.test:id/selection_type = 0x7f080142 ++com.wix.detox.test:attr/region_widthMoreThan = 0x7f0302ab ++com.wix.detox.test:attr/listChoiceIndicatorMultipleAnimated = 0x7f03020c ++com.wix.detox.test:dimen/abc_list_item_height_small_material = 0x7f060032 ++com.wix.detox.test:color/mtrl_text_btn_text_color_selector = 0x7f0500ad ++com.wix.detox.test:color/design_default_color_background = 0x7f05003d ++com.wix.detox.test:color/mtrl_popupmenu_overlay_color = 0x7f0500a6 ++com.wix.detox.test:dimen/mtrl_btn_icon_btn_padding_left = 0x7f0600db ++com.wix.detox.test:attr/linearProgressIndicatorStyle = 0x7f03020a ++com.wix.detox.test:color/mtrl_outlined_stroke_color = 0x7f0500a5 ++com.wix.detox.test:color/secondary_text_disabled_material_dark = 0x7f0500c2 ++com.wix.detox.test:style/Base.TextAppearance.MaterialComponents.Badge = 0x7f0e0040 ++com.wix.detox.test:id/forever = 0x7f0800a7 ++com.wix.detox.test:color/mtrl_outlined_icon_tint = 0x7f0500a4 ++com.wix.detox.test:attr/buttonBarNegativeButtonStyle = 0x7f03006c ++com.wix.detox.test:xml/standalone_badge_gravity_top_start = 0x7f100003 ++com.wix.detox.test:attr/motionPath = 0x7f03025c ++com.wix.detox.test:color/mtrl_navigation_item_icon_tint = 0x7f0500a0 ++com.wix.detox.test:attr/maxWidth = 0x7f030240 ++com.wix.detox.test:styleable/ButtonBarLayout = 0x7f0f0017 ++com.wix.detox.test:attr/textAppearanceOverline = 0x7f030329 ++com.wix.detox.test:color/mtrl_navigation_item_background_color = 0x7f05009f ++com.wix.detox.test:color/mtrl_fab_bg_color_selector = 0x7f050094 ++com.wix.detox.test:attr/selectableItemBackground = 0x7f0302b8 ++com.wix.detox.test:drawable/design_ic_visibility_off = 0x7f070061 ++com.wix.detox.test:drawable/abc_btn_radio_material = 0x7f07000f ++com.wix.detox.test:attr/coordinatorLayoutStyle = 0x7f0300e2 ++com.wix.detox.test:attr/telltales_tailScale = 0x7f030317 ++com.wix.detox.test:color/mtrl_error = 0x7f050093 ++com.wix.detox.test:dimen/mtrl_btn_focused_z = 0x7f0600d9 ++com.wix.detox.test:dimen/abc_text_size_display_3_material = 0x7f060045 ++com.wix.detox.test:attr/textAppearanceLineHeightEnabled = 0x7f030325 ++com.wix.detox.test:attr/flow_wrapMode = 0x7f030168 ++com.wix.detox.test:attr/actionBarTabTextStyle = 0x7f030008 ++com.wix.detox.test:attr/stackFromEnd = 0x7f0302d9 ++com.wix.detox.test:dimen/design_navigation_padding_bottom = 0x7f06007d ++com.wix.detox.test:string/abc_menu_meta_shortcut_label = 0x7f0d000d ++com.wix.detox.test:styleable/AppBarLayoutStates = 0x7f0f000b ++com.wix.detox.test:color/mtrl_chip_background_color = 0x7f05008c ++com.wix.detox.test:attr/progressBarPadding = 0x7f03029d ++com.wix.detox.test:color/mtrl_card_view_ripple = 0x7f05008b ++com.wix.detox.test:dimen/mtrl_calendar_year_height = 0x7f060112 ++com.wix.detox.test:dimen/mtrl_textinput_box_corner_radius_small = 0x7f060175 ++com.wix.detox.test:attr/touchAnchorSide = 0x7f030360 ++com.wix.detox.test:style/Base.V7.Theme.AppCompat = 0x7f0e0094 ++com.wix.detox.test:dimen/notification_media_narrow_margin = 0x7f06018b ++com.wix.detox.test:color/mtrl_card_view_foreground = 0x7f05008a ++com.wix.detox.test:attr/extendedFloatingActionButtonStyle = 0x7f030146 ++com.wix.detox.test:dimen/test_navigation_bar_height = 0x7f060198 ++com.wix.detox.test:color/mtrl_calendar_item_stroke_color = 0x7f050088 ++com.wix.detox.test:id/line3 = 0x7f0800c8 ++com.wix.detox.test:dimen/mtrl_tooltip_minWidth = 0x7f060181 ++com.wix.detox.test:attr/enforceTextAppearance = 0x7f030132 ++com.wix.detox.test:color/mtrl_btn_text_color_selector = 0x7f050086 ++com.wix.detox.test:id/none = 0x7f080109 ++com.wix.detox.test:color/mtrl_btn_text_color_disabled = 0x7f050085 ++com.wix.detox.test:id/coordinator = 0x7f080073 ++com.wix.detox.test:color/material_timepicker_modebutton_tint = 0x7f05007f ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents = 0x7f0e0074 ++com.wix.detox.test:color/material_slider_thumb_color = 0x7f05007a ++com.wix.detox.test:color/material_slider_inactive_track_color = 0x7f050079 ++com.wix.detox.test:color/material_slider_halo_color = 0x7f050077 ++com.wix.detox.test:style/Widget.MaterialComponents.TabLayout.PrimarySurface = 0x7f0e02b8 ++com.wix.detox.test:color/material_deep_teal_200 = 0x7f050062 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Inverse = 0x7f0e001d ++com.wix.detox.test:animator/mtrl_extended_fab_change_size_expand_motion_spec = 0x7f020012 ++com.wix.detox.test:drawable/mtrl_ic_arrow_drop_up = 0x7f070077 ++com.wix.detox.test:string/abc_activity_chooser_view_see_all = 0x7f0d0004 ++com.wix.detox.test:color/primary_material_dark = 0x7f0500b7 ++com.wix.detox.test:color/material_slider_active_tick_marks_color = 0x7f050075 ++com.wix.detox.test:attr/elevation = 0x7f030127 ++com.wix.detox.test:layout/mtrl_calendar_month_labeled = 0x7f0b0045 ++com.wix.detox.test:color/material_on_surface_emphasis_high_type = 0x7f050072 ++com.wix.detox.test:styleable/StateListDrawable = 0x7f0f0075 ++com.wix.detox.test:color/material_on_surface_disabled = 0x7f050071 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f0e0225 ++com.wix.detox.test:id/fitToContents = 0x7f0800a3 ++com.wix.detox.test:attr/tabIndicatorHeight = 0x7f030305 ++com.wix.detox.test:color/material_on_primary_emphasis_medium = 0x7f050070 ++com.wix.detox.test:id/parent = 0x7f080114 ++com.wix.detox.test:attr/navigationMode = 0x7f030268 ++com.wix.detox.test:color/material_on_primary_emphasis_high_type = 0x7f05006f ++com.wix.detox.test:color/material_on_primary_disabled = 0x7f05006e ++com.wix.detox.test:color/material_on_background_emphasis_medium = 0x7f05006d ++com.wix.detox.test:color/material_grey_900 = 0x7f05006a ++com.wix.detox.test:dimen/design_navigation_max_width = 0x7f06007c ++com.wix.detox.test:color/material_grey_850 = 0x7f050069 ++com.wix.detox.test:color/material_grey_600 = 0x7f050067 ++com.wix.detox.test:attr/errorIconDrawable = 0x7f030136 ++com.wix.detox.test:attr/cornerFamilyTopLeft = 0x7f0300e6 ++com.wix.detox.test:color/material_grey_300 = 0x7f050065 ++com.wix.detox.test:attr/prefixTextColor = 0x7f03029a ++com.wix.detox.test:attr/layout_constraintHeight_default = 0x7f0301dd ++com.wix.detox.test:string/abc_searchview_description_search = 0x7f0d0015 ++com.wix.detox.test:attr/subtitleTextAppearance = 0x7f0302ef ++com.wix.detox.test:dimen/mtrl_extended_fab_bottom_padding = 0x7f060122 ++com.wix.detox.test:attr/dividerPadding = 0x7f030110 ++com.wix.detox.test:dimen/mtrl_card_dragged_z = 0x7f060119 ++com.wix.detox.test:attr/altSrc = 0x7f03002c ++com.wix.detox.test:attr/closeIconEnabled = 0x7f0300a7 ++com.wix.detox.test:attr/fabAnimationMode = 0x7f030149 ++com.wix.detox.test:color/highlighted_text_material_dark = 0x7f05005c ++com.wix.detox.test:drawable/abc_seekbar_tick_mark_material = 0x7f070041 ++com.wix.detox.test:drawable/abc_ic_menu_selectall_mtrl_alpha = 0x7f070024 ++com.wix.detox.test:color/foreground_material_light = 0x7f05005b ++com.wix.detox.test:attr/customIntegerValue = 0x7f0300fc ++com.wix.detox.test:style/Theme.MaterialComponents.Light.DarkActionBar = 0x7f0e01c2 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline5 = 0x7f0e017b ++com.wix.detox.test:color/dim_foreground_material_light = 0x7f050057 ++com.wix.detox.test:anim/btn_checkbox_to_checked_icon_null_animation = 0x7f01000e ++com.wix.detox.test:color/design_icon_tint = 0x7f050052 ++com.wix.detox.test:style/TestStyleWithThemeLineHeightAttribute = 0x7f0e012d ++com.wix.detox.test:color/mtrl_chip_text_color = 0x7f05008f ++com.wix.detox.test:color/design_fab_stroke_end_inner_color = 0x7f05004e ++com.wix.detox.test:color/design_fab_shadow_mid_color = 0x7f05004c ++com.wix.detox.test:color/design_fab_shadow_end_color = 0x7f05004b ++com.wix.detox.test:id/homeAsUp = 0x7f0800b4 ++com.wix.detox.test:attr/closeIconEndPadding = 0x7f0300a8 ++com.wix.detox.test:dimen/abc_floating_window_z = 0x7f06002f ++com.wix.detox.test:dimen/hint_alpha_material_light = 0x7f060098 ++com.wix.detox.test:color/design_error = 0x7f05004a ++com.wix.detox.test:attr/fontProviderSystemFontFamily = 0x7f030171 ++com.wix.detox.test:color/design_default_color_surface = 0x7f050049 ++com.wix.detox.test:attr/waveVariesBy = 0x7f030380 ++com.wix.detox.test:color/design_default_color_secondary = 0x7f050047 ++com.wix.detox.test:attr/touchAnchorId = 0x7f03035f ++com.wix.detox.test:attr/queryPatterns = 0x7f0302a1 ++com.wix.detox.test:color/abc_search_url_text_normal = 0x7f05000e ++com.wix.detox.test:dimen/mtrl_navigation_rail_text_bottom_margin = 0x7f060150 ++com.wix.detox.test:color/design_default_color_primary_dark = 0x7f050045 ++com.wix.detox.test:style/Base.Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f0e00aa ++com.wix.detox.test:color/design_default_color_primary = 0x7f050044 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.FixedSize = 0x7f0e01b9 ++com.wix.detox.test:dimen/abc_button_padding_vertical_material = 0x7f060015 ++com.wix.detox.test:color/design_default_color_on_surface = 0x7f050043 ++com.wix.detox.test:color/design_default_color_on_error = 0x7f050040 ++com.wix.detox.test:dimen/mtrl_badge_with_text_radius = 0x7f0600cd ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense = 0x7f0e02c2 ++com.wix.detox.test:style/Widget.Compat.NotificationActionText = 0x7f0e024f ++com.wix.detox.test:style/Widget.AppCompat.Button = 0x7f0e0210 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.NoActionBar.Bridge = 0x7f0e01cf ++com.wix.detox.test:dimen/mtrl_extended_fab_icon_size = 0x7f060129 ++com.wix.detox.test:dimen/abc_text_size_display_2_material = 0x7f060044 ++com.wix.detox.test:animator/design_fab_hide_motion_spec = 0x7f020001 ++com.wix.detox.test:color/design_default_color_error = 0x7f05003e ++com.wix.detox.test:style/Widget.MaterialComponents.CompoundButton.Switch = 0x7f0e0289 ++com.wix.detox.test:color/design_dark_default_color_surface = 0x7f05003c ++com.wix.detox.test:color/design_dark_default_color_secondary_variant = 0x7f05003b ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar = 0x7f0e0290 ++com.wix.detox.test:attr/tabTextColor = 0x7f030313 ++com.wix.detox.test:dimen/material_time_picker_minimum_screen_width = 0x7f0600bf ++com.wix.detox.test:color/design_dark_default_color_primary = 0x7f050037 ++com.wix.detox.test:color/design_dark_default_color_on_surface = 0x7f050036 ++com.wix.detox.test:id/always = 0x7f080047 ++com.wix.detox.test:dimen/material_font_2_0_box_collapsed_padding_top = 0x7f0600b4 ++com.wix.detox.test:color/design_dark_default_color_on_secondary = 0x7f050035 ++com.wix.detox.test:styleable/Slider = 0x7f0f0070 ++com.wix.detox.test:color/design_dark_default_color_on_primary = 0x7f050034 ++com.wix.detox.test:id/mtrl_picker_title_text = 0x7f0800ff ++com.wix.detox.test:attr/materialCalendarDay = 0x7f030224 ++com.wix.detox.test:anim/design_snackbar_out = 0x7f01001b ++com.wix.detox.test:color/cardview_shadow_start_color = 0x7f05002c ++com.wix.detox.test:color/cardview_light_background = 0x7f05002a ++com.wix.detox.test:styleable/MenuView = 0x7f0f0058 ++com.wix.detox.test:styleable/ListPopupWindow = 0x7f0f0046 ++com.wix.detox.test:style/Theme.AppCompat.Dialog = 0x7f0e018e ++com.wix.detox.test:style/Base.MaterialAlertDialog.MaterialComponents.Title.Text = 0x7f0e0012 ++com.wix.detox.test:attr/keylines = 0x7f0301be ++com.wix.detox.test:dimen/mtrl_navigation_rail_active_text_size = 0x7f060149 ++com.wix.detox.test:style/TextAppearance.AppCompat.SearchResult.Title = 0x7f0e0146 ++com.wix.detox.test:id/accessibility_custom_action_17 = 0x7f080019 ++com.wix.detox.test:color/bright_foreground_material_dark = 0x7f050025 ++com.wix.detox.test:color/material_grey_100 = 0x7f050064 ++com.wix.detox.test:dimen/design_navigation_icon_padding = 0x7f060078 ++com.wix.detox.test:color/bright_foreground_disabled_material_dark = 0x7f050021 ++com.wix.detox.test:id/collapseActionView = 0x7f08006d ++com.wix.detox.test:color/background_floating_material_light = 0x7f05001e ++com.wix.detox.test:dimen/default_dimension = 0x7f06005f ++com.wix.detox.test:style/Platform.AppCompat.Light = 0x7f0e00f3 ++com.wix.detox.test:color/androidx_core_secondary_text_default_material_light = 0x7f05001c ++com.wix.detox.test:styleable/KeyPosition = 0x7f0f003f ++com.wix.detox.test:style/TextAppearance.AppCompat.Tooltip = 0x7f0e014d ++com.wix.detox.test:color/abc_tint_switch_track = 0x7f050018 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f0e01f0 ++com.wix.detox.test:drawable/notification_template_icon_low_bg = 0x7f070088 ++com.wix.detox.test:color/abc_tint_spinner = 0x7f050017 ++com.wix.detox.test:color/bright_foreground_disabled_material_light = 0x7f050022 ++com.wix.detox.test:color/abc_tint_seek_thumb = 0x7f050016 ++com.wix.detox.test:color/abc_tint_default = 0x7f050014 ++com.wix.detox.test:color/abc_tint_btn_checkable = 0x7f050013 ++com.wix.detox.test:attr/listPreferredItemPaddingLeft = 0x7f030217 ++com.wix.detox.test:dimen/design_fab_image_size = 0x7f060072 ++com.wix.detox.test:color/abc_primary_text_material_light = 0x7f05000c ++com.wix.detox.test:id/parentPanel = 0x7f080115 ++com.wix.detox.test:color/abc_primary_text_disable_only_material_light = 0x7f05000a ++com.wix.detox.test:attr/materialCalendarStyle = 0x7f03022f ++com.wix.detox.test:color/abc_primary_text_disable_only_material_dark = 0x7f050009 ++com.wix.detox.test:color/abc_decor_view_status_guard = 0x7f050005 ++com.wix.detox.test:color/abc_btn_colored_borderless_text_material = 0x7f050002 ++com.wix.detox.test:drawable/abc_cab_background_top_mtrl_alpha = 0x7f070017 ++com.wix.detox.test:color/abc_background_cache_hint_selector_material_dark = 0x7f050000 ++com.wix.detox.test:bool/abc_config_actionMenuItemAllCaps = 0x7f040001 ++com.wix.detox.test:attr/chipIcon = 0x7f03008f ++com.wix.detox.test:attr/buttonBarPositiveButtonStyle = 0x7f03006e ++com.wix.detox.test:dimen/material_filled_edittext_font_2_0_padding_bottom = 0x7f0600b1 ++com.wix.detox.test:attr/yearStyle = 0x7f03038c ++com.wix.detox.test:drawable/abc_text_select_handle_left_mtrl = 0x7f07004c ++com.wix.detox.test:color/switch_thumb_normal_material_dark = 0x7f0500c8 ++com.wix.detox.test:id/peekHeight = 0x7f08011b ++com.wix.detox.test:dimen/mtrl_chip_pressed_translation_z = 0x7f06011c ++com.wix.detox.test:drawable/abc_ratingbar_material = 0x7f070039 ++com.wix.detox.test:attr/yearSelectedStyle = 0x7f03038b ++com.wix.detox.test:id/TOP_END = 0x7f08000c ++com.wix.detox.test:dimen/design_fab_elevation = 0x7f060071 ++com.wix.detox.test:attr/windowNoTitle = 0x7f03038a ++com.wix.detox.test:attr/materialCalendarHeaderDivider = 0x7f030228 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionBar.TabText = 0x7f0e009f ++com.wix.detox.test:drawable/btn_radio_on_mtrl = 0x7f07005d ++com.wix.detox.test:attr/ensureMinTouchTargetSize = 0x7f030133 ++com.wix.detox.test:attr/windowFixedWidthMinor = 0x7f030387 ++com.wix.detox.test:attr/alphabeticModifiers = 0x7f03002b ++com.wix.detox.test:dimen/abc_action_button_min_height_material = 0x7f06000d ++com.wix.detox.test:attr/materialCalendarHeaderCancelButton = 0x7f030226 ++com.wix.detox.test:color/mtrl_btn_transparent_bg_color = 0x7f050087 ++com.wix.detox.test:attr/windowFixedWidthMajor = 0x7f030386 ++com.wix.detox.test:attr/tabBackground = 0x7f0302fa ++com.wix.detox.test:color/mtrl_textinput_hovered_box_stroke_color = 0x7f0500b2 ++com.wix.detox.test:attr/actionBarItemBackground = 0x7f030001 ++com.wix.detox.test:attr/displayOptions = 0x7f03010d ++com.wix.detox.test:attr/windowActionModeOverlay = 0x7f030383 ++com.wix.detox.test:dimen/material_clock_hand_stroke_width = 0x7f0600a3 ++com.wix.detox.test:integer/cancel_button_image_alpha = 0x7f090004 ++com.wix.detox.test:attr/windowActionBarOverlay = 0x7f030382 ++com.wix.detox.test:style/TextAppearance.AppCompat.Title.Inverse = 0x7f0e014c ++com.wix.detox.test:styleable/KeyAttribute = 0x7f0f003a ++com.wix.detox.test:style/ThemeOverlay.AppCompat = 0x7f0e01d2 ++com.wix.detox.test:animator/linear_indeterminate_line1_head_interpolator = 0x7f020009 ++com.wix.detox.test:attr/verticalOffset = 0x7f030377 ++com.wix.detox.test:attr/waveShape = 0x7f03037f ++com.wix.detox.test:styleable/ClockHandView = 0x7f0f001e ++com.wix.detox.test:color/mtrl_choice_chip_background_color = 0x7f050090 ++com.wix.detox.test:layout/material_time_chip = 0x7f0b0035 ++com.wix.detox.test:dimen/abc_action_bar_subtitle_top_margin_material = 0x7f06000c ++com.wix.detox.test:attr/layout_constraintHeight_min = 0x7f0301df ++com.wix.detox.test:attr/waveOffset = 0x7f03037d ++com.wix.detox.test:id/mtrl_calendar_days_of_week = 0x7f0800ec ++com.wix.detox.test:dimen/mtrl_slider_halo_radius = 0x7f060163 ++com.wix.detox.test:attr/warmth = 0x7f03037b ++com.wix.detox.test:attr/visibilityMode = 0x7f030379 ++com.wix.detox.test:attr/checkedIcon = 0x7f030084 ++com.wix.detox.test:dimen/mtrl_bottomappbar_fab_cradle_margin = 0x7f0600d0 ++com.wix.detox.test:string/material_motion_easing_accelerated = 0x7f0d0031 ++com.wix.detox.test:dimen/mtrl_card_spacing = 0x7f06011b ++com.wix.detox.test:attr/values = 0x7f030376 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar = 0x7f0e021f ++com.wix.detox.test:color/material_timepicker_clock_text_color = 0x7f05007d ++com.wix.detox.test:drawable/$avd_show_password__2 = 0x7f070005 ++com.wix.detox.test:style/Base.V26.Theme.AppCompat.Light = 0x7f0e0090 ++com.wix.detox.test:attr/ttcIndex = 0x7f030373 ++com.wix.detox.test:attr/chipIconSize = 0x7f030091 ++com.wix.detox.test:attr/triggerReceiver = 0x7f030371 ++com.wix.detox.test:attr/triggerId = 0x7f030370 ++com.wix.detox.test:layout/abc_screen_content_include = 0x7f0b0014 ++com.wix.detox.test:attr/transitionShapeAppearance = 0x7f03036f ++com.wix.detox.test:attr/transitionFlags = 0x7f03036d ++com.wix.detox.test:attr/tabIndicatorFullWidth = 0x7f030303 ++com.wix.detox.test:attr/elevationOverlayEnabled = 0x7f030129 ++com.wix.detox.test:attr/transitionEasing = 0x7f03036c ++com.wix.detox.test:attr/showDelay = 0x7f0302c4 ++com.wix.detox.test:attr/trackTintMode = 0x7f03036a ++com.wix.detox.test:attr/trackTint = 0x7f030369 ++com.wix.detox.test:attr/colorOnSecondary = 0x7f0300c0 ++com.wix.detox.test:style/Theme.Design.Light.NoActionBar = 0x7f0e019f ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Dialog.Bridge = 0x7f0e005a ++com.wix.detox.test:dimen/mtrl_badge_text_size = 0x7f0600ca ++com.wix.detox.test:attr/trackThickness = 0x7f030368 ++com.wix.detox.test:style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar = 0x7f0e0234 ++com.wix.detox.test:attr/actionModeFindDrawable = 0x7f030016 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Dialog.MinWidth = 0x7f0e005c ++com.wix.detox.test:dimen/mtrl_btn_disabled_z = 0x7f0600d7 ++com.wix.detox.test:attr/trackCornerRadius = 0x7f030366 ++com.wix.detox.test:dimen/material_cursor_inset_bottom = 0x7f0600a9 ++com.wix.detox.test:layout/design_bottom_sheet_dialog = 0x7f0b001e ++com.wix.detox.test:attr/trackColorActive = 0x7f030364 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton = 0x7f0e0297 ++com.wix.detox.test:attr/trackColor = 0x7f030363 ++com.wix.detox.test:anim/abc_popup_enter = 0x7f010003 ++com.wix.detox.test:attr/itemPadding = 0x7f0301ac ++com.wix.detox.test:attr/onNegativeCross = 0x7f030272 ++com.wix.detox.test:attr/touchRegionId = 0x7f030361 ++com.wix.detox.test:attr/tooltipStyle = 0x7f03035d ++com.wix.detox.test:id/accessibility_custom_action_12 = 0x7f080014 ++com.wix.detox.test:style/Base.Widget.AppCompat.CompoundButton.CheckBox = 0x7f0e00af ++com.wix.detox.test:dimen/abc_star_small = 0x7f06003d ++com.wix.detox.test:style/Base.Widget.MaterialComponents.Chip = 0x7f0e00d9 ++com.wix.detox.test:attr/tooltipFrameBackground = 0x7f03035c ++com.wix.detox.test:attr/tooltipForegroundColor = 0x7f03035b ++com.wix.detox.test:attr/toolbarStyle = 0x7f03035a ++com.wix.detox.test:attr/toolbarId = 0x7f030358 ++com.wix.detox.test:attr/badgeTextColor = 0x7f030049 ++com.wix.detox.test:attr/errorEnabled = 0x7f030135 ++com.wix.detox.test:dimen/appcompat_dialog_background_inset = 0x7f060052 ++com.wix.detox.test:attr/titleTextAppearance = 0x7f030355 ++com.wix.detox.test:attr/titleMargins = 0x7f030354 ++com.wix.detox.test:color/bright_foreground_inverse_material_light = 0x7f050024 ++com.wix.detox.test:attr/yearTodayStyle = 0x7f03038d ++com.wix.detox.test:integer/bottom_sheet_slide_duration = 0x7f090003 ++com.wix.detox.test:id/spline = 0x7f080150 ++com.wix.detox.test:dimen/notification_top_pad = 0x7f060191 ++com.wix.detox.test:attr/titleMargin = 0x7f03034f ++com.wix.detox.test:attr/titleEnabled = 0x7f03034e ++com.wix.detox.test:attr/titleCollapseMode = 0x7f03034d ++com.wix.detox.test:attr/title = 0x7f03034b ++com.wix.detox.test:attr/tint = 0x7f030349 ++com.wix.detox.test:color/mtrl_tabs_icon_color_selector_colored = 0x7f0500aa ++com.wix.detox.test:style/Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f0e0044 ++com.wix.detox.test:id/mtrl_calendar_months = 0x7f0800ef ++com.wix.detox.test:id/action_image = 0x7f08003a ++com.wix.detox.test:attr/tickMarkTintMode = 0x7f030347 ++com.wix.detox.test:attr/minSeparation = 0x7f030246 ++com.wix.detox.test:style/Theme.AppCompat.DayNight.NoActionBar = 0x7f0e018d ++com.wix.detox.test:dimen/abc_dropdownitem_icon_width = 0x7f060029 ++com.wix.detox.test:attr/tickColorInactive = 0x7f030344 ++com.wix.detox.test:attr/tickColorActive = 0x7f030343 ++com.wix.detox.test:id/mtrl_calendar_day_selector_frame = 0x7f0800eb ++com.wix.detox.test:style/Widget.AppCompat.ActionButton.CloseMode = 0x7f0e020b ++com.wix.detox.test:id/topPanel = 0x7f08018b ++com.wix.detox.test:attr/progressBarStyle = 0x7f03029e ++com.wix.detox.test:color/primary_text_disabled_material_light = 0x7f0500bc ++com.wix.detox.test:attr/cornerRadius = 0x7f0300e8 ++com.wix.detox.test:drawable/mtrl_tabs_default_indicator = 0x7f07007d ++com.wix.detox.test:attr/thumbTintMode = 0x7f030341 ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f0e006b ++com.wix.detox.test:styleable/Snackbar = 0x7f0f0071 ++com.wix.detox.test:attr/expandActivityOverflowButtonDrawable = 0x7f03013b ++com.wix.detox.test:attr/tabMode = 0x7f030309 ++com.wix.detox.test:id/search_voice_btn = 0x7f08013f ++com.wix.detox.test:color/abc_primary_text_material_dark = 0x7f05000b ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Dark = 0x7f0e01e8 ++com.wix.detox.test:attr/thumbTint = 0x7f030340 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f0e0158 ++com.wix.detox.test:dimen/mtrl_btn_padding_top = 0x7f0600e3 ++com.wix.detox.test:style/Widget.AppCompat.Button.Borderless.Colored = 0x7f0e0212 ++com.wix.detox.test:id/accessibility_custom_action_0 = 0x7f080010 ++com.wix.detox.test:attr/contentPaddingBottom = 0x7f0300d9 ++com.wix.detox.test:attr/boxCornerRadiusTopStart = 0x7f030065 ++com.wix.detox.test:style/EmptyTheme = 0x7f0e00e7 ++com.wix.detox.test:attr/thumbElevation = 0x7f03033b ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.DropDownItem = 0x7f0e003a ++com.wix.detox.test:dimen/mtrl_slider_label_radius = 0x7f060165 ++com.wix.detox.test:id/transition_transform = 0x7f080193 ++com.wix.detox.test:attr/theme = 0x7f030337 ++com.wix.detox.test:attr/logoDescription = 0x7f03021b ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu = 0x7f0e02c3 ++com.wix.detox.test:attr/textStartPadding = 0x7f030336 ++com.wix.detox.test:anim/mtrl_card_lowers_interpolator = 0x7f01001f ++com.wix.detox.test:style/Widget.MaterialComponents.Button = 0x7f0e026f ++com.wix.detox.test:style/Base.Widget.AppCompat.EditText = 0x7f0e00b5 ++com.wix.detox.test:attr/textInputStyle = 0x7f030334 ++com.wix.detox.test:dimen/design_tab_text_size = 0x7f06008c ++com.wix.detox.test:attr/switchMinWidth = 0x7f0302f6 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup = 0x7f0e0104 ++com.wix.detox.test:color/background_material_light = 0x7f050020 ++com.wix.detox.test:layout/mtrl_calendar_month_navigation = 0x7f0b0046 ++com.wix.detox.test:attr/textColorSearchUrl = 0x7f030331 ++com.wix.detox.test:dimen/mtrl_snackbar_margin = 0x7f060170 ++com.wix.detox.test:id/save_overlay_view = 0x7f08012d ++com.wix.detox.test:attr/textColorAlertDialogListItem = 0x7f030330 ++com.wix.detox.test:attr/textAppearanceSubtitle2 = 0x7f03032f ++com.wix.detox.test:attr/layout_constraintHeight_max = 0x7f0301de ++com.wix.detox.test:id/beginOnFirstDraw = 0x7f080054 ++com.wix.detox.test:color/secondary_text_disabled_material_light = 0x7f0500c3 ++com.wix.detox.test:style/Widget.AppCompat.TextView.SpinnerItem = 0x7f0e024b ++com.wix.detox.test:attr/autoTransition = 0x7f03003b ++com.wix.detox.test:attr/textAppearanceSearchResultSubtitle = 0x7f03032b ++com.wix.detox.test:attr/textAppearancePopupMenuHeader = 0x7f03032a ++com.wix.detox.test:dimen/abc_text_size_title_material = 0x7f06004f ++com.wix.detox.test:attr/maxButtonHeight = 0x7f03023a ++com.wix.detox.test:drawable/tooltip_frame_dark = 0x7f07008c ++com.wix.detox.test:id/autoComplete = 0x7f08004f ++com.wix.detox.test:attr/materialAlertDialogTitleTextStyle = 0x7f030220 ++com.wix.detox.test:attr/textAppearanceListItem = 0x7f030326 ++com.wix.detox.test:dimen/mtrl_progress_circular_radius = 0x7f060156 ++com.wix.detox.test:attr/panelBackground = 0x7f030280 ++com.wix.detox.test:attr/layout_optimizationLevel = 0x7f030202 ++com.wix.detox.test:attr/textAppearanceHeadline6 = 0x7f030323 ++com.wix.detox.test:attr/transitionDisable = 0x7f03036b ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen = 0x7f0e0121 ++com.wix.detox.test:attr/editTextStyle = 0x7f030126 ++com.wix.detox.test:id/sin = 0x7f080147 ++com.wix.detox.test:attr/behavior_hideable = 0x7f030054 ++com.wix.detox.test:id/META = 0x7f080005 ++com.wix.detox.test:attr/textAppearanceHeadline2 = 0x7f03031f ++com.wix.detox.test:styleable/CollapsingToolbarLayout_Layout = 0x7f0f0020 ++com.wix.detox.test:attr/textAppearanceHeadline1 = 0x7f03031e ++com.wix.detox.test:style/Widget.AppCompat.Light.PopupMenu = 0x7f0e0231 ++com.wix.detox.test:attr/arrowHeadLength = 0x7f030032 ++com.wix.detox.test:attr/textAppearanceCaption = 0x7f03031d ++com.wix.detox.test:attr/counterOverflowTextColor = 0x7f0300f1 ++com.wix.detox.test:dimen/fastscroll_default_thickness = 0x7f060091 ++com.wix.detox.test:attr/textAppearanceBody2 = 0x7f03031b ++com.wix.detox.test:attr/textAppearanceBody1 = 0x7f03031a ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f0e0030 ++com.wix.detox.test:attr/cornerSizeTopRight = 0x7f0300ed ++com.wix.detox.test:attr/spinnerStyle = 0x7f0302d6 ++com.wix.detox.test:attr/telltales_tailColor = 0x7f030316 ++com.wix.detox.test:style/Theme.AppCompat.DayNight.DarkActionBar = 0x7f0e0188 ++com.wix.detox.test:attr/targetId = 0x7f030315 ++com.wix.detox.test:attr/transitionPathRotate = 0x7f03036e ++com.wix.detox.test:style/Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f0e0080 ++com.wix.detox.test:attr/tabUnboundedRipple = 0x7f030314 ++com.wix.detox.test:dimen/mtrl_progress_circular_inset_small = 0x7f060155 ++com.wix.detox.test:style/Widget.MaterialComponents.CardView = 0x7f0e027b ++com.wix.detox.test:attr/tabTextAppearance = 0x7f030312 ++com.wix.detox.test:attr/tabStyle = 0x7f030311 ++com.wix.detox.test:attr/tabSelectedTextColor = 0x7f030310 ++com.wix.detox.test:style/Widget.AppCompat.RatingBar.Indicator = 0x7f0e0240 ++com.wix.detox.test:id/accessibility_action_clickable_span = 0x7f08000f ++com.wix.detox.test:attr/dragDirection = 0x7f030112 ++com.wix.detox.test:attr/actionModeBackground = 0x7f030010 ++com.wix.detox.test:attr/tabRippleColor = 0x7f03030f ++com.wix.detox.test:color/material_on_surface_emphasis_medium = 0x7f050073 ++com.wix.detox.test:layout/test_toolbar_elevation = 0x7f0b0069 ++com.wix.detox.test:attr/tabPaddingTop = 0x7f03030e ++com.wix.detox.test:id/spread = 0x7f080152 ++com.wix.detox.test:attr/tabPaddingStart = 0x7f03030d ++com.wix.detox.test:dimen/mtrl_bottomappbar_height = 0x7f0600d3 ++com.wix.detox.test:attr/customFloatValue = 0x7f0300fb ++com.wix.detox.test:attr/labelStyle = 0x7f0301c1 ++com.wix.detox.test:attr/navigationIcon = 0x7f030266 ++com.wix.detox.test:anim/btn_checkbox_to_checked_box_inner_merged_animation = 0x7f01000c ++com.wix.detox.test:attr/tabPaddingBottom = 0x7f03030b ++com.wix.detox.test:attr/tabPadding = 0x7f03030a ++com.wix.detox.test:color/mtrl_btn_text_btn_ripple_color = 0x7f050084 ++com.wix.detox.test:color/mtrl_filled_icon_tint = 0x7f050098 ++com.wix.detox.test:attr/tabMinWidth = 0x7f030308 ++com.wix.detox.test:dimen/mtrl_calendar_day_corner = 0x7f0600f1 ++com.wix.detox.test:attr/tabMaxWidth = 0x7f030307 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f0e0020 ++com.wix.detox.test:attr/enableEdgeToEdge = 0x7f03012a ++com.wix.detox.test:dimen/mtrl_btn_inset = 0x7f0600dd ++com.wix.detox.test:attr/tabInlineLabel = 0x7f030306 ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.Dialog.FixedSize = 0x7f0e0052 ++com.wix.detox.test:attr/tabIndicatorColor = 0x7f030302 ++com.wix.detox.test:attr/tabIndicatorAnimationDuration = 0x7f030300 ++com.wix.detox.test:attr/drawableStartCompat = 0x7f03011b ++com.wix.detox.test:style/Base.V14.ThemeOverlay.MaterialComponents.Dialog = 0x7f0e007e ++com.wix.detox.test:attr/paddingEnd = 0x7f03027a ++com.wix.detox.test:attr/tabIndicator = 0x7f0302ff ++com.wix.detox.test:dimen/mtrl_btn_dialog_btn_min_width = 0x7f0600d5 ++com.wix.detox.test:attr/buttonBarNeutralButtonStyle = 0x7f03006d ++com.wix.detox.test:attr/tabGravity = 0x7f0302fc ++com.wix.detox.test:style/Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f0e0213 ++com.wix.detox.test:attr/titleCentered = 0x7f03034c ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.DropDownItem = 0x7f0e015b ++com.wix.detox.test:attr/switchTextAppearance = 0x7f0302f9 ++com.wix.detox.test:style/Widget.Design.BottomNavigationView = 0x7f0e0251 ++com.wix.detox.test:dimen/mtrl_card_checked_icon_size = 0x7f060117 ++com.wix.detox.test:attr/switchPadding = 0x7f0302f7 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Large.Inverse = 0x7f0e001f ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f0e003c ++com.wix.detox.test:attr/suggestionRowLayout = 0x7f0302f5 ++com.wix.detox.test:attr/suffixTextAppearance = 0x7f0302f3 ++com.wix.detox.test:id/tag_accessibility_pane_title = 0x7f080167 ++com.wix.detox.test:drawable/ic_clock_black_24dp = 0x7f070064 ++com.wix.detox.test:attr/colorPrimarySurface = 0x7f0300c4 ++com.wix.detox.test:color/cardview_shadow_end_color = 0x7f05002b ++com.wix.detox.test:attr/suffixText = 0x7f0302f2 ++com.wix.detox.test:attr/subtitleTextStyle = 0x7f0302f1 ++com.wix.detox.test:attr/region_heightLessThan = 0x7f0302a8 ++com.wix.detox.test:style/Test.Theme.MaterialComponents.MaterialCalendar = 0x7f0e0127 ++com.wix.detox.test:id/tag_on_apply_window_listener = 0x7f080168 ++com.wix.detox.test:attr/drawableTint = 0x7f03011c ++com.wix.detox.test:id/checked = 0x7f080061 ++com.wix.detox.test:dimen/abc_dialog_padding_material = 0x7f060024 ++com.wix.detox.test:attr/subtitleCentered = 0x7f0302ee ++com.wix.detox.test:attr/subtitle = 0x7f0302ed ++com.wix.detox.test:attr/tickVisible = 0x7f030348 ++com.wix.detox.test:attr/subMenuArrow = 0x7f0302eb ++com.wix.detox.test:dimen/mtrl_navigation_rail_default_width = 0x7f06014b ++com.wix.detox.test:id/shortcut = 0x7f080143 ++com.wix.detox.test:dimen/mtrl_calendar_day_horizontal_padding = 0x7f0600f3 ++com.wix.detox.test:attr/backgroundSplit = 0x7f030043 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionBar.TabView = 0x7f0e00a0 ++com.wix.detox.test:attr/actionModeCloseContentDescription = 0x7f030012 ++com.wix.detox.test:attr/strokeWidth = 0x7f0302ea ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f0e014e ++com.wix.detox.test:color/accent_material_dark = 0x7f050019 ++com.wix.detox.test:dimen/abc_select_dialog_padding_start_material = 0x7f06003a ++com.wix.detox.test:integer/mtrl_badge_max_character_count = 0x7f090010 ++com.wix.detox.test:style/CardView = 0x7f0e00e4 ++com.wix.detox.test:attr/state_collapsed = 0x7f0302e1 ++com.wix.detox.test:drawable/btn_checkbox_unchecked_mtrl = 0x7f070059 ++com.wix.detox.test:attr/fontVariationSettings = 0x7f030173 ++com.wix.detox.test:attr/drawableEndCompat = 0x7f030117 ++com.wix.detox.test:style/Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f0e007f ++com.wix.detox.test:attr/keyboardIcon = 0x7f0301bd ++com.wix.detox.test:attr/layout_dodgeInsetEdges = 0x7f0301f7 ++com.wix.detox.test:drawable/$avd_hide_password__2 = 0x7f070002 ++com.wix.detox.test:drawable/material_ic_keyboard_arrow_next_black_24dp = 0x7f07006f ++com.wix.detox.test:attr/fontProviderFetchTimeout = 0x7f03016e ++com.wix.detox.test:attr/startIconTintMode = 0x7f0302df ++com.wix.detox.test:dimen/mtrl_badge_long_text_horizontal_padding = 0x7f0600c7 ++com.wix.detox.test:attr/subtitleTextColor = 0x7f0302f0 ++com.wix.detox.test:attr/startIconTint = 0x7f0302de ++com.wix.detox.test:attr/staggered = 0x7f0302da ++com.wix.detox.test:id/text2 = 0x7f080176 ++com.wix.detox.test:attr/spinnerDropDownItemStyle = 0x7f0302d5 ++com.wix.detox.test:attr/expandedTitleTextAppearance = 0x7f030144 ++com.wix.detox.test:dimen/mtrl_textinput_box_stroke_width_focused = 0x7f060178 ++com.wix.detox.test:attr/spinBars = 0x7f0302d4 ++com.wix.detox.test:attr/motionInterpolator = 0x7f03025b ++com.wix.detox.test:attr/spanCount = 0x7f0302d3 ++com.wix.detox.test:attr/singleSelection = 0x7f0302cd ++com.wix.detox.test:layout/mtrl_picker_header_dialog = 0x7f0b0050 ++com.wix.detox.test:drawable/abc_btn_check_to_on_mtrl_015 = 0x7f07000c ++com.wix.detox.test:attr/snackbarButtonStyle = 0x7f0302d0 ++com.wix.detox.test:style/Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f0e0232 ++com.wix.detox.test:color/error_color_material_dark = 0x7f050058 ++com.wix.detox.test:attr/titleMarginStart = 0x7f030352 ++com.wix.detox.test:id/tag_accessibility_heading = 0x7f080166 ++com.wix.detox.test:attr/backgroundTint = 0x7f030045 ++com.wix.detox.test:attr/helperText = 0x7f03017f ++com.wix.detox.test:style/ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f0e01d5 ++com.wix.detox.test:string/material_motion_easing_linear = 0x7f0d0034 ++com.wix.detox.test:attr/sizePercent = 0x7f0302ce ++com.wix.detox.test:attr/showText = 0x7f0302c8 ++com.wix.detox.test:attr/showPaths = 0x7f0302c7 ++com.wix.detox.test:id/start = 0x7f080159 ++com.wix.detox.test:drawable/abc_item_background_holo_light = 0x7f070029 ++com.wix.detox.test:attr/startIconContentDescription = 0x7f0302dc ++com.wix.detox.test:dimen/clock_face_margin_start = 0x7f060056 ++com.wix.detox.test:style/TextAppearance.AppCompat.Title = 0x7f0e014b ++com.wix.detox.test:string/path_password_eye_mask_strike_through = 0x7f0d0064 ++com.wix.detox.test:attr/showMotionSpec = 0x7f0302c6 ++com.wix.detox.test:styleable/CompoundButton = 0x7f0f0022 ++com.wix.detox.test:attr/navigationRailStyle = 0x7f030269 ++com.wix.detox.test:dimen/material_clock_period_toggle_margin_left = 0x7f0600a6 ++com.wix.detox.test:attr/listChoiceBackgroundIndicator = 0x7f03020b ++com.wix.detox.test:dimen/disabled_alpha_material_light = 0x7f060090 ++com.wix.detox.test:attr/themeLineHeight = 0x7f030338 ++com.wix.detox.test:style/Widget.MaterialComponents.FloatingActionButton = 0x7f0e028c ++com.wix.detox.test:color/mtrl_filled_stroke_color = 0x7f050099 ++com.wix.detox.test:drawable/notification_bg_normal_pressed = 0x7f070085 ++com.wix.detox.test:attr/shapeAppearanceMediumComponent = 0x7f0302be ++com.wix.detox.test:attr/actionModeShareDrawable = 0x7f03001a ++com.wix.detox.test:attr/shapeAppearanceLargeComponent = 0x7f0302bd ++com.wix.detox.test:attr/boxBackgroundMode = 0x7f030060 ++com.wix.detox.test:color/design_default_color_on_background = 0x7f05003f ++com.wix.detox.test:attr/seekBarStyle = 0x7f0302b7 ++com.wix.detox.test:attr/cornerSizeTopLeft = 0x7f0300ec ++com.wix.detox.test:attr/paddingStart = 0x7f03027d ++com.wix.detox.test:attr/chipMinHeight = 0x7f030094 ++com.wix.detox.test:id/stop = 0x7f08015f ++com.wix.detox.test:attr/scrimBackground = 0x7f0302b2 ++com.wix.detox.test:attr/recyclerViewStyle = 0x7f0302a7 ++com.wix.detox.test:attr/scrimAnimationDuration = 0x7f0302b1 ++com.wix.detox.test:dimen/material_textinput_min_width = 0x7f0600bd ++com.wix.detox.test:attr/popupWindowStyle = 0x7f030297 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.BottomAppBar.Surface = 0x7f0e01e6 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents.LargeComponent = 0x7f0e0112 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 = 0x7f0e010a ++com.wix.detox.test:string/mtrl_picker_date_header_unselected = 0x7f0d004a ++com.wix.detox.test:id/date_picker_actions = 0x7f080079 ++com.wix.detox.test:style/Widget.MaterialComponents.LinearProgressIndicator = 0x7f0e028e ++com.wix.detox.test:dimen/mtrl_calendar_month_horizontal_padding = 0x7f060104 ++com.wix.detox.test:drawable/design_snackbar_background = 0x7f070063 ++com.wix.detox.test:attr/motionDurationShort1 = 0x7f030254 ++com.wix.detox.test:attr/reverseLayout = 0x7f0302ac ++com.wix.detox.test:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert.Framework = 0x7f0e0071 ++com.wix.detox.test:dimen/design_bottom_navigation_active_item_min_width = 0x7f060062 ++com.wix.detox.test:attr/materialTimePickerStyle = 0x7f030236 ++com.wix.detox.test:attr/bottomNavigationStyle = 0x7f03005c ++com.wix.detox.test:attr/boxStrokeWidthFocused = 0x7f030069 ++com.wix.detox.test:layout/notification_template_icon_group = 0x7f0b005a ++com.wix.detox.test:color/background_material_dark = 0x7f05001f ++com.wix.detox.test:anim/btn_radio_to_off_mtrl_dot_group_animation = 0x7f010012 ++com.wix.detox.test:attr/ratingBarStyleSmall = 0x7f0302a6 ++com.wix.detox.test:attr/behavior_halfExpandedRatio = 0x7f030053 ++com.wix.detox.test:attr/chipEndPadding = 0x7f03008d ++com.wix.detox.test:attr/ratingBarStyle = 0x7f0302a4 ++com.wix.detox.test:attr/voiceIcon = 0x7f03037a ++com.wix.detox.test:attr/placeholderTextAppearance = 0x7f030291 ++com.wix.detox.test:attr/indicatorInset = 0x7f03019e ++com.wix.detox.test:attr/layout_goneMarginRight = 0x7f0301fd ++com.wix.detox.test:attr/divider = 0x7f03010e ++com.wix.detox.test:attr/itemShapeFillColor = 0x7f0301b0 ++com.wix.detox.test:anim/design_bottom_sheet_slide_out = 0x7f010019 ++com.wix.detox.test:attr/dialogTheme = 0x7f03010c ++com.wix.detox.test:attr/popupMenuStyle = 0x7f030295 ++com.wix.detox.test:dimen/abc_text_size_small_material = 0x7f06004c ++com.wix.detox.test:id/src_in = 0x7f080156 ++com.wix.detox.test:attr/currentState = 0x7f0300f5 ++com.wix.detox.test:attr/perpendicularPath_percent = 0x7f03028e ++com.wix.detox.test:attr/closeItemLayout = 0x7f0300ad ++com.wix.detox.test:attr/fontStyle = 0x7f030172 ++com.wix.detox.test:color/material_blue_grey_950 = 0x7f050060 ++com.wix.detox.test:attr/layout_insetEdge = 0x7f030200 ++com.wix.detox.test:attr/menuGravity = 0x7f030243 ++com.wix.detox.test:attr/placeholderText = 0x7f030290 ++com.wix.detox.test:drawable/notification_icon_background = 0x7f070086 ++com.wix.detox.test:style/Widget.MaterialComponents.Toolbar.Primary = 0x7f0e02ce ++com.wix.detox.test:attr/actionMenuTextAppearance = 0x7f03000e ++com.wix.detox.test:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 0x7f0a0003 ++com.wix.detox.test:attr/fontProviderAuthority = 0x7f03016b ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text = 0x7f0e01f4 ++com.wix.detox.test:dimen/mtrl_btn_letter_spacing = 0x7f0600de ++com.wix.detox.test:attr/percentY = 0x7f03028d ++com.wix.detox.test:attr/path_percent = 0x7f030289 ++com.wix.detox.test:attr/titleTextStyle = 0x7f030357 ++com.wix.detox.test:attr/chipStartPadding = 0x7f03009a ++com.wix.detox.test:layout/test_toolbar_custom_background = 0x7f0b0068 ++com.wix.detox.test:attr/pathMotionArc = 0x7f030288 ++com.wix.detox.test:style/Widget.MaterialComponents.Toolbar = 0x7f0e02cd ++com.wix.detox.test:id/actions = 0x7f080041 ++com.wix.detox.test:attr/selectableItemBackgroundBorderless = 0x7f0302b9 ++com.wix.detox.test:styleable/BottomSheetBehavior_Layout = 0x7f0f0016 ++com.wix.detox.test:styleable/PopupWindowBackgroundState = 0x7f0f0065 ++com.wix.detox.test:attr/navigationContentDescription = 0x7f030265 ++com.wix.detox.test:id/container = 0x7f08006f ++com.wix.detox.test:dimen/abc_action_bar_default_padding_end_material = 0x7f060003 ++com.wix.detox.test:attr/passwordToggleTintMode = 0x7f030287 ++com.wix.detox.test:string/mtrl_exceed_max_badge_number_content_description = 0x7f0d0041 ++com.wix.detox.test:attr/passwordToggleEnabled = 0x7f030285 ++com.wix.detox.test:attr/passwordToggleDrawable = 0x7f030284 ++com.wix.detox.test:dimen/mtrl_calendar_month_vertical_padding = 0x7f060105 ++com.wix.detox.test:anim/btn_checkbox_to_unchecked_icon_null_animation = 0x7f010011 ++com.wix.detox.test:attr/cornerFamily = 0x7f0300e3 ++com.wix.detox.test:attr/passwordToggleContentDescription = 0x7f030283 ++com.wix.detox.test:attr/boxBackgroundColor = 0x7f03005f ++com.wix.detox.test:dimen/material_bottom_sheet_max_width = 0x7f06009e ++com.wix.detox.test:attr/indicatorDirectionLinear = 0x7f03019d ++com.wix.detox.test:attr/panelMenuListWidth = 0x7f030282 ++com.wix.detox.test:dimen/notification_right_icon_size = 0x7f06018c ++com.wix.detox.test:attr/ratingBarStyleIndicator = 0x7f0302a5 ++com.wix.detox.test:attr/behavior_expandedOffset = 0x7f030051 ++com.wix.detox.test:attr/listChoiceIndicatorSingleAnimated = 0x7f03020d ++com.wix.detox.test:attr/panelMenuListTheme = 0x7f030281 ++com.wix.detox.test:attr/snackbarTextViewStyle = 0x7f0302d2 ++com.wix.detox.test:attr/paddingTopSystemWindowInsets = 0x7f03027f ++com.wix.detox.test:attr/autoSizeTextType = 0x7f03003a ++com.wix.detox.test:drawable/ic_keyboard_black_24dp = 0x7f070065 ++com.wix.detox.test:attr/overlay = 0x7f030277 ++com.wix.detox.test:attr/dialogPreferredPadding = 0x7f03010b ++com.wix.detox.test:attr/dividerHorizontal = 0x7f03010f ++com.wix.detox.test:style/Base.Theme.AppCompat.Dialog.Alert = 0x7f0e004a ++com.wix.detox.test:style/Widget.MaterialComponents.AppBarLayout.Surface = 0x7f0e0261 ++com.wix.detox.test:attr/buttonBarStyle = 0x7f03006f ++com.wix.detox.test:dimen/abc_button_padding_horizontal_material = 0x7f060014 ++com.wix.detox.test:attr/motion_triggerOnCollision = 0x7f030262 ++com.wix.detox.test:attr/prefixTextAppearance = 0x7f030299 ++com.wix.detox.test:anim/abc_fade_out = 0x7f010001 ++com.wix.detox.test:attr/onPositiveCross = 0x7f030273 ++com.wix.detox.test:dimen/mtrl_min_touch_target_size = 0x7f060140 ++com.wix.detox.test:attr/indeterminateAnimationType = 0x7f030199 ++com.wix.detox.test:attr/tabIndicatorAnimationMode = 0x7f030301 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView = 0x7f0e01e0 ++com.wix.detox.test:attr/listMenuViewStyle = 0x7f030211 ++com.wix.detox.test:attr/checkedIconSize = 0x7f030087 ++com.wix.detox.test:color/mtrl_navigation_item_text_color = 0x7f0500a1 ++com.wix.detox.test:drawable/abc_ic_menu_cut_mtrl_alpha = 0x7f070021 ++com.wix.detox.test:attr/onCross = 0x7f030270 ++com.wix.detox.test:styleable/ColorStateListItem = 0x7f0f0021 ++com.wix.detox.test:attr/buttonStyle = 0x7f030074 ++com.wix.detox.test:attr/nestedScrollViewStyle = 0x7f03026c ++com.wix.detox.test:attr/materialAlertDialogTitlePanelStyle = 0x7f03021f ++com.wix.detox.test:dimen/mtrl_alert_dialog_background_inset_start = 0x7f0600c3 ++com.wix.detox.test:color/design_dark_default_color_error = 0x7f050031 ++com.wix.detox.test:attr/constraintSetEnd = 0x7f0300cc ++com.wix.detox.test:attr/isMaterialTheme = 0x7f0301a3 ++com.wix.detox.test:attr/contentScrim = 0x7f0300df ++com.wix.detox.test:attr/flow_lastVerticalStyle = 0x7f030161 ++com.wix.detox.test:attr/itemShapeAppearanceOverlay = 0x7f0301af ++com.wix.detox.test:attr/tooltipText = 0x7f03035e ++com.wix.detox.test:attr/attributeName = 0x7f030034 ++com.wix.detox.test:color/abc_decor_view_status_guard_light = 0x7f050006 ++com.wix.detox.test:id/pin = 0x7f08011d ++com.wix.detox.test:attr/navigationIconTint = 0x7f030267 ++com.wix.detox.test:attr/textAppearanceListItemSecondary = 0x7f030327 ++com.wix.detox.test:dimen/material_clock_hand_center_dot_radius = 0x7f0600a1 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut = 0x7f0e0105 ++com.wix.detox.test:style/Platform.ThemeOverlay.AppCompat.Dark = 0x7f0e00f9 ++com.wix.detox.test:animator/mtrl_extended_fab_change_size_collapse_motion_spec = 0x7f020011 ++com.wix.detox.test:attr/fontProviderFetchStrategy = 0x7f03016d ++com.wix.detox.test:attr/itemRippleColor = 0x7f0301ad ++com.wix.detox.test:anim/btn_checkbox_to_unchecked_box_inner_merged_animation = 0x7f01000f ++com.wix.detox.test:attr/hideAnimationBehavior = 0x7f030183 ++com.wix.detox.test:attr/motionProgress = 0x7f03025e ++com.wix.detox.test:dimen/abc_star_medium = 0x7f06003c ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse = 0x7f0e0154 ++com.wix.detox.test:attr/colorOnSurface = 0x7f0300c1 ++com.wix.detox.test:attr/motionPathRotate = 0x7f03025d ++com.wix.detox.test:attr/buttonTintMode = 0x7f030077 ++com.wix.detox.test:attr/layoutDuringTransition = 0x7f0301c6 ++com.wix.detox.test:attr/motionEasingStandard = 0x7f03025a ++com.wix.detox.test:attr/drawableTopCompat = 0x7f03011e ++com.wix.detox.test:id/search_mag_icon = 0x7f08013c ++com.wix.detox.test:attr/motionEasingLinear = 0x7f030259 ++com.wix.detox.test:attr/motionEasingAccelerated = 0x7f030256 ++com.wix.detox.test:attr/motionDurationMedium1 = 0x7f030252 ++com.wix.detox.test:attr/motionDurationLong1 = 0x7f030250 ++com.wix.detox.test:attr/mock_showLabel = 0x7f03024e ++com.wix.detox.test:attr/mock_label = 0x7f03024a ++com.wix.detox.test:id/withinBounds = 0x7f0801a1 ++com.wix.detox.test:layout/design_menu_item_action_area = 0x7f0b0023 ++com.wix.detox.test:attr/mock_diagonalsColor = 0x7f030249 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.BottomSheetDialog = 0x7f0e01a6 ++com.wix.detox.test:attr/minTouchTargetSize = 0x7f030247 ++com.wix.detox.test:id/mtrl_calendar_year_selector_frame = 0x7f0800f2 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.MinWidth = 0x7f0e01bb ++com.wix.detox.test:attr/layout_goneMarginBottom = 0x7f0301fa ++com.wix.detox.test:dimen/mtrl_navigation_item_shape_horizontal_margin = 0x7f060147 ++com.wix.detox.test:attr/triggerSlack = 0x7f030372 ++com.wix.detox.test:attr/collapsedTitleGravity = 0x7f0300b1 ++com.wix.detox.test:attr/paddingLeftSystemWindowInsets = 0x7f03027b ++com.wix.detox.test:attr/colorError = 0x7f0300bb ++com.wix.detox.test:string/abc_searchview_description_clear = 0x7f0d0013 ++com.wix.detox.test:string/mtrl_picker_range_header_selected = 0x7f0d0054 ++com.wix.detox.test:attr/customStringValue = 0x7f0300ff ++com.wix.detox.test:attr/flow_lastHorizontalStyle = 0x7f03015f ++com.wix.detox.test:dimen/abc_switch_padding = 0x7f06003e ++com.wix.detox.test:anim/abc_tooltip_exit = 0x7f01000b ++com.wix.detox.test:attr/fastScrollVerticalTrackDrawable = 0x7f030153 ++com.wix.detox.test:attr/arcMode = 0x7f030031 ++com.wix.detox.test:attr/minHideDelay = 0x7f030245 ++com.wix.detox.test:attr/thumbStrokeWidth = 0x7f03033e ++com.wix.detox.test:attr/badgeStyle = 0x7f030048 ++com.wix.detox.test:color/material_grey_50 = 0x7f050066 ++com.wix.detox.test:layout/abc_list_menu_item_radio = 0x7f0b0011 ++com.wix.detox.test:animator/mtrl_chip_state_list_anim = 0x7f020010 ++com.wix.detox.test:id/transitionToEnd = 0x7f08018d ++com.wix.detox.test:attr/maxLines = 0x7f03023e ++com.wix.detox.test:anim/btn_radio_to_on_mtrl_dot_group_animation = 0x7f010015 ++com.wix.detox.test:dimen/design_snackbar_padding_vertical = 0x7f060087 ++com.wix.detox.test:id/navigation_bar_item_small_label_view = 0x7f080105 ++com.wix.detox.test:attr/cardCornerRadius = 0x7f030079 ++com.wix.detox.test:dimen/abc_disabled_alpha_material_dark = 0x7f060027 ++com.wix.detox.test:attr/textInputLayoutFocusedRectEnabled = 0x7f030333 ++com.wix.detox.test:attr/suffixTextColor = 0x7f0302f4 ++com.wix.detox.test:string/abc_prepend_shortcut_label = 0x7f0d0011 ++com.wix.detox.test:id/chip2 = 0x7f080064 ++com.wix.detox.test:attr/colorControlHighlight = 0x7f0300b9 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f0e003d ++com.wix.detox.test:style/Theme.MaterialComponents.NoActionBar = 0x7f0e01d0 ++com.wix.detox.test:attr/behavior_overlapTop = 0x7f030055 ++com.wix.detox.test:attr/materialCalendarYearNavigationButton = 0x7f030231 ++com.wix.detox.test:dimen/test_navigation_bar_active_text_size = 0x7f060196 ++com.wix.detox.test:attr/percentX = 0x7f03028c ++com.wix.detox.test:attr/haloRadius = 0x7f03017c ++com.wix.detox.test:attr/materialCalendarHeaderToggleButton = 0x7f03022c ++com.wix.detox.test:attr/statusBarScrim = 0x7f0302e8 ++com.wix.detox.test:attr/contentInsetStart = 0x7f0300d6 ++com.wix.detox.test:styleable/MotionHelper = 0x7f0f005b ++com.wix.detox.test:attr/counterEnabled = 0x7f0300ee ++com.wix.detox.test:attr/chipStandaloneStyle = 0x7f030099 ++com.wix.detox.test:style/Platform.V25.AppCompat.Light = 0x7f0e00fe ++com.wix.detox.test:style/Base.Theme.AppCompat.Dialog.FixedSize = 0x7f0e004b ++com.wix.detox.test:attr/materialCalendarHeaderSelection = 0x7f03022a ++com.wix.detox.test:animator/mtrl_btn_state_list_anim = 0x7f02000d ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline3 = 0x7f0e0179 ++com.wix.detox.test:layout/material_clock_period_toggle_land = 0x7f0b0030 ++com.wix.detox.test:anim/abc_fade_in = 0x7f010000 ++com.wix.detox.test:attr/colorOnBackground = 0x7f0300bc ++com.wix.detox.test:attr/materialCalendarHeaderConfirmButton = 0x7f030227 ++com.wix.detox.test:dimen/mtrl_btn_hovered_z = 0x7f0600da ++com.wix.detox.test:dimen/mtrl_navigation_rail_icon_size = 0x7f06014e ++com.wix.detox.test:color/material_timepicker_clockface = 0x7f05007e ++com.wix.detox.test:dimen/material_emphasis_disabled = 0x7f0600ac ++com.wix.detox.test:attr/materialButtonToggleGroupStyle = 0x7f030223 ++com.wix.detox.test:attr/endIconTint = 0x7f03012f ++com.wix.detox.test:attr/materialButtonStyle = 0x7f030222 ++com.wix.detox.test:id/image = 0x7f0800bb ++com.wix.detox.test:dimen/mtrl_toolbar_default_height = 0x7f06017d ++com.wix.detox.test:attr/materialButtonOutlinedStyle = 0x7f030221 ++com.wix.detox.test:attr/materialAlertDialogTitleIconStyle = 0x7f03021e ++com.wix.detox.test:layout/mtrl_layout_snackbar_include = 0x7f0b004b ++com.wix.detox.test:attr/materialAlertDialogTheme = 0x7f03021d ++com.wix.detox.test:attr/materialCalendarTheme = 0x7f030230 ++com.wix.detox.test:style/Base.Widget.AppCompat.SearchView.ActionBar = 0x7f0e00cd ++com.wix.detox.test:dimen/fastscroll_minimum_range = 0x7f060093 ++com.wix.detox.test:attr/cornerFamilyTopRight = 0x7f0300e7 ++com.wix.detox.test:style/Widget.Design.ScrimInsetsFrameLayout = 0x7f0e0256 ++com.wix.detox.test:dimen/abc_action_bar_elevation_material = 0x7f060005 ++com.wix.detox.test:attr/listPreferredItemPaddingRight = 0x7f030218 ++com.wix.detox.test:color/mtrl_tabs_ripple_color = 0x7f0500ac ++com.wix.detox.test:attr/layout_constraintVertical_chainStyle = 0x7f0301f1 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar.TabView = 0x7f0e00bc ++com.wix.detox.test:drawable/tooltip_frame_light = 0x7f07008d ++com.wix.detox.test:dimen/material_emphasis_medium = 0x7f0600ae ++com.wix.detox.test:drawable/abc_spinner_mtrl_am_alpha = 0x7f070043 ++com.wix.detox.test:attr/floatingActionButtonStyle = 0x7f030155 ++com.wix.detox.test:dimen/mtrl_btn_stroke_size = 0x7f0600e6 ++com.wix.detox.test:attr/listPreferredItemHeightSmall = 0x7f030215 ++com.wix.detox.test:attr/layout_constraintWidth_max = 0x7f0301f4 ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.Dialog.MinWidth = 0x7f0e0053 ++com.wix.detox.test:attr/listLayout = 0x7f030210 ++com.wix.detox.test:dimen/mtrl_extended_fab_start_padding_icon = 0x7f06012e ++com.wix.detox.test:style/Base.Widget.AppCompat.CompoundButton.RadioButton = 0x7f0e00b0 ++com.wix.detox.test:dimen/mtrl_fab_translation_z_pressed = 0x7f060136 ++com.wix.detox.test:attr/state_collapsible = 0x7f0302e2 ++com.wix.detox.test:styleable/Chip = 0x7f0f001a ++com.wix.detox.test:attr/liftOnScrollTargetViewId = 0x7f030206 ++com.wix.detox.test:styleable/MotionTelltales = 0x7f0f005e ++com.wix.detox.test:drawable/mtrl_dialog_background = 0x7f070074 ++com.wix.detox.test:attr/iconEndPadding = 0x7f030190 ++com.wix.detox.test:style/Theme.AppCompat.Empty = 0x7f0e0192 ++com.wix.detox.test:attr/backgroundColor = 0x7f03003d ++com.wix.detox.test:style/Animation.Design.BottomSheetDialog = 0x7f0e0006 ++com.wix.detox.test:attr/textAppearanceSmallPopupMenu = 0x7f03032d ++com.wix.detox.test:attr/preserveIconSpacing = 0x7f03029b ++com.wix.detox.test:id/accessibility_custom_action_24 = 0x7f080021 ++com.wix.detox.test:style/Theme.AppCompat.Dialog.MinWidth = 0x7f0e0190 ++com.wix.detox.test:attr/layout_keyline = 0x7f030201 ++com.wix.detox.test:attr/layout_goneMarginLeft = 0x7f0301fc ++com.wix.detox.test:color/material_on_background_disabled = 0x7f05006b ++com.wix.detox.test:dimen/mtrl_btn_padding_left = 0x7f0600e1 ++com.wix.detox.test:attr/hintTextAppearance = 0x7f030189 ++com.wix.detox.test:attr/layout_editor_absoluteX = 0x7f0301f8 ++com.wix.detox.test:color/dim_foreground_disabled_material_light = 0x7f050055 ++com.wix.detox.test:style/Base.V28.Theme.AppCompat.Light = 0x7f0e0093 ++com.wix.detox.test:attr/lineHeight = 0x7f030208 ++com.wix.detox.test:attr/layout_constraintWidth_default = 0x7f0301f3 ++com.wix.detox.test:id/elastic = 0x7f080096 ++com.wix.detox.test:id/accessibility_custom_action_1 = 0x7f080011 ++com.wix.detox.test:dimen/item_touch_helper_swipe_escape_velocity = 0x7f06009d ++com.wix.detox.test:integer/mtrl_btn_anim_duration_ms = 0x7f090012 ++com.wix.detox.test:dimen/abc_star_big = 0x7f06003b ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense = 0x7f0e02bc ++com.wix.detox.test:attr/behavior_skipCollapsed = 0x7f030058 ++com.wix.detox.test:attr/layout_constraintVertical_weight = 0x7f0301f2 ++com.wix.detox.test:style/Theme.AppCompat = 0x7f0e0185 ++com.wix.detox.test:string/abc_searchview_description_voice = 0x7f0d0017 ++com.wix.detox.test:attr/clockHandColor = 0x7f0300a3 ++com.wix.detox.test:attr/itemSpacing = 0x7f0301b5 ++com.wix.detox.test:attr/layout_constraintStart_toStartOf = 0x7f0301eb ++com.wix.detox.test:attr/layout_constraintStart_toEndOf = 0x7f0301ea ++com.wix.detox.test:id/accessibility_custom_action_5 = 0x7f08002b ++com.wix.detox.test:dimen/tooltip_horizontal_padding = 0x7f0601a0 ++com.wix.detox.test:layout/mtrl_picker_header_fullscreen = 0x7f0b0051 ++com.wix.detox.test:color/highlighted_text_material_light = 0x7f05005d ++com.wix.detox.test:dimen/design_snackbar_text_size = 0x7f060089 ++com.wix.detox.test:attr/layout_constraintRight_toLeftOf = 0x7f0301e8 ++com.wix.detox.test:attr/counterTextColor = 0x7f0300f3 ++com.wix.detox.test:attr/logo = 0x7f03021a ++com.wix.detox.test:attr/layout_constraintBaseline_toBaselineOf = 0x7f0301d0 ++com.wix.detox.test:styleable/ActionBarLayout = 0x7f0f0001 ++com.wix.detox.test:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f0e0045 ++com.wix.detox.test:attr/layout_constraintLeft_creator = 0x7f0301e4 ++com.wix.detox.test:string/material_slider_range_start = 0x7f0d0037 ++com.wix.detox.test:attr/colorOnError = 0x7f0300bd ++com.wix.detox.test:attr/motionDurationMedium2 = 0x7f030253 ++com.wix.detox.test:attr/dayStyle = 0x7f030102 ++com.wix.detox.test:id/confirm_button = 0x7f08006e ++com.wix.detox.test:string/appbar_scrolling_view_behavior = 0x7f0d001c ++com.wix.detox.test:attr/itemShapeInsetBottom = 0x7f0301b1 ++com.wix.detox.test:id/easeIn = 0x7f080092 ++com.wix.detox.test:attr/checkedIconEnabled = 0x7f030085 ++com.wix.detox.test:attr/extendMotionSpec = 0x7f030145 ++com.wix.detox.test:attr/layout_constraintHorizontal_chainStyle = 0x7f0301e2 ++com.wix.detox.test:color/mtrl_chip_close_icon_tint = 0x7f05008d ++com.wix.detox.test:dimen/mtrl_calendar_selection_text_baseline_to_top = 0x7f06010d ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar.TabText = 0x7f0e00ba ++com.wix.detox.test:color/switch_thumb_material_light = 0x7f0500c7 ++com.wix.detox.test:id/material_clock_period_toggle = 0x7f0800d2 ++com.wix.detox.test:drawable/abc_vector_test = 0x7f070054 ++com.wix.detox.test:style/Theme.MaterialComponents.CompactMenu = 0x7f0e01a4 ++com.wix.detox.test:attr/layout_constraintGuide_begin = 0x7f0301da ++com.wix.detox.test:animator/mtrl_extended_fab_show_motion_spec = 0x7f020014 ++com.wix.detox.test:attr/flow_verticalGap = 0x7f030166 ++com.wix.detox.test:dimen/material_clock_period_toggle_height = 0x7f0600a5 ++com.wix.detox.test:id/row_index_key = 0x7f08012b ++com.wix.detox.test:attr/layout_constraintCircleRadius = 0x7f0301d6 ++com.wix.detox.test:attr/region_heightMoreThan = 0x7f0302a9 ++com.wix.detox.test:id/dimensions = 0x7f080085 ++com.wix.detox.test:attr/layout_constraintRight_toRightOf = 0x7f0301e9 ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputEditText.FilledBox = 0x7f0e02b9 ++com.wix.detox.test:id/action_menu_presenter = 0x7f08003c ++com.wix.detox.test:attr/layout_constraintBottom_toTopOf = 0x7f0301d3 ++com.wix.detox.test:attr/titleTextColor = 0x7f030356 ++com.wix.detox.test:attr/strokeColor = 0x7f0302e9 ++com.wix.detox.test:attr/firstBaselineToTopHeight = 0x7f030154 ++com.wix.detox.test:attr/menu = 0x7f030242 ++com.wix.detox.test:attr/horizontalOffset = 0x7f03018d ++com.wix.detox.test:string/path_password_eye_mask_visible = 0x7f0d0065 ++com.wix.detox.test:string/error_icon_content_description = 0x7f0d0024 ++com.wix.detox.test:attr/layout_constraintBottom_toBottomOf = 0x7f0301d2 ++com.wix.detox.test:string/material_timepicker_clock_mode_description = 0x7f0d0039 ++com.wix.detox.test:attr/layout_constraintBottom_creator = 0x7f0301d1 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.BottomSheet = 0x7f0e011c ++com.wix.detox.test:attr/layout_constraintBaseline_creator = 0x7f0301cf ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f0e01e7 ++com.wix.detox.test:string/mtrl_exceed_max_badge_number_suffix = 0x7f0d0042 ++com.wix.detox.test:attr/layout_collapseMode = 0x7f0301cb ++com.wix.detox.test:attr/layout_behavior = 0x7f0301ca ++com.wix.detox.test:attr/mock_showDiagonals = 0x7f03024d ++com.wix.detox.test:attr/layout_constraintLeft_toLeftOf = 0x7f0301e5 ++com.wix.detox.test:style/Base.Theme.AppCompat.CompactMenu = 0x7f0e0048 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.Alert = 0x7f0e01c5 ++com.wix.detox.test:id/startToEnd = 0x7f08015b ++com.wix.detox.test:attr/layoutManager = 0x7f0301c7 ++com.wix.detox.test:attr/actionOverflowButtonStyle = 0x7f03001f ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f0e01c7 ++com.wix.detox.test:attr/labelBehavior = 0x7f0301c0 ++com.wix.detox.test:dimen/mtrl_calendar_header_toggle_margin_bottom = 0x7f060100 ++com.wix.detox.test:attr/cardViewStyle = 0x7f03007f ++com.wix.detox.test:animator/fragment_fade_enter = 0x7f020005 ++com.wix.detox.test:style/Platform.AppCompat = 0x7f0e00f2 ++com.wix.detox.test:dimen/mtrl_calendar_dialog_background_inset = 0x7f0600f8 ++com.wix.detox.test:dimen/design_snackbar_max_width = 0x7f060084 ++com.wix.detox.test:attr/keyPositionType = 0x7f0301bc ++com.wix.detox.test:attr/shapeAppearance = 0x7f0302bc ++com.wix.detox.test:attr/itemTextAppearanceInactive = 0x7f0301ba ++com.wix.detox.test:color/mtrl_btn_ripple_color = 0x7f050081 ++com.wix.detox.test:anim/btn_checkbox_to_unchecked_check_path_merged_animation = 0x7f010010 ++com.wix.detox.test:attr/actionBarDivider = 0x7f030000 ++com.wix.detox.test:color/mtrl_btn_stroke_color_selector = 0x7f050082 ++com.wix.detox.test:attr/lastBaselineToBottomHeight = 0x7f0301c3 ++com.wix.detox.test:dimen/design_snackbar_padding_vertical_2lines = 0x7f060088 ++com.wix.detox.test:attr/itemTextAppearance = 0x7f0301b8 ++com.wix.detox.test:styleable/AnimatedStateListDrawableCompat = 0x7f0f0007 ++com.wix.detox.test:attr/background = 0x7f03003c ++com.wix.detox.test:attr/minWidth = 0x7f030248 ++com.wix.detox.test:attr/checkedIconTint = 0x7f030088 ++com.wix.detox.test:layout/design_layout_snackbar_include = 0x7f0b0020 ++com.wix.detox.test:attr/layout_constraintGuide_percent = 0x7f0301dc ++com.wix.detox.test:attr/itemStrokeWidth = 0x7f0301b7 ++com.wix.detox.test:dimen/mtrl_calendar_year_width = 0x7f060115 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f0e0031 ++com.wix.detox.test:style/Widget.MaterialComponents.CheckedTextView = 0x7f0e027c ++com.wix.detox.test:attr/selectionRequired = 0x7f0302ba ++com.wix.detox.test:color/design_dark_default_color_secondary = 0x7f05003a ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f0e0160 ++com.wix.detox.test:id/textinput_helper_text = 0x7f080181 ++com.wix.detox.test:anim/abc_tooltip_enter = 0x7f01000a ++com.wix.detox.test:anim/btn_checkbox_to_checked_box_outer_merged_animation = 0x7f01000d ++com.wix.detox.test:dimen/abc_seekbar_track_progress_height_material = 0x7f060039 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar = 0x7f0e00b7 ++com.wix.detox.test:dimen/mtrl_extended_fab_disabled_elevation = 0x7f060124 ++com.wix.detox.test:dimen/mtrl_fab_min_touch_target = 0x7f060134 ++com.wix.detox.test:style/TextAppearance.AppCompat.Large.Inverse = 0x7f0e013d ++com.wix.detox.test:anim/abc_slide_in_bottom = 0x7f010006 ++com.wix.detox.test:attr/motionEasingEmphasized = 0x7f030258 ++com.wix.detox.test:attr/motionEasingDecelerated = 0x7f030257 ++com.wix.detox.test:id/textinput_counter = 0x7f08017f ++com.wix.detox.test:attr/itemHorizontalTranslationEnabled = 0x7f0301a7 ++com.wix.detox.test:color/material_deep_teal_500 = 0x7f050063 ++com.wix.detox.test:attr/actionModeCopyDrawable = 0x7f030014 ++com.wix.detox.test:attr/itemFillColor = 0x7f0301a5 ++com.wix.detox.test:attr/titleMarginBottom = 0x7f030350 ++com.wix.detox.test:attr/isLightTheme = 0x7f0301a2 ++com.wix.detox.test:layout/mtrl_alert_select_dialog_item = 0x7f0b003d ++com.wix.detox.test:style/TextAppearance.Design.Hint = 0x7f0e016b ++com.wix.detox.test:attr/initialActivityCount = 0x7f0301a0 ++com.wix.detox.test:dimen/mtrl_snackbar_action_text_color_alpha = 0x7f06016d ++com.wix.detox.test:dimen/mtrl_navigation_rail_margin = 0x7f06014f ++com.wix.detox.test:dimen/mtrl_textinput_outline_box_expanded_padding = 0x7f06017b ++com.wix.detox.test:string/mtrl_picker_invalid_format_use = 0x7f0d004e ++com.wix.detox.test:attr/indicatorSize = 0x7f03019f ++com.wix.detox.test:dimen/mtrl_progress_circular_track_thickness_extra_small = 0x7f06015b ++com.wix.detox.test:attr/imageButtonStyle = 0x7f030198 ++com.wix.detox.test:id/tag_on_receive_content_mime_types = 0x7f08016a ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.ActionBar.Surface = 0x7f0e01df ++com.wix.detox.test:attr/multiChoiceItemLayout = 0x7f030264 ++com.wix.detox.test:attr/closeIconStartPadding = 0x7f0300aa ++com.wix.detox.test:dimen/mtrl_calendar_landscape_header_width = 0x7f060102 ++com.wix.detox.test:styleable/Badge = 0x7f0f0012 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderTitle = 0x7f0e029d ++com.wix.detox.test:id/scrollView = 0x7f080134 ++com.wix.detox.test:id/action_mode_bar_stub = 0x7f08003e ++com.wix.detox.test:attr/iconifiedByDefault = 0x7f030197 ++com.wix.detox.test:attr/iconTintMode = 0x7f030196 ++com.wix.detox.test:id/autoCompleteToEnd = 0x7f080050 ++com.wix.detox.test:drawable/$avd_hide_password__0 = 0x7f070000 ++com.wix.detox.test:dimen/mtrl_tooltip_arrowSize = 0x7f06017e ++com.wix.detox.test:style/TextAppearance.AppCompat.Inverse = 0x7f0e013b ++com.wix.detox.test:attr/iconPadding = 0x7f030192 ++com.wix.detox.test:attr/motionDurationLong2 = 0x7f030251 ++com.wix.detox.test:attr/trackColorInactive = 0x7f030365 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabBar = 0x7f0e0222 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.DayNight.BottomSheetDialog = 0x7f0e01ea ++com.wix.detox.test:attr/homeLayout = 0x7f03018c ++com.wix.detox.test:attr/switchStyle = 0x7f0302f8 ++com.wix.detox.test:style/Widget.AppCompat.Toolbar = 0x7f0e024c ++com.wix.detox.test:attr/nestedScrollFlags = 0x7f03026b ++com.wix.detox.test:attr/dropdownListPreferredItemHeight = 0x7f030122 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.Dialog = 0x7f0e01d8 ++com.wix.detox.test:attr/backgroundStacked = 0x7f030044 ++com.wix.detox.test:attr/hintEnabled = 0x7f030188 ++com.wix.detox.test:style/Widget.AppCompat.PopupMenu = 0x7f0e023a ++com.wix.detox.test:dimen/material_filled_edittext_font_2_0_padding_top = 0x7f0600b2 ++com.wix.detox.test:attr/chainUseRtl = 0x7f030080 ++com.wix.detox.test:attr/hintAnimationEnabled = 0x7f030187 ++com.wix.detox.test:attr/popupMenuBackground = 0x7f030294 ++com.wix.detox.test:id/percent = 0x7f08011c ++com.wix.detox.test:attr/tickMark = 0x7f030345 ++com.wix.detox.test:attr/hideOnContentScroll = 0x7f030185 ++com.wix.detox.test:attr/flow_lastHorizontalBias = 0x7f03015e ++com.wix.detox.test:dimen/material_clock_face_margin_top = 0x7f0600a0 ++com.wix.detox.test:id/search_src_text = 0x7f08013e ++com.wix.detox.test:id/navigation_bar_item_large_label_view = 0x7f080104 ++com.wix.detox.test:attr/fontProviderQuery = 0x7f030170 ++com.wix.detox.test:attr/helperTextTextAppearance = 0x7f030181 ++com.wix.detox.test:layout/mtrl_picker_text_input_date = 0x7f0b0055 ++com.wix.detox.test:attr/colorSecondaryVariant = 0x7f0300c7 ++com.wix.detox.test:attr/alertDialogTheme = 0x7f030028 ++com.wix.detox.test:dimen/mtrl_low_ripple_default_alpha = 0x7f06013c ++com.wix.detox.test:attr/haloColor = 0x7f03017b ++com.wix.detox.test:dimen/mtrl_navigation_rail_text_size = 0x7f060151 ++com.wix.detox.test:layout/select_dialog_item_material = 0x7f0b005d ++com.wix.detox.test:dimen/abc_control_corner_material = 0x7f060018 ++com.wix.detox.test:attr/gapBetweenBars = 0x7f030178 ++com.wix.detox.test:attr/framePosition = 0x7f030177 ++com.wix.detox.test:attr/contentPaddingTop = 0x7f0300de ++com.wix.detox.test:attr/foregroundInsidePadding = 0x7f030176 ++com.wix.detox.test:attr/placeholderTextColor = 0x7f030292 ++com.wix.detox.test:integer/config_tooltipAnimTime = 0x7f090005 ++com.wix.detox.test:attr/layout_goneMarginTop = 0x7f0301ff ++com.wix.detox.test:attr/tickColor = 0x7f030342 ++com.wix.detox.test:attr/itemIconPadding = 0x7f0301a8 ++com.wix.detox.test:attr/barrierMargin = 0x7f03004d ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.ActionBar = 0x7f0e01dd ++com.wix.detox.test:attr/popupTheme = 0x7f030296 ++com.wix.detox.test:color/checkbox_themeable_attribute_color = 0x7f05002d ++com.wix.detox.test:attr/behavior_peekHeight = 0x7f030056 ++com.wix.detox.test:dimen/design_bottom_navigation_item_min_width = 0x7f060068 ++com.wix.detox.test:attr/layout_constraintRight_creator = 0x7f0301e7 ++com.wix.detox.test:attr/layout_constraintGuide_end = 0x7f0301db ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Day.Selected = 0x7f0e0293 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Dialog = 0x7f0e0058 ++com.wix.detox.test:dimen/abc_button_inset_horizontal_material = 0x7f060012 ++com.wix.detox.test:attr/fontProviderPackage = 0x7f03016f ++com.wix.detox.test:color/material_slider_active_track_color = 0x7f050076 ++com.wix.detox.test:layout/mtrl_picker_actions = 0x7f0b004d ++com.wix.detox.test:dimen/abc_dialog_corner_radius_material = 0x7f06001b ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense = 0x7f0e01e4 ++com.wix.detox.test:attr/fontProviderCerts = 0x7f03016c ++com.wix.detox.test:attr/buttonTint = 0x7f030076 ++com.wix.detox.test:style/Base.Widget.AppCompat.DrawerArrowToggle.Common = 0x7f0e00b3 ++com.wix.detox.test:id/clip_vertical = 0x7f08006b ++com.wix.detox.test:color/mtrl_btn_bg_color_selector = 0x7f050080 ++com.wix.detox.test:drawable/ic_mtrl_checked_circle = 0x7f070066 ++com.wix.detox.test:color/material_blue_grey_800 = 0x7f05005e ++com.wix.detox.test:dimen/mtrl_badge_horizontal_edge_offset = 0x7f0600c6 ++com.wix.detox.test:dimen/mtrl_chip_text_size = 0x7f06011d ++com.wix.detox.test:attr/motionDebug = 0x7f03024f ++com.wix.detox.test:attr/fontFamily = 0x7f03016a ++com.wix.detox.test:attr/flow_verticalStyle = 0x7f030167 ++com.wix.detox.test:color/design_bottom_navigation_shadow_color = 0x7f05002e ++com.wix.detox.test:color/abc_secondary_text_material_dark = 0x7f050011 ++com.wix.detox.test:attr/flow_padding = 0x7f030163 ++com.wix.detox.test:attr/radioButtonStyle = 0x7f0302a2 ++com.wix.detox.test:animator/linear_indeterminate_line2_head_interpolator = 0x7f02000b ++com.wix.detox.test:id/snackbar_text = 0x7f08014b ++com.wix.detox.test:dimen/mtrl_bottomappbar_fab_bottom_margin = 0x7f0600cf ++com.wix.detox.test:attr/flow_lastVerticalBias = 0x7f030160 ++com.wix.detox.test:attr/collapsedTitleTextAppearance = 0x7f0300b2 ++com.wix.detox.test:attr/thickness = 0x7f030339 ++com.wix.detox.test:style/Widget.AppCompat.Spinner.DropDown.ActionBar = 0x7f0e0248 ++com.wix.detox.test:style/TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f0e0145 ++com.wix.detox.test:attr/flow_horizontalGap = 0x7f03015c ++com.wix.detox.test:dimen/design_bottom_sheet_elevation = 0x7f06006d ++com.wix.detox.test:attr/flow_horizontalBias = 0x7f03015b ++com.wix.detox.test:id/disjoint = 0x7f08008a ++com.wix.detox.test:attr/layout_constraintLeft_toRightOf = 0x7f0301e6 ++com.wix.detox.test:attr/flow_firstVerticalStyle = 0x7f030159 ++com.wix.detox.test:attr/actionBarStyle = 0x7f030005 ++com.wix.detox.test:drawable/abc_btn_switch_to_on_mtrl_00001 = 0x7f070013 ++com.wix.detox.test:dimen/item_touch_helper_swipe_escape_max_velocity = 0x7f06009c ++com.wix.detox.test:attr/paddingTopNoTitle = 0x7f03027e ++com.wix.detox.test:drawable/abc_ic_menu_copy_mtrl_am_alpha = 0x7f070020 ++com.wix.detox.test:styleable/OnClick = 0x7f0f0062 ++com.wix.detox.test:attr/listItemLayout = 0x7f03020f ++com.wix.detox.test:attr/lineSpacing = 0x7f030209 ++com.wix.detox.test:attr/flow_firstHorizontalBias = 0x7f030156 ++com.wix.detox.test:color/test_mtrl_calendar_day_selected = 0x7f0500cb ++com.wix.detox.test:drawable/abc_textfield_default_mtrl_alpha = 0x7f070050 ++com.wix.detox.test:drawable/abc_ic_menu_share_mtrl_alpha = 0x7f070025 ++com.wix.detox.test:dimen/mtrl_badge_toolbar_action_menu_item_vertical_offset = 0x7f0600cc ++com.wix.detox.test:attr/iconTint = 0x7f030195 ++com.wix.detox.test:styleable/PropertySet = 0x7f0f0066 ++com.wix.detox.test:attr/maxVelocity = 0x7f03023f ++com.wix.detox.test:attr/fastScrollVerticalThumbDrawable = 0x7f030152 ++com.wix.detox.test:attr/cornerSizeBottomRight = 0x7f0300eb ++com.wix.detox.test:attr/fabSize = 0x7f03014e ++com.wix.detox.test:id/decor_content_parent = 0x7f08007c ++com.wix.detox.test:attr/color = 0x7f0300b4 ++com.wix.detox.test:attr/saturation = 0x7f0302b0 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Body2 = 0x7f0e0173 ++com.wix.detox.test:attr/fabCradleRoundedCornerRadius = 0x7f03014b ++com.wix.detox.test:dimen/mtrl_extended_fab_corner_radius = 0x7f060123 ++com.wix.detox.test:dimen/abc_alert_dialog_button_dimen = 0x7f060011 ++com.wix.detox.test:attr/expandedTitleMarginTop = 0x7f030143 ++com.wix.detox.test:id/material_minute_text_input = 0x7f0800d6 ++com.wix.detox.test:attr/expandedTitleMarginEnd = 0x7f030141 ++com.wix.detox.test:drawable/abc_list_longpressed_holo = 0x7f07002d ++com.wix.detox.test:attr/layout_constraintTop_toBottomOf = 0x7f0301ee ++com.wix.detox.test:attr/errorTextAppearance = 0x7f030139 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.BarSize = 0x7f0e01bf ++com.wix.detox.test:attr/actionModeCutDrawable = 0x7f030015 ++com.wix.detox.test:style/Theme.MaterialComponents.NoActionBar.Bridge = 0x7f0e01d1 ++com.wix.detox.test:color/mtrl_on_surface_ripple_color = 0x7f0500a3 ++com.wix.detox.test:style/Widget.Design.AppBarLayout = 0x7f0e0250 ++com.wix.detox.test:attr/errorIconTint = 0x7f030137 ++com.wix.detox.test:dimen/material_clock_size = 0x7f0600a8 ++com.wix.detox.test:attr/colorPrimary = 0x7f0300c2 ++com.wix.detox.test:styleable/CircularProgressIndicator = 0x7f0f001c ++com.wix.detox.test:dimen/mtrl_navigation_rail_icon_margin = 0x7f06014d ++com.wix.detox.test:attr/actionBarPopupTheme = 0x7f030002 ++com.wix.detox.test:attr/buttonStyleSmall = 0x7f030075 ++com.wix.detox.test:color/mtrl_chip_surface_color = 0x7f05008e ++com.wix.detox.test:style/Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow = 0x7f0e00dd ++com.wix.detox.test:style/Base.V21.Theme.AppCompat.Dialog = 0x7f0e0082 ++com.wix.detox.test:drawable/abc_star_black_48dp = 0x7f070045 ++com.wix.detox.test:color/notification_icon_bg_color = 0x7f0500b4 ++com.wix.detox.test:attr/backgroundInsetEnd = 0x7f03003f ++com.wix.detox.test:color/abc_hint_foreground_material_dark = 0x7f050007 ++com.wix.detox.test:color/design_box_stroke_color = 0x7f05002f ++com.wix.detox.test:attr/actionBarTabBarStyle = 0x7f030006 ++com.wix.detox.test:attr/expandedTitleMarginStart = 0x7f030142 ++com.wix.detox.test:style/ThemeOverlay.Design.TextInputEditText = 0x7f0e01db ++com.wix.detox.test:attr/measureWithLargestChild = 0x7f030241 ++com.wix.detox.test:dimen/mtrl_fab_translation_z_hovered_focused = 0x7f060135 ++com.wix.detox.test:attr/deriveConstraintsFrom = 0x7f030109 ++com.wix.detox.test:attr/layout_goneMarginEnd = 0x7f0301fb ++com.wix.detox.test:attr/dayTodayStyle = 0x7f030103 ++com.wix.detox.test:attr/shapeAppearanceSmallComponent = 0x7f0302c0 ++com.wix.detox.test:color/mtrl_navigation_bar_ripple_color = 0x7f05009e ++com.wix.detox.test:attr/cardPreventCornerOverlap = 0x7f03007d ++com.wix.detox.test:dimen/mtrl_btn_text_btn_padding_right = 0x7f0600e9 ++com.wix.detox.test:dimen/mtrl_btn_text_btn_padding_left = 0x7f0600e8 ++com.wix.detox.test:style/TestStyleWithLineHeightAppearance = 0x7f0e012c ++com.wix.detox.test:layout/test_design_checkbox = 0x7f0b0063 ++com.wix.detox.test:layout/abc_action_mode_bar = 0x7f0b0004 ++com.wix.detox.test:attr/searchIcon = 0x7f0302b5 ++com.wix.detox.test:attr/elevationOverlayColor = 0x7f030128 ++com.wix.detox.test:color/dim_foreground_material_dark = 0x7f050056 ++com.wix.detox.test:attr/actionBarTabStyle = 0x7f030007 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.Switch = 0x7f0e003e ++com.wix.detox.test:id/action_bar_subtitle = 0x7f080035 ++com.wix.detox.test:dimen/mtrl_calendar_navigation_height = 0x7f060107 ++com.wix.detox.test:dimen/abc_dialog_list_padding_bottom_no_buttons = 0x7f060020 ++com.wix.detox.test:string/material_timepicker_am = 0x7f0d0038 ++com.wix.detox.test:drawable/btn_checkbox_checked_mtrl = 0x7f070057 ++com.wix.detox.test:attr/collapsingToolbarLayoutStyle = 0x7f0300b3 ++com.wix.detox.test:attr/drawerArrowStyle = 0x7f03011f ++com.wix.detox.test:style/Theme.AppCompat.DayNight.Dialog.Alert = 0x7f0e018a ++com.wix.detox.test:attr/maxAcceleration = 0x7f030238 ++com.wix.detox.test:style/Widget.MaterialComponents.Chip.Choice = 0x7f0e027e ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline1 = 0x7f0e0177 ++com.wix.detox.test:attr/drawableRightCompat = 0x7f030119 ++com.wix.detox.test:dimen/mtrl_navigation_item_horizontal_padding = 0x7f060144 ++com.wix.detox.test:string/abc_menu_delete_shortcut_label = 0x7f0d000a ++com.wix.detox.test:attr/controlBackground = 0x7f0300e1 ++com.wix.detox.test:dimen/material_text_view_test_line_height = 0x7f0600b9 ++com.wix.detox.test:attr/drawableBottomCompat = 0x7f030116 ++com.wix.detox.test:dimen/mtrl_badge_text_horizontal_edge_offset = 0x7f0600c9 ++com.wix.detox.test:drawable/abc_list_divider_material = 0x7f07002a ++com.wix.detox.test:attr/drawPath = 0x7f030115 ++com.wix.detox.test:attr/expanded = 0x7f03013c ++com.wix.detox.test:attr/dividerVertical = 0x7f030111 ++com.wix.detox.test:attr/animate_relativeTo = 0x7f03002d ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow = 0x7f0e0106 ++com.wix.detox.test:anim/btn_radio_to_on_mtrl_ring_outer_path_animation = 0x7f010017 ++com.wix.detox.test:dimen/test_navigation_bar_active_item_max_width = 0x7f060194 ++com.wix.detox.test:attr/extraMultilineHeightEnabled = 0x7f030147 ++com.wix.detox.test:xml/standalone_badge_gravity_bottom_start = 0x7f100002 ++com.wix.detox.test:string/mtrl_picker_invalid_range = 0x7f0d004f ++com.wix.detox.test:attr/actionModeTheme = 0x7f03001d ++com.wix.detox.test:anim/abc_slide_out_top = 0x7f010009 ++com.wix.detox.test:id/tag_unhandled_key_listeners = 0x7f08016f ++com.wix.detox.test:attr/deltaPolarRadius = 0x7f030108 ++com.wix.detox.test:attr/defaultDuration = 0x7f030104 ++com.wix.detox.test:attr/itemIconSize = 0x7f0301a9 ++com.wix.detox.test:attr/dayInvalidStyle = 0x7f030100 ++com.wix.detox.test:attr/activityChooserViewStyle = 0x7f030024 ++com.wix.detox.test:attr/chipStrokeWidth = 0x7f03009c ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.Bridge = 0x7f0e01ad ++com.wix.detox.test:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f0e0046 ++com.wix.detox.test:attr/submitBackground = 0x7f0302ec ++com.wix.detox.test:id/mtrl_calendar_text_input_frame = 0x7f0800f1 ++com.wix.detox.test:animator/fragment_open_exit = 0x7f020008 ++com.wix.detox.test:attr/iconSize = 0x7f030193 ++com.wix.detox.test:attr/titleMarginTop = 0x7f030353 ++com.wix.detox.test:attr/customPixelDimension = 0x7f0300fe ++com.wix.detox.test:attr/closeIconTint = 0x7f0300ab ++com.wix.detox.test:attr/checkedButton = 0x7f030082 ++com.wix.detox.test:color/bright_foreground_inverse_material_dark = 0x7f050023 ++com.wix.detox.test:style/Widget.MaterialComponents.Snackbar.TextView = 0x7f0e02b5 ++com.wix.detox.test:style/Platform.MaterialComponents = 0x7f0e00f4 ++com.wix.detox.test:attr/colorBackgroundFloating = 0x7f0300b6 ++com.wix.detox.test:dimen/cardview_default_radius = 0x7f060055 ++com.wix.detox.test:style/TextAppearance.Design.Placeholder = 0x7f0e016c ++com.wix.detox.test:color/mtrl_fab_icon_text_color_selector = 0x7f050095 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat = 0x7f0e0013 ++com.wix.detox.test:attr/crossfade = 0x7f0300f4 ++com.wix.detox.test:attr/contentPaddingStart = 0x7f0300dd ++com.wix.detox.test:style/TextAppearance.Design.Tab = 0x7f0e0170 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Display1 = 0x7f0e0018 ++com.wix.detox.test:attr/cornerSizeBottomLeft = 0x7f0300ea ++com.wix.detox.test:id/jumpToEnd = 0x7f0800c1 ++com.wix.detox.test:id/BOTTOM_END = 0x7f080001 ++com.wix.detox.test:attr/cardUseCompatPadding = 0x7f03007e ++com.wix.detox.test:dimen/abc_text_size_display_1_material = 0x7f060043 ++com.wix.detox.test:attr/alertDialogStyle = 0x7f030027 ++com.wix.detox.test:attr/maxCharacterCount = 0x7f03023b ++com.wix.detox.test:attr/daySelectedStyle = 0x7f030101 ++com.wix.detox.test:style/Base.V23.Theme.AppCompat.Light = 0x7f0e008e ++com.wix.detox.test:attr/cornerSize = 0x7f0300e9 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomSheet.Modal = 0x7f0e026e ++com.wix.detox.test:attr/endIconDrawable = 0x7f03012d ++com.wix.detox.test:attr/textEndPadding = 0x7f030332 ++com.wix.detox.test:id/SYM = 0x7f08000b ++com.wix.detox.test:dimen/test_navigation_bar_icon_size = 0x7f060199 ++com.wix.detox.test:id/checkbox = 0x7f080060 ++com.wix.detox.test:animator/fragment_close_enter = 0x7f020003 ++com.wix.detox.test:drawable/notification_bg_low = 0x7f070081 ++com.wix.detox.test:layout/material_clock_period_toggle = 0x7f0b002f ++com.wix.detox.test:attr/cornerFamilyBottomRight = 0x7f0300e5 ++com.wix.detox.test:attr/contentInsetRight = 0x7f0300d5 ++com.wix.detox.test:layout/mtrl_calendar_month = 0x7f0b0044 ++com.wix.detox.test:attr/indicatorDirectionCircular = 0x7f03019c ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection = 0x7f0e029b ++com.wix.detox.test:attr/contentPaddingRight = 0x7f0300dc ++com.wix.detox.test:interpolator/btn_radio_to_on_mtrl_animation_interpolator_0 = 0x7f0a0005 ++com.wix.detox.test:dimen/mtrl_navigation_bar_item_default_icon_size = 0x7f060141 ++com.wix.detox.test:dimen/design_snackbar_padding_horizontal = 0x7f060086 ++com.wix.detox.test:attr/counterTextAppearance = 0x7f0300f2 ++com.wix.detox.test:attr/contentInsetStartWithNavigation = 0x7f0300d7 ++com.wix.detox.test:attr/queryBackground = 0x7f03029f ++com.wix.detox.test:attr/contentInsetLeft = 0x7f0300d4 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Subtitle1 = 0x7f0e017e ++com.wix.detox.test:attr/counterOverflowTextAppearance = 0x7f0300f0 ++com.wix.detox.test:dimen/design_bottom_navigation_active_item_max_width = 0x7f060061 ++com.wix.detox.test:style/Theme.AppCompat.Light.Dialog.Alert = 0x7f0e0196 ++com.wix.detox.test:attr/contentInsetEndWithActions = 0x7f0300d3 ++com.wix.detox.test:attr/layout = 0x7f0301c4 ++com.wix.detox.test:style/Base.V26.Widget.AppCompat.Toolbar = 0x7f0e0091 ++com.wix.detox.test:attr/flow_maxElementsWrap = 0x7f030162 ++com.wix.detox.test:id/sawtooth = 0x7f08012e ++com.wix.detox.test:attr/constraintSetStart = 0x7f0300cd ++com.wix.detox.test:attr/buttonBarButtonStyle = 0x7f03006b ++com.wix.detox.test:attr/constraintSet = 0x7f0300cb ++com.wix.detox.test:color/abc_background_cache_hint_selector_material_light = 0x7f050001 ++com.wix.detox.test:dimen/tooltip_precise_anchor_extra_offset = 0x7f0601a2 ++com.wix.detox.test:attr/commitIcon = 0x7f0300ca ++com.wix.detox.test:id/jumpToStart = 0x7f0800c2 ++com.wix.detox.test:attr/colorSwitchThumbNormal = 0x7f0300c9 ++com.wix.detox.test:style/Base.Widget.AppCompat.CompoundButton.Switch = 0x7f0e00b1 ++com.wix.detox.test:string/material_clock_toggle_content_description = 0x7f0d002c ++com.wix.detox.test:dimen/mtrl_slider_label_square_side = 0x7f060166 ++com.wix.detox.test:string/mtrl_picker_text_input_year_abbr = 0x7f0d005d ++com.wix.detox.test:layout/design_navigation_item_subheader = 0x7f0b0027 ++com.wix.detox.test:dimen/mtrl_calendar_content_padding = 0x7f0600f0 ++com.wix.detox.test:attr/layout_constraintCircleAngle = 0x7f0301d5 ++com.wix.detox.test:attr/colorSecondary = 0x7f0300c6 ++com.wix.detox.test:attr/materialCardViewStyle = 0x7f030232 ++com.wix.detox.test:attr/borderWidth = 0x7f030059 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f0e0067 ++com.wix.detox.test:attr/colorPrimaryVariant = 0x7f0300c5 ++com.wix.detox.test:attr/deltaPolarAngle = 0x7f030107 ++com.wix.detox.test:attr/state_lifted = 0x7f0302e5 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Dialog = 0x7f0e0062 ++com.wix.detox.test:attr/colorControlNormal = 0x7f0300ba ++com.wix.detox.test:attr/mock_labelColor = 0x7f03024c ++com.wix.detox.test:attr/constraint_referenced_ids = 0x7f0300ce ++com.wix.detox.test:attr/materialCalendarMonth = 0x7f03022d ++com.wix.detox.test:dimen/abc_panel_menu_list_width = 0x7f060034 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Bridge = 0x7f0e0056 ++com.wix.detox.test:id/mini = 0x7f0800e2 ++com.wix.detox.test:attr/state_above_anchor = 0x7f0302e0 ++com.wix.detox.test:dimen/abc_cascading_menus_min_smallest_width = 0x7f060016 ++com.wix.detox.test:style/Base.V26.Theme.AppCompat = 0x7f0e008f ++com.wix.detox.test:dimen/mtrl_calendar_bottom_padding = 0x7f0600ef ++com.wix.detox.test:attr/chipBackgroundColor = 0x7f03008b ++com.wix.detox.test:id/startHorizontal = 0x7f08015a ++com.wix.detox.test:attr/contentInsetEnd = 0x7f0300d2 ++com.wix.detox.test:style/Base.Widget.AppCompat.ListView.Menu = 0x7f0e00c3 ++com.wix.detox.test:id/endToStart = 0x7f080098 ++com.wix.detox.test:attr/drawerLayoutStyle = 0x7f030120 ++com.wix.detox.test:attr/collapsedSize = 0x7f0300b0 ++com.wix.detox.test:style/Animation.AppCompat.Dialog = 0x7f0e0003 ++com.wix.detox.test:attr/closeIconVisible = 0x7f0300ac ++com.wix.detox.test:dimen/material_cursor_inset_top = 0x7f0600aa ++com.wix.detox.test:dimen/notification_small_icon_background_padding = 0x7f06018e ++com.wix.detox.test:id/accessibility_custom_action_9 = 0x7f08002f ++com.wix.detox.test:attr/closeIconSize = 0x7f0300a9 ++com.wix.detox.test:attr/clockIcon = 0x7f0300a4 ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationRailView = 0x7f0e02a6 ++com.wix.detox.test:attr/clockFaceBackgroundColor = 0x7f0300a2 ++com.wix.detox.test:id/accessibility_custom_action_4 = 0x7f08002a ++com.wix.detox.test:styleable/MockView = 0x7f0f0059 ++com.wix.detox.test:attr/expandedHintEnabled = 0x7f03013d ++com.wix.detox.test:attr/motionStagger = 0x7f03025f ++com.wix.detox.test:integer/mtrl_card_anim_delay_ms = 0x7f090016 ++com.wix.detox.test:attr/circularProgressIndicatorStyle = 0x7f0300a0 ++com.wix.detox.test:attr/layout_anchor = 0x7f0301c8 ++com.wix.detox.test:attr/useCompatPadding = 0x7f030374 ++com.wix.detox.test:anim/design_bottom_sheet_slide_in = 0x7f010018 ++com.wix.detox.test:attr/behavior_autoHide = 0x7f03004e ++com.wix.detox.test:attr/constraints = 0x7f0300cf ++com.wix.detox.test:attr/layout_scrollInterpolator = 0x7f030204 ++com.wix.detox.test:color/design_snackbar_background_color = 0x7f050053 ++com.wix.detox.test:attr/chipIconEnabled = 0x7f030090 ++com.wix.detox.test:drawable/navigation_empty_icon = 0x7f07007e ++com.wix.detox.test:style/Widget.MaterialComponents.Light.ActionBar.Solid = 0x7f0e028d ++com.wix.detox.test:animator/mtrl_fab_transformation_sheet_collapse_spec = 0x7f020018 ++com.wix.detox.test:attr/helperTextEnabled = 0x7f030180 ++com.wix.detox.test:attr/buttonGravity = 0x7f030071 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f0e0034 ++com.wix.detox.test:id/search_bar = 0x7f080137 ++com.wix.detox.test:attr/prefixText = 0x7f030298 ++com.wix.detox.test:drawable/abc_ic_menu_overflow_material = 0x7f070022 ++com.wix.detox.test:attr/alertDialogCenterButtons = 0x7f030026 ++com.wix.detox.test:style/Base.V21.Theme.AppCompat.Light = 0x7f0e0083 ++com.wix.detox.test:attr/animationMode = 0x7f03002e ++com.wix.detox.test:style/TextAppearance.AppCompat.Light.SearchResult.Subtitle = 0x7f0e013e ++com.wix.detox.test:dimen/material_clock_hand_padding = 0x7f0600a2 ++com.wix.detox.test:dimen/mtrl_high_ripple_default_alpha = 0x7f060137 ++com.wix.detox.test:dimen/design_bottom_sheet_peek_height_min = 0x7f06006f ++com.wix.detox.test:attr/flow_verticalBias = 0x7f030165 ++com.wix.detox.test:attr/checkedIconMargin = 0x7f030086 ++com.wix.detox.test:layout/abc_action_menu_item_layout = 0x7f0b0002 ++com.wix.detox.test:attr/endIconCheckable = 0x7f03012b ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationView = 0x7f0e02ab ++com.wix.detox.test:drawable/ic_mtrl_chip_close_circle = 0x7f070069 ++com.wix.detox.test:attr/checkedIconVisible = 0x7f030089 ++com.wix.detox.test:attr/numericModifiers = 0x7f03026f ++com.wix.detox.test:color/mtrl_calendar_selected_range = 0x7f050089 ++com.wix.detox.test:style/Widget.AppCompat.SearchView.ActionBar = 0x7f0e0243 ++com.wix.detox.test:attr/singleLine = 0x7f0302cc ++com.wix.detox.test:attr/autoSizePresetSizes = 0x7f030038 ++com.wix.detox.test:style/Widget.AppCompat.TextView = 0x7f0e024a ++com.wix.detox.test:attr/checkedChip = 0x7f030083 ++com.wix.detox.test:styleable/LinearProgressIndicator = 0x7f0f0045 ++com.wix.detox.test:id/dragDown = 0x7f08008b ++com.wix.detox.test:dimen/design_snackbar_elevation = 0x7f060082 ++com.wix.detox.test:animator/linear_indeterminate_line1_tail_interpolator = 0x7f02000a ++com.wix.detox.test:attr/boxCornerRadiusBottomEnd = 0x7f030062 ++com.wix.detox.test:id/mtrl_calendar_frame = 0x7f0800ed ++com.wix.detox.test:attr/hideOnScroll = 0x7f030186 ++com.wix.detox.test:attr/actionModeStyle = 0x7f03001c ++com.wix.detox.test:attr/boxStrokeErrorColor = 0x7f030067 ++com.wix.detox.test:attr/insetForeground = 0x7f0301a1 ++com.wix.detox.test:attr/boxStrokeColor = 0x7f030066 ++com.wix.detox.test:attr/rangeFillColor = 0x7f0302a3 ++com.wix.detox.test:attr/cardBackgroundColor = 0x7f030078 ++com.wix.detox.test:anim/mtrl_bottom_sheet_slide_in = 0x7f01001d ++com.wix.detox.test:attr/cardElevation = 0x7f03007a ++com.wix.detox.test:attr/itemMaxLines = 0x7f0301ab ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Overline = 0x7f0e017d ++com.wix.detox.test:id/search_go_btn = 0x7f08013b ++com.wix.detox.test:attr/boxCornerRadiusTopEnd = 0x7f030064 ++com.wix.detox.test:style/Widget.AppCompat.Light.ListView.DropDown = 0x7f0e0230 ++com.wix.detox.test:dimen/mtrl_extended_fab_translation_z_pressed = 0x7f060132 ++com.wix.detox.test:id/text_input_end_icon = 0x7f08017c ++com.wix.detox.test:id/end = 0x7f080097 ++com.wix.detox.test:attr/actionViewClass = 0x7f030023 ++com.wix.detox.test:attr/chipSurfaceColor = 0x7f03009e ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionBar = 0x7f0e009c ++com.wix.detox.test:attr/bottomSheetStyle = 0x7f03005e ++com.wix.detox.test:attr/gestureInsetBottomIgnored = 0x7f030179 ++com.wix.detox.test:anim/btn_radio_to_off_mtrl_ring_outer_path_animation = 0x7f010014 ++com.wix.detox.test:attr/thumbStrokeColor = 0x7f03033d ++com.wix.detox.test:color/design_fab_stroke_end_outer_color = 0x7f05004f ++com.wix.detox.test:attr/expandedTitleGravity = 0x7f03013e ++com.wix.detox.test:color/mtrl_tabs_icon_color_selector = 0x7f0500a9 ++com.wix.detox.test:attr/materialCalendarHeaderLayout = 0x7f030229 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Body2 = 0x7f0e0015 ++com.wix.detox.test:attr/badgeGravity = 0x7f030047 ++com.wix.detox.test:attr/layout_collapseParallaxMultiplier = 0x7f0301cc ++com.wix.detox.test:styleable/Toolbar = 0x7f0f0080 ++com.wix.detox.test:attr/contentPaddingEnd = 0x7f0300da ++com.wix.detox.test:styleable/AppCompatTextView = 0x7f0f0010 ++com.wix.detox.test:attr/bottomAppBarStyle = 0x7f03005b ++com.wix.detox.test:drawable/abc_dialog_material_background = 0x7f070019 ++com.wix.detox.test:dimen/abc_list_item_padding_horizontal_material = 0x7f060033 ++com.wix.detox.test:attr/behavior_saveFlags = 0x7f030057 ++com.wix.detox.test:attr/motionDurationShort2 = 0x7f030255 ++com.wix.detox.test:style/Theme.AppCompat.DayNight.Dialog = 0x7f0e0189 ++com.wix.detox.test:dimen/compat_notification_large_icon_max_width = 0x7f06005d ++com.wix.detox.test:attr/actionModeSplitBackground = 0x7f03001b ++com.wix.detox.test:attr/applyMotionScene = 0x7f030030 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.Bridge = 0x7f0e01b8 ++com.wix.detox.test:attr/layout_constrainedWidth = 0x7f0301ce ++com.wix.detox.test:attr/duration = 0x7f030123 ++com.wix.detox.test:id/SHOW_PROGRESS = 0x7f08000a ++com.wix.detox.test:anim/abc_slide_out_bottom = 0x7f010008 ++com.wix.detox.test:attr/showAnimationBehavior = 0x7f0302c2 ++com.wix.detox.test:string/password_toggle_content_description = 0x7f0d0062 ++com.wix.detox.test:id/visible_removing_fragment_view_tag = 0x7f08019f ++com.wix.detox.test:attr/customDimension = 0x7f0300fa ++com.wix.detox.test:dimen/tooltip_margin = 0x7f0601a1 ++com.wix.detox.test:animator/linear_indeterminate_line2_tail_interpolator = 0x7f02000c ++com.wix.detox.test:style/Widget.AppCompat.PopupMenu.Overflow = 0x7f0e023b ++com.wix.detox.test:style/TextAppearance.AppCompat.Caption = 0x7f0e0135 ++com.wix.detox.test:attr/textAppearanceSearchResultTitle = 0x7f03032c ++com.wix.detox.test:attr/contentDescription = 0x7f0300d1 ++com.wix.detox.test:attr/barrierDirection = 0x7f03004c ++com.wix.detox.test:dimen/abc_search_view_preferred_height = 0x7f060036 ++com.wix.detox.test:style/Widget.Design.BottomSheet.Modal = 0x7f0e0252 ++com.wix.detox.test:string/mtrl_picker_text_input_date_range_end_hint = 0x7f0d0059 ++com.wix.detox.test:attr/paddingRightSystemWindowInsets = 0x7f03027c ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.Button.Colored = 0x7f0e0038 ++com.wix.detox.test:id/all = 0x7f080046 ++com.wix.detox.test:style/Base.Widget.AppCompat.PopupWindow = 0x7f0e00c6 ++com.wix.detox.test:attr/layout_constraintEnd_toStartOf = 0x7f0301d9 ++com.wix.detox.test:anim/mtrl_bottom_sheet_slide_out = 0x7f01001e ++com.wix.detox.test:attr/colorPrimaryDark = 0x7f0300c3 ++com.wix.detox.test:id/notification_main_column = 0x7f08010c ++com.wix.detox.test:dimen/mtrl_extended_fab_disabled_translation_z = 0x7f060125 ++com.wix.detox.test:anim/btn_radio_to_on_mtrl_ring_outer_animation = 0x7f010016 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.PopupMenu.Overflow = 0x7f0e00de ++com.wix.detox.test:string/mtrl_badge_numberless_content_description = 0x7f0d003f ++com.wix.detox.test:attr/layout_goneMarginStart = 0x7f0301fe ++com.wix.detox.test:dimen/mtrl_alert_dialog_background_inset_top = 0x7f0600c4 ++com.wix.detox.test:color/background_floating_material_dark = 0x7f05001d ++com.wix.detox.test:styleable/FloatingActionButton_Behavior_Layout = 0x7f0f002f ++com.wix.detox.test:attr/itemStrokeColor = 0x7f0301b6 ++com.wix.detox.test:attr/defaultState = 0x7f030106 ++com.wix.detox.test:attr/region_widthLessThan = 0x7f0302aa ++com.wix.detox.test:string/abc_menu_ctrl_shortcut_label = 0x7f0d0009 ++com.wix.detox.test:attr/chipMinTouchTargetSize = 0x7f030095 ++com.wix.detox.test:color/material_cursor_color = 0x7f050061 ++com.wix.detox.test:attr/errorTextColor = 0x7f03013a ++com.wix.detox.test:attr/autoSizeStepGranularity = 0x7f030039 ++com.wix.detox.test:attr/autoSizeMaxTextSize = 0x7f030036 ++com.wix.detox.test:drawable/abc_text_cursor_material = 0x7f07004b ++com.wix.detox.test:attr/layout_constraintCircle = 0x7f0301d4 ++com.wix.detox.test:color/mtrl_indicator_text_color = 0x7f05009a ++com.wix.detox.test:attr/appBarLayoutStyle = 0x7f03002f ++com.wix.detox.test:attr/fontWeight = 0x7f030174 ++com.wix.detox.test:dimen/mtrl_tooltip_padding = 0x7f060182 ++com.wix.detox.test:attr/alpha = 0x7f03002a ++com.wix.detox.test:style/Theme.AppCompat.DayNight = 0x7f0e0187 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f0e015d ++com.wix.detox.test:color/mtrl_fab_ripple_color = 0x7f050096 ++com.wix.detox.test:attr/drawableLeftCompat = 0x7f030118 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton.Icon = 0x7f0e0277 ++com.wix.detox.test:attr/hoveredFocusedTranslationZ = 0x7f03018e ++com.wix.detox.test:attr/allowStacking = 0x7f030029 ++com.wix.detox.test:attr/showTitle = 0x7f0302c9 ++com.wix.detox.test:attr/actionModeWebSearchDrawable = 0x7f03001e ++com.wix.detox.test:dimen/action_bar_size = 0x7f060051 ++com.wix.detox.test:attr/actionModeCloseButtonStyle = 0x7f030011 ++com.wix.detox.test:id/ghost_view_holder = 0x7f0800aa ++com.wix.detox.test:id/view_tree_view_model_store_owner = 0x7f08019d ++com.wix.detox.test:id/graph_wrap = 0x7f0800ad ++com.wix.detox.test:attr/colorOnPrimarySurface = 0x7f0300bf ++com.wix.detox.test:id/center_horizontal = 0x7f08005c ++com.wix.detox.test:attr/actionDropDownStyle = 0x7f03000c ++com.wix.detox.test:string/mtrl_chip_close_icon_content_description = 0x7f0d0040 ++com.wix.detox.test:attr/cardForegroundColor = 0x7f03007b ++com.wix.detox.test:style/Theme.AppCompat.Dialog.Alert = 0x7f0e018f ++com.wix.detox.test:string/abc_menu_sym_shortcut_label = 0x7f0d0010 ++com.wix.detox.test:attr/actionModeCloseDrawable = 0x7f030013 ++com.wix.detox.test:attr/shrinkMotionSpec = 0x7f0302ca ++com.wix.detox.test:attr/onTouchUp = 0x7f030275 ++com.wix.detox.test:attr/showDividers = 0x7f0302c5 ++com.wix.detox.test:attr/endIconTintMode = 0x7f030130 ++com.wix.detox.test:drawable/abc_edit_text_material = 0x7f07001a ++com.wix.detox.test:color/primary_text_disabled_material_dark = 0x7f0500bb ++com.wix.detox.test:dimen/abc_text_size_large_material = 0x7f060048 ++com.wix.detox.test:anim/btn_radio_to_off_mtrl_ring_outer_animation = 0x7f010013 ++com.wix.detox.test:dimen/notification_top_pad_large_text = 0x7f060192 ++com.wix.detox.test:attr/flow_firstVerticalBias = 0x7f030158 ++com.wix.detox.test:string/mtrl_picker_range_header_unselected = 0x7f0d0056 ++com.wix.detox.test:attr/clickAction = 0x7f0300a1 ++com.wix.detox.test:attr/pressedTranslationZ = 0x7f03029c ++com.wix.detox.test:dimen/mtrl_calendar_header_selection_line_height = 0x7f0600fe ++com.wix.detox.test:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f0a0001 ++com.wix.detox.test:integer/hide_password_duration = 0x7f090008 ++com.wix.detox.test:animator/mtrl_extended_fab_state_list_animator = 0x7f020015 ++com.wix.detox.test:anim/design_snackbar_in = 0x7f01001a ++com.wix.detox.test:id/transition_layout_save = 0x7f080190 ++com.wix.detox.test:attr/waveDecay = 0x7f03037c ++com.wix.detox.test:color/mtrl_tabs_legacy_text_color_selector = 0x7f0500ab ++com.wix.detox.test:attr/actionModePopupWindowStyle = 0x7f030018 ++com.wix.detox.test:color/button_material_light = 0x7f050028 ++com.wix.detox.test:style/Widget.AppCompat.SeekBar.Discrete = 0x7f0e0245 ++com.wix.detox.test:integer/status_bar_notification_info_maxnum = 0x7f09001b ++com.wix.detox.test:dimen/mtrl_calendar_day_today_stroke = 0x7f0600f4 ++com.wix.detox.test:attr/curveFit = 0x7f0300f6 ++com.wix.detox.test:style/TextAppearance.AppCompat.Body2 = 0x7f0e0133 ++com.wix.detox.test:string/mtrl_picker_cancel = 0x7f0d0046 ++com.wix.detox.test:animator/fragment_open_enter = 0x7f020007 ++com.wix.detox.test:id/accessibility_custom_action_14 = 0x7f080016 ++com.wix.detox.test:attr/customBoolean = 0x7f0300f7 ++com.wix.detox.test:animator/fragment_fade_exit = 0x7f020006 ++com.wix.detox.test:style/Widget.MaterialComponents.ProgressIndicator = 0x7f0e02b0 ++com.wix.detox.test:attr/layout_constraintWidth_min = 0x7f0301f5 ++com.wix.detox.test:attr/layout_constraintTop_toTopOf = 0x7f0301ef ++com.wix.detox.test:string/mtrl_picker_toggle_to_calendar_input_mode = 0x7f0d005e ++com.wix.detox.test:style/Widget.MaterialComponents.CompoundButton.CheckBox = 0x7f0e0287 ++com.wix.detox.test:attr/actionProviderClass = 0x7f030021 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomNavigationView.Colored = 0x7f0e026b ++com.wix.detox.test:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox = 0x7f0e0264 ++com.wix.detox.test:attr/errorIconTintMode = 0x7f030138 ++com.wix.detox.test:attr/windowMinWidthMajor = 0x7f030388 ++com.wix.detox.test:attr/maxHeight = 0x7f03023c ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Caption = 0x7f0e0017 ++com.wix.detox.test:style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f0e0182 ++com.wix.detox.test:attr/headerLayout = 0x7f03017d ++com.wix.detox.test:dimen/mtrl_calendar_selection_text_baseline_to_bottom_fullscreen = 0x7f06010c ++com.wix.detox.test:attr/behavior_fitToContents = 0x7f030052 ++com.wix.detox.test:attr/fastScrollHorizontalTrackDrawable = 0x7f030151 ++com.wix.detox.test:attr/customColorValue = 0x7f0300f9 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light = 0x7f0e005e ++com.wix.detox.test:attr/pivotAnchor = 0x7f03028f ++com.wix.detox.test:drawable/abc_ab_share_pack_mtrl_alpha = 0x7f070006 ++com.wix.detox.test:attr/textAppearanceHeadline4 = 0x7f030321 ++com.wix.detox.test:attr/percentWidth = 0x7f03028b ++com.wix.detox.test:style/Base.Widget.AppCompat.Button.Small = 0x7f0e00ac ++com.wix.detox.test:attr/shapeAppearanceOverlay = 0x7f0302bf ++com.wix.detox.test:attr/indeterminateProgressStyle = 0x7f03019a ++com.wix.detox.test:animator/mtrl_fab_show_motion_spec = 0x7f020017 ++com.wix.detox.test:attr/tabIconTint = 0x7f0302fd ++com.wix.detox.test:color/design_dark_default_color_on_error = 0x7f050033 ++com.wix.detox.test:dimen/mtrl_navigation_bar_item_default_margin = 0x7f060142 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush = 0x7f0e0275 ++com.wix.detox.test:string/fab_transformation_scrim_behavior = 0x7f0d0026 ++com.wix.detox.test:dimen/mtrl_navigation_item_icon_size = 0x7f060146 ++com.wix.detox.test:dimen/mtrl_btn_max_width = 0x7f0600df ++com.wix.detox.test:dimen/mtrl_progress_circular_track_thickness_small = 0x7f06015d ++com.wix.detox.test:attr/actionMenuTextColor = 0x7f03000f ++com.wix.detox.test:style/TextAppearance.AppCompat.Display4 = 0x7f0e0139 ++com.wix.detox.test:dimen/design_tab_max_width = 0x7f06008a ++com.wix.detox.test:anim/abc_shrink_fade_out_from_bottom = 0x7f010005 ++com.wix.detox.test:string/mtrl_picker_out_of_range = 0x7f0d0051 ++com.wix.detox.test:attr/motionTarget = 0x7f030260 +diff --git a/node_modules/detox/android/detox/build/intermediates/stable_resource_ids_file/fullDebugAndroidTest/processFullDebugAndroidTestResources/stableIds.txt b/node_modules/detox/android/detox/build/intermediates/stable_resource_ids_file/fullDebugAndroidTest/processFullDebugAndroidTestResources/stableIds.txt +new file mode 100644 +index 0000000..ba75333 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/stable_resource_ids_file/fullDebugAndroidTest/processFullDebugAndroidTestResources/stableIds.txt +@@ -0,0 +1,3285 @@ ++com.wix.detox.test:xml/standalone_badge_gravity_bottom_end = 0x7f100001 ++com.wix.detox.test:xml/standalone_badge = 0x7f100000 ++com.wix.detox.test:styleable/ViewStubCompat = 0x7f0f0088 ++com.wix.detox.test:styleable/View = 0x7f0f0085 ++com.wix.detox.test:styleable/Variant = 0x7f0f0084 ++com.wix.detox.test:styleable/Transition = 0x7f0f0083 ++com.wix.detox.test:styleable/Transform = 0x7f0f0082 ++com.wix.detox.test:styleable/Tooltip = 0x7f0f0081 ++com.wix.detox.test:styleable/TextInputLayout = 0x7f0f007e ++com.wix.detox.test:styleable/TextInputEditText = 0x7f0f007d ++com.wix.detox.test:styleable/TextAppearance = 0x7f0f007c ++com.wix.detox.test:styleable/TabLayout = 0x7f0f007b ++com.wix.detox.test:styleable/TabItem = 0x7f0f007a ++com.wix.detox.test:styleable/StateSet = 0x7f0f0077 ++com.wix.detox.test:styleable/StateListDrawableItem = 0x7f0f0076 ++com.wix.detox.test:styleable/State = 0x7f0f0074 ++com.wix.detox.test:styleable/Spinner = 0x7f0f0073 ++com.wix.detox.test:styleable/SnackbarLayout = 0x7f0f0072 ++com.wix.detox.test:styleable/ShapeableImageView = 0x7f0f006f ++com.wix.detox.test:styleable/ShapeAppearance = 0x7f0f006e ++com.wix.detox.test:styleable/SearchView = 0x7f0f006d ++com.wix.detox.test:styleable/ScrimInsetsFrameLayout = 0x7f0f006b ++com.wix.detox.test:styleable/RecyclerView = 0x7f0f006a ++com.wix.detox.test:styleable/RecycleListView = 0x7f0f0069 ++com.wix.detox.test:styleable/RangeSlider = 0x7f0f0068 ++com.wix.detox.test:styleable/PopupWindow = 0x7f0f0064 ++com.wix.detox.test:styleable/OnSwipe = 0x7f0f0063 ++com.wix.detox.test:styleable/NavigationView = 0x7f0f0061 ++com.wix.detox.test:styleable/NavigationRailView = 0x7f0f0060 ++com.wix.detox.test:styleable/NavigationBarView = 0x7f0f005f ++com.wix.detox.test:styleable/MotionScene = 0x7f0f005d ++com.wix.detox.test:styleable/Motion = 0x7f0f005a ++com.wix.detox.test:styleable/MenuItem = 0x7f0f0057 ++com.wix.detox.test:styleable/MaterialToolbar = 0x7f0f0055 ++com.wix.detox.test:styleable/MaterialTextView = 0x7f0f0053 ++com.wix.detox.test:styleable/MaterialTextAppearance = 0x7f0f0052 ++com.wix.detox.test:styleable/MaterialCheckBox = 0x7f0f004f ++com.wix.detox.test:styleable/MaterialCardView = 0x7f0f004e ++com.wix.detox.test:styleable/MaterialCalendarItem = 0x7f0f004d ++com.wix.detox.test:styleable/MaterialCalendar = 0x7f0f004c ++com.wix.detox.test:styleable/MaterialButtonToggleGroup = 0x7f0f004b ++com.wix.detox.test:styleable/MaterialButton = 0x7f0f004a ++com.wix.detox.test:styleable/MaterialAutoCompleteTextView = 0x7f0f0049 ++com.wix.detox.test:styleable/MaterialAlertDialogTheme = 0x7f0f0048 ++com.wix.detox.test:styleable/MaterialAlertDialog = 0x7f0f0047 ++com.wix.detox.test:styleable/LinearLayoutCompat_Layout = 0x7f0f0044 ++com.wix.detox.test:styleable/Layout = 0x7f0f0042 ++com.wix.detox.test:styleable/KeyTrigger = 0x7f0f0041 ++com.wix.detox.test:styleable/KeyTimeCycle = 0x7f0f0040 ++com.wix.detox.test:styleable/KeyFramesVelocity = 0x7f0f003e ++com.wix.detox.test:styleable/KeyFramesAcceleration = 0x7f0f003d ++com.wix.detox.test:styleable/KeyFrame = 0x7f0f003c ++com.wix.detox.test:styleable/ImageFilterView = 0x7f0f0038 ++com.wix.detox.test:styleable/GradientColor = 0x7f0f0036 ++com.wix.detox.test:attr/scrimVisibleHeightTrigger = 0x7f0302b3 ++com.wix.detox.test:dimen/mtrl_extended_fab_start_padding = 0x7f06012d ++com.wix.detox.test:styleable/Fragment = 0x7f0f0034 ++com.wix.detox.test:styleable/FontFamilyFont = 0x7f0f0032 ++com.wix.detox.test:styleable/FlowLayout = 0x7f0f0030 ++com.wix.detox.test:drawable/btn_radio_on_to_off_mtrl_animation = 0x7f07005e ++com.wix.detox.test:styleable/DrawerLayout = 0x7f0f002b ++com.wix.detox.test:styleable/FloatingActionButton = 0x7f0f002e ++com.wix.detox.test:styleable/ExtendedFloatingActionButton_Behavior_Layout = 0x7f0f002d ++com.wix.detox.test:styleable/DrawerArrowToggle = 0x7f0f002a ++com.wix.detox.test:id/linear = 0x7f0800c9 ++com.wix.detox.test:styleable/CustomAttribute = 0x7f0f0029 ++com.wix.detox.test:style/Base.Widget.AppCompat.ListMenuView = 0x7f0e00bf ++com.wix.detox.test:styleable/CoordinatorLayout = 0x7f0f0027 ++com.wix.detox.test:attr/sliderStyle = 0x7f0302cf ++com.wix.detox.test:attr/itemHorizontalPadding = 0x7f0301a6 ++com.wix.detox.test:styleable/ConstraintSet = 0x7f0f0026 ++com.wix.detox.test:styleable/Constraint = 0x7f0f0023 ++com.wix.detox.test:attr/actionTextColorAlpha = 0x7f030022 ++com.wix.detox.test:styleable/ChipGroup = 0x7f0f001b ++com.wix.detox.test:styleable/BottomNavigationView = 0x7f0f0015 ++com.wix.detox.test:styleable/AppCompatTheme = 0x7f0f0011 ++com.wix.detox.test:styleable/AppCompatSeekBar = 0x7f0f000e ++com.wix.detox.test:layout/mtrl_picker_header_title_text = 0x7f0b0053 ++com.wix.detox.test:styleable/AppBarLayout = 0x7f0f000a ++com.wix.detox.test:attr/windowActionBar = 0x7f030381 ++com.wix.detox.test:dimen/notification_main_column_padding_top = 0x7f06018a ++com.wix.detox.test:styleable/ActionMode = 0x7f0f0004 ++com.wix.detox.test:id/disableHome = 0x7f080087 ++com.wix.detox.test:styleable/ActionMenuView = 0x7f0f0003 ++com.wix.detox.test:attr/thumbTextPadding = 0x7f03033f ++com.wix.detox.test:styleable/ActionBar = 0x7f0f0000 ++com.wix.detox.test:style/Widget.Support.CoordinatorLayout = 0x7f0e02d2 ++com.wix.detox.test:attr/boxStrokeWidth = 0x7f030068 ++com.wix.detox.test:style/Widget.MaterialComponents.Toolbar.Surface = 0x7f0e02d0 ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.ImageButton = 0x7f0e02cb ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.Display.TextInputEditText = 0x7f0e02ca ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.Button = 0x7f0e02c7 ++com.wix.detox.test:attr/telltales_velocityMode = 0x7f030318 ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker = 0x7f0e02c6 ++com.wix.detox.test:styleable/ActivityChooserView = 0x7f0f0005 ++com.wix.detox.test:style/Widget.MaterialComponents.TextView = 0x7f0e02c5 ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu = 0x7f0e02c0 ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense = 0x7f0e02be ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.FilledBox = 0x7f0e02bd ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f0e02bb ++com.wix.detox.test:style/Widget.MaterialComponents.TabLayout = 0x7f0e02b6 ++com.wix.detox.test:attr/listPreferredItemPaddingEnd = 0x7f030216 ++com.wix.detox.test:attr/listPreferredItemPaddingStart = 0x7f030219 ++com.wix.detox.test:style/Widget.MaterialComponents.Snackbar.FullWidth = 0x7f0e02b4 ++com.wix.detox.test:style/Widget.MaterialComponents.PopupMenu.ListPopupWindow = 0x7f0e02ae ++com.wix.detox.test:id/action_bar_container = 0x7f080032 ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationRailView.Colored.Compact = 0x7f0e02a8 ++com.wix.detox.test:color/abc_search_url_text_pressed = 0x7f05000f ++com.wix.detox.test:dimen/abc_list_item_height_material = 0x7f060031 ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationRailView.Colored = 0x7f0e02a7 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Year.Today = 0x7f0e02a4 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Year = 0x7f0e02a2 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.MonthTextView = 0x7f0e02a1 ++com.wix.detox.test:attr/itemShapeAppearance = 0x7f0301ae ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.MonthNavigationButton = 0x7f0e02a0 ++com.wix.detox.test:attr/chipSpacingHorizontal = 0x7f030097 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Item = 0x7f0e029f ++com.wix.detox.test:color/design_dark_default_color_background = 0x7f050030 ++com.wix.detox.test:id/action_mode_bar = 0x7f08003d ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton = 0x7f0e029e ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderDivider = 0x7f0e0299 ++com.wix.detox.test:styleable/ViewPager2 = 0x7f0f0087 ++com.wix.detox.test:style/Widget.AppCompat.ActionBar = 0x7f0e0205 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Fullscreen = 0x7f0e0296 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Day.Today = 0x7f0e0294 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Day = 0x7f0e0291 ++com.wix.detox.test:id/unchecked = 0x7f080195 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomAppBar.Colored = 0x7f0e0268 ++com.wix.detox.test:style/Widget.MaterialComponents.ExtendedFloatingActionButton = 0x7f0e028a ++com.wix.detox.test:style/TextAppearance.AppCompat.Display2 = 0x7f0e0137 ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.Display = 0x7f0e02c9 ++com.wix.detox.test:style/Widget.MaterialComponents.CompoundButton.RadioButton = 0x7f0e0288 ++com.wix.detox.test:style/Widget.MaterialComponents.CircularProgressIndicator.Small = 0x7f0e0285 ++com.wix.detox.test:style/Widget.MaterialComponents.CircularProgressIndicator.Medium = 0x7f0e0284 ++com.wix.detox.test:style/Widget.MaterialComponents.Chip.Filter = 0x7f0e0280 ++com.wix.detox.test:style/Widget.MaterialComponents.Chip.Entry = 0x7f0e027f ++com.wix.detox.test:drawable/abc_btn_check_to_on_mtrl_000 = 0x7f07000b ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton.Dialog = 0x7f0e0274 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.SearchResult.Title = 0x7f0e0027 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton = 0x7f0e0273 ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Panel = 0x7f0e00ee ++com.wix.detox.test:style/Widget.MaterialComponents.Button.Icon = 0x7f0e0270 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomNavigationView = 0x7f0e026a ++com.wix.detox.test:style/Widget.MaterialComponents.Badge = 0x7f0e0266 ++com.wix.detox.test:style/TextAppearance.Compat.Notification.Time = 0x7f0e0164 ++com.wix.detox.test:style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense = 0x7f0e0263 ++com.wix.detox.test:style/Widget.MaterialComponents.AppBarLayout.Primary = 0x7f0e025f ++com.wix.detox.test:style/Widget.MaterialComponents.ActionBar.Surface = 0x7f0e025e ++com.wix.detox.test:attr/bottomSheetDialogTheme = 0x7f03005d ++com.wix.detox.test:style/Widget.MaterialComponents.ActionBar.Solid = 0x7f0e025d ++com.wix.detox.test:attr/statusBarForeground = 0x7f0302e7 ++com.wix.detox.test:attr/chipStyle = 0x7f03009d ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Toolbar.Primary = 0x7f0e0200 ++com.wix.detox.test:style/Widget.Design.TextInputLayout = 0x7f0e025a ++com.wix.detox.test:style/Widget.Design.TextInputEditText = 0x7f0e0259 ++com.wix.detox.test:id/enterAlways = 0x7f080099 ++com.wix.detox.test:style/Widget.Design.TabLayout = 0x7f0e0258 ++com.wix.detox.test:dimen/item_touch_helper_max_drag_scroll_per_frame = 0x7f06009b ++com.wix.detox.test:style/Widget.Design.NavigationView = 0x7f0e0255 ++com.wix.detox.test:style/Widget.Design.FloatingActionButton = 0x7f0e0254 ++com.wix.detox.test:attr/maxImageSize = 0x7f03023d ++com.wix.detox.test:style/Widget.AppCompat.RatingBar = 0x7f0e023f ++com.wix.detox.test:attr/layout_constraintHeight_percent = 0x7f0301e0 ++com.wix.detox.test:style/Widget.AppCompat.ProgressBar.Horizontal = 0x7f0e023e ++com.wix.detox.test:style/Widget.AppCompat.ProgressBar = 0x7f0e023d ++com.wix.detox.test:style/ShapeAppearanceOverlay.TopRightDifferentCornerSize = 0x7f0e0125 ++com.wix.detox.test:styleable/ConstraintLayout_placeholder = 0x7f0f0025 ++com.wix.detox.test:style/TextAppearance.Design.CollapsingToolbar.Expanded = 0x7f0e0166 ++com.wix.detox.test:style/TextAppearance.Design.Counter.Overflow = 0x7f0e0168 ++com.wix.detox.test:style/Widget.AppCompat.ListView.Menu = 0x7f0e0239 ++com.wix.detox.test:style/Widget.AppCompat.ListView.DropDown = 0x7f0e0238 ++com.wix.detox.test:attr/layout_constraintVertical_bias = 0x7f0301f0 ++com.wix.detox.test:style/Widget.AppCompat.ListView = 0x7f0e0237 ++com.wix.detox.test:color/error_color_material_light = 0x7f050059 ++com.wix.detox.test:style/Widget.AppCompat.ListMenuView = 0x7f0e0235 ++com.wix.detox.test:style/Widget.AppCompat.Light.ListPopupWindow = 0x7f0e022f ++com.wix.detox.test:dimen/mtrl_tooltip_minHeight = 0x7f060180 ++com.wix.detox.test:style/Widget.AppCompat.Light.DropDownItem.Spinner = 0x7f0e022e ++com.wix.detox.test:integer/mtrl_calendar_year_selector_span = 0x7f090015 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActivityChooserView = 0x7f0e022c ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionMode.Inverse = 0x7f0e022b ++com.wix.detox.test:dimen/notification_action_text_size = 0x7f060185 ++com.wix.detox.test:id/ratio = 0x7f080123 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionButton.CloseMode = 0x7f0e0229 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionButton = 0x7f0e0228 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabView = 0x7f0e0226 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse = 0x7f0e0223 ++com.wix.detox.test:string/mtrl_picker_toggle_to_text_input_mode = 0x7f0d0060 ++com.wix.detox.test:style/Widget.AppCompat.Light.SearchView = 0x7f0e0233 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.MinWidth = 0x7f0e01b0 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.Solid = 0x7f0e0220 ++com.wix.detox.test:style/Widget.AppCompat.ImageButton = 0x7f0e021e ++com.wix.detox.test:style/Widget.AppCompat.EditText = 0x7f0e021d ++com.wix.detox.test:styleable/ClockFaceView = 0x7f0f001d ++com.wix.detox.test:style/Widget.AppCompat.DropDownItem.Spinner = 0x7f0e021c ++com.wix.detox.test:dimen/material_textinput_max_width = 0x7f0600bc ++com.wix.detox.test:style/Widget.AppCompat.DrawerArrowToggle = 0x7f0e021b ++com.wix.detox.test:attr/errorContentDescription = 0x7f030134 ++com.wix.detox.test:style/Widget.AppCompat.CompoundButton.RadioButton = 0x7f0e0219 ++com.wix.detox.test:style/Widget.AppCompat.Button.Small = 0x7f0e0215 ++com.wix.detox.test:style/Widget.AppCompat.ActivityChooserView = 0x7f0e020e ++com.wix.detox.test:dimen/mtrl_calendar_text_input_padding_top = 0x7f06010e ++com.wix.detox.test:layout/material_clock_display_divider = 0x7f0b002e ++com.wix.detox.test:style/Widget.AppCompat.ActionButton = 0x7f0e020a ++com.wix.detox.test:style/Widget.AppCompat.ActionBar.TabView = 0x7f0e0209 ++com.wix.detox.test:style/Widget.AppCompat.ActionBar.TabText = 0x7f0e0208 ++com.wix.detox.test:style/Widget.AppCompat.ActionBar.TabBar = 0x7f0e0207 ++com.wix.detox.test:string/bottomsheet_action_expand_halfway = 0x7f0d001e ++com.wix.detox.test:style/ThemeOverlayColorAccentRed = 0x7f0e0202 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Toolbar.Surface = 0x7f0e0201 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TimePicker.Display = 0x7f0e01ff ++com.wix.detox.test:attr/materialCircleRadius = 0x7f030233 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense = 0x7f0e01fd ++com.wix.detox.test:style/Widget.MaterialComponents.Button.UnelevatedButton = 0x7f0e0279 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TextInputEditText = 0x7f0e01f9 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen = 0x7f0e01f8 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialCalendar = 0x7f0e01f7 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Spinner = 0x7f0e01f6 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date = 0x7f0e01f2 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered = 0x7f0e01f1 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework = 0x7f0e01ef ++com.wix.detox.test:string/material_timepicker_minute = 0x7f0d003b ++com.wix.detox.test:id/beginning = 0x7f080055 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Light = 0x7f0e01ee ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Dialog.Alert.Framework = 0x7f0e01ed ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Dark.ActionBar = 0x7f0e01e9 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.BottomAppBar.Primary = 0x7f0e01e5 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox = 0x7f0e01e3 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense = 0x7f0e01e2 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f0e01e1 ++com.wix.detox.test:dimen/compat_button_padding_vertical_material = 0x7f06005a ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.ActionBar.Primary = 0x7f0e01de ++com.wix.detox.test:attr/minHeight = 0x7f030244 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents = 0x7f0e01dc ++com.wix.detox.test:style/ThemeOverlay.AppCompat.Light = 0x7f0e01da ++com.wix.detox.test:style/Widget.MaterialComponents.BottomAppBar.PrimarySurface = 0x7f0e0269 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.Dialog.Alert = 0x7f0e01d9 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.DayNight.ActionBar = 0x7f0e01d7 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.DayNight = 0x7f0e01d6 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.Dark = 0x7f0e01d4 ++com.wix.detox.test:dimen/abc_text_size_caption_material = 0x7f060042 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.ActionBar = 0x7f0e01d3 ++com.wix.detox.test:layout/custom_dialog = 0x7f0b001c ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked = 0x7f0e00ed ++com.wix.detox.test:style/Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f0e01cc ++com.wix.detox.test:dimen/abc_search_view_preferred_width = 0x7f060037 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge = 0x7f0e01cb ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f0e01c8 ++com.wix.detox.test:layout/test_chip_zero_corner_radius = 0x7f0b0062 ++com.wix.detox.test:style/Widget.MaterialComponents.Slider = 0x7f0e02b2 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Body1 = 0x7f0e0014 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.Alert.Bridge = 0x7f0e01c6 ++com.wix.detox.test:id/radio = 0x7f080122 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog = 0x7f0e01c4 ++com.wix.detox.test:id/textinput_placeholder = 0x7f080182 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f0e01c3 ++com.wix.detox.test:style/Widget.Compat.NotificationActionContainer = 0x7f0e024e ++com.wix.detox.test:id/dragUp = 0x7f080090 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.FixedSize.Bridge = 0x7f0e01ba ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.NoActionBar.Bridge = 0x7f0e01b4 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.NoActionBar = 0x7f0e01b3 ++com.wix.detox.test:drawable/abc_textfield_activated_mtrl_alpha = 0x7f07004f ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.DialogWhenLarge = 0x7f0e01b2 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize = 0x7f0e01ae ++com.wix.detox.test:id/mtrl_anchor_parent = 0x7f0800ea ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.Alert = 0x7f0e01ab ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog = 0x7f0e01aa ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.DarkActionBar.Bridge = 0x7f0e01a9 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.DarkActionBar = 0x7f0e01a8 ++com.wix.detox.test:attr/textAllCaps = 0x7f030319 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Bridge = 0x7f0e01a7 ++com.wix.detox.test:style/Theme.MaterialComponents.Bridge = 0x7f0e01a3 ++com.wix.detox.test:id/transition_scene_layoutid_cache = 0x7f080192 ++com.wix.detox.test:style/Theme.MaterialComponents = 0x7f0e01a1 ++com.wix.detox.test:style/Theme.Design.NoActionBar = 0x7f0e01a0 ++com.wix.detox.test:dimen/mtrl_calendar_navigation_bottom_padding = 0x7f060106 ++com.wix.detox.test:style/Theme.Design.Light = 0x7f0e019d ++com.wix.detox.test:attr/percentHeight = 0x7f03028a ++com.wix.detox.test:style/Theme.Design.BottomSheetDialog = 0x7f0e019c ++com.wix.detox.test:style/Theme.AppCompat.NoActionBar = 0x7f0e019a ++com.wix.detox.test:style/Theme.AppCompat.Light.NoActionBar = 0x7f0e0199 ++com.wix.detox.test:style/Theme.AppCompat.DialogWhenLarge = 0x7f0e0191 ++com.wix.detox.test:styleable/ExtendedFloatingActionButton = 0x7f0f002c ++com.wix.detox.test:style/Theme.AppCompat.DayNight.DialogWhenLarge = 0x7f0e018c ++com.wix.detox.test:integer/mtrl_tab_indicator_anim_duration_ms = 0x7f090019 ++com.wix.detox.test:style/Theme.AppCompat.DayNight.Dialog.MinWidth = 0x7f0e018b ++com.wix.detox.test:style/TextAppearance.AppCompat.Display3 = 0x7f0e0138 ++com.wix.detox.test:style/Theme.AppCompat.CompactMenu = 0x7f0e0186 ++com.wix.detox.test:style/TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f0e0184 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.TimePicker.Title = 0x7f0e0180 ++com.wix.detox.test:style/Widget.AppCompat.CompoundButton.CheckBox = 0x7f0e0218 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Subtitle2 = 0x7f0e017f ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f0e00ec ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline4 = 0x7f0e017a ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Badge = 0x7f0e0171 ++com.wix.detox.test:style/TextAppearance.Design.HelperText = 0x7f0e016a ++com.wix.detox.test:style/TextAppearance.Design.Counter = 0x7f0e0167 ++com.wix.detox.test:style/TextAppearance.Compat.Notification.Title = 0x7f0e0165 ++com.wix.detox.test:style/Widget.AppCompat.RatingBar.Small = 0x7f0e0241 ++com.wix.detox.test:style/TextAppearance.Compat.Notification = 0x7f0e0161 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.Switch = 0x7f0e015f ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f0e015e ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f0e015c ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.Button.Colored = 0x7f0e0159 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.Button = 0x7f0e0157 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f0e0153 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f0e0152 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f0e0151 ++com.wix.detox.test:attr/startIconDrawable = 0x7f0302dd ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f0e014f ++com.wix.detox.test:attr/layoutDescription = 0x7f0301c5 ++com.wix.detox.test:id/exitUntilCollapsed = 0x7f08009b ++com.wix.detox.test:style/TextAppearance.AppCompat.Subhead.Inverse = 0x7f0e014a ++com.wix.detox.test:style/TextAppearance.AppCompat.Subhead = 0x7f0e0149 ++com.wix.detox.test:style/Widget.MaterialComponents.AppBarLayout.PrimarySurface = 0x7f0e0260 ++com.wix.detox.test:style/TextAppearance.AppCompat.Small.Inverse = 0x7f0e0148 ++com.wix.detox.test:animator/fragment_close_exit = 0x7f020004 ++com.wix.detox.test:style/TextAppearance.AppCompat.Menu = 0x7f0e0144 ++com.wix.detox.test:style/TextAppearance.AppCompat.Medium.Inverse = 0x7f0e0143 ++com.wix.detox.test:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f0e0141 ++com.wix.detox.test:style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f0e0183 ++com.wix.detox.test:style/TextAppearance.AppCompat.Large = 0x7f0e013c ++com.wix.detox.test:style/TextAppearance.AppCompat.Headline = 0x7f0e013a ++com.wix.detox.test:attr/counterMaxLength = 0x7f0300ef ++com.wix.detox.test:style/TextAppearance.AppCompat.Button = 0x7f0e0134 ++com.wix.detox.test:color/abc_color_highlight_material = 0x7f050004 ++com.wix.detox.test:style/TextAppearance.AppCompat.Body1 = 0x7f0e0132 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Body1 = 0x7f0e0172 ++com.wix.detox.test:style/TextAppearance.AppCompat = 0x7f0e0131 ++com.wix.detox.test:style/TestStyleWithLineHeight = 0x7f0e012b ++com.wix.detox.test:style/Test.Widget.MaterialComponents.MaterialCalendar.Day = 0x7f0e0129 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f0e0061 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabView.Inverse = 0x7f0e0227 ++com.wix.detox.test:style/Test.Widget.MaterialComponents.MaterialCalendar = 0x7f0e0128 ++com.wix.detox.test:id/tag_accessibility_actions = 0x7f080164 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight = 0x7f0e01a5 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox = 0x7f0e0123 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.Chip = 0x7f0e011d ++com.wix.detox.test:style/ShapeAppearanceOverlay.BottomRightCut = 0x7f0e0119 ++com.wix.detox.test:style/ShapeAppearanceOverlay = 0x7f0e0117 ++com.wix.detox.test:attr/iconGravity = 0x7f030191 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomAppBar = 0x7f0e0267 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents.Tooltip = 0x7f0e0116 ++com.wix.detox.test:attr/expandedTitleMargin = 0x7f03013f ++com.wix.detox.test:id/snackbar_action = 0x7f08014a ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox = 0x7f0e01fc ++com.wix.detox.test:attr/roundPercent = 0x7f0302af ++com.wix.detox.test:id/progress_horizontal = 0x7f080121 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Chip = 0x7f0e0176 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents.Test = 0x7f0e0115 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents.SmallComponent = 0x7f0e0114 ++com.wix.detox.test:attr/flow_firstHorizontalStyle = 0x7f030157 ++com.wix.detox.test:style/Base.Widget.AppCompat.RatingBar = 0x7f0e00c9 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents.MediumComponent = 0x7f0e0113 ++com.wix.detox.test:color/mtrl_on_primary_text_btn_text_color_selector = 0x7f0500a2 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents = 0x7f0e0111 ++com.wix.detox.test:style/RtlUnderlay.Widget.AppCompat.ActionButton.Overflow = 0x7f0e0110 ++com.wix.detox.test:attr/showAsAction = 0x7f0302c3 ++com.wix.detox.test:style/TestThemeWithLineHeight = 0x7f0e012f ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Text = 0x7f0e010d ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query = 0x7f0e010c ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown = 0x7f0e0109 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Title = 0x7f0e0108 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem = 0x7f0e0103 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.DialogTitle.Icon = 0x7f0e0102 ++com.wix.detox.test:style/TextAppearance.Design.Error = 0x7f0e0169 ++com.wix.detox.test:animator/mtrl_fab_hide_motion_spec = 0x7f020016 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem = 0x7f0e0101 ++com.wix.detox.test:style/Base.Animation.AppCompat.DropDownUp = 0x7f0e000b ++com.wix.detox.test:style/RtlOverlay.DialogWindowTitle.AppCompat = 0x7f0e0100 ++com.wix.detox.test:style/Platform.V25.AppCompat = 0x7f0e00fd ++com.wix.detox.test:style/Platform.V21.AppCompat = 0x7f0e00fb ++com.wix.detox.test:styleable/AlertDialog = 0x7f0f0006 ++com.wix.detox.test:attr/icon = 0x7f03018f ++com.wix.detox.test:style/Platform.ThemeOverlay.AppCompat.Light = 0x7f0e00fa ++com.wix.detox.test:drawable/design_ic_visibility = 0x7f070060 ++com.wix.detox.test:style/Platform.ThemeOverlay.AppCompat = 0x7f0e00f8 ++com.wix.detox.test:style/Platform.MaterialComponents.Light.Dialog = 0x7f0e00f7 ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked = 0x7f0e00f1 ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Text = 0x7f0e00f0 ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked = 0x7f0e00ef ++com.wix.detox.test:color/material_blue_grey_900 = 0x7f05005f ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f0e01ec ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.Light = 0x7f0e006e ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner = 0x7f0e00eb ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Picker.Date.Calendar = 0x7f0e00ea ++com.wix.detox.test:dimen/highlight_alpha_material_light = 0x7f060096 ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents.Body.Text = 0x7f0e00e9 ++com.wix.detox.test:dimen/mtrl_calendar_selection_text_baseline_to_bottom = 0x7f06010b ++com.wix.detox.test:style/MaterialAlertDialog.MaterialComponents = 0x7f0e00e8 ++com.wix.detox.test:style/Widget.MaterialComponents.TabLayout.Colored = 0x7f0e02b7 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.TextView = 0x7f0e00e3 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.TextInputLayout = 0x7f0e00e2 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.TextInputEditText = 0x7f0e00e1 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.Slider = 0x7f0e00df ++com.wix.detox.test:style/Base.Widget.MaterialComponents.PopupMenu.ContextMenu = 0x7f0e00dc ++com.wix.detox.test:style/Base.Widget.MaterialComponents.PopupMenu = 0x7f0e00db ++com.wix.detox.test:style/Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton = 0x7f0e00da ++com.wix.detox.test:style/Base.Widget.MaterialComponents.CheckedTextView = 0x7f0e00d8 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.AutoCompleteTextView = 0x7f0e00d7 ++com.wix.detox.test:style/Base.Widget.Design.TabLayout = 0x7f0e00d6 ++com.wix.detox.test:style/Base.Widget.AppCompat.Toolbar.Button.Navigation = 0x7f0e00d5 ++com.wix.detox.test:style/Base.Widget.AppCompat.Toolbar = 0x7f0e00d4 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f0e0150 ++com.wix.detox.test:style/Base.Widget.AppCompat.TextView.SpinnerItem = 0x7f0e00d3 ++com.wix.detox.test:dimen/mtrl_calendar_year_vertical_padding = 0x7f060114 ++com.wix.detox.test:style/Widget.AppCompat.ButtonBar = 0x7f0e0216 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.BottomSheetDialog = 0x7f0e01c0 ++com.wix.detox.test:style/Base.Widget.AppCompat.TextView = 0x7f0e00d2 ++com.wix.detox.test:style/Base.Widget.AppCompat.Spinner.Underlined = 0x7f0e00d1 ++com.wix.detox.test:layout/test_reflow_chipgroup = 0x7f0b0066 ++com.wix.detox.test:style/Widget.MaterialComponents.CircularProgressIndicator = 0x7f0e0282 ++com.wix.detox.test:style/Base.Widget.AppCompat.Spinner = 0x7f0e00d0 ++com.wix.detox.test:style/Base.Widget.AppCompat.SeekBar.Discrete = 0x7f0e00cf ++com.wix.detox.test:style/Base.Widget.AppCompat.SeekBar = 0x7f0e00ce ++com.wix.detox.test:style/TextAppearance.Design.Prefix = 0x7f0e016d ++com.wix.detox.test:style/Base.Widget.AppCompat.SearchView = 0x7f0e00cc ++com.wix.detox.test:style/Base.Widget.AppCompat.RatingBar.Small = 0x7f0e00cb ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year = 0x7f0e0122 ++com.wix.detox.test:style/Base.Widget.AppCompat.ProgressBar.Horizontal = 0x7f0e00c8 ++com.wix.detox.test:styleable/SwitchMaterial = 0x7f0f0079 ++com.wix.detox.test:id/leftToRight = 0x7f0800c6 ++com.wix.detox.test:style/Base.Widget.AppCompat.ListView.DropDown = 0x7f0e00c2 ++com.wix.detox.test:attr/layout_editor_absoluteY = 0x7f0301f9 ++com.wix.detox.test:style/Base.Widget.AppCompat.ListView = 0x7f0e00c1 ++com.wix.detox.test:attr/textAppearanceHeadline3 = 0x7f030320 ++com.wix.detox.test:attr/goIcon = 0x7f03017a ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Calendar = 0x7f0e01f3 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f0e00be ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.PopupMenu = 0x7f0e00bd ++com.wix.detox.test:attr/itemTextColor = 0x7f0301bb ++com.wix.detox.test:dimen/abc_action_bar_content_inset_with_nav = 0x7f060001 ++com.wix.detox.test:id/material_value_index = 0x7f0800df ++com.wix.detox.test:style/Base.Widget.MaterialComponents.Snackbar = 0x7f0e00e0 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f0e00bb ++com.wix.detox.test:style/Base.Widget.AppCompat.DropDownItem.Spinner = 0x7f0e00b4 ++com.wix.detox.test:style/Base.Widget.AppCompat.DrawerArrowToggle = 0x7f0e00b2 ++com.wix.detox.test:style/Widget.MaterialComponents.ExtendedFloatingActionButton.Icon = 0x7f0e028b ++com.wix.detox.test:id/uniform = 0x7f080196 ++com.wix.detox.test:color/mtrl_choice_chip_text_color = 0x7f050092 ++com.wix.detox.test:style/Base.Widget.AppCompat.ButtonBar.AlertDialog = 0x7f0e00ae ++com.wix.detox.test:attr/lStar = 0x7f0301bf ++com.wix.detox.test:dimen/abc_action_bar_stacked_tab_max_width = 0x7f06000a ++com.wix.detox.test:style/Base.Widget.AppCompat.ButtonBar = 0x7f0e00ad ++com.wix.detox.test:dimen/abc_disabled_alpha_material_light = 0x7f060028 ++com.wix.detox.test:style/Base.Widget.AppCompat.Button.Colored = 0x7f0e00ab ++com.wix.detox.test:style/WhiteBackgroundDialogTheme = 0x7f0e0203 ++com.wix.detox.test:style/Base.Widget.AppCompat.Button.Borderless.Colored = 0x7f0e00a9 ++com.wix.detox.test:style/Base.Widget.AppCompat.Button = 0x7f0e00a7 ++com.wix.detox.test:attr/tabIconTintMode = 0x7f0302fe ++com.wix.detox.test:style/Base.Widget.AppCompat.AutoCompleteTextView = 0x7f0e00a6 ++com.wix.detox.test:id/FUNCTION = 0x7f080004 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActivityChooserView = 0x7f0e00a5 ++com.wix.detox.test:dimen/material_helper_text_default_padding_top = 0x7f0600b5 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionButton.Overflow = 0x7f0e00a3 ++com.wix.detox.test:id/accessibility_custom_action_25 = 0x7f080022 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionButton = 0x7f0e00a1 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Bridge = 0x7f0e005f ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionBar.TabBar = 0x7f0e009e ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionBar.Solid = 0x7f0e009d ++com.wix.detox.test:style/Base.V7.Widget.AppCompat.EditText = 0x7f0e009a ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance = 0x7f0e02cc ++com.wix.detox.test:style/Base.V7.Theme.AppCompat.Light.Dialog = 0x7f0e0097 ++com.wix.detox.test:style/Base.V7.Theme.AppCompat.Dialog = 0x7f0e0095 ++com.wix.detox.test:attr/windowFixedHeightMinor = 0x7f030385 ++com.wix.detox.test:style/Base.V28.Theme.AppCompat = 0x7f0e0092 ++com.wix.detox.test:style/Base.V7.Widget.AppCompat.AutoCompleteTextView = 0x7f0e0099 ++com.wix.detox.test:id/dragLeft = 0x7f08008d ++com.wix.detox.test:style/Base.V23.Theme.AppCompat = 0x7f0e008d ++com.wix.detox.test:style/Base.V22.Theme.AppCompat.Light = 0x7f0e008c ++com.wix.detox.test:style/Base.V22.Theme.AppCompat = 0x7f0e008b ++com.wix.detox.test:style/Base.V21.ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f0e008a ++com.wix.detox.test:attr/hideMotionSpec = 0x7f030184 ++com.wix.detox.test:styleable/ActionMenuItemView = 0x7f0f0002 ++com.wix.detox.test:color/abc_search_url_text = 0x7f05000d ++com.wix.detox.test:style/Base.V21.Theme.MaterialComponents.Light = 0x7f0e0087 ++com.wix.detox.test:dimen/mtrl_fab_elevation = 0x7f060133 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomNavigationView.PrimarySurface = 0x7f0e026c ++com.wix.detox.test:style/Base.V21.Theme.MaterialComponents = 0x7f0e0085 ++com.wix.detox.test:style/Base.V21.Theme.AppCompat.Light.Dialog = 0x7f0e0084 ++com.wix.detox.test:color/material_grey_800 = 0x7f050068 ++com.wix.detox.test:style/Base.V21.Theme.AppCompat = 0x7f0e0081 ++com.wix.detox.test:drawable/mtrl_navigation_bar_item_background = 0x7f07007a ++com.wix.detox.test:style/Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f0e007d ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f0e007c ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Light.Bridge = 0x7f0e0079 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.OutlinedButton.Icon = 0x7f0e0272 ++com.wix.detox.test:attr/actionModeSelectAllDrawable = 0x7f030019 ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Dialog.Bridge = 0x7f0e0077 ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Dialog = 0x7f0e0076 ++com.wix.detox.test:styleable/ForegroundLinearLayout = 0x7f0f0033 ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.Dialog.Alert = 0x7f0e006d ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.Dialog = 0x7f0e006c ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Dialog.MinWidth = 0x7f0e0066 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f0e0064 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Dialog.Alert = 0x7f0e0063 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.DarkActionBar = 0x7f0e0060 ++com.wix.detox.test:style/ShapeAppearanceOverlay.DifferentCornerSize = 0x7f0e011b ++com.wix.detox.test:style/Base.Theme.MaterialComponents.DialogWhenLarge = 0x7f0e005d ++com.wix.detox.test:style/Widget.MaterialComponents.ShapeableImageView = 0x7f0e02b1 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Dialog.FixedSize = 0x7f0e005b ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Dialog.Alert = 0x7f0e0059 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.CompactMenu = 0x7f0e0057 ++com.wix.detox.test:color/design_default_color_on_primary = 0x7f050041 ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense = 0x7f0e02ba ++com.wix.detox.test:style/Base.Theme.MaterialComponents = 0x7f0e0055 ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.DialogWhenLarge = 0x7f0e0054 ++com.wix.detox.test:integer/mtrl_calendar_selection_text_lines = 0x7f090014 ++com.wix.detox.test:style/Widget.AppCompat.SearchView = 0x7f0e0242 ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.Dialog.Alert = 0x7f0e0051 ++com.wix.detox.test:style/Platform.V21.AppCompat.Light = 0x7f0e00fc ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.Dialog = 0x7f0e0050 ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.DarkActionBar = 0x7f0e004f ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.DayTextView = 0x7f0e0295 ++com.wix.detox.test:id/textinput_suffix_text = 0x7f080184 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Display3 = 0x7f0e001a ++com.wix.detox.test:style/Base.Theme.AppCompat.Light = 0x7f0e004e ++com.wix.detox.test:style/Base.Theme.AppCompat.DialogWhenLarge = 0x7f0e004d ++com.wix.detox.test:dimen/abc_action_bar_stacked_max_height = 0x7f060009 ++com.wix.detox.test:string/material_motion_easing_standard = 0x7f0d0035 ++com.wix.detox.test:style/Base.Theme.AppCompat.Dialog = 0x7f0e0049 ++com.wix.detox.test:attr/dialogCornerRadius = 0x7f03010a ++com.wix.detox.test:id/dropdown_menu = 0x7f080091 ++com.wix.detox.test:layout/mtrl_calendar_day = 0x7f0b0040 ++com.wix.detox.test:style/Base.Theme.AppCompat = 0x7f0e0047 ++com.wix.detox.test:style/Base.TextAppearance.MaterialComponents.Subtitle2 = 0x7f0e0043 ++com.wix.detox.test:id/bounce = 0x7f080058 ++com.wix.detox.test:attr/buttonPanelSideLayout = 0x7f030073 ++com.wix.detox.test:style/Base.TextAppearance.MaterialComponents.Headline6 = 0x7f0e0042 ++com.wix.detox.test:style/Base.TextAppearance.MaterialComponents.Button = 0x7f0e0041 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f0e003f ++com.wix.detox.test:style/Widget.MaterialComponents.Button.UnelevatedButton.Icon = 0x7f0e027a ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Bridge = 0x7f0e01c1 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f0e0039 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense = 0x7f0e01fb ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f0e0037 ++com.wix.detox.test:attr/thumbRadius = 0x7f03033c ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f0e0035 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f0e0033 ++com.wix.detox.test:style/CardView.Dark = 0x7f0e00e5 ++com.wix.detox.test:color/switch_thumb_disabled_material_dark = 0x7f0500c4 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f0e0032 ++com.wix.detox.test:attr/colorSurface = 0x7f0300c8 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Title = 0x7f0e002c ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Subhead.Inverse = 0x7f0e002b ++com.wix.detox.test:dimen/abc_dialog_padding_top_material = 0x7f060025 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Subhead = 0x7f0e002a ++com.wix.detox.test:animator/mtrl_card_state_list_anim = 0x7f02000f ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Small = 0x7f0e0028 ++com.wix.detox.test:attr/drawableTintMode = 0x7f03011d ++com.wix.detox.test:dimen/design_navigation_separator_vertical_padding = 0x7f06007e ++com.wix.detox.test:style/Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f0e0073 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f0e0026 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Menu = 0x7f0e0024 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Large = 0x7f0e001e ++com.wix.detox.test:style/Widget.MaterialComponents.AutoCompleteTextView.FilledBox = 0x7f0e0262 ++com.wix.detox.test:string/abc_action_bar_home_description = 0x7f0d0000 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Display2 = 0x7f0e0019 ++com.wix.detox.test:style/Base.MaterialAlertDialog.MaterialComponents.Title.Panel = 0x7f0e0011 ++com.wix.detox.test:attr/chipCornerRadius = 0x7f03008c ++com.wix.detox.test:style/Theme.Design = 0x7f0e019b ++com.wix.detox.test:style/Base.ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework = 0x7f0e0072 ++com.wix.detox.test:dimen/abc_action_bar_content_inset_material = 0x7f060000 ++com.wix.detox.test:dimen/mtrl_textinput_box_corner_radius_medium = 0x7f060174 ++com.wix.detox.test:style/Base.MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f0e0010 ++com.wix.detox.test:style/Base.DialogWindowTitleBackground.AppCompat = 0x7f0e000f ++com.wix.detox.test:style/Base.CardView = 0x7f0e000d ++com.wix.detox.test:style/Base.Animation.AppCompat.Tooltip = 0x7f0e000c ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Day.Invalid = 0x7f0e0292 ++com.wix.detox.test:id/split_action_bar = 0x7f080151 ++com.wix.detox.test:style/Base.Animation.AppCompat.Dialog = 0x7f0e000a ++com.wix.detox.test:style/Base.AlertDialog.AppCompat.Light = 0x7f0e0009 ++com.wix.detox.test:style/Base.V21.ThemeOverlay.AppCompat.Dialog = 0x7f0e0089 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.YearNavigationButton = 0x7f0e02a5 ++com.wix.detox.test:style/Base.AlertDialog.AppCompat = 0x7f0e0008 ++com.wix.detox.test:attr/materialCalendarMonthNavigationButton = 0x7f03022e ++com.wix.detox.test:style/Animation.MaterialComponents.BottomSheetDialog = 0x7f0e0007 ++com.wix.detox.test:style/Animation.AppCompat.Tooltip = 0x7f0e0005 ++com.wix.detox.test:style/Animation.AppCompat.DropDownUp = 0x7f0e0004 ++com.wix.detox.test:style/AlertDialog.AppCompat.Light = 0x7f0e0001 ++com.wix.detox.test:drawable/notification_action_background = 0x7f07007f ++com.wix.detox.test:style/AlertDialog.AppCompat = 0x7f0e0000 ++com.wix.detox.test:string/item_view_role_description = 0x7f0d002a ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text = 0x7f0e0107 ++com.wix.detox.test:string/search_menu_title = 0x7f0d0067 ++com.wix.detox.test:string/path_password_strike_through = 0x7f0d0066 ++com.wix.detox.test:style/Widget.MaterialComponents.Toolbar.PrimarySurface = 0x7f0e02cf ++com.wix.detox.test:string/path_password_eye = 0x7f0d0063 ++com.wix.detox.test:dimen/mtrl_slider_track_side_padding = 0x7f06016a ++com.wix.detox.test:string/mtrl_picker_toggle_to_day_selection = 0x7f0d005f ++com.wix.detox.test:style/Theme.MaterialComponents.Light = 0x7f0e01be ++com.wix.detox.test:string/mtrl_picker_text_input_month_abbr = 0x7f0d005c ++com.wix.detox.test:anim/abc_slide_in_top = 0x7f010007 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Dialog = 0x7f0e01eb ++com.wix.detox.test:string/mtrl_picker_text_input_day_abbr = 0x7f0d005b ++com.wix.detox.test:string/mtrl_picker_text_input_date_hint = 0x7f0d0058 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.OutlinedButton = 0x7f0e0271 ++com.wix.detox.test:string/mtrl_picker_save = 0x7f0d0057 ++com.wix.detox.test:string/mtrl_picker_range_header_only_start_selected = 0x7f0d0053 ++com.wix.detox.test:dimen/compat_button_inset_horizontal_material = 0x7f060057 ++com.wix.detox.test:string/mtrl_picker_range_header_only_end_selected = 0x7f0d0052 ++com.wix.detox.test:string/mtrl_picker_navigate_to_year_description = 0x7f0d0050 ++com.wix.detox.test:styleable/Insets = 0x7f0f0039 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomSheet = 0x7f0e026d ++com.wix.detox.test:drawable/abc_list_pressed_holo_light = 0x7f07002f ++com.wix.detox.test:string/mtrl_picker_invalid_format_example = 0x7f0d004d ++com.wix.detox.test:string/mtrl_picker_invalid_format = 0x7f0d004c ++com.wix.detox.test:attr/paddingBottomNoButtons = 0x7f030278 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Medium = 0x7f0e0022 ++com.wix.detox.test:string/mtrl_picker_day_of_week_column_header = 0x7f0d004b ++com.wix.detox.test:string/mtrl_picker_date_header_title = 0x7f0d0049 ++com.wix.detox.test:attr/collapseIcon = 0x7f0300af ++com.wix.detox.test:string/mtrl_picker_date_header_selected = 0x7f0d0048 ++com.wix.detox.test:string/material_timepicker_text_input_mode_description = 0x7f0d003e ++com.wix.detox.test:drawable/avd_show_password = 0x7f070056 ++com.wix.detox.test:string/material_timepicker_select_time = 0x7f0d003d ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionMode = 0x7f0e00a4 ++com.wix.detox.test:string/material_timepicker_hour = 0x7f0d003a ++com.wix.detox.test:string/material_motion_easing_emphasized = 0x7f0d0033 ++com.wix.detox.test:string/material_motion_easing_decelerated = 0x7f0d0032 ++com.wix.detox.test:id/material_timepicker_view = 0x7f0800de ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.MinWidth = 0x7f0e01ca ++com.wix.detox.test:string/material_minute_selection = 0x7f0d002f ++com.wix.detox.test:styleable/CoordinatorLayout_Layout = 0x7f0f0028 ++com.wix.detox.test:id/design_menu_item_text = 0x7f080082 ++com.wix.detox.test:string/material_hour_suffix = 0x7f0d002e ++com.wix.detox.test:string/material_hour_selection = 0x7f0d002d ++com.wix.detox.test:string/material_clock_display_divider = 0x7f0d002b ++com.wix.detox.test:id/mtrl_child_content_container = 0x7f0800f4 ++com.wix.detox.test:string/hide_bottom_view_on_scroll_behavior = 0x7f0d0028 ++com.wix.detox.test:drawable/abc_ic_arrow_drop_right_black_24dp = 0x7f07001c ++com.wix.detox.test:string/fab_transformation_sheet_behavior = 0x7f0d0027 ++com.wix.detox.test:attr/textAppearanceListItemSmall = 0x7f030328 ++com.wix.detox.test:string/exposed_dropdown_menu_content_description = 0x7f0d0025 ++com.wix.detox.test:string/clear_text_end_icon_content_description = 0x7f0d0023 ++com.wix.detox.test:string/chip_text = 0x7f0d0022 ++com.wix.detox.test:style/Base.Widget.AppCompat.Button.Borderless = 0x7f0e00a8 ++com.wix.detox.test:string/character_counter_pattern = 0x7f0d0021 ++com.wix.detox.test:id/navigation_bar_item_icon_view = 0x7f080102 ++com.wix.detox.test:string/character_counter_overflowed_content_description = 0x7f0d0020 ++com.wix.detox.test:style/Widget.MaterialComponents.PopupMenu = 0x7f0e02ac ++com.wix.detox.test:style/Widget.AppCompat.CompoundButton.Switch = 0x7f0e021a ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog = 0x7f0e01b5 ++com.wix.detox.test:string/character_counter_content_description = 0x7f0d001f ++com.wix.detox.test:string/app_name = 0x7f0d001b ++com.wix.detox.test:string/abc_toolbar_collapse_description = 0x7f0d001a ++com.wix.detox.test:attr/hintTextColor = 0x7f03018a ++com.wix.detox.test:string/abc_shareactionprovider_share_with_application = 0x7f0d0019 ++com.wix.detox.test:string/abc_searchview_description_submit = 0x7f0d0016 ++com.wix.detox.test:string/abc_search_hint = 0x7f0d0012 ++com.wix.detox.test:styleable/ConstraintLayout_Layout = 0x7f0f0024 ++com.wix.detox.test:drawable/abc_btn_switch_to_on_mtrl_00012 = 0x7f070014 ++com.wix.detox.test:attr/font = 0x7f030169 ++com.wix.detox.test:string/abc_menu_space_shortcut_label = 0x7f0d000f ++com.wix.detox.test:id/material_clock_hand = 0x7f0800cf ++com.wix.detox.test:string/abc_menu_shift_shortcut_label = 0x7f0d000e ++com.wix.detox.test:anim/fragment_fast_out_extra_slow_in = 0x7f01001c ++com.wix.detox.test:dimen/abc_action_bar_icon_vertical_padding_material = 0x7f060006 ++com.wix.detox.test:string/abc_menu_function_shortcut_label = 0x7f0d000c ++com.wix.detox.test:dimen/mtrl_calendar_action_confirm_button_min_width = 0x7f0600ec ++com.wix.detox.test:string/abc_menu_enter_shortcut_label = 0x7f0d000b ++com.wix.detox.test:string/abc_menu_alt_shortcut_label = 0x7f0d0008 ++com.wix.detox.test:string/abc_capital_on = 0x7f0d0007 ++com.wix.detox.test:string/abc_capital_off = 0x7f0d0006 ++com.wix.detox.test:string/abc_action_mode_done = 0x7f0d0003 ++com.wix.detox.test:string/abc_action_menu_overflow_description = 0x7f0d0002 ++com.wix.detox.test:plurals/mtrl_badge_content_description = 0x7f0c0000 ++com.wix.detox.test:layout/text_view_without_line_height = 0x7f0b006f ++com.wix.detox.test:id/accessibility_custom_action_10 = 0x7f080012 ++com.wix.detox.test:layout/text_view_with_theme_line_height = 0x7f0b006e ++com.wix.detox.test:layout/text_view_with_line_height_from_style = 0x7f0b006d ++com.wix.detox.test:color/dim_foreground_disabled_material_dark = 0x7f050054 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Caption = 0x7f0e0175 ++com.wix.detox.test:layout/text_view_with_line_height_from_appearance = 0x7f0b006b ++com.wix.detox.test:layout/test_toolbar_surface = 0x7f0b006a ++com.wix.detox.test:layout/test_toolbar = 0x7f0b0067 ++com.wix.detox.test:id/blocking = 0x7f080056 ++com.wix.detox.test:style/Widget.AppCompat.Spinner = 0x7f0e0246 ++com.wix.detox.test:layout/test_navigation_bar_item_layout = 0x7f0b0065 ++com.wix.detox.test:string/abc_searchview_description_query = 0x7f0d0014 ++com.wix.detox.test:attr/actionBarSplitStyle = 0x7f030004 ++com.wix.detox.test:dimen/design_bottom_navigation_text_size = 0x7f06006c ++com.wix.detox.test:string/abc_action_bar_up_description = 0x7f0d0001 ++com.wix.detox.test:layout/select_dialog_singlechoice_material = 0x7f0b005f ++com.wix.detox.test:layout/select_dialog_multichoice_material = 0x7f0b005e ++com.wix.detox.test:layout/notification_template_part_time = 0x7f0b005c ++com.wix.detox.test:layout/notification_action = 0x7f0b0057 ++com.wix.detox.test:interpolator/fast_out_slow_in = 0x7f0a0006 ++com.wix.detox.test:layout/mtrl_picker_header_toggle = 0x7f0b0054 ++com.wix.detox.test:styleable/AppCompatTextHelper = 0x7f0f000f ++com.wix.detox.test:layout/mtrl_picker_header_selection_text = 0x7f0b0052 ++com.wix.detox.test:style/TestThemeWithLineHeightDisabled = 0x7f0e0130 ++com.wix.detox.test:color/design_dark_default_color_primary_dark = 0x7f050038 ++com.wix.detox.test:layout/mtrl_picker_fullscreen = 0x7f0b004f ++com.wix.detox.test:attr/behavior_autoShrink = 0x7f03004f ++com.wix.detox.test:layout/mtrl_picker_dialog = 0x7f0b004e ++com.wix.detox.test:layout/mtrl_layout_snackbar = 0x7f0b004a ++com.wix.detox.test:id/mtrl_picker_header_selection_text = 0x7f0800f9 ++com.wix.detox.test:string/abc_shareactionprovider_share_with = 0x7f0d0018 ++com.wix.detox.test:id/tag_unhandled_key_event_manager = 0x7f08016e ++com.wix.detox.test:layout/mtrl_calendar_year = 0x7f0b0049 ++com.wix.detox.test:dimen/mtrl_btn_snackbar_margin_horizontal = 0x7f0600e5 ++com.wix.detox.test:layout/mtrl_calendar_vertical = 0x7f0b0048 ++com.wix.detox.test:layout/mtrl_calendar_months = 0x7f0b0047 ++com.wix.detox.test:dimen/mtrl_bottomappbar_fab_cradle_vertical_offset = 0x7f0600d2 ++com.wix.detox.test:layout/mtrl_calendar_horizontal = 0x7f0b0043 ++com.wix.detox.test:layout/mtrl_alert_select_dialog_singlechoice = 0x7f0b003f ++com.wix.detox.test:layout/mtrl_alert_select_dialog_multichoice = 0x7f0b003e ++com.wix.detox.test:layout/mtrl_alert_dialog_title = 0x7f0b003c ++com.wix.detox.test:layout/mtrl_alert_dialog_actions = 0x7f0b003b ++com.wix.detox.test:dimen/material_emphasis_high_type = 0x7f0600ad ++com.wix.detox.test:layout/mtrl_alert_dialog = 0x7f0b003a ++com.wix.detox.test:styleable/FontFamily = 0x7f0f0031 ++com.wix.detox.test:attr/singleChoiceItemLayout = 0x7f0302cb ++com.wix.detox.test:layout/material_timepicker_textinput_display = 0x7f0b0039 ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationRailView.Compact = 0x7f0e02a9 ++com.wix.detox.test:layout/material_timepicker_dialog = 0x7f0b0038 ++com.wix.detox.test:id/time = 0x7f080185 ++com.wix.detox.test:layout/material_timepicker = 0x7f0b0037 ++com.wix.detox.test:attr/buttonIconDimen = 0x7f030072 ++com.wix.detox.test:layout/material_radial_view_group = 0x7f0b0033 ++com.wix.detox.test:attr/contentPaddingLeft = 0x7f0300db ++com.wix.detox.test:layout/material_clockface_view = 0x7f0b0032 ++com.wix.detox.test:layout/material_chip_input_combo = 0x7f0b002c ++com.wix.detox.test:layout/design_text_input_end_icon = 0x7f0b002a ++com.wix.detox.test:layout/design_navigation_menu_item = 0x7f0b0029 ++com.wix.detox.test:layout/design_navigation_menu = 0x7f0b0028 ++com.wix.detox.test:layout/design_navigation_item_separator = 0x7f0b0026 ++com.wix.detox.test:layout/design_layout_tab_text = 0x7f0b0022 ++com.wix.detox.test:integer/mtrl_calendar_header_orientation = 0x7f090013 ++com.wix.detox.test:layout/design_layout_tab_icon = 0x7f0b0021 ++com.wix.detox.test:layout/design_layout_snackbar = 0x7f0b001f ++com.wix.detox.test:layout/abc_select_dialog_material = 0x7f0b001a ++com.wix.detox.test:style/Base.Widget.AppCompat.RatingBar.Indicator = 0x7f0e00ca ++com.wix.detox.test:layout/abc_search_view = 0x7f0b0019 ++com.wix.detox.test:layout/abc_search_dropdown_item_icons_2line = 0x7f0b0018 ++com.wix.detox.test:layout/abc_screen_toolbar = 0x7f0b0017 ++com.wix.detox.test:layout/abc_screen_simple_overlay_action_mode = 0x7f0b0016 ++com.wix.detox.test:layout/abc_screen_simple = 0x7f0b0015 ++com.wix.detox.test:attr/circleRadius = 0x7f03009f ++com.wix.detox.test:attr/wavePeriod = 0x7f03037e ++com.wix.detox.test:style/Base.V21.Theme.MaterialComponents.Dialog = 0x7f0e0086 ++com.wix.detox.test:dimen/abc_text_size_body_1_material = 0x7f06003f ++com.wix.detox.test:layout/abc_popup_menu_item_layout = 0x7f0b0013 ++com.wix.detox.test:layout/abc_popup_menu_header_item_layout = 0x7f0b0012 ++com.wix.detox.test:styleable/MaterialShape = 0x7f0f0051 ++com.wix.detox.test:layout/abc_list_menu_item_checkbox = 0x7f0b000e ++com.wix.detox.test:style/Widget.MaterialComponents.ActionBar.Primary = 0x7f0e025b ++com.wix.detox.test:layout/abc_expanded_menu_layout = 0x7f0b000d ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Button = 0x7f0e0016 ++com.wix.detox.test:drawable/abc_ic_menu_paste_mtrl_am_alpha = 0x7f070023 ++com.wix.detox.test:layout/abc_dialog_title_material = 0x7f0b000c ++com.wix.detox.test:layout/abc_cascading_menu_item_layout = 0x7f0b000b ++com.wix.detox.test:layout/abc_alert_dialog_title_material = 0x7f0b000a ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse = 0x7f0e0156 ++com.wix.detox.test:layout/abc_alert_dialog_material = 0x7f0b0009 ++com.wix.detox.test:dimen/abc_seekbar_track_background_height_material = 0x7f060038 ++com.wix.detox.test:layout/abc_alert_dialog_button_bar_material = 0x7f0b0008 ++com.wix.detox.test:attr/layout_constraintHorizontal_bias = 0x7f0301e1 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Small.Inverse = 0x7f0e0029 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.MinWidth.Bridge = 0x7f0e01b1 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Tooltip = 0x7f0e002e ++com.wix.detox.test:layout/abc_activity_chooser_view_list_item = 0x7f0b0007 ++com.wix.detox.test:id/showHome = 0x7f080145 ++com.wix.detox.test:layout/abc_activity_chooser_view = 0x7f0b0006 ++com.wix.detox.test:layout/abc_action_mode_close_item_material = 0x7f0b0005 ++com.wix.detox.test:layout/abc_action_bar_up_container = 0x7f0b0001 ++com.wix.detox.test:id/text = 0x7f080175 ++com.wix.detox.test:interpolator/mtrl_linear_out_slow_in = 0x7f0a000a ++com.wix.detox.test:drawable/abc_scrubber_control_off_mtrl_alpha = 0x7f07003b ++com.wix.detox.test:interpolator/mtrl_linear = 0x7f0a0009 ++com.wix.detox.test:interpolator/mtrl_fast_out_slow_in = 0x7f0a0008 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.Alert = 0x7f0e01b6 ++com.wix.detox.test:interpolator/mtrl_fast_out_linear_in = 0x7f0a0007 ++com.wix.detox.test:style/Widget.MaterialComponents.Snackbar = 0x7f0e02b3 ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge = 0x7f0e007a ++com.wix.detox.test:dimen/design_bottom_navigation_icon_size = 0x7f060066 ++com.wix.detox.test:interpolator/btn_radio_to_off_mtrl_animation_interpolator_0 = 0x7f0a0004 ++com.wix.detox.test:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f0a0002 ++com.wix.detox.test:integer/show_password_duration = 0x7f09001a ++com.wix.detox.test:attr/layout_anchorGravity = 0x7f0301c9 ++com.wix.detox.test:integer/mtrl_card_anim_duration_ms = 0x7f090017 ++com.wix.detox.test:attr/layout_scrollFlags = 0x7f030203 ++com.wix.detox.test:integer/material_motion_duration_short_1 = 0x7f09000d ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.Solid.Inverse = 0x7f0e0221 ++com.wix.detox.test:integer/material_motion_duration_medium_2 = 0x7f09000c ++com.wix.detox.test:integer/material_motion_duration_long_2 = 0x7f09000a ++com.wix.detox.test:drawable/abc_textfield_search_activated_mtrl_alpha = 0x7f070051 ++com.wix.detox.test:integer/material_motion_duration_long_1 = 0x7f090009 ++com.wix.detox.test:id/zero_corner_chip = 0x7f0801a4 ++com.wix.detox.test:integer/design_tab_indicator_anim_duration_ms = 0x7f090007 ++com.wix.detox.test:attr/height = 0x7f03017e ++com.wix.detox.test:integer/design_snackbar_text_max_lines = 0x7f090006 ++com.wix.detox.test:integer/app_bar_elevation_anim_duration = 0x7f090002 ++com.wix.detox.test:id/easeInOut = 0x7f080093 ++com.wix.detox.test:integer/abc_config_activityShortDur = 0x7f090001 ++com.wix.detox.test:attr/itemShapeInsetStart = 0x7f0301b3 ++com.wix.detox.test:integer/abc_config_activityDefaultDur = 0x7f090000 ++com.wix.detox.test:attr/backgroundInsetTop = 0x7f030041 ++com.wix.detox.test:attr/listPopupWindowStyle = 0x7f030212 ++com.wix.detox.test:style/Theme.AppCompat.Light.DarkActionBar = 0x7f0e0194 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabText = 0x7f0e0224 ++com.wix.detox.test:id/wrap_content = 0x7f0801a3 ++com.wix.detox.test:attr/flow_verticalAlign = 0x7f030164 ++com.wix.detox.test:id/wrap = 0x7f0801a2 ++com.wix.detox.test:id/withText = 0x7f0801a0 ++com.wix.detox.test:id/view_tree_saved_state_registry_owner = 0x7f08019c ++com.wix.detox.test:id/view_tree_lifecycle_owner = 0x7f08019b ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionButton.Overflow = 0x7f0e022a ++com.wix.detox.test:id/view_offset_helper = 0x7f08019a ++com.wix.detox.test:id/useLogo = 0x7f080199 ++com.wix.detox.test:attr/indicatorColor = 0x7f03019b ++com.wix.detox.test:id/up = 0x7f080198 ++com.wix.detox.test:id/clear_text = 0x7f080069 ++com.wix.detox.test:id/unlabeled = 0x7f080197 ++com.wix.detox.test:id/chain = 0x7f08005e ++com.wix.detox.test:id/transition_position = 0x7f080191 ++com.wix.detox.test:color/mtrl_choice_chip_ripple_color = 0x7f050091 ++com.wix.detox.test:id/transitionToStart = 0x7f08018e ++com.wix.detox.test:layout/support_simple_spinner_dropdown_item = 0x7f0b0060 ++com.wix.detox.test:id/touch_outside = 0x7f08018c ++com.wix.detox.test:id/ignore = 0x7f0800b9 ++com.wix.detox.test:id/top = 0x7f08018a ++com.wix.detox.test:dimen/mtrl_progress_circular_inset_medium = 0x7f060154 ++com.wix.detox.test:id/auto = 0x7f08004e ++com.wix.detox.test:id/toggle = 0x7f080189 ++com.wix.detox.test:id/accessibility_custom_action_3 = 0x7f080027 ++com.wix.detox.test:style/Theme.MaterialComponents.BottomSheetDialog = 0x7f0e01a2 ++com.wix.detox.test:id/title_template = 0x7f080188 ++com.wix.detox.test:styleable/AnimatedStateListDrawableItem = 0x7f0f0008 ++com.wix.detox.test:id/titleDividerNoCustom = 0x7f080187 ++com.wix.detox.test:dimen/mtrl_btn_elevation = 0x7f0600d8 ++com.wix.detox.test:id/textinput_prefix_text = 0x7f080183 ++com.wix.detox.test:id/textinput_error = 0x7f080180 ++com.wix.detox.test:id/scrollIndicatorDown = 0x7f080132 ++com.wix.detox.test:id/text_input_error_icon = 0x7f08017d ++com.wix.detox.test:id/textTop = 0x7f08017b ++com.wix.detox.test:id/textEnd = 0x7f080177 ++com.wix.detox.test:id/test_radiobutton_app_button_tint = 0x7f080174 ++com.wix.detox.test:id/test_radiobutton_android_button_tint = 0x7f080173 ++com.wix.detox.test:dimen/highlight_alpha_material_colored = 0x7f060094 ++com.wix.detox.test:attr/endIconContentDescription = 0x7f03012c ++com.wix.detox.test:id/test_checkbox_app_button_tint = 0x7f080172 ++com.wix.detox.test:id/test_checkbox_android_button_tint = 0x7f080171 ++com.wix.detox.test:id/fragment_container_view_tag = 0x7f0800a8 ++com.wix.detox.test:id/tag_window_insets_animation_callback = 0x7f080170 ++com.wix.detox.test:color/cardview_dark_background = 0x7f050029 ++com.wix.detox.test:id/tag_transition_group = 0x7f08016d ++com.wix.detox.test:style/Base.ThemeOverlay.MaterialComponents.Dialog = 0x7f0e006f ++com.wix.detox.test:drawable/abc_textfield_search_material = 0x7f070053 ++com.wix.detox.test:id/tag_screen_reader_focusable = 0x7f08016b ++com.wix.detox.test:id/tabMode = 0x7f080163 ++com.wix.detox.test:id/submit_area = 0x7f080162 ++com.wix.detox.test:string/mtrl_picker_announce_current_selection = 0x7f0d0045 ++com.wix.detox.test:id/submenuarrow = 0x7f080161 ++com.wix.detox.test:style/Base.Widget.AppCompat.PopupMenu = 0x7f0e00c4 ++com.wix.detox.test:id/stretch = 0x7f080160 ++com.wix.detox.test:id/startVertical = 0x7f08015c ++com.wix.detox.test:id/src_over = 0x7f080157 ++com.wix.detox.test:id/src_atop = 0x7f080155 ++com.wix.detox.test:id/spread_inside = 0x7f080153 ++com.wix.detox.test:attr/textAppearanceButton = 0x7f03031c ++com.wix.detox.test:id/special_effects_controller_view_tag = 0x7f08014f ++com.wix.detox.test:attr/drawableSize = 0x7f03011a ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.MinWidth.Bridge = 0x7f0e01bc ++com.wix.detox.test:style/Widget.AppCompat.ActionMode = 0x7f0e020d ++com.wix.detox.test:style/Base.V21.Theme.MaterialComponents.Light.Dialog = 0x7f0e0088 ++com.wix.detox.test:id/spacer = 0x7f08014e ++com.wix.detox.test:id/snapMargins = 0x7f08014d ++com.wix.detox.test:integer/material_motion_duration_short_2 = 0x7f09000e ++com.wix.detox.test:id/slide = 0x7f080149 ++com.wix.detox.test:style/TextAppearance.AppCompat.Light.SearchResult.Title = 0x7f0e013f ++com.wix.detox.test:style/TextAppearance.Compat.Notification.Line2 = 0x7f0e0163 ++com.wix.detox.test:id/showCustom = 0x7f080144 ++com.wix.detox.test:id/selected = 0x7f080141 ++com.wix.detox.test:style/Base.V7.Theme.AppCompat.Light = 0x7f0e0096 ++com.wix.detox.test:id/ALT = 0x7f080000 ++com.wix.detox.test:id/select_dialog_listview = 0x7f080140 ++com.wix.detox.test:color/androidx_core_ripple_material_light = 0x7f05001b ++com.wix.detox.test:id/search_close_btn = 0x7f080139 ++com.wix.detox.test:id/search_button = 0x7f080138 ++com.wix.detox.test:layout/notification_template_part_chronometer = 0x7f0b005b ++com.wix.detox.test:id/search_badge = 0x7f080136 ++com.wix.detox.test:id/scrollable = 0x7f080135 ++com.wix.detox.test:attr/srcCompat = 0x7f0302d8 ++com.wix.detox.test:layout/material_clock_display = 0x7f0b002d ++com.wix.detox.test:dimen/mtrl_calendar_action_padding = 0x7f0600ee ++com.wix.detox.test:string/mtrl_picker_range_header_title = 0x7f0d0055 ++com.wix.detox.test:id/scroll = 0x7f080131 ++com.wix.detox.test:color/mtrl_textinput_default_box_stroke_color = 0x7f0500ae ++com.wix.detox.test:id/screen = 0x7f080130 ++com.wix.detox.test:id/scale = 0x7f08012f ++com.wix.detox.test:id/save_non_transition_alpha = 0x7f08012c ++com.wix.detox.test:dimen/test_navigation_bar_item_min_width = 0x7f06019b ++com.wix.detox.test:style/Widget.AppCompat.SeekBar = 0x7f0e0244 ++com.wix.detox.test:id/rounded = 0x7f08012a ++com.wix.detox.test:id/right_side = 0x7f080129 ++com.wix.detox.test:id/right_icon = 0x7f080128 ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Bridge = 0x7f0e0075 ++com.wix.detox.test:id/rightToLeft = 0x7f080127 ++com.wix.detox.test:id/right = 0x7f080126 ++com.wix.detox.test:id/reverseSawtooth = 0x7f080125 ++com.wix.detox.test:attr/chipGroupStyle = 0x7f03008e ++com.wix.detox.test:id/rectangles = 0x7f080124 ++com.wix.detox.test:id/textStart = 0x7f08017a ++com.wix.detox.test:id/postLayout = 0x7f08011f ++com.wix.detox.test:id/pathRelative = 0x7f08011a ++com.wix.detox.test:attr/track = 0x7f030362 ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox = 0x7f0e02c1 ++com.wix.detox.test:attr/borderlessButtonStyle = 0x7f03005a ++com.wix.detox.test:id/path = 0x7f080119 ++com.wix.detox.test:id/password_toggle = 0x7f080118 ++com.wix.detox.test:style/Theme.AppCompat.Light.Dialog = 0x7f0e0195 ++com.wix.detox.test:id/parentRelative = 0x7f080116 ++com.wix.detox.test:id/packed = 0x7f080112 ++com.wix.detox.test:id/outward = 0x7f080111 ++com.wix.detox.test:id/on = 0x7f08010f ++com.wix.detox.test:styleable/CollapsingToolbarLayout = 0x7f0f001f ++com.wix.detox.test:attr/cornerFamilyBottomLeft = 0x7f0300e4 ++com.wix.detox.test:id/notification_main_column_container = 0x7f08010d ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.FixedSize.Bridge = 0x7f0e01c9 ++com.wix.detox.test:dimen/design_navigation_icon_size = 0x7f060079 ++com.wix.detox.test:id/notification_background = 0x7f08010b ++com.wix.detox.test:id/fill_horizontal = 0x7f0800a0 ++com.wix.detox.test:id/normal = 0x7f08010a ++com.wix.detox.test:id/noScroll = 0x7f080108 ++com.wix.detox.test:id/never = 0x7f080107 ++com.wix.detox.test:id/navigation_bar_item_labels_group = 0x7f080103 ++com.wix.detox.test:id/multiply = 0x7f080101 ++com.wix.detox.test:id/mtrl_picker_text_input_range_start = 0x7f0800fe ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f0e0021 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton.Dialog.Icon = 0x7f0e0276 ++com.wix.detox.test:id/mtrl_picker_text_input_range_end = 0x7f0800fd ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu = 0x7f0e02bf ++com.wix.detox.test:id/mtrl_picker_header_title_and_selection = 0x7f0800fa ++com.wix.detox.test:id/mtrl_picker_header = 0x7f0800f8 ++com.wix.detox.test:id/search_edit_frame = 0x7f08013a ++com.wix.detox.test:attr/enforceMaterialTheme = 0x7f030131 ++com.wix.detox.test:id/mtrl_picker_fullscreen = 0x7f0800f7 ++com.wix.detox.test:id/mtrl_motion_snapshot_view = 0x7f0800f6 ++com.wix.detox.test:styleable/MenuGroup = 0x7f0f0056 ++com.wix.detox.test:id/direct = 0x7f080086 ++com.wix.detox.test:id/tag_accessibility_clickable_spans = 0x7f080165 ++com.wix.detox.test:id/mtrl_internal_children_alpha_tag = 0x7f0800f5 ++com.wix.detox.test:id/motion_base = 0x7f0800e9 ++com.wix.detox.test:dimen/abc_text_size_menu_header_material = 0x7f06004a ++com.wix.detox.test:id/month_title = 0x7f0800e8 ++com.wix.detox.test:id/staticPostLayout = 0x7f08015e ++com.wix.detox.test:id/month_navigation_previous = 0x7f0800e7 ++com.wix.detox.test:style/Theme.AppCompat.Light = 0x7f0e0193 ++com.wix.detox.test:id/month_navigation_next = 0x7f0800e6 ++com.wix.detox.test:id/month_navigation_bar = 0x7f0800e4 ++com.wix.detox.test:id/month_grid = 0x7f0800e3 ++com.wix.detox.test:color/material_on_surface_stroke = 0x7f050074 ++com.wix.detox.test:id/textSpacerNoButtons = 0x7f080178 ++com.wix.detox.test:color/ripple_material_dark = 0x7f0500be ++com.wix.detox.test:id/middle = 0x7f0800e1 ++com.wix.detox.test:id/message = 0x7f0800e0 ++com.wix.detox.test:layout/design_navigation_item_header = 0x7f0b0025 ++com.wix.detox.test:id/material_timepicker_ok_button = 0x7f0800dd ++com.wix.detox.test:style/RtlUnderlay.Widget.AppCompat.ActionButton = 0x7f0e010f ++com.wix.detox.test:id/material_timepicker_mode_button = 0x7f0800dc ++com.wix.detox.test:id/material_timepicker_edit_text = 0x7f0800db ++com.wix.detox.test:id/material_timepicker_container = 0x7f0800da ++com.wix.detox.test:animator/design_appbar_state_list_animator = 0x7f020000 ++com.wix.detox.test:dimen/mtrl_low_ripple_focused_alpha = 0x7f06013d ++com.wix.detox.test:id/visible = 0x7f08019e ++com.wix.detox.test:styleable/ScrollingViewBehavior_Layout = 0x7f0f006c ++com.wix.detox.test:attr/layout_constraintWidth_percent = 0x7f0301f6 ++com.wix.detox.test:id/material_timepicker_cancel_button = 0x7f0800d9 ++com.wix.detox.test:id/material_minute_tv = 0x7f0800d7 ++com.wix.detox.test:layout/material_clockface_textview = 0x7f0b0031 ++com.wix.detox.test:id/material_clock_period_pm_button = 0x7f0800d1 ++com.wix.detox.test:id/material_clock_period_am_button = 0x7f0800d0 ++com.wix.detox.test:id/material_clock_display = 0x7f0800cd ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f0e002f ++com.wix.detox.test:attr/colorAccent = 0x7f0300b5 ++com.wix.detox.test:id/masked = 0x7f0800cc ++com.wix.detox.test:id/listMode = 0x7f0800ca ++com.wix.detox.test:id/line1 = 0x7f0800c7 ++com.wix.detox.test:attr/round = 0x7f0302ae ++com.wix.detox.test:dimen/disabled_alpha_material_dark = 0x7f06008f ++com.wix.detox.test:id/left = 0x7f0800c5 ++com.wix.detox.test:id/item_touch_helper_previous_elevation = 0x7f0800c0 ++com.wix.detox.test:attr/nestedScrollable = 0x7f03026d ++com.wix.detox.test:id/italic = 0x7f0800bf ++com.wix.detox.test:attr/collapseContentDescription = 0x7f0300ae ++com.wix.detox.test:id/info = 0x7f0800bc ++com.wix.detox.test:id/ignoreRequest = 0x7f0800ba ++com.wix.detox.test:id/ifRoom = 0x7f0800b8 ++com.wix.detox.test:id/progress_circular = 0x7f080120 ++com.wix.detox.test:id/icon_group = 0x7f0800b7 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Year.Selected = 0x7f0e02a3 ++com.wix.detox.test:style/Base.V7.Widget.AppCompat.Toolbar = 0x7f0e009b ++com.wix.detox.test:id/icon = 0x7f0800b6 ++com.wix.detox.test:attr/autoSizeMinTextSize = 0x7f030037 ++com.wix.detox.test:id/honorRequest = 0x7f0800b5 ++com.wix.detox.test:string/mtrl_picker_confirm = 0x7f0d0047 ++com.wix.detox.test:id/home = 0x7f0800b3 ++com.wix.detox.test:animator/design_fab_show_motion_spec = 0x7f020002 ++com.wix.detox.test:id/hideable = 0x7f0800b2 ++com.wix.detox.test:attr/actionButtonStyle = 0x7f03000b ++com.wix.detox.test:id/header_title = 0x7f0800b1 ++com.wix.detox.test:id/guideline = 0x7f0800b0 ++com.wix.detox.test:attr/editTextBackground = 0x7f030124 ++com.wix.detox.test:id/group_divider = 0x7f0800ae ++com.wix.detox.test:layout/material_textinput_timepicker = 0x7f0b0034 ++com.wix.detox.test:id/graph = 0x7f0800ac ++com.wix.detox.test:id/gone = 0x7f0800ab ++com.wix.detox.test:id/ghost_view = 0x7f0800a9 ++com.wix.detox.test:id/mtrl_card_checked_layer_id = 0x7f0800f3 ++com.wix.detox.test:id/floating = 0x7f0800a6 ++com.wix.detox.test:id/flip = 0x7f0800a5 ++com.wix.detox.test:id/fill_vertical = 0x7f0800a1 ++com.wix.detox.test:layout/design_bottom_navigation_item = 0x7f0b001d ++com.wix.detox.test:id/fill = 0x7f08009f ++com.wix.detox.test:id/expanded_menu = 0x7f08009d ++com.wix.detox.test:id/enterAlwaysCollapsed = 0x7f08009a ++com.wix.detox.test:id/edit_query = 0x7f080095 ++com.wix.detox.test:attr/useMaterialThemeColors = 0x7f030375 ++com.wix.detox.test:color/material_timepicker_button_stroke = 0x7f05007c ++com.wix.detox.test:style/Theme.AppCompat.Light.Dialog.MinWidth = 0x7f0e0197 ++com.wix.detox.test:id/easeOut = 0x7f080094 ++com.wix.detox.test:id/fixed = 0x7f0800a4 ++com.wix.detox.test:color/primary_text_default_material_dark = 0x7f0500b9 ++com.wix.detox.test:id/dragStart = 0x7f08008f ++com.wix.detox.test:color/design_fab_stroke_top_outer_color = 0x7f050051 ++com.wix.detox.test:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense = 0x7f0e0265 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionButton.CloseMode = 0x7f0e00a2 ++com.wix.detox.test:id/dragRight = 0x7f08008e ++com.wix.detox.test:color/mtrl_btn_text_btn_bg_color_selector = 0x7f050083 ++com.wix.detox.test:id/dragEnd = 0x7f08008c ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationRailView.PrimarySurface = 0x7f0e02aa ++com.wix.detox.test:id/disableScroll = 0x7f080089 ++com.wix.detox.test:id/dialog_button = 0x7f080084 ++com.wix.detox.test:color/tooltip_background_dark = 0x7f0500cc ++com.wix.detox.test:id/design_menu_item_action_area_stub = 0x7f080081 ++com.wix.detox.test:id/skipCollapsed = 0x7f080148 ++com.wix.detox.test:color/bright_foreground_material_light = 0x7f050026 ++com.wix.detox.test:dimen/mtrl_slider_thumb_radius = 0x7f060168 ++com.wix.detox.test:id/design_menu_item_action_area = 0x7f080080 ++com.wix.detox.test:string/mtrl_picker_a11y_prev_month = 0x7f0d0044 ++com.wix.detox.test:id/material_textinput_timepicker = 0x7f0800d8 ++com.wix.detox.test:id/design_bottom_sheet = 0x7f08007f ++com.wix.detox.test:dimen/tooltip_corner_radius = 0x7f06019f ++com.wix.detox.test:id/snap = 0x7f08014c ++com.wix.detox.test:id/deltaRelative = 0x7f08007e ++com.wix.detox.test:id/staticLayout = 0x7f08015d ++com.wix.detox.test:id/default_activity_button = 0x7f08007d ++com.wix.detox.test:id/decelerate = 0x7f08007a ++com.wix.detox.test:id/cut = 0x7f080078 ++com.wix.detox.test:id/customPanel = 0x7f080077 ++com.wix.detox.test:attr/tickMarkTint = 0x7f030346 ++com.wix.detox.test:id/counterclockwise = 0x7f080075 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon = 0x7f0e010e ++com.wix.detox.test:id/inward = 0x7f0800be ++com.wix.detox.test:id/contiguous = 0x7f080072 ++com.wix.detox.test:attr/viewInflaterClass = 0x7f030378 ++com.wix.detox.test:id/contentPanel = 0x7f080071 ++com.wix.detox.test:id/content = 0x7f080070 ++com.wix.detox.test:id/clockwise = 0x7f08006c ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.ActionBar = 0x7f0e0069 ++com.wix.detox.test:dimen/mtrl_textinput_box_stroke_width_default = 0x7f060177 ++com.wix.detox.test:id/clip_horizontal = 0x7f08006a ++com.wix.detox.test:id/circle_center = 0x7f080068 ++com.wix.detox.test:id/chronometer = 0x7f080067 ++com.wix.detox.test:layout/design_navigation_item = 0x7f0b0024 ++com.wix.detox.test:id/chip_group = 0x7f080066 ++com.wix.detox.test:id/chip3 = 0x7f080065 ++com.wix.detox.test:id/SHIFT = 0x7f080007 ++com.wix.detox.test:id/chip1 = 0x7f080063 ++com.wix.detox.test:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f0e0140 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen = 0x7f0e029c ++com.wix.detox.test:id/chip = 0x7f080062 ++com.wix.detox.test:attr/layout_constraintDimensionRatio = 0x7f0301d7 ++com.wix.detox.test:id/chains = 0x7f08005f ++com.wix.detox.test:id/center_vertical = 0x7f08005d ++com.wix.detox.test:styleable/AppBarLayout_Layout = 0x7f0f000c ++com.wix.detox.test:attr/buttonCompat = 0x7f030070 ++com.wix.detox.test:id/center = 0x7f08005b ++com.wix.detox.test:style/TestStyleWithoutLineHeight = 0x7f0e012e ++com.wix.detox.test:id/cancel_button = 0x7f08005a ++com.wix.detox.test:id/baseline = 0x7f080053 ++com.wix.detox.test:id/barrier = 0x7f080052 ++com.wix.detox.test:id/autoCompleteToStart = 0x7f080051 ++com.wix.detox.test:style/Widget.AppCompat.Spinner.DropDown = 0x7f0e0247 ++com.wix.detox.test:id/async = 0x7f08004d ++com.wix.detox.test:attr/backgroundInsetBottom = 0x7f03003e ++com.wix.detox.test:id/asConfigured = 0x7f08004c ++com.wix.detox.test:drawable/mtrl_popupmenu_background_dark = 0x7f07007c ++com.wix.detox.test:attr/colorButtonNormal = 0x7f0300b7 ++com.wix.detox.test:attr/textAppearanceSubtitle1 = 0x7f03032e ++com.wix.detox.test:id/arc = 0x7f08004b ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline6 = 0x7f0e017c ++com.wix.detox.test:id/animateToStart = 0x7f08004a ++com.wix.detox.test:id/animateToEnd = 0x7f080049 ++com.wix.detox.test:id/androidx_test_espresso_contrib_drawer_layout_tag = 0x7f080048 ++com.wix.detox.test:id/aligned = 0x7f080045 ++com.wix.detox.test:string/mtrl_picker_text_input_date_range_start_hint = 0x7f0d005a ++com.wix.detox.test:id/labeled = 0x7f0800c3 ++com.wix.detox.test:id/alertTitle = 0x7f080044 ++com.wix.detox.test:attr/forceApplySystemWindowInsetTop = 0x7f030175 ++com.wix.detox.test:id/add = 0x7f080043 ++com.wix.detox.test:id/activity_chooser_view_content = 0x7f080042 ++com.wix.detox.test:id/scrollIndicatorUp = 0x7f080133 ++com.wix.detox.test:id/action_text = 0x7f080040 ++com.wix.detox.test:style/Widget.MaterialComponents.PopupMenu.Overflow = 0x7f0e02af ++com.wix.detox.test:animator/mtrl_btn_unelevated_state_list_anim = 0x7f02000e ++com.wix.detox.test:drawable/abc_list_selector_background_transition_holo_light = 0x7f070031 ++com.wix.detox.test:id/action_mode_close_button = 0x7f08003f ++com.wix.detox.test:id/action_menu_divider = 0x7f08003b ++com.wix.detox.test:dimen/test_navigation_bar_shadow_height = 0x7f06019d ++com.wix.detox.test:id/action_divider = 0x7f080039 ++com.wix.detox.test:attr/layout_constraintTop_creator = 0x7f0301ed ++com.wix.detox.test:id/action_context_bar = 0x7f080038 ++com.wix.detox.test:style/ShapeAppearanceOverlay.Cut = 0x7f0e011a ++com.wix.detox.test:style/Base.Theme.AppCompat.Dialog.MinWidth = 0x7f0e004c ++com.wix.detox.test:id/action_container = 0x7f080037 ++com.wix.detox.test:id/action_bar_title = 0x7f080036 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar.TabBar = 0x7f0e00b9 ++com.wix.detox.test:id/text_input_start_icon = 0x7f08017e ++com.wix.detox.test:id/showTitle = 0x7f080146 ++com.wix.detox.test:id/action_bar_root = 0x7f080033 ++com.wix.detox.test:attr/chipSpacing = 0x7f030096 ++com.wix.detox.test:color/mtrl_navigation_bar_colored_ripple_color = 0x7f05009c ++com.wix.detox.test:id/action_bar_activity_content = 0x7f080031 ++com.wix.detox.test:id/mtrl_view_tag_bottom_padding = 0x7f080100 ++com.wix.detox.test:id/action_bar = 0x7f080030 ++com.wix.detox.test:id/accessibility_custom_action_8 = 0x7f08002e ++com.wix.detox.test:id/accessibility_custom_action_7 = 0x7f08002d ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge = 0x7f0e01af ++com.wix.detox.test:id/accessibility_custom_action_6 = 0x7f08002c ++com.wix.detox.test:id/accessibility_custom_action_31 = 0x7f080029 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.Alert.Bridge = 0x7f0e01b7 ++com.wix.detox.test:id/accessibility_custom_action_30 = 0x7f080028 ++com.wix.detox.test:id/accessibility_custom_action_29 = 0x7f080026 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderLayout = 0x7f0e029a ++com.wix.detox.test:color/material_slider_inactive_tick_marks_color = 0x7f050078 ++com.wix.detox.test:id/accessibility_custom_action_28 = 0x7f080025 ++com.wix.detox.test:id/accessibility_custom_action_27 = 0x7f080024 ++com.wix.detox.test:style/AndroidThemeColorAccentYellow = 0x7f0e0002 ++com.wix.detox.test:id/accessibility_custom_action_26 = 0x7f080023 ++com.wix.detox.test:attr/clockNumberTextColor = 0x7f0300a5 ++com.wix.detox.test:styleable/KeyCycle = 0x7f0f003b ++com.wix.detox.test:id/cos = 0x7f080074 ++com.wix.detox.test:id/accessibility_custom_action_23 = 0x7f080020 ++com.wix.detox.test:attr/state_dragged = 0x7f0302e3 ++com.wix.detox.test:id/accessibility_custom_action_22 = 0x7f08001f ++com.wix.detox.test:id/accessibility_custom_action_21 = 0x7f08001e ++com.wix.detox.test:attr/layout_constraintEnd_toEndOf = 0x7f0301d8 ++com.wix.detox.test:id/accessibility_custom_action_20 = 0x7f08001d ++com.wix.detox.test:color/mtrl_textinput_focused_box_stroke_color = 0x7f0500b1 ++com.wix.detox.test:id/accessibility_custom_action_2 = 0x7f08001c ++com.wix.detox.test:id/accessibility_custom_action_19 = 0x7f08001b ++com.wix.detox.test:id/accessibility_custom_action_15 = 0x7f080017 ++com.wix.detox.test:id/accessibility_custom_action_13 = 0x7f080015 ++com.wix.detox.test:id/accessibility_custom_action_11 = 0x7f080013 ++com.wix.detox.test:id/accelerate = 0x7f08000e ++com.wix.detox.test:id/TOP_START = 0x7f08000d ++com.wix.detox.test:id/SHOW_PATH = 0x7f080009 ++com.wix.detox.test:style/Widget.AppCompat.Toolbar.Button.Navigation = 0x7f0e024d ++com.wix.detox.test:id/SHOW_ALL = 0x7f080008 ++com.wix.detox.test:attr/number = 0x7f03026e ++com.wix.detox.test:style/Widget.AppCompat.ListPopupWindow = 0x7f0e0236 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Title.Inverse = 0x7f0e002d ++com.wix.detox.test:color/mtrl_navigation_bar_colored_item_tint = 0x7f05009b ++com.wix.detox.test:id/NO_DEBUG = 0x7f080006 ++com.wix.detox.test:styleable/SwitchCompat = 0x7f0f0078 ++com.wix.detox.test:style/Widget.AppCompat.ActionButton.Overflow = 0x7f0e020c ++com.wix.detox.test:style/TextAppearance.AppCompat.Small = 0x7f0e0147 ++com.wix.detox.test:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0 = 0x7f0a0000 ++com.wix.detox.test:id/CTRL = 0x7f080003 ++com.wix.detox.test:style/Platform.MaterialComponents.Light = 0x7f0e00f6 ++com.wix.detox.test:id/BOTTOM_START = 0x7f080002 ++com.wix.detox.test:drawable/test_custom_background = 0x7f07008b ++com.wix.detox.test:drawable/notification_tile_bg = 0x7f070089 ++com.wix.detox.test:id/off = 0x7f08010e ++com.wix.detox.test:style/Widget.AppCompat.ActionBar.Solid = 0x7f0e0206 ++com.wix.detox.test:color/abc_btn_colored_text_material = 0x7f050003 ++com.wix.detox.test:drawable/notification_template_icon_bg = 0x7f070087 ++com.wix.detox.test:drawable/notification_bg_low_pressed = 0x7f070083 ++com.wix.detox.test:styleable/LinearLayoutCompat = 0x7f0f0043 ++com.wix.detox.test:attr/mock_labelBackgroundColor = 0x7f03024b ++com.wix.detox.test:style/WhiteBackgroundTheme = 0x7f0e0204 ++com.wix.detox.test:drawable/notification_bg_low_normal = 0x7f070082 ++com.wix.detox.test:drawable/notification_bg = 0x7f070080 ++com.wix.detox.test:id/standard = 0x7f080158 ++com.wix.detox.test:drawable/mtrl_popupmenu_background = 0x7f07007b ++com.wix.detox.test:drawable/mtrl_ic_cancel = 0x7f070078 ++com.wix.detox.test:dimen/abc_action_button_min_width_overflow_material = 0x7f06000f ++com.wix.detox.test:drawable/mtrl_ic_arrow_drop_down = 0x7f070076 ++com.wix.detox.test:id/action_bar_spinner = 0x7f080034 ++com.wix.detox.test:drawable/mtrl_dropdown_arrow = 0x7f070075 ++com.wix.detox.test:dimen/mtrl_extended_fab_elevation = 0x7f060126 ++com.wix.detox.test:style/Widget.AppCompat.ButtonBar.AlertDialog = 0x7f0e0217 ++com.wix.detox.test:attr/helperTextTextColor = 0x7f030182 ++com.wix.detox.test:color/design_fab_shadow_start_color = 0x7f05004d ++com.wix.detox.test:drawable/material_ic_menu_arrow_up_black_24dp = 0x7f070073 ++com.wix.detox.test:drawable/material_ic_menu_arrow_down_black_24dp = 0x7f070072 ++com.wix.detox.test:drawable/material_ic_keyboard_arrow_right_black_24dp = 0x7f070071 ++com.wix.detox.test:xml/standalone_badge_offset = 0x7f100004 ++com.wix.detox.test:drawable/material_ic_keyboard_arrow_previous_black_24dp = 0x7f070070 ++com.wix.detox.test:color/mtrl_filled_background_color = 0x7f050097 ++com.wix.detox.test:drawable/material_ic_keyboard_arrow_left_black_24dp = 0x7f07006e ++com.wix.detox.test:attr/liftOnScroll = 0x7f030205 ++com.wix.detox.test:styleable/BaseProgressIndicator = 0x7f0f0013 ++com.wix.detox.test:drawable/material_ic_edit_black_24dp = 0x7f07006d ++com.wix.detox.test:drawable/material_ic_calendar_black_24dp = 0x7f07006b ++com.wix.detox.test:drawable/material_cursor_drawable = 0x7f07006a ++com.wix.detox.test:attr/tabIndicatorGravity = 0x7f030304 ++com.wix.detox.test:drawable/ic_mtrl_chip_checked_circle = 0x7f070068 ++com.wix.detox.test:id/invisible = 0x7f0800bd ++com.wix.detox.test:drawable/ic_mtrl_chip_checked_black = 0x7f070067 ++com.wix.detox.test:drawable/design_password_eye = 0x7f070062 ++com.wix.detox.test:string/status_bar_notification_info_overflow = 0x7f0d0068 ++com.wix.detox.test:attr/dropDownListViewStyle = 0x7f030121 ++com.wix.detox.test:drawable/design_fab_background = 0x7f07005f ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Dialog.FixedSize = 0x7f0e0065 ++com.wix.detox.test:styleable/MaterialTimePicker = 0x7f0f0054 ++com.wix.detox.test:dimen/mtrl_edittext_rectangle_top_offset = 0x7f06011e ++com.wix.detox.test:styleable/CardView = 0x7f0f0019 ++com.wix.detox.test:drawable/btn_radio_off_mtrl = 0x7f07005b ++com.wix.detox.test:id/parent_matrix = 0x7f080117 ++com.wix.detox.test:drawable/btn_checkbox_checked_to_unchecked_mtrl_animation = 0x7f070058 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton = 0x7f0e011e ++com.wix.detox.test:drawable/abc_textfield_search_default_mtrl_alpha = 0x7f070052 ++com.wix.detox.test:drawable/abc_text_select_handle_right_mtrl = 0x7f07004e ++com.wix.detox.test:attr/barrierAllowsGoneWidgets = 0x7f03004b ++com.wix.detox.test:drawable/abc_text_select_handle_middle_mtrl = 0x7f07004d ++com.wix.detox.test:style/Base.Widget.AppCompat.PopupMenu.Overflow = 0x7f0e00c5 ++com.wix.detox.test:drawable/abc_tab_indicator_mtrl_alpha = 0x7f07004a ++com.wix.detox.test:integer/material_motion_path = 0x7f09000f ++com.wix.detox.test:drawable/abc_switch_track_mtrl_alpha = 0x7f070048 ++com.wix.detox.test:drawable/abc_switch_thumb_material = 0x7f070047 ++com.wix.detox.test:drawable/abc_star_half_black_48dp = 0x7f070046 ++com.wix.detox.test:style/Base.DialogWindowTitle.AppCompat = 0x7f0e000e ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton.Snackbar = 0x7f0e0278 ++com.wix.detox.test:drawable/abc_spinner_textfield_background_material = 0x7f070044 ++com.wix.detox.test:attr/labelVisibilityMode = 0x7f0301c2 ++com.wix.detox.test:style/TextAppearance.Design.Snackbar.Message = 0x7f0e016e ++com.wix.detox.test:drawable/abc_seekbar_track_material = 0x7f070042 ++com.wix.detox.test:dimen/material_input_text_to_prefix_suffix_padding = 0x7f0600b8 ++com.wix.detox.test:drawable/abc_seekbar_thumb_material = 0x7f070040 ++com.wix.detox.test:drawable/abc_scrubber_primary_mtrl_alpha = 0x7f07003e ++com.wix.detox.test:drawable/abc_scrubber_control_to_pressed_mtrl_005 = 0x7f07003d ++com.wix.detox.test:drawable/abc_ratingbar_small_material = 0x7f07003a ++com.wix.detox.test:color/design_default_color_on_secondary = 0x7f050042 ++com.wix.detox.test:id/tag_on_receive_content_listener = 0x7f080169 ++com.wix.detox.test:style/Test.ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day = 0x7f0e0126 ++com.wix.detox.test:drawable/abc_ratingbar_indicator_material = 0x7f070038 ++com.wix.detox.test:dimen/abc_dialog_title_divider_material = 0x7f060026 ++com.wix.detox.test:drawable/abc_popup_background_mtrl_mult = 0x7f070037 ++com.wix.detox.test:drawable/abc_list_selector_holo_light = 0x7f070035 ++com.wix.detox.test:drawable/abc_list_selector_holo_dark = 0x7f070034 ++com.wix.detox.test:attr/checkedTextViewStyle = 0x7f03008a ++com.wix.detox.test:styleable/GradientColorItem = 0x7f0f0037 ++com.wix.detox.test:style/ShapeAppearanceOverlay.TopLeftCut = 0x7f0e0124 ++com.wix.detox.test:layout/abc_action_menu_layout = 0x7f0b0003 ++com.wix.detox.test:drawable/abc_list_selector_disabled_holo_light = 0x7f070033 ++com.wix.detox.test:id/groups = 0x7f0800af ++com.wix.detox.test:bool/mtrl_btn_textappearance_all_caps = 0x7f040002 ++com.wix.detox.test:drawable/abc_list_selector_disabled_holo_dark = 0x7f070032 ++com.wix.detox.test:drawable/abc_menu_hardkey_panel_mtrl_mult = 0x7f070036 ++com.wix.detox.test:drawable/abc_list_selector_background_transition_holo_dark = 0x7f070030 ++com.wix.detox.test:attr/chipSpacingVertical = 0x7f030098 ++com.wix.detox.test:style/Platform.Widget.AppCompat.Spinner = 0x7f0e00ff ++com.wix.detox.test:drawable/abc_list_pressed_holo_dark = 0x7f07002e ++com.wix.detox.test:drawable/abc_list_focused_holo = 0x7f07002c ++com.wix.detox.test:id/decelerateAndComplete = 0x7f08007b ++com.wix.detox.test:drawable/abc_list_divider_mtrl_alpha = 0x7f07002b ++com.wix.detox.test:drawable/abc_item_background_holo_dark = 0x7f070028 ++com.wix.detox.test:drawable/abc_ic_voice_search_api_material = 0x7f070027 ++com.wix.detox.test:drawable/abc_ic_search_api_material = 0x7f070026 ++com.wix.detox.test:drawable/notify_panel_notification_icon_bg = 0x7f07008a ++com.wix.detox.test:drawable/abc_ic_go_search_api_material = 0x7f07001f ++com.wix.detox.test:layout/notification_action_tombstone = 0x7f0b0058 ++com.wix.detox.test:attr/textAppearanceHeadline5 = 0x7f030322 ++com.wix.detox.test:drawable/abc_ic_commit_search_api_mtrl_alpha = 0x7f07001e ++com.wix.detox.test:drawable/abc_ic_clear_material = 0x7f07001d ++com.wix.detox.test:attr/backgroundTintMode = 0x7f030046 ++com.wix.detox.test:styleable/AnimatedStateListDrawableTransition = 0x7f0f0009 ++com.wix.detox.test:drawable/abc_ic_ab_back_material = 0x7f07001b ++com.wix.detox.test:drawable/abc_control_background_material = 0x7f070018 ++com.wix.detox.test:styleable/ViewBackgroundHelper = 0x7f0f0086 ++com.wix.detox.test:drawable/abc_cab_background_top_material = 0x7f070016 ++com.wix.detox.test:attr/statusBarBackground = 0x7f0302e6 ++com.wix.detox.test:string/mtrl_picker_toggle_to_year_selection = 0x7f0d0061 ++com.wix.detox.test:drawable/abc_cab_background_internal_bg = 0x7f070015 ++com.wix.detox.test:drawable/abc_btn_radio_to_on_mtrl_015 = 0x7f070012 ++com.wix.detox.test:id/mtrl_picker_header_toggle = 0x7f0800fb ++com.wix.detox.test:style/Theme.MaterialComponents.Light.NoActionBar = 0x7f0e01ce ++com.wix.detox.test:style/Base.Widget.AppCompat.ProgressBar = 0x7f0e00c7 ++com.wix.detox.test:layout/mtrl_calendar_days_of_week = 0x7f0b0042 ++com.wix.detox.test:drawable/abc_btn_radio_to_on_mtrl_000 = 0x7f070011 ++com.wix.detox.test:style/Widget.AppCompat.PopupWindow = 0x7f0e023c ++com.wix.detox.test:attr/rippleColor = 0x7f0302ad ++com.wix.detox.test:dimen/mtrl_badge_toolbar_action_menu_item_horizontal_offset = 0x7f0600cb ++com.wix.detox.test:drawable/abc_btn_radio_material_anim = 0x7f070010 ++com.wix.detox.test:drawable/abc_btn_check_material = 0x7f070009 ++com.wix.detox.test:drawable/abc_btn_borderless_material = 0x7f070008 ++com.wix.detox.test:attr/actionBarTheme = 0x7f030009 ++com.wix.detox.test:drawable/$avd_show_password__1 = 0x7f070004 ++com.wix.detox.test:attr/customNavigationLayout = 0x7f0300fd ++com.wix.detox.test:layout/abc_list_menu_item_layout = 0x7f0b0010 ++com.wix.detox.test:id/square = 0x7f080154 ++com.wix.detox.test:drawable/$avd_hide_password__1 = 0x7f070001 ++com.wix.detox.test:attr/homeAsUpIndicator = 0x7f03018b ++com.wix.detox.test:dimen/tooltip_y_offset_touch = 0x7f0601a6 ++com.wix.detox.test:attr/windowMinWidthMinor = 0x7f030389 ++com.wix.detox.test:dimen/tooltip_y_offset_non_touch = 0x7f0601a5 ++com.wix.detox.test:style/CardView.Light = 0x7f0e00e6 ++com.wix.detox.test:style/Widget.MaterialComponents.ActionBar.PrimarySurface = 0x7f0e025c ++com.wix.detox.test:dimen/tooltip_vertical_padding = 0x7f0601a4 ++com.wix.detox.test:dimen/tooltip_precise_anchor_threshold = 0x7f0601a3 ++com.wix.detox.test:attr/actionBarSize = 0x7f030003 ++com.wix.detox.test:id/buttonPanel = 0x7f080059 ++com.wix.detox.test:dimen/material_clock_number_text_size = 0x7f0600a4 ++com.wix.detox.test:dimen/test_navigation_bar_text_size = 0x7f06019e ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu = 0x7f0e02c4 ++com.wix.detox.test:drawable/mtrl_ic_error = 0x7f070079 ++com.wix.detox.test:color/material_timepicker_button_background = 0x7f05007b ++com.wix.detox.test:style/Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall = 0x7f0e0283 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton = 0x7f0e011f ++com.wix.detox.test:id/position = 0x7f08011e ++com.wix.detox.test:style/Widget.MaterialComponents.Chip.Action = 0x7f0e027d ++com.wix.detox.test:dimen/test_navigation_bar_label_padding = 0x7f06019c ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Light.Dialog = 0x7f0e007b ++com.wix.detox.test:dimen/test_navigation_bar_elevation = 0x7f060197 ++com.wix.detox.test:dimen/test_mtrl_calendar_day_cornerSize = 0x7f060193 ++com.wix.detox.test:dimen/notification_subtext_size = 0x7f060190 ++com.wix.detox.test:dimen/notification_small_icon_size_as_large = 0x7f06018f ++com.wix.detox.test:dimen/notification_right_side_padding_top = 0x7f06018d ++com.wix.detox.test:dimen/notification_large_icon_height = 0x7f060188 ++com.wix.detox.test:color/accent_material_light = 0x7f05001a ++com.wix.detox.test:dimen/abc_dialog_fixed_width_minor = 0x7f06001f ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Display4 = 0x7f0e001b ++com.wix.detox.test:dimen/notification_content_margin_start = 0x7f060187 ++com.wix.detox.test:style/Widget.AppCompat.AutoCompleteTextView = 0x7f0e020f ++com.wix.detox.test:dimen/notification_big_circle_margin = 0x7f060186 ++com.wix.detox.test:attr/materialThemeOverlay = 0x7f030235 ++com.wix.detox.test:id/transition_current_scene = 0x7f08018f ++com.wix.detox.test:dimen/notification_action_icon_size = 0x7f060184 ++com.wix.detox.test:dimen/mtrl_transition_shared_axis_slide_distance = 0x7f060183 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day = 0x7f0e0120 ++com.wix.detox.test:attr/startIconCheckable = 0x7f0302db ++com.wix.detox.test:attr/snackbarStyle = 0x7f0302d1 ++com.wix.detox.test:dimen/mtrl_tooltip_cornerSize = 0x7f06017f ++com.wix.detox.test:dimen/mtrl_textinput_start_icon_margin_end = 0x7f06017c ++com.wix.detox.test:dimen/design_snackbar_background_corner_radius = 0x7f060081 ++com.wix.detox.test:dimen/mtrl_textinput_counter_margin_start = 0x7f060179 ++com.wix.detox.test:id/layout = 0x7f0800c4 ++com.wix.detox.test:id/mtrl_calendar_selection_frame = 0x7f0800f0 ++com.wix.detox.test:id/month_navigation_fragment_toggle = 0x7f0800e5 ++com.wix.detox.test:dimen/mtrl_textinput_box_label_cutout_padding = 0x7f060176 ++com.wix.detox.test:style/Base.Widget.AppCompat.ImageButton = 0x7f0e00b6 ++com.wix.detox.test:attr/boxCollapsedPaddingTop = 0x7f030061 ++com.wix.detox.test:dimen/mtrl_snackbar_padding_horizontal = 0x7f060172 ++com.wix.detox.test:attr/state_liftable = 0x7f0302e4 ++com.wix.detox.test:id/accessibility_custom_action_16 = 0x7f080018 ++com.wix.detox.test:dimen/mtrl_snackbar_background_overlay_color_alpha = 0x7f06016f ++com.wix.detox.test:style/Widget.AppCompat.Light.AutoCompleteTextView = 0x7f0e022d ++com.wix.detox.test:id/custom = 0x7f080076 ++com.wix.detox.test:dimen/mtrl_slider_widget_height = 0x7f06016c ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Button = 0x7f0e0174 ++com.wix.detox.test:attr/actionOverflowMenuStyle = 0x7f030020 ++com.wix.detox.test:dimen/mtrl_slider_track_top = 0x7f06016b ++com.wix.detox.test:dimen/mtrl_slider_track_height = 0x7f060169 ++com.wix.detox.test:attr/maxActionInlineWidth = 0x7f030239 ++com.wix.detox.test:dimen/mtrl_slider_label_padding = 0x7f060164 ++com.wix.detox.test:dimen/mtrl_shape_corner_size_small_component = 0x7f060162 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar.Solid = 0x7f0e00b8 ++com.wix.detox.test:dimen/mtrl_shape_corner_size_medium_component = 0x7f060161 ++com.wix.detox.test:style/Widget.MaterialComponents.CollapsingToolbar = 0x7f0e0286 ++com.wix.detox.test:layout/abc_list_menu_item_icon = 0x7f0b000f ++com.wix.detox.test:dimen/mtrl_progress_indicator_full_rounded_corner_radius = 0x7f06015e ++com.wix.detox.test:dimen/mtrl_slider_thumb_elevation = 0x7f060167 ++com.wix.detox.test:attr/listPreferredItemHeightLarge = 0x7f030214 ++com.wix.detox.test:dimen/mtrl_progress_circular_track_thickness_medium = 0x7f06015c ++com.wix.detox.test:attr/placeholder_emptyVisibility = 0x7f030293 ++com.wix.detox.test:attr/selectorSize = 0x7f0302bb ++com.wix.detox.test:dimen/mtrl_progress_circular_size_small = 0x7f06015a ++com.wix.detox.test:id/fade = 0x7f08009e ++com.wix.detox.test:attr/flow_horizontalStyle = 0x7f03015d ++com.wix.detox.test:attr/customColorDrawableValue = 0x7f0300f8 ++com.wix.detox.test:color/mtrl_scrim_color = 0x7f0500a7 ++com.wix.detox.test:dimen/mtrl_progress_circular_size_medium = 0x7f060159 ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat = 0x7f0e0068 ++com.wix.detox.test:dimen/material_helper_text_font_1_3_padding_top = 0x7f0600b7 ++com.wix.detox.test:attr/contrast = 0x7f0300e0 ++com.wix.detox.test:attr/editTextColor = 0x7f030125 ++com.wix.detox.test:dimen/mtrl_progress_circular_size_extra_small = 0x7f060158 ++com.wix.detox.test:attr/motion_postLayoutCollision = 0x7f030261 ++com.wix.detox.test:layout/test_design_radiobutton = 0x7f0b0064 ++com.wix.detox.test:dimen/mtrl_progress_circular_size = 0x7f060157 ++com.wix.detox.test:dimen/mtrl_progress_circular_inset_extra_small = 0x7f060153 ++com.wix.detox.test:id/bottom = 0x7f080057 ++com.wix.detox.test:dimen/mtrl_navigation_rail_compact_width = 0x7f06014a ++com.wix.detox.test:dimen/mtrl_navigation_item_shape_vertical_margin = 0x7f060148 ++com.wix.detox.test:attr/searchHintIcon = 0x7f0302b4 ++com.wix.detox.test:dimen/mtrl_navigation_elevation = 0x7f060143 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton = 0x7f0e0298 ++com.wix.detox.test:id/parallax = 0x7f080113 ++com.wix.detox.test:dimen/mtrl_low_ripple_hovered_alpha = 0x7f06013e ++com.wix.detox.test:attr/tabContentStart = 0x7f0302fb ++com.wix.detox.test:dimen/mtrl_large_touch_target = 0x7f06013b ++com.wix.detox.test:integer/material_motion_duration_medium_1 = 0x7f09000b ++com.wix.detox.test:id/filled = 0x7f0800a2 ++com.wix.detox.test:dimen/mtrl_high_ripple_pressed_alpha = 0x7f06013a ++com.wix.detox.test:drawable/abc_scrubber_track_mtrl_alpha = 0x7f07003f ++com.wix.detox.test:attr/onShow = 0x7f030274 ++com.wix.detox.test:dimen/mtrl_low_ripple_pressed_alpha = 0x7f06013f ++com.wix.detox.test:dimen/mtrl_high_ripple_hovered_alpha = 0x7f060139 ++com.wix.detox.test:dimen/design_snackbar_action_text_color_alpha = 0x7f060080 ++com.wix.detox.test:dimen/mtrl_high_ripple_focused_alpha = 0x7f060138 ++com.wix.detox.test:attr/cardMaxElevation = 0x7f03007c ++com.wix.detox.test:dimen/mtrl_extended_fab_translation_z_hovered_focused = 0x7f060131 ++com.wix.detox.test:dimen/mtrl_extended_fab_translation_z_base = 0x7f060130 ++com.wix.detox.test:attr/materialClockStyle = 0x7f030234 ++com.wix.detox.test:dimen/mtrl_extended_fab_top_padding = 0x7f06012f ++com.wix.detox.test:dimen/abc_button_inset_vertical_material = 0x7f060013 ++com.wix.detox.test:color/mtrl_tabs_colored_ripple_color = 0x7f0500a8 ++com.wix.detox.test:attr/textAppearanceLargePopupMenu = 0x7f030324 ++com.wix.detox.test:dimen/mtrl_extended_fab_icon_text_spacing = 0x7f06012a ++com.wix.detox.test:id/list_item = 0x7f0800cb ++com.wix.detox.test:id/material_label = 0x7f0800d5 ++com.wix.detox.test:attr/itemTextAppearanceActive = 0x7f0301b9 ++com.wix.detox.test:dimen/mtrl_extended_fab_end_padding_icon = 0x7f060128 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge = 0x7f0e01ac ++com.wix.detox.test:dimen/mtrl_extended_fab_end_padding = 0x7f060127 ++com.wix.detox.test:style/Widget.AppCompat.Spinner.Underlined = 0x7f0e0249 ++com.wix.detox.test:style/Widget.AppCompat.Button.Colored = 0x7f0e0214 ++com.wix.detox.test:drawable/btn_radio_off_to_on_mtrl_animation = 0x7f07005c ++com.wix.detox.test:dimen/abc_action_button_min_width_material = 0x7f06000e ++com.wix.detox.test:dimen/mtrl_exposed_dropdown_menu_popup_vertical_padding = 0x7f060121 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Medium.Inverse = 0x7f0e0023 ++com.wix.detox.test:dimen/abc_dropdownitem_text_padding_right = 0x7f06002b ++com.wix.detox.test:layout/mtrl_navigation_rail_item = 0x7f0b004c ++com.wix.detox.test:id/search_plate = 0x7f08013d ++com.wix.detox.test:attr/fabCradleMargin = 0x7f03014a ++com.wix.detox.test:id/navigation_header_container = 0x7f080106 ++com.wix.detox.test:dimen/mtrl_exposed_dropdown_menu_popup_vertical_offset = 0x7f060120 ++com.wix.detox.test:attr/dragScale = 0x7f030113 ++com.wix.detox.test:style/Test.Widget.MaterialComponents.MaterialCalendar.Day.Selected = 0x7f0e012a ++com.wix.detox.test:dimen/mtrl_card_elevation = 0x7f06011a ++com.wix.detox.test:id/textSpacerNoTitle = 0x7f080179 ++com.wix.detox.test:styleable/BottomAppBar = 0x7f0f0014 ++com.wix.detox.test:attr/autoCompleteTextViewStyle = 0x7f030035 ++com.wix.detox.test:dimen/mtrl_calendar_header_height = 0x7f0600fc ++com.wix.detox.test:animator/mtrl_fab_transformation_sheet_expand_spec = 0x7f020019 ++com.wix.detox.test:dimen/mtrl_card_corner_radius = 0x7f060118 ++com.wix.detox.test:string/material_timepicker_pm = 0x7f0d003c ++com.wix.detox.test:dimen/mtrl_calendar_year_horizontal_padding = 0x7f060113 ++com.wix.detox.test:dimen/mtrl_calendar_year_corner = 0x7f060111 ++com.wix.detox.test:attr/splitTrack = 0x7f0302d7 ++com.wix.detox.test:attr/chipIconTint = 0x7f030092 ++com.wix.detox.test:dimen/mtrl_calendar_title_baseline_to_top_fullscreen = 0x7f060110 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f0e0155 ++com.wix.detox.test:drawable/abc_tab_indicator_material = 0x7f070049 ++com.wix.detox.test:dimen/mtrl_calendar_header_content_padding = 0x7f0600f9 ++com.wix.detox.test:color/tooltip_background_light = 0x7f0500cd ++com.wix.detox.test:dimen/mtrl_calendar_pre_l_text_clip_padding = 0x7f060109 ++com.wix.detox.test:style/TextAppearance.AppCompat.Display1 = 0x7f0e0136 ++com.wix.detox.test:dimen/mtrl_calendar_navigation_top_padding = 0x7f060108 ++com.wix.detox.test:dimen/mtrl_calendar_maximum_default_fullscreen_minor_axis = 0x7f060103 ++com.wix.detox.test:dimen/mtrl_calendar_header_toggle_margin_top = 0x7f060101 ++com.wix.detox.test:dimen/mtrl_calendar_header_text_padding = 0x7f0600ff ++com.wix.detox.test:drawable/notification_bg_normal = 0x7f070084 ++com.wix.detox.test:color/abc_secondary_text_material_light = 0x7f050012 ++com.wix.detox.test:dimen/mtrl_calendar_header_height_fullscreen = 0x7f0600fd ++com.wix.detox.test:dimen/mtrl_calendar_header_divider_thickness = 0x7f0600fb ++com.wix.detox.test:attr/fastScrollHorizontalThumbDrawable = 0x7f030150 ++com.wix.detox.test:attr/colorOnPrimary = 0x7f0300be ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline2 = 0x7f0e0178 ++com.wix.detox.test:dimen/mtrl_calendar_header_content_padding_fullscreen = 0x7f0600fa ++com.wix.detox.test:color/design_dark_default_color_primary_variant = 0x7f050039 ++com.wix.detox.test:dimen/mtrl_calendar_day_width = 0x7f0600f6 ++com.wix.detox.test:attr/passwordToggleTint = 0x7f030286 ++com.wix.detox.test:dimen/mtrl_calendar_day_vertical_padding = 0x7f0600f5 ++com.wix.detox.test:dimen/mtrl_shape_corner_size_large_component = 0x7f060160 ++com.wix.detox.test:attr/paddingBottomSystemWindowInsets = 0x7f030279 ++com.wix.detox.test:attr/windowFixedHeightMajor = 0x7f030384 ++com.wix.detox.test:dimen/material_text_view_test_line_height_override = 0x7f0600ba ++com.wix.detox.test:dimen/mtrl_calendar_action_height = 0x7f0600ed ++com.wix.detox.test:dimen/mtrl_btn_z = 0x7f0600eb ++com.wix.detox.test:attr/behavior_draggable = 0x7f030050 ++com.wix.detox.test:dimen/mtrl_btn_text_size = 0x7f0600ea ++com.wix.detox.test:dimen/mtrl_btn_text_btn_icon_padding = 0x7f0600e7 ++com.wix.detox.test:drawable/$avd_show_password__0 = 0x7f070003 ++com.wix.detox.test:attr/tintMode = 0x7f03034a ++com.wix.detox.test:dimen/mtrl_btn_padding_right = 0x7f0600e2 ++com.wix.detox.test:attr/materialAlertDialogBodyTextStyle = 0x7f03021c ++com.wix.detox.test:drawable/abc_scrubber_control_to_pressed_mtrl_000 = 0x7f07003c ++com.wix.detox.test:attr/colorControlActivated = 0x7f0300b8 ++com.wix.detox.test:dimen/mtrl_btn_padding_bottom = 0x7f0600e0 ++com.wix.detox.test:anim/abc_popup_exit = 0x7f010004 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 = 0x7f0e010b ++com.wix.detox.test:dimen/hint_pressed_alpha_material_dark = 0x7f060099 ++com.wix.detox.test:string/abc_activitychooserview_choose_application = 0x7f0d0005 ++com.wix.detox.test:id/mtrl_picker_text_input_date = 0x7f0800fc ++com.wix.detox.test:color/foreground_material_dark = 0x7f05005a ++com.wix.detox.test:dimen/mtrl_btn_icon_padding = 0x7f0600dc ++com.wix.detox.test:dimen/mtrl_btn_corner_radius = 0x7f0600d4 ++com.wix.detox.test:drawable/abc_btn_check_material_anim = 0x7f07000a ++com.wix.detox.test:style/Theme.MaterialComponents.DialogWhenLarge = 0x7f0e01bd ++com.wix.detox.test:drawable/abc_btn_colored_material = 0x7f07000d ++com.wix.detox.test:attr/itemBackground = 0x7f0301a4 ++com.wix.detox.test:attr/boxCornerRadiusBottomStart = 0x7f030063 ++com.wix.detox.test:dimen/mtrl_extended_fab_min_height = 0x7f06012b ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents.Light = 0x7f0e0078 ++com.wix.detox.test:dimen/abc_dropdownitem_text_padding_left = 0x7f06002a ++com.wix.detox.test:attr/shortcutMatchRequired = 0x7f0302c1 ++com.wix.detox.test:dimen/mtrl_switch_thumb_elevation = 0x7f060173 ++com.wix.detox.test:dimen/mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f0600d1 ++com.wix.detox.test:id/title = 0x7f080186 ++com.wix.detox.test:integer/mtrl_chip_anim_duration = 0x7f090018 ++com.wix.detox.test:dimen/mtrl_bottomappbar_fabOffsetEndMode = 0x7f0600ce ++com.wix.detox.test:style/TextAppearance.Compat.Notification.Info = 0x7f0e0162 ++com.wix.detox.test:attr/arrowShaftLength = 0x7f030033 ++com.wix.detox.test:dimen/design_textinput_caption_translate_y = 0x7f06008e ++com.wix.detox.test:dimen/abc_action_bar_overflow_padding_end_material = 0x7f060007 ++com.wix.detox.test:dimen/mtrl_badge_radius = 0x7f0600c8 ++com.wix.detox.test:attr/defaultQueryHint = 0x7f030105 ++com.wix.detox.test:dimen/mtrl_alert_dialog_background_inset_end = 0x7f0600c2 ++com.wix.detox.test:color/design_fab_stroke_top_inner_color = 0x7f050050 ++com.wix.detox.test:attr/materialCalendarHeaderTitle = 0x7f03022b ++com.wix.detox.test:dimen/mtrl_alert_dialog_background_inset_bottom = 0x7f0600c1 ++com.wix.detox.test:color/design_dark_default_color_on_background = 0x7f050032 ++com.wix.detox.test:dimen/mtrl_extended_fab_min_width = 0x7f06012c ++com.wix.detox.test:dimen/material_timepicker_dialog_buttons_margin_top = 0x7f0600c0 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox = 0x7f0e01fa ++com.wix.detox.test:dimen/material_time_picker_minimum_screen_height = 0x7f0600be ++com.wix.detox.test:id/design_navigation_view = 0x7f080083 ++com.wix.detox.test:dimen/mtrl_card_checked_icon_margin = 0x7f060116 ++com.wix.detox.test:attr/queryHint = 0x7f0302a0 ++com.wix.detox.test:dimen/material_textinput_default_width = 0x7f0600bb ++com.wix.detox.test:style/Theme.Design.Light.BottomSheetDialog = 0x7f0e019e ++com.wix.detox.test:dimen/mtrl_btn_pressed_z = 0x7f0600e4 ++com.wix.detox.test:dimen/abc_dialog_fixed_height_major = 0x7f06001c ++com.wix.detox.test:dimen/material_helper_text_font_1_3_padding_horizontal = 0x7f0600b6 ++com.wix.detox.test:dimen/material_font_1_3_box_collapsed_padding_top = 0x7f0600b3 ++com.wix.detox.test:style/TextAppearance.AppCompat.Medium = 0x7f0e0142 ++com.wix.detox.test:attr/itemShapeInsetEnd = 0x7f0301b2 ++com.wix.detox.test:attr/listPreferredItemHeight = 0x7f030213 ++com.wix.detox.test:dimen/material_filled_edittext_font_1_3_padding_top = 0x7f0600b0 ++com.wix.detox.test:drawable/abc_action_bar_item_background_material = 0x7f070007 ++com.wix.detox.test:dimen/material_filled_edittext_font_1_3_padding_bottom = 0x7f0600af ++com.wix.detox.test:style/Widget.Design.Snackbar = 0x7f0e0257 ++com.wix.detox.test:attr/textLocale = 0x7f030335 ++com.wix.detox.test:animator/mtrl_extended_fab_hide_motion_spec = 0x7f020013 ++com.wix.detox.test:dimen/material_cursor_width = 0x7f0600ab ++com.wix.detox.test:dimen/material_clock_period_toggle_width = 0x7f0600a7 ++com.wix.detox.test:attr/alertDialogButtonGroupStyle = 0x7f030025 ++com.wix.detox.test:dimen/mtrl_btn_disabled_elevation = 0x7f0600d6 ++com.wix.detox.test:color/mtrl_navigation_bar_item_tint = 0x7f05009d ++com.wix.detox.test:dimen/material_clock_display_padding = 0x7f06009f ++com.wix.detox.test:string/bottom_sheet_behavior = 0x7f0d001d ++com.wix.detox.test:attr/navigationViewStyle = 0x7f03026a ++com.wix.detox.test:dimen/hint_pressed_alpha_material_light = 0x7f06009a ++com.wix.detox.test:layout/material_time_input = 0x7f0b0036 ++com.wix.detox.test:style/Widget.AppCompat.Button.Borderless = 0x7f0e0211 ++com.wix.detox.test:id/triangle = 0x7f080194 ++com.wix.detox.test:attr/content = 0x7f0300d0 ++com.wix.detox.test:dimen/highlight_alpha_material_dark = 0x7f060095 ++com.wix.detox.test:attr/limitBoundsTo = 0x7f030207 ++com.wix.detox.test:dimen/fastscroll_margin = 0x7f060092 ++com.wix.detox.test:attr/fabAlignmentMode = 0x7f030148 ++com.wix.detox.test:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f0e0070 ++com.wix.detox.test:drawable/abc_btn_default_mtrl_shape = 0x7f07000e ++com.wix.detox.test:color/abc_search_url_text_selected = 0x7f050010 ++com.wix.detox.test:dimen/design_tab_text_size_2line = 0x7f06008d ++com.wix.detox.test:dimen/design_tab_scrollable_min_width = 0x7f06008b ++com.wix.detox.test:id/outline = 0x7f080110 ++com.wix.detox.test:dimen/design_snackbar_min_width = 0x7f060085 ++com.wix.detox.test:style/Widget.MaterialComponents.ChipGroup = 0x7f0e0281 ++com.wix.detox.test:dimen/design_snackbar_extra_spacing_horizontal = 0x7f060083 ++com.wix.detox.test:attr/chipStrokeColor = 0x7f03009b ++com.wix.detox.test:dimen/hint_alpha_material_dark = 0x7f060097 ++com.wix.detox.test:color/ripple_material_light = 0x7f0500bf ++com.wix.detox.test:dimen/mtrl_snackbar_message_margin_horizontal = 0x7f060171 ++com.wix.detox.test:attr/contentPadding = 0x7f0300d8 ++com.wix.detox.test:color/test_mtrl_calendar_day = 0x7f0500ca ++com.wix.detox.test:attr/materialCalendarFullscreenTheme = 0x7f030225 ++com.wix.detox.test:color/abc_tint_edittext = 0x7f050015 ++com.wix.detox.test:dimen/abc_text_size_subtitle_material_toolbar = 0x7f06004e ++com.wix.detox.test:dimen/design_snackbar_action_inline_max_width = 0x7f06007f ++com.wix.detox.test:style/ShapeAppearanceOverlay.BottomLeftDifferentCornerSize = 0x7f0e0118 ++com.wix.detox.test:dimen/mtrl_navigation_rail_elevation = 0x7f06014c ++com.wix.detox.test:styleable/FragmentContainerView = 0x7f0f0035 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Headline = 0x7f0e001c ++com.wix.detox.test:id/expand_activities_button = 0x7f08009c ++com.wix.detox.test:layout/abc_tooltip = 0x7f0b001b ++com.wix.detox.test:dimen/design_navigation_item_icon_padding = 0x7f06007b ++com.wix.detox.test:layout/mtrl_picker_text_input_date_range = 0x7f0b0056 ++com.wix.detox.test:styleable/MaterialRadioButton = 0x7f0f0050 ++com.wix.detox.test:dimen/design_navigation_item_horizontal_padding = 0x7f06007a ++com.wix.detox.test:style/Widget.MaterialComponents.PopupMenu.ContextMenu = 0x7f0e02ad ++com.wix.detox.test:color/abc_hint_foreground_material_light = 0x7f050008 ++com.wix.detox.test:drawable/avd_hide_password = 0x7f070055 ++com.wix.detox.test:dimen/design_navigation_elevation = 0x7f060077 ++com.wix.detox.test:dimen/design_fab_size_normal = 0x7f060074 ++com.wix.detox.test:dimen/mtrl_textinput_end_icon_margin_start = 0x7f06017a ++com.wix.detox.test:dimen/notification_large_icon_width = 0x7f060189 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.SearchResult = 0x7f0e0025 ++com.wix.detox.test:dimen/design_fab_translation_z_pressed = 0x7f060076 ++com.wix.detox.test:attr/listDividerAlertDialog = 0x7f03020e ++com.wix.detox.test:styleable/ThemeEnforcement = 0x7f0f007f ++com.wix.detox.test:dimen/design_fab_translation_z_hovered_focused = 0x7f060075 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f0e015a ++com.wix.detox.test:dimen/design_fab_size_mini = 0x7f060073 ++com.wix.detox.test:dimen/design_fab_border_width = 0x7f060070 ++com.wix.detox.test:dimen/design_bottom_sheet_modal_elevation = 0x7f06006e ++com.wix.detox.test:dimen/design_bottom_navigation_shadow_height = 0x7f06006b ++com.wix.detox.test:color/switch_thumb_disabled_material_light = 0x7f0500c5 ++com.wix.detox.test:style/Widget.MaterialComponents.Tooltip = 0x7f0e02d1 ++com.wix.detox.test:attr/chipIconVisible = 0x7f030093 ++com.wix.detox.test:style/Theme.AppCompat.Light.DialogWhenLarge = 0x7f0e0198 ++com.wix.detox.test:dimen/design_bottom_navigation_margin = 0x7f06006a ++com.wix.detox.test:dimen/mtrl_snackbar_background_corner_radius = 0x7f06016e ++com.wix.detox.test:dimen/mtrl_navigation_item_icon_padding = 0x7f060145 ++com.wix.detox.test:dimen/design_bottom_navigation_item_max_width = 0x7f060067 ++com.wix.detox.test:dimen/abc_action_bar_default_padding_start_material = 0x7f060004 ++com.wix.detox.test:string/icon_content_description = 0x7f0d0029 ++com.wix.detox.test:dimen/mtrl_calendar_selection_baseline_to_top_fullscreen = 0x7f06010a ++com.wix.detox.test:integer/mtrl_btn_anim_delay_ms = 0x7f090011 ++com.wix.detox.test:attr/dragThreshold = 0x7f030114 ++com.wix.detox.test:styleable/RadialViewGroup = 0x7f0f0067 ++com.wix.detox.test:attr/tabPaddingEnd = 0x7f03030c ++com.wix.detox.test:dimen/design_bottom_navigation_elevation = 0x7f060064 ++com.wix.detox.test:bool/abc_action_bar_embed_tabs = 0x7f040000 ++com.wix.detox.test:string/material_slider_range_end = 0x7f0d0036 ++com.wix.detox.test:attr/itemShapeInsetTop = 0x7f0301b4 ++com.wix.detox.test:id/tag_state_description = 0x7f08016c ++com.wix.detox.test:id/mtrl_calendar_main_pane = 0x7f0800ee ++com.wix.detox.test:dimen/design_bottom_navigation_active_text_size = 0x7f060063 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Tooltip = 0x7f0e0181 ++com.wix.detox.test:dimen/design_appbar_elevation = 0x7f060060 ++com.wix.detox.test:drawable/material_ic_clear_black_24dp = 0x7f07006c ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.Dark = 0x7f0e006a ++com.wix.detox.test:dimen/def_drawer_elevation = 0x7f06005e ++com.wix.detox.test:dimen/compat_notification_large_icon_max_height = 0x7f06005c ++com.wix.detox.test:layout/mtrl_calendar_day_of_week = 0x7f0b0041 ++com.wix.detox.test:style/Base.V7.ThemeOverlay.AppCompat.Dialog = 0x7f0e0098 ++com.wix.detox.test:attr/checkboxStyle = 0x7f030081 ++com.wix.detox.test:dimen/test_navigation_bar_item_max_width = 0x7f06019a ++com.wix.detox.test:attr/actionModePasteDrawable = 0x7f030017 ++com.wix.detox.test:attr/layout_constraintHorizontal_weight = 0x7f0301e3 ++com.wix.detox.test:attr/overlapAnchor = 0x7f030276 ++com.wix.detox.test:style/Base.Widget.AppCompat.ListPopupWindow = 0x7f0e00c0 ++com.wix.detox.test:dimen/compat_control_corner_material = 0x7f06005b ++com.wix.detox.test:layout/abc_action_bar_title_item = 0x7f0b0000 ++com.wix.detox.test:dimen/compat_button_padding_horizontal_material = 0x7f060059 ++com.wix.detox.test:attr/materialTimePickerTheme = 0x7f030237 ++com.wix.detox.test:dimen/compat_button_inset_vertical_material = 0x7f060058 ++com.wix.detox.test:dimen/cardview_compat_inset_shadow = 0x7f060053 ++com.wix.detox.test:dimen/abc_text_size_title_material_toolbar = 0x7f060050 ++com.wix.detox.test:styleable/AppCompatImageView = 0x7f0f000d ++com.wix.detox.test:attr/actionLayout = 0x7f03000d ++com.wix.detox.test:dimen/abc_text_size_subhead_material = 0x7f06004d ++com.wix.detox.test:dimen/abc_text_size_button_material = 0x7f060041 ++com.wix.detox.test:dimen/abc_text_size_menu_material = 0x7f06004b ++com.wix.detox.test:attr/iconStartPadding = 0x7f030194 ++com.wix.detox.test:dimen/abc_text_size_medium_material = 0x7f060049 ++com.wix.detox.test:dimen/abc_text_size_headline_material = 0x7f060047 ++com.wix.detox.test:color/material_on_background_emphasis_high_type = 0x7f05006c ++com.wix.detox.test:attr/fabCustomSize = 0x7f03014d ++com.wix.detox.test:dimen/abc_text_size_display_4_material = 0x7f060046 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialButtonToggleGroup = 0x7f0e028f ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text.Day = 0x7f0e01f5 ++com.wix.detox.test:style/TextAppearance.Design.Suffix = 0x7f0e016f ++com.wix.detox.test:id/material_hour_text_input = 0x7f0800d3 ++com.wix.detox.test:dimen/abc_text_size_body_2_material = 0x7f060040 ++com.wix.detox.test:dimen/abc_progress_bar_height_material = 0x7f060035 ++com.wix.detox.test:dimen/abc_list_item_height_large_material = 0x7f060030 ++com.wix.detox.test:dimen/abc_edit_text_inset_top_material = 0x7f06002e ++com.wix.detox.test:attr/toolbarNavigationButtonStyle = 0x7f030359 ++com.wix.detox.test:dimen/abc_edit_text_inset_horizontal_material = 0x7f06002d ++com.wix.detox.test:dimen/mtrl_alert_dialog_picker_background_inset = 0x7f0600c5 ++com.wix.detox.test:layout/text_view_with_line_height_from_layout = 0x7f0b006c ++com.wix.detox.test:dimen/abc_action_bar_default_height_material = 0x7f060002 ++com.wix.detox.test:dimen/abc_dialog_min_width_minor = 0x7f060023 ++com.wix.detox.test:dimen/design_bottom_navigation_label_padding = 0x7f060069 ++com.wix.detox.test:dimen/design_bottom_navigation_height = 0x7f060065 ++com.wix.detox.test:id/disablePostScroll = 0x7f080088 ++com.wix.detox.test:dimen/abc_dialog_min_width_major = 0x7f060022 ++com.wix.detox.test:color/mtrl_textinput_disabled_color = 0x7f0500af ++com.wix.detox.test:dimen/mtrl_progress_track_thickness = 0x7f06015f ++com.wix.detox.test:dimen/abc_dialog_list_padding_top_no_title = 0x7f060021 ++com.wix.detox.test:dimen/abc_dialog_fixed_width_major = 0x7f06001e ++com.wix.detox.test:attr/backgroundInsetStart = 0x7f030040 ++com.wix.detox.test:dimen/abc_dialog_fixed_height_minor = 0x7f06001d ++com.wix.detox.test:attr/titleMarginEnd = 0x7f030351 ++com.wix.detox.test:attr/closeIcon = 0x7f0300a6 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.Button = 0x7f0e0036 ++com.wix.detox.test:attr/backgroundOverlayColorAlpha = 0x7f030042 ++com.wix.detox.test:dimen/abc_control_padding_material = 0x7f06001a ++com.wix.detox.test:attr/itemIconTint = 0x7f0301aa ++com.wix.detox.test:dimen/mtrl_progress_circular_inset = 0x7f060152 ++com.wix.detox.test:dimen/abc_control_inset_material = 0x7f060019 ++com.wix.detox.test:dimen/abc_config_prefDialogWidth = 0x7f060017 ++com.wix.detox.test:dimen/mtrl_calendar_day_height = 0x7f0600f2 ++com.wix.detox.test:dimen/abc_alert_dialog_button_bar_height = 0x7f060010 ++com.wix.detox.test:style/Widget.Design.CollapsingToolbar = 0x7f0e0253 ++com.wix.detox.test:layout/notification_template_custom_big = 0x7f0b0059 ++com.wix.detox.test:styleable/Capability = 0x7f0f0018 ++com.wix.detox.test:id/material_clock_face = 0x7f0800ce ++com.wix.detox.test:dimen/abc_action_bar_subtitle_bottom_margin_material = 0x7f06000b ++com.wix.detox.test:attr/layout_constraintTag = 0x7f0301ec ++com.wix.detox.test:dimen/cardview_default_elevation = 0x7f060054 ++com.wix.detox.test:string/material_minute_suffix = 0x7f0d0030 ++com.wix.detox.test:dimen/test_navigation_bar_active_item_min_width = 0x7f060195 ++com.wix.detox.test:attr/brightness = 0x7f03006a ++com.wix.detox.test:color/design_default_color_secondary_variant = 0x7f050048 ++com.wix.detox.test:color/design_default_color_primary_variant = 0x7f050046 ++com.wix.detox.test:dimen/abc_action_bar_overflow_padding_start_material = 0x7f060008 ++com.wix.detox.test:layout/design_text_input_start_icon = 0x7f0b002b ++com.wix.detox.test:style/Widget.MaterialComponents.TimePicker.Clock = 0x7f0e02c8 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.LargeTouch = 0x7f0e01cd ++com.wix.detox.test:string/mtrl_picker_a11y_next_month = 0x7f0d0043 ++com.wix.detox.test:dimen/mtrl_calendar_days_of_week_height = 0x7f0600f7 ++com.wix.detox.test:anim/abc_grow_fade_in_from_bottom = 0x7f010002 ++com.wix.detox.test:color/switch_thumb_normal_material_light = 0x7f0500c9 ++com.wix.detox.test:dimen/mtrl_exposed_dropdown_menu_popup_elevation = 0x7f06011f ++com.wix.detox.test:attr/trackHeight = 0x7f030367 ++com.wix.detox.test:color/switch_thumb_material_dark = 0x7f0500c6 ++com.wix.detox.test:styleable/MotionLayout = 0x7f0f005c ++com.wix.detox.test:attr/actionBarWidgetTheme = 0x7f03000a ++com.wix.detox.test:id/accessibility_custom_action_18 = 0x7f08001a ++com.wix.detox.test:color/secondary_text_default_material_light = 0x7f0500c1 ++com.wix.detox.test:attr/endIconMode = 0x7f03012e ++com.wix.detox.test:color/secondary_text_default_material_dark = 0x7f0500c0 ++com.wix.detox.test:attr/flow_horizontalAlign = 0x7f03015a ++com.wix.detox.test:dimen/mtrl_calendar_title_baseline_to_top = 0x7f06010f ++com.wix.detox.test:attr/fastScrollEnabled = 0x7f03014f ++com.wix.detox.test:color/radiobutton_themeable_attribute_color = 0x7f0500bd ++com.wix.detox.test:attr/onHide = 0x7f030271 ++com.wix.detox.test:color/primary_text_default_material_light = 0x7f0500ba ++com.wix.detox.test:color/primary_material_light = 0x7f0500b8 ++com.wix.detox.test:layout/test_action_chip = 0x7f0b0061 ++com.wix.detox.test:attr/barLength = 0x7f03004a ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f0e003b ++com.wix.detox.test:attr/layout_constrainedHeight = 0x7f0301cd ++com.wix.detox.test:attr/expandedTitleMarginBottom = 0x7f030140 ++com.wix.detox.test:color/primary_dark_material_light = 0x7f0500b6 ++com.wix.detox.test:color/primary_dark_material_dark = 0x7f0500b5 ++com.wix.detox.test:drawable/btn_checkbox_unchecked_to_checked_mtrl_animation = 0x7f07005a ++com.wix.detox.test:color/button_material_dark = 0x7f050027 ++com.wix.detox.test:attr/fabCradleVerticalOffset = 0x7f03014c ++com.wix.detox.test:color/notification_action_color_filter = 0x7f0500b3 ++com.wix.detox.test:style/Platform.MaterialComponents.Dialog = 0x7f0e00f5 ++com.wix.detox.test:attr/moveWhenScrollAtTop = 0x7f030263 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.TimePicker = 0x7f0e01fe ++com.wix.detox.test:attr/searchViewStyle = 0x7f0302b6 ++com.wix.detox.test:dimen/abc_edit_text_inset_bottom_material = 0x7f06002c ++com.wix.detox.test:attr/thumbColor = 0x7f03033a ++com.wix.detox.test:color/mtrl_textinput_filled_box_default_background_color = 0x7f0500b0 ++com.wix.detox.test:id/material_hour_tv = 0x7f0800d4 ++com.wix.detox.test:id/selection_type = 0x7f080142 ++com.wix.detox.test:attr/region_widthMoreThan = 0x7f0302ab ++com.wix.detox.test:attr/listChoiceIndicatorMultipleAnimated = 0x7f03020c ++com.wix.detox.test:dimen/abc_list_item_height_small_material = 0x7f060032 ++com.wix.detox.test:color/mtrl_text_btn_text_color_selector = 0x7f0500ad ++com.wix.detox.test:color/design_default_color_background = 0x7f05003d ++com.wix.detox.test:color/mtrl_popupmenu_overlay_color = 0x7f0500a6 ++com.wix.detox.test:dimen/mtrl_btn_icon_btn_padding_left = 0x7f0600db ++com.wix.detox.test:attr/linearProgressIndicatorStyle = 0x7f03020a ++com.wix.detox.test:color/mtrl_outlined_stroke_color = 0x7f0500a5 ++com.wix.detox.test:color/secondary_text_disabled_material_dark = 0x7f0500c2 ++com.wix.detox.test:style/Base.TextAppearance.MaterialComponents.Badge = 0x7f0e0040 ++com.wix.detox.test:id/forever = 0x7f0800a7 ++com.wix.detox.test:color/mtrl_outlined_icon_tint = 0x7f0500a4 ++com.wix.detox.test:attr/buttonBarNegativeButtonStyle = 0x7f03006c ++com.wix.detox.test:xml/standalone_badge_gravity_top_start = 0x7f100003 ++com.wix.detox.test:attr/motionPath = 0x7f03025c ++com.wix.detox.test:color/mtrl_navigation_item_icon_tint = 0x7f0500a0 ++com.wix.detox.test:attr/maxWidth = 0x7f030240 ++com.wix.detox.test:styleable/ButtonBarLayout = 0x7f0f0017 ++com.wix.detox.test:attr/textAppearanceOverline = 0x7f030329 ++com.wix.detox.test:color/mtrl_navigation_item_background_color = 0x7f05009f ++com.wix.detox.test:color/mtrl_fab_bg_color_selector = 0x7f050094 ++com.wix.detox.test:attr/selectableItemBackground = 0x7f0302b8 ++com.wix.detox.test:drawable/design_ic_visibility_off = 0x7f070061 ++com.wix.detox.test:drawable/abc_btn_radio_material = 0x7f07000f ++com.wix.detox.test:attr/coordinatorLayoutStyle = 0x7f0300e2 ++com.wix.detox.test:attr/telltales_tailScale = 0x7f030317 ++com.wix.detox.test:color/mtrl_error = 0x7f050093 ++com.wix.detox.test:dimen/mtrl_btn_focused_z = 0x7f0600d9 ++com.wix.detox.test:dimen/abc_text_size_display_3_material = 0x7f060045 ++com.wix.detox.test:attr/textAppearanceLineHeightEnabled = 0x7f030325 ++com.wix.detox.test:attr/flow_wrapMode = 0x7f030168 ++com.wix.detox.test:attr/actionBarTabTextStyle = 0x7f030008 ++com.wix.detox.test:attr/stackFromEnd = 0x7f0302d9 ++com.wix.detox.test:dimen/design_navigation_padding_bottom = 0x7f06007d ++com.wix.detox.test:string/abc_menu_meta_shortcut_label = 0x7f0d000d ++com.wix.detox.test:styleable/AppBarLayoutStates = 0x7f0f000b ++com.wix.detox.test:color/mtrl_chip_background_color = 0x7f05008c ++com.wix.detox.test:attr/progressBarPadding = 0x7f03029d ++com.wix.detox.test:color/mtrl_card_view_ripple = 0x7f05008b ++com.wix.detox.test:dimen/mtrl_calendar_year_height = 0x7f060112 ++com.wix.detox.test:dimen/mtrl_textinput_box_corner_radius_small = 0x7f060175 ++com.wix.detox.test:attr/touchAnchorSide = 0x7f030360 ++com.wix.detox.test:style/Base.V7.Theme.AppCompat = 0x7f0e0094 ++com.wix.detox.test:dimen/notification_media_narrow_margin = 0x7f06018b ++com.wix.detox.test:color/mtrl_card_view_foreground = 0x7f05008a ++com.wix.detox.test:attr/extendedFloatingActionButtonStyle = 0x7f030146 ++com.wix.detox.test:dimen/test_navigation_bar_height = 0x7f060198 ++com.wix.detox.test:color/mtrl_calendar_item_stroke_color = 0x7f050088 ++com.wix.detox.test:id/line3 = 0x7f0800c8 ++com.wix.detox.test:dimen/mtrl_tooltip_minWidth = 0x7f060181 ++com.wix.detox.test:attr/enforceTextAppearance = 0x7f030132 ++com.wix.detox.test:color/mtrl_btn_text_color_selector = 0x7f050086 ++com.wix.detox.test:id/none = 0x7f080109 ++com.wix.detox.test:color/mtrl_btn_text_color_disabled = 0x7f050085 ++com.wix.detox.test:id/coordinator = 0x7f080073 ++com.wix.detox.test:color/material_timepicker_modebutton_tint = 0x7f05007f ++com.wix.detox.test:style/Base.V14.Theme.MaterialComponents = 0x7f0e0074 ++com.wix.detox.test:color/material_slider_thumb_color = 0x7f05007a ++com.wix.detox.test:color/material_slider_inactive_track_color = 0x7f050079 ++com.wix.detox.test:color/material_slider_halo_color = 0x7f050077 ++com.wix.detox.test:style/Widget.MaterialComponents.TabLayout.PrimarySurface = 0x7f0e02b8 ++com.wix.detox.test:color/material_deep_teal_200 = 0x7f050062 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Inverse = 0x7f0e001d ++com.wix.detox.test:animator/mtrl_extended_fab_change_size_expand_motion_spec = 0x7f020012 ++com.wix.detox.test:drawable/mtrl_ic_arrow_drop_up = 0x7f070077 ++com.wix.detox.test:string/abc_activity_chooser_view_see_all = 0x7f0d0004 ++com.wix.detox.test:color/primary_material_dark = 0x7f0500b7 ++com.wix.detox.test:color/material_slider_active_tick_marks_color = 0x7f050075 ++com.wix.detox.test:attr/elevation = 0x7f030127 ++com.wix.detox.test:layout/mtrl_calendar_month_labeled = 0x7f0b0045 ++com.wix.detox.test:color/material_on_surface_emphasis_high_type = 0x7f050072 ++com.wix.detox.test:styleable/StateListDrawable = 0x7f0f0075 ++com.wix.detox.test:color/material_on_surface_disabled = 0x7f050071 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f0e0225 ++com.wix.detox.test:id/fitToContents = 0x7f0800a3 ++com.wix.detox.test:attr/tabIndicatorHeight = 0x7f030305 ++com.wix.detox.test:color/material_on_primary_emphasis_medium = 0x7f050070 ++com.wix.detox.test:id/parent = 0x7f080114 ++com.wix.detox.test:attr/navigationMode = 0x7f030268 ++com.wix.detox.test:color/material_on_primary_emphasis_high_type = 0x7f05006f ++com.wix.detox.test:color/material_on_primary_disabled = 0x7f05006e ++com.wix.detox.test:color/material_on_background_emphasis_medium = 0x7f05006d ++com.wix.detox.test:color/material_grey_900 = 0x7f05006a ++com.wix.detox.test:dimen/design_navigation_max_width = 0x7f06007c ++com.wix.detox.test:color/material_grey_850 = 0x7f050069 ++com.wix.detox.test:color/material_grey_600 = 0x7f050067 ++com.wix.detox.test:attr/errorIconDrawable = 0x7f030136 ++com.wix.detox.test:attr/cornerFamilyTopLeft = 0x7f0300e6 ++com.wix.detox.test:color/material_grey_300 = 0x7f050065 ++com.wix.detox.test:attr/prefixTextColor = 0x7f03029a ++com.wix.detox.test:attr/layout_constraintHeight_default = 0x7f0301dd ++com.wix.detox.test:string/abc_searchview_description_search = 0x7f0d0015 ++com.wix.detox.test:attr/subtitleTextAppearance = 0x7f0302ef ++com.wix.detox.test:dimen/mtrl_extended_fab_bottom_padding = 0x7f060122 ++com.wix.detox.test:attr/dividerPadding = 0x7f030110 ++com.wix.detox.test:dimen/mtrl_card_dragged_z = 0x7f060119 ++com.wix.detox.test:attr/altSrc = 0x7f03002c ++com.wix.detox.test:attr/closeIconEnabled = 0x7f0300a7 ++com.wix.detox.test:attr/fabAnimationMode = 0x7f030149 ++com.wix.detox.test:color/highlighted_text_material_dark = 0x7f05005c ++com.wix.detox.test:drawable/abc_seekbar_tick_mark_material = 0x7f070041 ++com.wix.detox.test:drawable/abc_ic_menu_selectall_mtrl_alpha = 0x7f070024 ++com.wix.detox.test:color/foreground_material_light = 0x7f05005b ++com.wix.detox.test:attr/customIntegerValue = 0x7f0300fc ++com.wix.detox.test:style/Theme.MaterialComponents.Light.DarkActionBar = 0x7f0e01c2 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline5 = 0x7f0e017b ++com.wix.detox.test:color/dim_foreground_material_light = 0x7f050057 ++com.wix.detox.test:anim/btn_checkbox_to_checked_icon_null_animation = 0x7f01000e ++com.wix.detox.test:color/design_icon_tint = 0x7f050052 ++com.wix.detox.test:style/TestStyleWithThemeLineHeightAttribute = 0x7f0e012d ++com.wix.detox.test:color/mtrl_chip_text_color = 0x7f05008f ++com.wix.detox.test:color/design_fab_stroke_end_inner_color = 0x7f05004e ++com.wix.detox.test:color/design_fab_shadow_mid_color = 0x7f05004c ++com.wix.detox.test:color/design_fab_shadow_end_color = 0x7f05004b ++com.wix.detox.test:id/homeAsUp = 0x7f0800b4 ++com.wix.detox.test:attr/closeIconEndPadding = 0x7f0300a8 ++com.wix.detox.test:dimen/abc_floating_window_z = 0x7f06002f ++com.wix.detox.test:dimen/hint_alpha_material_light = 0x7f060098 ++com.wix.detox.test:color/design_error = 0x7f05004a ++com.wix.detox.test:attr/fontProviderSystemFontFamily = 0x7f030171 ++com.wix.detox.test:color/design_default_color_surface = 0x7f050049 ++com.wix.detox.test:attr/waveVariesBy = 0x7f030380 ++com.wix.detox.test:color/design_default_color_secondary = 0x7f050047 ++com.wix.detox.test:attr/touchAnchorId = 0x7f03035f ++com.wix.detox.test:attr/queryPatterns = 0x7f0302a1 ++com.wix.detox.test:color/abc_search_url_text_normal = 0x7f05000e ++com.wix.detox.test:dimen/mtrl_navigation_rail_text_bottom_margin = 0x7f060150 ++com.wix.detox.test:color/design_default_color_primary_dark = 0x7f050045 ++com.wix.detox.test:style/Base.Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f0e00aa ++com.wix.detox.test:color/design_default_color_primary = 0x7f050044 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.FixedSize = 0x7f0e01b9 ++com.wix.detox.test:dimen/abc_button_padding_vertical_material = 0x7f060015 ++com.wix.detox.test:color/design_default_color_on_surface = 0x7f050043 ++com.wix.detox.test:color/design_default_color_on_error = 0x7f050040 ++com.wix.detox.test:dimen/mtrl_badge_with_text_radius = 0x7f0600cd ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense = 0x7f0e02c2 ++com.wix.detox.test:style/Widget.Compat.NotificationActionText = 0x7f0e024f ++com.wix.detox.test:style/Widget.AppCompat.Button = 0x7f0e0210 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.NoActionBar.Bridge = 0x7f0e01cf ++com.wix.detox.test:dimen/mtrl_extended_fab_icon_size = 0x7f060129 ++com.wix.detox.test:dimen/abc_text_size_display_2_material = 0x7f060044 ++com.wix.detox.test:animator/design_fab_hide_motion_spec = 0x7f020001 ++com.wix.detox.test:color/design_default_color_error = 0x7f05003e ++com.wix.detox.test:style/Widget.MaterialComponents.CompoundButton.Switch = 0x7f0e0289 ++com.wix.detox.test:color/design_dark_default_color_surface = 0x7f05003c ++com.wix.detox.test:color/design_dark_default_color_secondary_variant = 0x7f05003b ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar = 0x7f0e0290 ++com.wix.detox.test:attr/tabTextColor = 0x7f030313 ++com.wix.detox.test:dimen/material_time_picker_minimum_screen_width = 0x7f0600bf ++com.wix.detox.test:color/design_dark_default_color_primary = 0x7f050037 ++com.wix.detox.test:color/design_dark_default_color_on_surface = 0x7f050036 ++com.wix.detox.test:id/always = 0x7f080047 ++com.wix.detox.test:dimen/material_font_2_0_box_collapsed_padding_top = 0x7f0600b4 ++com.wix.detox.test:color/design_dark_default_color_on_secondary = 0x7f050035 ++com.wix.detox.test:styleable/Slider = 0x7f0f0070 ++com.wix.detox.test:color/design_dark_default_color_on_primary = 0x7f050034 ++com.wix.detox.test:id/mtrl_picker_title_text = 0x7f0800ff ++com.wix.detox.test:attr/materialCalendarDay = 0x7f030224 ++com.wix.detox.test:anim/design_snackbar_out = 0x7f01001b ++com.wix.detox.test:color/cardview_shadow_start_color = 0x7f05002c ++com.wix.detox.test:color/cardview_light_background = 0x7f05002a ++com.wix.detox.test:styleable/MenuView = 0x7f0f0058 ++com.wix.detox.test:styleable/ListPopupWindow = 0x7f0f0046 ++com.wix.detox.test:style/Theme.AppCompat.Dialog = 0x7f0e018e ++com.wix.detox.test:style/Base.MaterialAlertDialog.MaterialComponents.Title.Text = 0x7f0e0012 ++com.wix.detox.test:attr/keylines = 0x7f0301be ++com.wix.detox.test:dimen/mtrl_navigation_rail_active_text_size = 0x7f060149 ++com.wix.detox.test:style/TextAppearance.AppCompat.SearchResult.Title = 0x7f0e0146 ++com.wix.detox.test:id/accessibility_custom_action_17 = 0x7f080019 ++com.wix.detox.test:color/bright_foreground_material_dark = 0x7f050025 ++com.wix.detox.test:color/material_grey_100 = 0x7f050064 ++com.wix.detox.test:dimen/design_navigation_icon_padding = 0x7f060078 ++com.wix.detox.test:color/bright_foreground_disabled_material_dark = 0x7f050021 ++com.wix.detox.test:id/collapseActionView = 0x7f08006d ++com.wix.detox.test:color/background_floating_material_light = 0x7f05001e ++com.wix.detox.test:dimen/default_dimension = 0x7f06005f ++com.wix.detox.test:style/Platform.AppCompat.Light = 0x7f0e00f3 ++com.wix.detox.test:color/androidx_core_secondary_text_default_material_light = 0x7f05001c ++com.wix.detox.test:styleable/KeyPosition = 0x7f0f003f ++com.wix.detox.test:style/TextAppearance.AppCompat.Tooltip = 0x7f0e014d ++com.wix.detox.test:color/abc_tint_switch_track = 0x7f050018 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f0e01f0 ++com.wix.detox.test:drawable/notification_template_icon_low_bg = 0x7f070088 ++com.wix.detox.test:color/abc_tint_spinner = 0x7f050017 ++com.wix.detox.test:color/bright_foreground_disabled_material_light = 0x7f050022 ++com.wix.detox.test:color/abc_tint_seek_thumb = 0x7f050016 ++com.wix.detox.test:color/abc_tint_default = 0x7f050014 ++com.wix.detox.test:color/abc_tint_btn_checkable = 0x7f050013 ++com.wix.detox.test:attr/listPreferredItemPaddingLeft = 0x7f030217 ++com.wix.detox.test:dimen/design_fab_image_size = 0x7f060072 ++com.wix.detox.test:color/abc_primary_text_material_light = 0x7f05000c ++com.wix.detox.test:id/parentPanel = 0x7f080115 ++com.wix.detox.test:color/abc_primary_text_disable_only_material_light = 0x7f05000a ++com.wix.detox.test:attr/materialCalendarStyle = 0x7f03022f ++com.wix.detox.test:color/abc_primary_text_disable_only_material_dark = 0x7f050009 ++com.wix.detox.test:color/abc_decor_view_status_guard = 0x7f050005 ++com.wix.detox.test:color/abc_btn_colored_borderless_text_material = 0x7f050002 ++com.wix.detox.test:drawable/abc_cab_background_top_mtrl_alpha = 0x7f070017 ++com.wix.detox.test:color/abc_background_cache_hint_selector_material_dark = 0x7f050000 ++com.wix.detox.test:bool/abc_config_actionMenuItemAllCaps = 0x7f040001 ++com.wix.detox.test:attr/chipIcon = 0x7f03008f ++com.wix.detox.test:attr/buttonBarPositiveButtonStyle = 0x7f03006e ++com.wix.detox.test:dimen/material_filled_edittext_font_2_0_padding_bottom = 0x7f0600b1 ++com.wix.detox.test:attr/yearStyle = 0x7f03038c ++com.wix.detox.test:drawable/abc_text_select_handle_left_mtrl = 0x7f07004c ++com.wix.detox.test:color/switch_thumb_normal_material_dark = 0x7f0500c8 ++com.wix.detox.test:id/peekHeight = 0x7f08011b ++com.wix.detox.test:dimen/mtrl_chip_pressed_translation_z = 0x7f06011c ++com.wix.detox.test:drawable/abc_ratingbar_material = 0x7f070039 ++com.wix.detox.test:attr/yearSelectedStyle = 0x7f03038b ++com.wix.detox.test:id/TOP_END = 0x7f08000c ++com.wix.detox.test:dimen/design_fab_elevation = 0x7f060071 ++com.wix.detox.test:attr/windowNoTitle = 0x7f03038a ++com.wix.detox.test:attr/materialCalendarHeaderDivider = 0x7f030228 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionBar.TabText = 0x7f0e009f ++com.wix.detox.test:drawable/btn_radio_on_mtrl = 0x7f07005d ++com.wix.detox.test:attr/ensureMinTouchTargetSize = 0x7f030133 ++com.wix.detox.test:attr/windowFixedWidthMinor = 0x7f030387 ++com.wix.detox.test:attr/alphabeticModifiers = 0x7f03002b ++com.wix.detox.test:dimen/abc_action_button_min_height_material = 0x7f06000d ++com.wix.detox.test:attr/materialCalendarHeaderCancelButton = 0x7f030226 ++com.wix.detox.test:color/mtrl_btn_transparent_bg_color = 0x7f050087 ++com.wix.detox.test:attr/windowFixedWidthMajor = 0x7f030386 ++com.wix.detox.test:attr/tabBackground = 0x7f0302fa ++com.wix.detox.test:color/mtrl_textinput_hovered_box_stroke_color = 0x7f0500b2 ++com.wix.detox.test:attr/actionBarItemBackground = 0x7f030001 ++com.wix.detox.test:attr/displayOptions = 0x7f03010d ++com.wix.detox.test:attr/windowActionModeOverlay = 0x7f030383 ++com.wix.detox.test:dimen/material_clock_hand_stroke_width = 0x7f0600a3 ++com.wix.detox.test:integer/cancel_button_image_alpha = 0x7f090004 ++com.wix.detox.test:attr/windowActionBarOverlay = 0x7f030382 ++com.wix.detox.test:style/TextAppearance.AppCompat.Title.Inverse = 0x7f0e014c ++com.wix.detox.test:styleable/KeyAttribute = 0x7f0f003a ++com.wix.detox.test:style/ThemeOverlay.AppCompat = 0x7f0e01d2 ++com.wix.detox.test:animator/linear_indeterminate_line1_head_interpolator = 0x7f020009 ++com.wix.detox.test:attr/verticalOffset = 0x7f030377 ++com.wix.detox.test:attr/waveShape = 0x7f03037f ++com.wix.detox.test:styleable/ClockHandView = 0x7f0f001e ++com.wix.detox.test:color/mtrl_choice_chip_background_color = 0x7f050090 ++com.wix.detox.test:layout/material_time_chip = 0x7f0b0035 ++com.wix.detox.test:dimen/abc_action_bar_subtitle_top_margin_material = 0x7f06000c ++com.wix.detox.test:attr/layout_constraintHeight_min = 0x7f0301df ++com.wix.detox.test:attr/waveOffset = 0x7f03037d ++com.wix.detox.test:id/mtrl_calendar_days_of_week = 0x7f0800ec ++com.wix.detox.test:dimen/mtrl_slider_halo_radius = 0x7f060163 ++com.wix.detox.test:attr/warmth = 0x7f03037b ++com.wix.detox.test:attr/visibilityMode = 0x7f030379 ++com.wix.detox.test:attr/checkedIcon = 0x7f030084 ++com.wix.detox.test:dimen/mtrl_bottomappbar_fab_cradle_margin = 0x7f0600d0 ++com.wix.detox.test:string/material_motion_easing_accelerated = 0x7f0d0031 ++com.wix.detox.test:dimen/mtrl_card_spacing = 0x7f06011b ++com.wix.detox.test:attr/values = 0x7f030376 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar = 0x7f0e021f ++com.wix.detox.test:color/material_timepicker_clock_text_color = 0x7f05007d ++com.wix.detox.test:drawable/$avd_show_password__2 = 0x7f070005 ++com.wix.detox.test:style/Base.V26.Theme.AppCompat.Light = 0x7f0e0090 ++com.wix.detox.test:attr/ttcIndex = 0x7f030373 ++com.wix.detox.test:attr/chipIconSize = 0x7f030091 ++com.wix.detox.test:attr/triggerReceiver = 0x7f030371 ++com.wix.detox.test:attr/triggerId = 0x7f030370 ++com.wix.detox.test:layout/abc_screen_content_include = 0x7f0b0014 ++com.wix.detox.test:attr/transitionShapeAppearance = 0x7f03036f ++com.wix.detox.test:attr/transitionFlags = 0x7f03036d ++com.wix.detox.test:attr/tabIndicatorFullWidth = 0x7f030303 ++com.wix.detox.test:attr/elevationOverlayEnabled = 0x7f030129 ++com.wix.detox.test:attr/transitionEasing = 0x7f03036c ++com.wix.detox.test:attr/showDelay = 0x7f0302c4 ++com.wix.detox.test:attr/trackTintMode = 0x7f03036a ++com.wix.detox.test:attr/trackTint = 0x7f030369 ++com.wix.detox.test:attr/colorOnSecondary = 0x7f0300c0 ++com.wix.detox.test:style/Theme.Design.Light.NoActionBar = 0x7f0e019f ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Dialog.Bridge = 0x7f0e005a ++com.wix.detox.test:dimen/mtrl_badge_text_size = 0x7f0600ca ++com.wix.detox.test:attr/trackThickness = 0x7f030368 ++com.wix.detox.test:style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar = 0x7f0e0234 ++com.wix.detox.test:attr/actionModeFindDrawable = 0x7f030016 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Dialog.MinWidth = 0x7f0e005c ++com.wix.detox.test:dimen/mtrl_btn_disabled_z = 0x7f0600d7 ++com.wix.detox.test:attr/trackCornerRadius = 0x7f030366 ++com.wix.detox.test:dimen/material_cursor_inset_bottom = 0x7f0600a9 ++com.wix.detox.test:layout/design_bottom_sheet_dialog = 0x7f0b001e ++com.wix.detox.test:attr/trackColorActive = 0x7f030364 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton = 0x7f0e0297 ++com.wix.detox.test:attr/trackColor = 0x7f030363 ++com.wix.detox.test:anim/abc_popup_enter = 0x7f010003 ++com.wix.detox.test:attr/itemPadding = 0x7f0301ac ++com.wix.detox.test:attr/onNegativeCross = 0x7f030272 ++com.wix.detox.test:attr/touchRegionId = 0x7f030361 ++com.wix.detox.test:attr/tooltipStyle = 0x7f03035d ++com.wix.detox.test:id/accessibility_custom_action_12 = 0x7f080014 ++com.wix.detox.test:style/Base.Widget.AppCompat.CompoundButton.CheckBox = 0x7f0e00af ++com.wix.detox.test:dimen/abc_star_small = 0x7f06003d ++com.wix.detox.test:style/Base.Widget.MaterialComponents.Chip = 0x7f0e00d9 ++com.wix.detox.test:attr/tooltipFrameBackground = 0x7f03035c ++com.wix.detox.test:attr/tooltipForegroundColor = 0x7f03035b ++com.wix.detox.test:attr/toolbarStyle = 0x7f03035a ++com.wix.detox.test:attr/toolbarId = 0x7f030358 ++com.wix.detox.test:attr/badgeTextColor = 0x7f030049 ++com.wix.detox.test:attr/errorEnabled = 0x7f030135 ++com.wix.detox.test:dimen/appcompat_dialog_background_inset = 0x7f060052 ++com.wix.detox.test:attr/titleTextAppearance = 0x7f030355 ++com.wix.detox.test:attr/titleMargins = 0x7f030354 ++com.wix.detox.test:color/bright_foreground_inverse_material_light = 0x7f050024 ++com.wix.detox.test:attr/yearTodayStyle = 0x7f03038d ++com.wix.detox.test:integer/bottom_sheet_slide_duration = 0x7f090003 ++com.wix.detox.test:id/spline = 0x7f080150 ++com.wix.detox.test:dimen/notification_top_pad = 0x7f060191 ++com.wix.detox.test:attr/titleMargin = 0x7f03034f ++com.wix.detox.test:attr/titleEnabled = 0x7f03034e ++com.wix.detox.test:attr/titleCollapseMode = 0x7f03034d ++com.wix.detox.test:attr/title = 0x7f03034b ++com.wix.detox.test:attr/tint = 0x7f030349 ++com.wix.detox.test:color/mtrl_tabs_icon_color_selector_colored = 0x7f0500aa ++com.wix.detox.test:style/Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f0e0044 ++com.wix.detox.test:id/mtrl_calendar_months = 0x7f0800ef ++com.wix.detox.test:id/action_image = 0x7f08003a ++com.wix.detox.test:attr/tickMarkTintMode = 0x7f030347 ++com.wix.detox.test:attr/minSeparation = 0x7f030246 ++com.wix.detox.test:style/Theme.AppCompat.DayNight.NoActionBar = 0x7f0e018d ++com.wix.detox.test:dimen/abc_dropdownitem_icon_width = 0x7f060029 ++com.wix.detox.test:attr/tickColorInactive = 0x7f030344 ++com.wix.detox.test:attr/tickColorActive = 0x7f030343 ++com.wix.detox.test:id/mtrl_calendar_day_selector_frame = 0x7f0800eb ++com.wix.detox.test:style/Widget.AppCompat.ActionButton.CloseMode = 0x7f0e020b ++com.wix.detox.test:id/topPanel = 0x7f08018b ++com.wix.detox.test:attr/progressBarStyle = 0x7f03029e ++com.wix.detox.test:color/primary_text_disabled_material_light = 0x7f0500bc ++com.wix.detox.test:attr/cornerRadius = 0x7f0300e8 ++com.wix.detox.test:drawable/mtrl_tabs_default_indicator = 0x7f07007d ++com.wix.detox.test:attr/thumbTintMode = 0x7f030341 ++com.wix.detox.test:style/Base.ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f0e006b ++com.wix.detox.test:styleable/Snackbar = 0x7f0f0071 ++com.wix.detox.test:attr/expandActivityOverflowButtonDrawable = 0x7f03013b ++com.wix.detox.test:attr/tabMode = 0x7f030309 ++com.wix.detox.test:id/search_voice_btn = 0x7f08013f ++com.wix.detox.test:color/abc_primary_text_material_dark = 0x7f05000b ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.Dark = 0x7f0e01e8 ++com.wix.detox.test:attr/thumbTint = 0x7f030340 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f0e0158 ++com.wix.detox.test:dimen/mtrl_btn_padding_top = 0x7f0600e3 ++com.wix.detox.test:style/Widget.AppCompat.Button.Borderless.Colored = 0x7f0e0212 ++com.wix.detox.test:id/accessibility_custom_action_0 = 0x7f080010 ++com.wix.detox.test:attr/contentPaddingBottom = 0x7f0300d9 ++com.wix.detox.test:attr/boxCornerRadiusTopStart = 0x7f030065 ++com.wix.detox.test:style/EmptyTheme = 0x7f0e00e7 ++com.wix.detox.test:attr/thumbElevation = 0x7f03033b ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.DropDownItem = 0x7f0e003a ++com.wix.detox.test:dimen/mtrl_slider_label_radius = 0x7f060165 ++com.wix.detox.test:id/transition_transform = 0x7f080193 ++com.wix.detox.test:attr/theme = 0x7f030337 ++com.wix.detox.test:attr/logoDescription = 0x7f03021b ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu = 0x7f0e02c3 ++com.wix.detox.test:attr/textStartPadding = 0x7f030336 ++com.wix.detox.test:anim/mtrl_card_lowers_interpolator = 0x7f01001f ++com.wix.detox.test:style/Widget.MaterialComponents.Button = 0x7f0e026f ++com.wix.detox.test:style/Base.Widget.AppCompat.EditText = 0x7f0e00b5 ++com.wix.detox.test:attr/textInputStyle = 0x7f030334 ++com.wix.detox.test:dimen/design_tab_text_size = 0x7f06008c ++com.wix.detox.test:attr/switchMinWidth = 0x7f0302f6 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup = 0x7f0e0104 ++com.wix.detox.test:color/background_material_light = 0x7f050020 ++com.wix.detox.test:layout/mtrl_calendar_month_navigation = 0x7f0b0046 ++com.wix.detox.test:attr/textColorSearchUrl = 0x7f030331 ++com.wix.detox.test:dimen/mtrl_snackbar_margin = 0x7f060170 ++com.wix.detox.test:id/save_overlay_view = 0x7f08012d ++com.wix.detox.test:attr/textColorAlertDialogListItem = 0x7f030330 ++com.wix.detox.test:attr/textAppearanceSubtitle2 = 0x7f03032f ++com.wix.detox.test:attr/layout_constraintHeight_max = 0x7f0301de ++com.wix.detox.test:id/beginOnFirstDraw = 0x7f080054 ++com.wix.detox.test:color/secondary_text_disabled_material_light = 0x7f0500c3 ++com.wix.detox.test:style/Widget.AppCompat.TextView.SpinnerItem = 0x7f0e024b ++com.wix.detox.test:attr/autoTransition = 0x7f03003b ++com.wix.detox.test:attr/textAppearanceSearchResultSubtitle = 0x7f03032b ++com.wix.detox.test:attr/textAppearancePopupMenuHeader = 0x7f03032a ++com.wix.detox.test:dimen/abc_text_size_title_material = 0x7f06004f ++com.wix.detox.test:attr/maxButtonHeight = 0x7f03023a ++com.wix.detox.test:drawable/tooltip_frame_dark = 0x7f07008c ++com.wix.detox.test:id/autoComplete = 0x7f08004f ++com.wix.detox.test:attr/materialAlertDialogTitleTextStyle = 0x7f030220 ++com.wix.detox.test:attr/textAppearanceListItem = 0x7f030326 ++com.wix.detox.test:dimen/mtrl_progress_circular_radius = 0x7f060156 ++com.wix.detox.test:attr/panelBackground = 0x7f030280 ++com.wix.detox.test:attr/layout_optimizationLevel = 0x7f030202 ++com.wix.detox.test:attr/textAppearanceHeadline6 = 0x7f030323 ++com.wix.detox.test:attr/transitionDisable = 0x7f03036b ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen = 0x7f0e0121 ++com.wix.detox.test:attr/editTextStyle = 0x7f030126 ++com.wix.detox.test:id/sin = 0x7f080147 ++com.wix.detox.test:attr/behavior_hideable = 0x7f030054 ++com.wix.detox.test:id/META = 0x7f080005 ++com.wix.detox.test:attr/textAppearanceHeadline2 = 0x7f03031f ++com.wix.detox.test:styleable/CollapsingToolbarLayout_Layout = 0x7f0f0020 ++com.wix.detox.test:attr/textAppearanceHeadline1 = 0x7f03031e ++com.wix.detox.test:style/Widget.AppCompat.Light.PopupMenu = 0x7f0e0231 ++com.wix.detox.test:attr/arrowHeadLength = 0x7f030032 ++com.wix.detox.test:attr/textAppearanceCaption = 0x7f03031d ++com.wix.detox.test:attr/counterOverflowTextColor = 0x7f0300f1 ++com.wix.detox.test:dimen/fastscroll_default_thickness = 0x7f060091 ++com.wix.detox.test:attr/textAppearanceBody2 = 0x7f03031b ++com.wix.detox.test:attr/textAppearanceBody1 = 0x7f03031a ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f0e0030 ++com.wix.detox.test:attr/cornerSizeTopRight = 0x7f0300ed ++com.wix.detox.test:attr/spinnerStyle = 0x7f0302d6 ++com.wix.detox.test:attr/telltales_tailColor = 0x7f030316 ++com.wix.detox.test:style/Theme.AppCompat.DayNight.DarkActionBar = 0x7f0e0188 ++com.wix.detox.test:attr/targetId = 0x7f030315 ++com.wix.detox.test:attr/transitionPathRotate = 0x7f03036e ++com.wix.detox.test:style/Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog = 0x7f0e0080 ++com.wix.detox.test:attr/tabUnboundedRipple = 0x7f030314 ++com.wix.detox.test:dimen/mtrl_progress_circular_inset_small = 0x7f060155 ++com.wix.detox.test:style/Widget.MaterialComponents.CardView = 0x7f0e027b ++com.wix.detox.test:attr/tabTextAppearance = 0x7f030312 ++com.wix.detox.test:attr/tabStyle = 0x7f030311 ++com.wix.detox.test:attr/tabSelectedTextColor = 0x7f030310 ++com.wix.detox.test:style/Widget.AppCompat.RatingBar.Indicator = 0x7f0e0240 ++com.wix.detox.test:id/accessibility_action_clickable_span = 0x7f08000f ++com.wix.detox.test:attr/dragDirection = 0x7f030112 ++com.wix.detox.test:attr/actionModeBackground = 0x7f030010 ++com.wix.detox.test:attr/tabRippleColor = 0x7f03030f ++com.wix.detox.test:color/material_on_surface_emphasis_medium = 0x7f050073 ++com.wix.detox.test:layout/test_toolbar_elevation = 0x7f0b0069 ++com.wix.detox.test:attr/tabPaddingTop = 0x7f03030e ++com.wix.detox.test:id/spread = 0x7f080152 ++com.wix.detox.test:attr/tabPaddingStart = 0x7f03030d ++com.wix.detox.test:dimen/mtrl_bottomappbar_height = 0x7f0600d3 ++com.wix.detox.test:attr/customFloatValue = 0x7f0300fb ++com.wix.detox.test:attr/labelStyle = 0x7f0301c1 ++com.wix.detox.test:attr/navigationIcon = 0x7f030266 ++com.wix.detox.test:anim/btn_checkbox_to_checked_box_inner_merged_animation = 0x7f01000c ++com.wix.detox.test:attr/tabPaddingBottom = 0x7f03030b ++com.wix.detox.test:attr/tabPadding = 0x7f03030a ++com.wix.detox.test:color/mtrl_btn_text_btn_ripple_color = 0x7f050084 ++com.wix.detox.test:color/mtrl_filled_icon_tint = 0x7f050098 ++com.wix.detox.test:attr/tabMinWidth = 0x7f030308 ++com.wix.detox.test:dimen/mtrl_calendar_day_corner = 0x7f0600f1 ++com.wix.detox.test:attr/tabMaxWidth = 0x7f030307 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f0e0020 ++com.wix.detox.test:attr/enableEdgeToEdge = 0x7f03012a ++com.wix.detox.test:dimen/mtrl_btn_inset = 0x7f0600dd ++com.wix.detox.test:attr/tabInlineLabel = 0x7f030306 ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.Dialog.FixedSize = 0x7f0e0052 ++com.wix.detox.test:attr/tabIndicatorColor = 0x7f030302 ++com.wix.detox.test:attr/tabIndicatorAnimationDuration = 0x7f030300 ++com.wix.detox.test:attr/drawableStartCompat = 0x7f03011b ++com.wix.detox.test:style/Base.V14.ThemeOverlay.MaterialComponents.Dialog = 0x7f0e007e ++com.wix.detox.test:attr/paddingEnd = 0x7f03027a ++com.wix.detox.test:attr/tabIndicator = 0x7f0302ff ++com.wix.detox.test:dimen/mtrl_btn_dialog_btn_min_width = 0x7f0600d5 ++com.wix.detox.test:attr/buttonBarNeutralButtonStyle = 0x7f03006d ++com.wix.detox.test:attr/tabGravity = 0x7f0302fc ++com.wix.detox.test:style/Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f0e0213 ++com.wix.detox.test:attr/titleCentered = 0x7f03034c ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.DropDownItem = 0x7f0e015b ++com.wix.detox.test:attr/switchTextAppearance = 0x7f0302f9 ++com.wix.detox.test:style/Widget.Design.BottomNavigationView = 0x7f0e0251 ++com.wix.detox.test:dimen/mtrl_card_checked_icon_size = 0x7f060117 ++com.wix.detox.test:attr/switchPadding = 0x7f0302f7 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Large.Inverse = 0x7f0e001f ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f0e003c ++com.wix.detox.test:attr/suggestionRowLayout = 0x7f0302f5 ++com.wix.detox.test:attr/suffixTextAppearance = 0x7f0302f3 ++com.wix.detox.test:id/tag_accessibility_pane_title = 0x7f080167 ++com.wix.detox.test:drawable/ic_clock_black_24dp = 0x7f070064 ++com.wix.detox.test:attr/colorPrimarySurface = 0x7f0300c4 ++com.wix.detox.test:color/cardview_shadow_end_color = 0x7f05002b ++com.wix.detox.test:attr/suffixText = 0x7f0302f2 ++com.wix.detox.test:attr/subtitleTextStyle = 0x7f0302f1 ++com.wix.detox.test:attr/region_heightLessThan = 0x7f0302a8 ++com.wix.detox.test:style/Test.Theme.MaterialComponents.MaterialCalendar = 0x7f0e0127 ++com.wix.detox.test:id/tag_on_apply_window_listener = 0x7f080168 ++com.wix.detox.test:attr/drawableTint = 0x7f03011c ++com.wix.detox.test:id/checked = 0x7f080061 ++com.wix.detox.test:dimen/abc_dialog_padding_material = 0x7f060024 ++com.wix.detox.test:attr/subtitleCentered = 0x7f0302ee ++com.wix.detox.test:attr/subtitle = 0x7f0302ed ++com.wix.detox.test:attr/tickVisible = 0x7f030348 ++com.wix.detox.test:attr/subMenuArrow = 0x7f0302eb ++com.wix.detox.test:dimen/mtrl_navigation_rail_default_width = 0x7f06014b ++com.wix.detox.test:id/shortcut = 0x7f080143 ++com.wix.detox.test:dimen/mtrl_calendar_day_horizontal_padding = 0x7f0600f3 ++com.wix.detox.test:attr/backgroundSplit = 0x7f030043 ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionBar.TabView = 0x7f0e00a0 ++com.wix.detox.test:attr/actionModeCloseContentDescription = 0x7f030012 ++com.wix.detox.test:attr/strokeWidth = 0x7f0302ea ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f0e014e ++com.wix.detox.test:color/accent_material_dark = 0x7f050019 ++com.wix.detox.test:dimen/abc_select_dialog_padding_start_material = 0x7f06003a ++com.wix.detox.test:integer/mtrl_badge_max_character_count = 0x7f090010 ++com.wix.detox.test:style/CardView = 0x7f0e00e4 ++com.wix.detox.test:attr/state_collapsed = 0x7f0302e1 ++com.wix.detox.test:drawable/btn_checkbox_unchecked_mtrl = 0x7f070059 ++com.wix.detox.test:attr/fontVariationSettings = 0x7f030173 ++com.wix.detox.test:attr/drawableEndCompat = 0x7f030117 ++com.wix.detox.test:style/Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert = 0x7f0e007f ++com.wix.detox.test:attr/keyboardIcon = 0x7f0301bd ++com.wix.detox.test:attr/layout_dodgeInsetEdges = 0x7f0301f7 ++com.wix.detox.test:drawable/$avd_hide_password__2 = 0x7f070002 ++com.wix.detox.test:drawable/material_ic_keyboard_arrow_next_black_24dp = 0x7f07006f ++com.wix.detox.test:attr/fontProviderFetchTimeout = 0x7f03016e ++com.wix.detox.test:attr/startIconTintMode = 0x7f0302df ++com.wix.detox.test:dimen/mtrl_badge_long_text_horizontal_padding = 0x7f0600c7 ++com.wix.detox.test:attr/subtitleTextColor = 0x7f0302f0 ++com.wix.detox.test:attr/startIconTint = 0x7f0302de ++com.wix.detox.test:attr/staggered = 0x7f0302da ++com.wix.detox.test:id/text2 = 0x7f080176 ++com.wix.detox.test:attr/spinnerDropDownItemStyle = 0x7f0302d5 ++com.wix.detox.test:attr/expandedTitleTextAppearance = 0x7f030144 ++com.wix.detox.test:dimen/mtrl_textinput_box_stroke_width_focused = 0x7f060178 ++com.wix.detox.test:attr/spinBars = 0x7f0302d4 ++com.wix.detox.test:attr/motionInterpolator = 0x7f03025b ++com.wix.detox.test:attr/spanCount = 0x7f0302d3 ++com.wix.detox.test:attr/singleSelection = 0x7f0302cd ++com.wix.detox.test:layout/mtrl_picker_header_dialog = 0x7f0b0050 ++com.wix.detox.test:drawable/abc_btn_check_to_on_mtrl_015 = 0x7f07000c ++com.wix.detox.test:attr/snackbarButtonStyle = 0x7f0302d0 ++com.wix.detox.test:style/Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f0e0232 ++com.wix.detox.test:color/error_color_material_dark = 0x7f050058 ++com.wix.detox.test:attr/titleMarginStart = 0x7f030352 ++com.wix.detox.test:id/tag_accessibility_heading = 0x7f080166 ++com.wix.detox.test:attr/backgroundTint = 0x7f030045 ++com.wix.detox.test:attr/helperText = 0x7f03017f ++com.wix.detox.test:style/ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f0e01d5 ++com.wix.detox.test:string/material_motion_easing_linear = 0x7f0d0034 ++com.wix.detox.test:attr/sizePercent = 0x7f0302ce ++com.wix.detox.test:attr/showText = 0x7f0302c8 ++com.wix.detox.test:attr/showPaths = 0x7f0302c7 ++com.wix.detox.test:id/start = 0x7f080159 ++com.wix.detox.test:drawable/abc_item_background_holo_light = 0x7f070029 ++com.wix.detox.test:attr/startIconContentDescription = 0x7f0302dc ++com.wix.detox.test:dimen/clock_face_margin_start = 0x7f060056 ++com.wix.detox.test:style/TextAppearance.AppCompat.Title = 0x7f0e014b ++com.wix.detox.test:string/path_password_eye_mask_strike_through = 0x7f0d0064 ++com.wix.detox.test:attr/showMotionSpec = 0x7f0302c6 ++com.wix.detox.test:styleable/CompoundButton = 0x7f0f0022 ++com.wix.detox.test:attr/navigationRailStyle = 0x7f030269 ++com.wix.detox.test:dimen/material_clock_period_toggle_margin_left = 0x7f0600a6 ++com.wix.detox.test:attr/listChoiceBackgroundIndicator = 0x7f03020b ++com.wix.detox.test:dimen/disabled_alpha_material_light = 0x7f060090 ++com.wix.detox.test:attr/themeLineHeight = 0x7f030338 ++com.wix.detox.test:style/Widget.MaterialComponents.FloatingActionButton = 0x7f0e028c ++com.wix.detox.test:color/mtrl_filled_stroke_color = 0x7f050099 ++com.wix.detox.test:drawable/notification_bg_normal_pressed = 0x7f070085 ++com.wix.detox.test:attr/shapeAppearanceMediumComponent = 0x7f0302be ++com.wix.detox.test:attr/actionModeShareDrawable = 0x7f03001a ++com.wix.detox.test:attr/shapeAppearanceLargeComponent = 0x7f0302bd ++com.wix.detox.test:attr/boxBackgroundMode = 0x7f030060 ++com.wix.detox.test:color/design_default_color_on_background = 0x7f05003f ++com.wix.detox.test:attr/seekBarStyle = 0x7f0302b7 ++com.wix.detox.test:attr/cornerSizeTopLeft = 0x7f0300ec ++com.wix.detox.test:attr/paddingStart = 0x7f03027d ++com.wix.detox.test:attr/chipMinHeight = 0x7f030094 ++com.wix.detox.test:id/stop = 0x7f08015f ++com.wix.detox.test:attr/scrimBackground = 0x7f0302b2 ++com.wix.detox.test:attr/recyclerViewStyle = 0x7f0302a7 ++com.wix.detox.test:attr/scrimAnimationDuration = 0x7f0302b1 ++com.wix.detox.test:dimen/material_textinput_min_width = 0x7f0600bd ++com.wix.detox.test:attr/popupWindowStyle = 0x7f030297 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.BottomAppBar.Surface = 0x7f0e01e6 ++com.wix.detox.test:style/ShapeAppearance.MaterialComponents.LargeComponent = 0x7f0e0112 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 = 0x7f0e010a ++com.wix.detox.test:string/mtrl_picker_date_header_unselected = 0x7f0d004a ++com.wix.detox.test:id/date_picker_actions = 0x7f080079 ++com.wix.detox.test:style/Widget.MaterialComponents.LinearProgressIndicator = 0x7f0e028e ++com.wix.detox.test:dimen/mtrl_calendar_month_horizontal_padding = 0x7f060104 ++com.wix.detox.test:drawable/design_snackbar_background = 0x7f070063 ++com.wix.detox.test:attr/motionDurationShort1 = 0x7f030254 ++com.wix.detox.test:attr/reverseLayout = 0x7f0302ac ++com.wix.detox.test:style/Base.ThemeOverlay.MaterialComponents.Dialog.Alert.Framework = 0x7f0e0071 ++com.wix.detox.test:dimen/design_bottom_navigation_active_item_min_width = 0x7f060062 ++com.wix.detox.test:attr/materialTimePickerStyle = 0x7f030236 ++com.wix.detox.test:attr/bottomNavigationStyle = 0x7f03005c ++com.wix.detox.test:attr/boxStrokeWidthFocused = 0x7f030069 ++com.wix.detox.test:layout/notification_template_icon_group = 0x7f0b005a ++com.wix.detox.test:color/background_material_dark = 0x7f05001f ++com.wix.detox.test:anim/btn_radio_to_off_mtrl_dot_group_animation = 0x7f010012 ++com.wix.detox.test:attr/ratingBarStyleSmall = 0x7f0302a6 ++com.wix.detox.test:attr/behavior_halfExpandedRatio = 0x7f030053 ++com.wix.detox.test:attr/chipEndPadding = 0x7f03008d ++com.wix.detox.test:attr/ratingBarStyle = 0x7f0302a4 ++com.wix.detox.test:attr/voiceIcon = 0x7f03037a ++com.wix.detox.test:attr/placeholderTextAppearance = 0x7f030291 ++com.wix.detox.test:attr/indicatorInset = 0x7f03019e ++com.wix.detox.test:attr/layout_goneMarginRight = 0x7f0301fd ++com.wix.detox.test:attr/divider = 0x7f03010e ++com.wix.detox.test:attr/itemShapeFillColor = 0x7f0301b0 ++com.wix.detox.test:anim/design_bottom_sheet_slide_out = 0x7f010019 ++com.wix.detox.test:attr/dialogTheme = 0x7f03010c ++com.wix.detox.test:attr/popupMenuStyle = 0x7f030295 ++com.wix.detox.test:dimen/abc_text_size_small_material = 0x7f06004c ++com.wix.detox.test:id/src_in = 0x7f080156 ++com.wix.detox.test:attr/currentState = 0x7f0300f5 ++com.wix.detox.test:attr/perpendicularPath_percent = 0x7f03028e ++com.wix.detox.test:attr/closeItemLayout = 0x7f0300ad ++com.wix.detox.test:attr/fontStyle = 0x7f030172 ++com.wix.detox.test:color/material_blue_grey_950 = 0x7f050060 ++com.wix.detox.test:attr/layout_insetEdge = 0x7f030200 ++com.wix.detox.test:attr/menuGravity = 0x7f030243 ++com.wix.detox.test:attr/placeholderText = 0x7f030290 ++com.wix.detox.test:drawable/notification_icon_background = 0x7f070086 ++com.wix.detox.test:style/Widget.MaterialComponents.Toolbar.Primary = 0x7f0e02ce ++com.wix.detox.test:attr/actionMenuTextAppearance = 0x7f03000e ++com.wix.detox.test:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 0x7f0a0003 ++com.wix.detox.test:attr/fontProviderAuthority = 0x7f03016b ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text = 0x7f0e01f4 ++com.wix.detox.test:dimen/mtrl_btn_letter_spacing = 0x7f0600de ++com.wix.detox.test:attr/percentY = 0x7f03028d ++com.wix.detox.test:attr/path_percent = 0x7f030289 ++com.wix.detox.test:attr/titleTextStyle = 0x7f030357 ++com.wix.detox.test:attr/chipStartPadding = 0x7f03009a ++com.wix.detox.test:layout/test_toolbar_custom_background = 0x7f0b0068 ++com.wix.detox.test:attr/pathMotionArc = 0x7f030288 ++com.wix.detox.test:style/Widget.MaterialComponents.Toolbar = 0x7f0e02cd ++com.wix.detox.test:id/actions = 0x7f080041 ++com.wix.detox.test:attr/selectableItemBackgroundBorderless = 0x7f0302b9 ++com.wix.detox.test:styleable/BottomSheetBehavior_Layout = 0x7f0f0016 ++com.wix.detox.test:styleable/PopupWindowBackgroundState = 0x7f0f0065 ++com.wix.detox.test:attr/navigationContentDescription = 0x7f030265 ++com.wix.detox.test:id/container = 0x7f08006f ++com.wix.detox.test:dimen/abc_action_bar_default_padding_end_material = 0x7f060003 ++com.wix.detox.test:attr/passwordToggleTintMode = 0x7f030287 ++com.wix.detox.test:string/mtrl_exceed_max_badge_number_content_description = 0x7f0d0041 ++com.wix.detox.test:attr/passwordToggleEnabled = 0x7f030285 ++com.wix.detox.test:attr/passwordToggleDrawable = 0x7f030284 ++com.wix.detox.test:dimen/mtrl_calendar_month_vertical_padding = 0x7f060105 ++com.wix.detox.test:anim/btn_checkbox_to_unchecked_icon_null_animation = 0x7f010011 ++com.wix.detox.test:attr/cornerFamily = 0x7f0300e3 ++com.wix.detox.test:attr/passwordToggleContentDescription = 0x7f030283 ++com.wix.detox.test:attr/boxBackgroundColor = 0x7f03005f ++com.wix.detox.test:dimen/material_bottom_sheet_max_width = 0x7f06009e ++com.wix.detox.test:attr/indicatorDirectionLinear = 0x7f03019d ++com.wix.detox.test:attr/panelMenuListWidth = 0x7f030282 ++com.wix.detox.test:dimen/notification_right_icon_size = 0x7f06018c ++com.wix.detox.test:attr/ratingBarStyleIndicator = 0x7f0302a5 ++com.wix.detox.test:attr/behavior_expandedOffset = 0x7f030051 ++com.wix.detox.test:attr/listChoiceIndicatorSingleAnimated = 0x7f03020d ++com.wix.detox.test:attr/panelMenuListTheme = 0x7f030281 ++com.wix.detox.test:attr/snackbarTextViewStyle = 0x7f0302d2 ++com.wix.detox.test:attr/paddingTopSystemWindowInsets = 0x7f03027f ++com.wix.detox.test:attr/autoSizeTextType = 0x7f03003a ++com.wix.detox.test:drawable/ic_keyboard_black_24dp = 0x7f070065 ++com.wix.detox.test:attr/overlay = 0x7f030277 ++com.wix.detox.test:attr/dialogPreferredPadding = 0x7f03010b ++com.wix.detox.test:attr/dividerHorizontal = 0x7f03010f ++com.wix.detox.test:style/Base.Theme.AppCompat.Dialog.Alert = 0x7f0e004a ++com.wix.detox.test:style/Widget.MaterialComponents.AppBarLayout.Surface = 0x7f0e0261 ++com.wix.detox.test:attr/buttonBarStyle = 0x7f03006f ++com.wix.detox.test:dimen/abc_button_padding_horizontal_material = 0x7f060014 ++com.wix.detox.test:attr/motion_triggerOnCollision = 0x7f030262 ++com.wix.detox.test:attr/prefixTextAppearance = 0x7f030299 ++com.wix.detox.test:anim/abc_fade_out = 0x7f010001 ++com.wix.detox.test:attr/onPositiveCross = 0x7f030273 ++com.wix.detox.test:dimen/mtrl_min_touch_target_size = 0x7f060140 ++com.wix.detox.test:attr/indeterminateAnimationType = 0x7f030199 ++com.wix.detox.test:attr/tabIndicatorAnimationMode = 0x7f030301 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView = 0x7f0e01e0 ++com.wix.detox.test:attr/listMenuViewStyle = 0x7f030211 ++com.wix.detox.test:attr/checkedIconSize = 0x7f030087 ++com.wix.detox.test:color/mtrl_navigation_item_text_color = 0x7f0500a1 ++com.wix.detox.test:drawable/abc_ic_menu_cut_mtrl_alpha = 0x7f070021 ++com.wix.detox.test:attr/onCross = 0x7f030270 ++com.wix.detox.test:styleable/ColorStateListItem = 0x7f0f0021 ++com.wix.detox.test:attr/buttonStyle = 0x7f030074 ++com.wix.detox.test:attr/nestedScrollViewStyle = 0x7f03026c ++com.wix.detox.test:attr/materialAlertDialogTitlePanelStyle = 0x7f03021f ++com.wix.detox.test:dimen/mtrl_alert_dialog_background_inset_start = 0x7f0600c3 ++com.wix.detox.test:color/design_dark_default_color_error = 0x7f050031 ++com.wix.detox.test:attr/constraintSetEnd = 0x7f0300cc ++com.wix.detox.test:attr/isMaterialTheme = 0x7f0301a3 ++com.wix.detox.test:attr/contentScrim = 0x7f0300df ++com.wix.detox.test:attr/flow_lastVerticalStyle = 0x7f030161 ++com.wix.detox.test:attr/itemShapeAppearanceOverlay = 0x7f0301af ++com.wix.detox.test:attr/tooltipText = 0x7f03035e ++com.wix.detox.test:attr/attributeName = 0x7f030034 ++com.wix.detox.test:color/abc_decor_view_status_guard_light = 0x7f050006 ++com.wix.detox.test:id/pin = 0x7f08011d ++com.wix.detox.test:attr/navigationIconTint = 0x7f030267 ++com.wix.detox.test:attr/textAppearanceListItemSecondary = 0x7f030327 ++com.wix.detox.test:dimen/material_clock_hand_center_dot_radius = 0x7f0600a1 ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut = 0x7f0e0105 ++com.wix.detox.test:style/Platform.ThemeOverlay.AppCompat.Dark = 0x7f0e00f9 ++com.wix.detox.test:animator/mtrl_extended_fab_change_size_collapse_motion_spec = 0x7f020011 ++com.wix.detox.test:attr/fontProviderFetchStrategy = 0x7f03016d ++com.wix.detox.test:attr/itemRippleColor = 0x7f0301ad ++com.wix.detox.test:anim/btn_checkbox_to_unchecked_box_inner_merged_animation = 0x7f01000f ++com.wix.detox.test:attr/hideAnimationBehavior = 0x7f030183 ++com.wix.detox.test:attr/motionProgress = 0x7f03025e ++com.wix.detox.test:dimen/abc_star_medium = 0x7f06003c ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse = 0x7f0e0154 ++com.wix.detox.test:attr/colorOnSurface = 0x7f0300c1 ++com.wix.detox.test:attr/motionPathRotate = 0x7f03025d ++com.wix.detox.test:attr/buttonTintMode = 0x7f030077 ++com.wix.detox.test:attr/layoutDuringTransition = 0x7f0301c6 ++com.wix.detox.test:attr/motionEasingStandard = 0x7f03025a ++com.wix.detox.test:attr/drawableTopCompat = 0x7f03011e ++com.wix.detox.test:id/search_mag_icon = 0x7f08013c ++com.wix.detox.test:attr/motionEasingLinear = 0x7f030259 ++com.wix.detox.test:attr/motionEasingAccelerated = 0x7f030256 ++com.wix.detox.test:attr/motionDurationMedium1 = 0x7f030252 ++com.wix.detox.test:attr/motionDurationLong1 = 0x7f030250 ++com.wix.detox.test:attr/mock_showLabel = 0x7f03024e ++com.wix.detox.test:attr/mock_label = 0x7f03024a ++com.wix.detox.test:id/withinBounds = 0x7f0801a1 ++com.wix.detox.test:layout/design_menu_item_action_area = 0x7f0b0023 ++com.wix.detox.test:attr/mock_diagonalsColor = 0x7f030249 ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.BottomSheetDialog = 0x7f0e01a6 ++com.wix.detox.test:attr/minTouchTargetSize = 0x7f030247 ++com.wix.detox.test:id/mtrl_calendar_year_selector_frame = 0x7f0800f2 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.MinWidth = 0x7f0e01bb ++com.wix.detox.test:attr/layout_goneMarginBottom = 0x7f0301fa ++com.wix.detox.test:dimen/mtrl_navigation_item_shape_horizontal_margin = 0x7f060147 ++com.wix.detox.test:attr/triggerSlack = 0x7f030372 ++com.wix.detox.test:attr/collapsedTitleGravity = 0x7f0300b1 ++com.wix.detox.test:attr/paddingLeftSystemWindowInsets = 0x7f03027b ++com.wix.detox.test:attr/colorError = 0x7f0300bb ++com.wix.detox.test:string/abc_searchview_description_clear = 0x7f0d0013 ++com.wix.detox.test:string/mtrl_picker_range_header_selected = 0x7f0d0054 ++com.wix.detox.test:attr/customStringValue = 0x7f0300ff ++com.wix.detox.test:attr/flow_lastHorizontalStyle = 0x7f03015f ++com.wix.detox.test:dimen/abc_switch_padding = 0x7f06003e ++com.wix.detox.test:anim/abc_tooltip_exit = 0x7f01000b ++com.wix.detox.test:attr/fastScrollVerticalTrackDrawable = 0x7f030153 ++com.wix.detox.test:attr/arcMode = 0x7f030031 ++com.wix.detox.test:attr/minHideDelay = 0x7f030245 ++com.wix.detox.test:attr/thumbStrokeWidth = 0x7f03033e ++com.wix.detox.test:attr/badgeStyle = 0x7f030048 ++com.wix.detox.test:color/material_grey_50 = 0x7f050066 ++com.wix.detox.test:layout/abc_list_menu_item_radio = 0x7f0b0011 ++com.wix.detox.test:animator/mtrl_chip_state_list_anim = 0x7f020010 ++com.wix.detox.test:id/transitionToEnd = 0x7f08018d ++com.wix.detox.test:attr/maxLines = 0x7f03023e ++com.wix.detox.test:anim/btn_radio_to_on_mtrl_dot_group_animation = 0x7f010015 ++com.wix.detox.test:dimen/design_snackbar_padding_vertical = 0x7f060087 ++com.wix.detox.test:id/navigation_bar_item_small_label_view = 0x7f080105 ++com.wix.detox.test:attr/cardCornerRadius = 0x7f030079 ++com.wix.detox.test:dimen/abc_disabled_alpha_material_dark = 0x7f060027 ++com.wix.detox.test:attr/textInputLayoutFocusedRectEnabled = 0x7f030333 ++com.wix.detox.test:attr/suffixTextColor = 0x7f0302f4 ++com.wix.detox.test:string/abc_prepend_shortcut_label = 0x7f0d0011 ++com.wix.detox.test:id/chip2 = 0x7f080064 ++com.wix.detox.test:attr/colorControlHighlight = 0x7f0300b9 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f0e003d ++com.wix.detox.test:style/Theme.MaterialComponents.NoActionBar = 0x7f0e01d0 ++com.wix.detox.test:attr/behavior_overlapTop = 0x7f030055 ++com.wix.detox.test:attr/materialCalendarYearNavigationButton = 0x7f030231 ++com.wix.detox.test:dimen/test_navigation_bar_active_text_size = 0x7f060196 ++com.wix.detox.test:attr/percentX = 0x7f03028c ++com.wix.detox.test:attr/haloRadius = 0x7f03017c ++com.wix.detox.test:attr/materialCalendarHeaderToggleButton = 0x7f03022c ++com.wix.detox.test:attr/statusBarScrim = 0x7f0302e8 ++com.wix.detox.test:attr/contentInsetStart = 0x7f0300d6 ++com.wix.detox.test:styleable/MotionHelper = 0x7f0f005b ++com.wix.detox.test:attr/counterEnabled = 0x7f0300ee ++com.wix.detox.test:attr/chipStandaloneStyle = 0x7f030099 ++com.wix.detox.test:style/Platform.V25.AppCompat.Light = 0x7f0e00fe ++com.wix.detox.test:style/Base.Theme.AppCompat.Dialog.FixedSize = 0x7f0e004b ++com.wix.detox.test:attr/materialCalendarHeaderSelection = 0x7f03022a ++com.wix.detox.test:animator/mtrl_btn_state_list_anim = 0x7f02000d ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline3 = 0x7f0e0179 ++com.wix.detox.test:layout/material_clock_period_toggle_land = 0x7f0b0030 ++com.wix.detox.test:anim/abc_fade_in = 0x7f010000 ++com.wix.detox.test:attr/colorOnBackground = 0x7f0300bc ++com.wix.detox.test:attr/materialCalendarHeaderConfirmButton = 0x7f030227 ++com.wix.detox.test:dimen/mtrl_btn_hovered_z = 0x7f0600da ++com.wix.detox.test:dimen/mtrl_navigation_rail_icon_size = 0x7f06014e ++com.wix.detox.test:color/material_timepicker_clockface = 0x7f05007e ++com.wix.detox.test:dimen/material_emphasis_disabled = 0x7f0600ac ++com.wix.detox.test:attr/materialButtonToggleGroupStyle = 0x7f030223 ++com.wix.detox.test:attr/endIconTint = 0x7f03012f ++com.wix.detox.test:attr/materialButtonStyle = 0x7f030222 ++com.wix.detox.test:id/image = 0x7f0800bb ++com.wix.detox.test:dimen/mtrl_toolbar_default_height = 0x7f06017d ++com.wix.detox.test:attr/materialButtonOutlinedStyle = 0x7f030221 ++com.wix.detox.test:attr/materialAlertDialogTitleIconStyle = 0x7f03021e ++com.wix.detox.test:layout/mtrl_layout_snackbar_include = 0x7f0b004b ++com.wix.detox.test:attr/materialAlertDialogTheme = 0x7f03021d ++com.wix.detox.test:attr/materialCalendarTheme = 0x7f030230 ++com.wix.detox.test:style/Base.Widget.AppCompat.SearchView.ActionBar = 0x7f0e00cd ++com.wix.detox.test:dimen/fastscroll_minimum_range = 0x7f060093 ++com.wix.detox.test:attr/cornerFamilyTopRight = 0x7f0300e7 ++com.wix.detox.test:style/Widget.Design.ScrimInsetsFrameLayout = 0x7f0e0256 ++com.wix.detox.test:dimen/abc_action_bar_elevation_material = 0x7f060005 ++com.wix.detox.test:attr/listPreferredItemPaddingRight = 0x7f030218 ++com.wix.detox.test:color/mtrl_tabs_ripple_color = 0x7f0500ac ++com.wix.detox.test:attr/layout_constraintVertical_chainStyle = 0x7f0301f1 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar.TabView = 0x7f0e00bc ++com.wix.detox.test:drawable/tooltip_frame_light = 0x7f07008d ++com.wix.detox.test:dimen/material_emphasis_medium = 0x7f0600ae ++com.wix.detox.test:drawable/abc_spinner_mtrl_am_alpha = 0x7f070043 ++com.wix.detox.test:attr/floatingActionButtonStyle = 0x7f030155 ++com.wix.detox.test:dimen/mtrl_btn_stroke_size = 0x7f0600e6 ++com.wix.detox.test:attr/listPreferredItemHeightSmall = 0x7f030215 ++com.wix.detox.test:attr/layout_constraintWidth_max = 0x7f0301f4 ++com.wix.detox.test:style/Base.Theme.AppCompat.Light.Dialog.MinWidth = 0x7f0e0053 ++com.wix.detox.test:attr/listLayout = 0x7f030210 ++com.wix.detox.test:dimen/mtrl_extended_fab_start_padding_icon = 0x7f06012e ++com.wix.detox.test:style/Base.Widget.AppCompat.CompoundButton.RadioButton = 0x7f0e00b0 ++com.wix.detox.test:dimen/mtrl_fab_translation_z_pressed = 0x7f060136 ++com.wix.detox.test:attr/state_collapsible = 0x7f0302e2 ++com.wix.detox.test:styleable/Chip = 0x7f0f001a ++com.wix.detox.test:attr/liftOnScrollTargetViewId = 0x7f030206 ++com.wix.detox.test:styleable/MotionTelltales = 0x7f0f005e ++com.wix.detox.test:drawable/mtrl_dialog_background = 0x7f070074 ++com.wix.detox.test:attr/iconEndPadding = 0x7f030190 ++com.wix.detox.test:style/Theme.AppCompat.Empty = 0x7f0e0192 ++com.wix.detox.test:attr/backgroundColor = 0x7f03003d ++com.wix.detox.test:style/Animation.Design.BottomSheetDialog = 0x7f0e0006 ++com.wix.detox.test:attr/textAppearanceSmallPopupMenu = 0x7f03032d ++com.wix.detox.test:attr/preserveIconSpacing = 0x7f03029b ++com.wix.detox.test:id/accessibility_custom_action_24 = 0x7f080021 ++com.wix.detox.test:style/Theme.AppCompat.Dialog.MinWidth = 0x7f0e0190 ++com.wix.detox.test:attr/layout_keyline = 0x7f030201 ++com.wix.detox.test:attr/layout_goneMarginLeft = 0x7f0301fc ++com.wix.detox.test:color/material_on_background_disabled = 0x7f05006b ++com.wix.detox.test:dimen/mtrl_btn_padding_left = 0x7f0600e1 ++com.wix.detox.test:attr/hintTextAppearance = 0x7f030189 ++com.wix.detox.test:attr/layout_editor_absoluteX = 0x7f0301f8 ++com.wix.detox.test:color/dim_foreground_disabled_material_light = 0x7f050055 ++com.wix.detox.test:style/Base.V28.Theme.AppCompat.Light = 0x7f0e0093 ++com.wix.detox.test:attr/lineHeight = 0x7f030208 ++com.wix.detox.test:attr/layout_constraintWidth_default = 0x7f0301f3 ++com.wix.detox.test:id/elastic = 0x7f080096 ++com.wix.detox.test:id/accessibility_custom_action_1 = 0x7f080011 ++com.wix.detox.test:dimen/item_touch_helper_swipe_escape_velocity = 0x7f06009d ++com.wix.detox.test:integer/mtrl_btn_anim_duration_ms = 0x7f090012 ++com.wix.detox.test:dimen/abc_star_big = 0x7f06003b ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense = 0x7f0e02bc ++com.wix.detox.test:attr/behavior_skipCollapsed = 0x7f030058 ++com.wix.detox.test:attr/layout_constraintVertical_weight = 0x7f0301f2 ++com.wix.detox.test:style/Theme.AppCompat = 0x7f0e0185 ++com.wix.detox.test:string/abc_searchview_description_voice = 0x7f0d0017 ++com.wix.detox.test:attr/clockHandColor = 0x7f0300a3 ++com.wix.detox.test:attr/itemSpacing = 0x7f0301b5 ++com.wix.detox.test:attr/layout_constraintStart_toStartOf = 0x7f0301eb ++com.wix.detox.test:attr/layout_constraintStart_toEndOf = 0x7f0301ea ++com.wix.detox.test:id/accessibility_custom_action_5 = 0x7f08002b ++com.wix.detox.test:dimen/tooltip_horizontal_padding = 0x7f0601a0 ++com.wix.detox.test:layout/mtrl_picker_header_fullscreen = 0x7f0b0051 ++com.wix.detox.test:color/highlighted_text_material_light = 0x7f05005d ++com.wix.detox.test:dimen/design_snackbar_text_size = 0x7f060089 ++com.wix.detox.test:attr/layout_constraintRight_toLeftOf = 0x7f0301e8 ++com.wix.detox.test:attr/counterTextColor = 0x7f0300f3 ++com.wix.detox.test:attr/logo = 0x7f03021a ++com.wix.detox.test:attr/layout_constraintBaseline_toBaselineOf = 0x7f0301d0 ++com.wix.detox.test:styleable/ActionBarLayout = 0x7f0f0001 ++com.wix.detox.test:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f0e0045 ++com.wix.detox.test:attr/layout_constraintLeft_creator = 0x7f0301e4 ++com.wix.detox.test:string/material_slider_range_start = 0x7f0d0037 ++com.wix.detox.test:attr/colorOnError = 0x7f0300bd ++com.wix.detox.test:attr/motionDurationMedium2 = 0x7f030253 ++com.wix.detox.test:attr/dayStyle = 0x7f030102 ++com.wix.detox.test:id/confirm_button = 0x7f08006e ++com.wix.detox.test:string/appbar_scrolling_view_behavior = 0x7f0d001c ++com.wix.detox.test:attr/itemShapeInsetBottom = 0x7f0301b1 ++com.wix.detox.test:id/easeIn = 0x7f080092 ++com.wix.detox.test:attr/checkedIconEnabled = 0x7f030085 ++com.wix.detox.test:attr/extendMotionSpec = 0x7f030145 ++com.wix.detox.test:attr/layout_constraintHorizontal_chainStyle = 0x7f0301e2 ++com.wix.detox.test:color/mtrl_chip_close_icon_tint = 0x7f05008d ++com.wix.detox.test:dimen/mtrl_calendar_selection_text_baseline_to_top = 0x7f06010d ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar.TabText = 0x7f0e00ba ++com.wix.detox.test:color/switch_thumb_material_light = 0x7f0500c7 ++com.wix.detox.test:id/material_clock_period_toggle = 0x7f0800d2 ++com.wix.detox.test:drawable/abc_vector_test = 0x7f070054 ++com.wix.detox.test:style/Theme.MaterialComponents.CompactMenu = 0x7f0e01a4 ++com.wix.detox.test:attr/layout_constraintGuide_begin = 0x7f0301da ++com.wix.detox.test:animator/mtrl_extended_fab_show_motion_spec = 0x7f020014 ++com.wix.detox.test:attr/flow_verticalGap = 0x7f030166 ++com.wix.detox.test:dimen/material_clock_period_toggle_height = 0x7f0600a5 ++com.wix.detox.test:id/row_index_key = 0x7f08012b ++com.wix.detox.test:attr/layout_constraintCircleRadius = 0x7f0301d6 ++com.wix.detox.test:attr/region_heightMoreThan = 0x7f0302a9 ++com.wix.detox.test:id/dimensions = 0x7f080085 ++com.wix.detox.test:attr/layout_constraintRight_toRightOf = 0x7f0301e9 ++com.wix.detox.test:style/Widget.MaterialComponents.TextInputEditText.FilledBox = 0x7f0e02b9 ++com.wix.detox.test:id/action_menu_presenter = 0x7f08003c ++com.wix.detox.test:attr/layout_constraintBottom_toTopOf = 0x7f0301d3 ++com.wix.detox.test:attr/titleTextColor = 0x7f030356 ++com.wix.detox.test:attr/strokeColor = 0x7f0302e9 ++com.wix.detox.test:attr/firstBaselineToTopHeight = 0x7f030154 ++com.wix.detox.test:attr/menu = 0x7f030242 ++com.wix.detox.test:attr/horizontalOffset = 0x7f03018d ++com.wix.detox.test:string/path_password_eye_mask_visible = 0x7f0d0065 ++com.wix.detox.test:string/error_icon_content_description = 0x7f0d0024 ++com.wix.detox.test:attr/layout_constraintBottom_toBottomOf = 0x7f0301d2 ++com.wix.detox.test:string/material_timepicker_clock_mode_description = 0x7f0d0039 ++com.wix.detox.test:attr/layout_constraintBottom_creator = 0x7f0301d1 ++com.wix.detox.test:style/ShapeAppearanceOverlay.MaterialComponents.BottomSheet = 0x7f0e011c ++com.wix.detox.test:attr/layout_constraintBaseline_creator = 0x7f0301cf ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.BottomSheetDialog = 0x7f0e01e7 ++com.wix.detox.test:string/mtrl_exceed_max_badge_number_suffix = 0x7f0d0042 ++com.wix.detox.test:attr/layout_collapseMode = 0x7f0301cb ++com.wix.detox.test:attr/layout_behavior = 0x7f0301ca ++com.wix.detox.test:attr/mock_showDiagonals = 0x7f03024d ++com.wix.detox.test:attr/layout_constraintLeft_toLeftOf = 0x7f0301e5 ++com.wix.detox.test:style/Base.Theme.AppCompat.CompactMenu = 0x7f0e0048 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.Alert = 0x7f0e01c5 ++com.wix.detox.test:id/startToEnd = 0x7f08015b ++com.wix.detox.test:attr/layoutManager = 0x7f0301c7 ++com.wix.detox.test:attr/actionOverflowButtonStyle = 0x7f03001f ++com.wix.detox.test:style/Theme.MaterialComponents.Light.Dialog.Bridge = 0x7f0e01c7 ++com.wix.detox.test:attr/labelBehavior = 0x7f0301c0 ++com.wix.detox.test:dimen/mtrl_calendar_header_toggle_margin_bottom = 0x7f060100 ++com.wix.detox.test:attr/cardViewStyle = 0x7f03007f ++com.wix.detox.test:animator/fragment_fade_enter = 0x7f020005 ++com.wix.detox.test:style/Platform.AppCompat = 0x7f0e00f2 ++com.wix.detox.test:dimen/mtrl_calendar_dialog_background_inset = 0x7f0600f8 ++com.wix.detox.test:dimen/design_snackbar_max_width = 0x7f060084 ++com.wix.detox.test:attr/keyPositionType = 0x7f0301bc ++com.wix.detox.test:attr/shapeAppearance = 0x7f0302bc ++com.wix.detox.test:attr/itemTextAppearanceInactive = 0x7f0301ba ++com.wix.detox.test:color/mtrl_btn_ripple_color = 0x7f050081 ++com.wix.detox.test:anim/btn_checkbox_to_unchecked_check_path_merged_animation = 0x7f010010 ++com.wix.detox.test:attr/actionBarDivider = 0x7f030000 ++com.wix.detox.test:color/mtrl_btn_stroke_color_selector = 0x7f050082 ++com.wix.detox.test:attr/lastBaselineToBottomHeight = 0x7f0301c3 ++com.wix.detox.test:dimen/design_snackbar_padding_vertical_2lines = 0x7f060088 ++com.wix.detox.test:attr/itemTextAppearance = 0x7f0301b8 ++com.wix.detox.test:styleable/AnimatedStateListDrawableCompat = 0x7f0f0007 ++com.wix.detox.test:attr/background = 0x7f03003c ++com.wix.detox.test:attr/minWidth = 0x7f030248 ++com.wix.detox.test:attr/checkedIconTint = 0x7f030088 ++com.wix.detox.test:layout/design_layout_snackbar_include = 0x7f0b0020 ++com.wix.detox.test:attr/layout_constraintGuide_percent = 0x7f0301dc ++com.wix.detox.test:attr/itemStrokeWidth = 0x7f0301b7 ++com.wix.detox.test:dimen/mtrl_calendar_year_width = 0x7f060115 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f0e0031 ++com.wix.detox.test:style/Widget.MaterialComponents.CheckedTextView = 0x7f0e027c ++com.wix.detox.test:attr/selectionRequired = 0x7f0302ba ++com.wix.detox.test:color/design_dark_default_color_secondary = 0x7f05003a ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f0e0160 ++com.wix.detox.test:id/textinput_helper_text = 0x7f080181 ++com.wix.detox.test:anim/abc_tooltip_enter = 0x7f01000a ++com.wix.detox.test:anim/btn_checkbox_to_checked_box_outer_merged_animation = 0x7f01000d ++com.wix.detox.test:dimen/abc_seekbar_track_progress_height_material = 0x7f060039 ++com.wix.detox.test:style/Base.Widget.AppCompat.Light.ActionBar = 0x7f0e00b7 ++com.wix.detox.test:dimen/mtrl_extended_fab_disabled_elevation = 0x7f060124 ++com.wix.detox.test:dimen/mtrl_fab_min_touch_target = 0x7f060134 ++com.wix.detox.test:style/TextAppearance.AppCompat.Large.Inverse = 0x7f0e013d ++com.wix.detox.test:anim/abc_slide_in_bottom = 0x7f010006 ++com.wix.detox.test:attr/motionEasingEmphasized = 0x7f030258 ++com.wix.detox.test:attr/motionEasingDecelerated = 0x7f030257 ++com.wix.detox.test:id/textinput_counter = 0x7f08017f ++com.wix.detox.test:attr/itemHorizontalTranslationEnabled = 0x7f0301a7 ++com.wix.detox.test:color/material_deep_teal_500 = 0x7f050063 ++com.wix.detox.test:attr/actionModeCopyDrawable = 0x7f030014 ++com.wix.detox.test:attr/itemFillColor = 0x7f0301a5 ++com.wix.detox.test:attr/titleMarginBottom = 0x7f030350 ++com.wix.detox.test:attr/isLightTheme = 0x7f0301a2 ++com.wix.detox.test:layout/mtrl_alert_select_dialog_item = 0x7f0b003d ++com.wix.detox.test:style/TextAppearance.Design.Hint = 0x7f0e016b ++com.wix.detox.test:attr/initialActivityCount = 0x7f0301a0 ++com.wix.detox.test:dimen/mtrl_snackbar_action_text_color_alpha = 0x7f06016d ++com.wix.detox.test:dimen/mtrl_navigation_rail_margin = 0x7f06014f ++com.wix.detox.test:dimen/mtrl_textinput_outline_box_expanded_padding = 0x7f06017b ++com.wix.detox.test:string/mtrl_picker_invalid_format_use = 0x7f0d004e ++com.wix.detox.test:attr/indicatorSize = 0x7f03019f ++com.wix.detox.test:dimen/mtrl_progress_circular_track_thickness_extra_small = 0x7f06015b ++com.wix.detox.test:attr/imageButtonStyle = 0x7f030198 ++com.wix.detox.test:id/tag_on_receive_content_mime_types = 0x7f08016a ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.ActionBar.Surface = 0x7f0e01df ++com.wix.detox.test:attr/multiChoiceItemLayout = 0x7f030264 ++com.wix.detox.test:attr/closeIconStartPadding = 0x7f0300aa ++com.wix.detox.test:dimen/mtrl_calendar_landscape_header_width = 0x7f060102 ++com.wix.detox.test:styleable/Badge = 0x7f0f0012 ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderTitle = 0x7f0e029d ++com.wix.detox.test:id/scrollView = 0x7f080134 ++com.wix.detox.test:id/action_mode_bar_stub = 0x7f08003e ++com.wix.detox.test:attr/iconifiedByDefault = 0x7f030197 ++com.wix.detox.test:attr/iconTintMode = 0x7f030196 ++com.wix.detox.test:id/autoCompleteToEnd = 0x7f080050 ++com.wix.detox.test:drawable/$avd_hide_password__0 = 0x7f070000 ++com.wix.detox.test:dimen/mtrl_tooltip_arrowSize = 0x7f06017e ++com.wix.detox.test:style/TextAppearance.AppCompat.Inverse = 0x7f0e013b ++com.wix.detox.test:attr/iconPadding = 0x7f030192 ++com.wix.detox.test:attr/motionDurationLong2 = 0x7f030251 ++com.wix.detox.test:attr/trackColorInactive = 0x7f030365 ++com.wix.detox.test:style/Widget.AppCompat.Light.ActionBar.TabBar = 0x7f0e0222 ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.DayNight.BottomSheetDialog = 0x7f0e01ea ++com.wix.detox.test:attr/homeLayout = 0x7f03018c ++com.wix.detox.test:attr/switchStyle = 0x7f0302f8 ++com.wix.detox.test:style/Widget.AppCompat.Toolbar = 0x7f0e024c ++com.wix.detox.test:attr/nestedScrollFlags = 0x7f03026b ++com.wix.detox.test:attr/dropdownListPreferredItemHeight = 0x7f030122 ++com.wix.detox.test:style/ThemeOverlay.AppCompat.Dialog = 0x7f0e01d8 ++com.wix.detox.test:attr/backgroundStacked = 0x7f030044 ++com.wix.detox.test:attr/hintEnabled = 0x7f030188 ++com.wix.detox.test:style/Widget.AppCompat.PopupMenu = 0x7f0e023a ++com.wix.detox.test:dimen/material_filled_edittext_font_2_0_padding_top = 0x7f0600b2 ++com.wix.detox.test:attr/chainUseRtl = 0x7f030080 ++com.wix.detox.test:attr/hintAnimationEnabled = 0x7f030187 ++com.wix.detox.test:attr/popupMenuBackground = 0x7f030294 ++com.wix.detox.test:id/percent = 0x7f08011c ++com.wix.detox.test:attr/tickMark = 0x7f030345 ++com.wix.detox.test:attr/hideOnContentScroll = 0x7f030185 ++com.wix.detox.test:attr/flow_lastHorizontalBias = 0x7f03015e ++com.wix.detox.test:dimen/material_clock_face_margin_top = 0x7f0600a0 ++com.wix.detox.test:id/search_src_text = 0x7f08013e ++com.wix.detox.test:id/navigation_bar_item_large_label_view = 0x7f080104 ++com.wix.detox.test:attr/fontProviderQuery = 0x7f030170 ++com.wix.detox.test:attr/helperTextTextAppearance = 0x7f030181 ++com.wix.detox.test:layout/mtrl_picker_text_input_date = 0x7f0b0055 ++com.wix.detox.test:attr/colorSecondaryVariant = 0x7f0300c7 ++com.wix.detox.test:attr/alertDialogTheme = 0x7f030028 ++com.wix.detox.test:dimen/mtrl_low_ripple_default_alpha = 0x7f06013c ++com.wix.detox.test:attr/haloColor = 0x7f03017b ++com.wix.detox.test:dimen/mtrl_navigation_rail_text_size = 0x7f060151 ++com.wix.detox.test:layout/select_dialog_item_material = 0x7f0b005d ++com.wix.detox.test:dimen/abc_control_corner_material = 0x7f060018 ++com.wix.detox.test:attr/gapBetweenBars = 0x7f030178 ++com.wix.detox.test:attr/framePosition = 0x7f030177 ++com.wix.detox.test:attr/contentPaddingTop = 0x7f0300de ++com.wix.detox.test:attr/foregroundInsidePadding = 0x7f030176 ++com.wix.detox.test:attr/placeholderTextColor = 0x7f030292 ++com.wix.detox.test:integer/config_tooltipAnimTime = 0x7f090005 ++com.wix.detox.test:attr/layout_goneMarginTop = 0x7f0301ff ++com.wix.detox.test:attr/tickColor = 0x7f030342 ++com.wix.detox.test:attr/itemIconPadding = 0x7f0301a8 ++com.wix.detox.test:attr/barrierMargin = 0x7f03004d ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.ActionBar = 0x7f0e01dd ++com.wix.detox.test:attr/popupTheme = 0x7f030296 ++com.wix.detox.test:color/checkbox_themeable_attribute_color = 0x7f05002d ++com.wix.detox.test:attr/behavior_peekHeight = 0x7f030056 ++com.wix.detox.test:dimen/design_bottom_navigation_item_min_width = 0x7f060068 ++com.wix.detox.test:attr/layout_constraintRight_creator = 0x7f0301e7 ++com.wix.detox.test:attr/layout_constraintGuide_end = 0x7f0301db ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.Day.Selected = 0x7f0e0293 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Dialog = 0x7f0e0058 ++com.wix.detox.test:dimen/abc_button_inset_horizontal_material = 0x7f060012 ++com.wix.detox.test:attr/fontProviderPackage = 0x7f03016f ++com.wix.detox.test:color/material_slider_active_track_color = 0x7f050076 ++com.wix.detox.test:layout/mtrl_picker_actions = 0x7f0b004d ++com.wix.detox.test:dimen/abc_dialog_corner_radius_material = 0x7f06001b ++com.wix.detox.test:style/ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense = 0x7f0e01e4 ++com.wix.detox.test:attr/fontProviderCerts = 0x7f03016c ++com.wix.detox.test:attr/buttonTint = 0x7f030076 ++com.wix.detox.test:style/Base.Widget.AppCompat.DrawerArrowToggle.Common = 0x7f0e00b3 ++com.wix.detox.test:id/clip_vertical = 0x7f08006b ++com.wix.detox.test:color/mtrl_btn_bg_color_selector = 0x7f050080 ++com.wix.detox.test:drawable/ic_mtrl_checked_circle = 0x7f070066 ++com.wix.detox.test:color/material_blue_grey_800 = 0x7f05005e ++com.wix.detox.test:dimen/mtrl_badge_horizontal_edge_offset = 0x7f0600c6 ++com.wix.detox.test:dimen/mtrl_chip_text_size = 0x7f06011d ++com.wix.detox.test:attr/motionDebug = 0x7f03024f ++com.wix.detox.test:attr/fontFamily = 0x7f03016a ++com.wix.detox.test:attr/flow_verticalStyle = 0x7f030167 ++com.wix.detox.test:color/design_bottom_navigation_shadow_color = 0x7f05002e ++com.wix.detox.test:color/abc_secondary_text_material_dark = 0x7f050011 ++com.wix.detox.test:attr/flow_padding = 0x7f030163 ++com.wix.detox.test:attr/radioButtonStyle = 0x7f0302a2 ++com.wix.detox.test:animator/linear_indeterminate_line2_head_interpolator = 0x7f02000b ++com.wix.detox.test:id/snackbar_text = 0x7f08014b ++com.wix.detox.test:dimen/mtrl_bottomappbar_fab_bottom_margin = 0x7f0600cf ++com.wix.detox.test:attr/flow_lastVerticalBias = 0x7f030160 ++com.wix.detox.test:attr/collapsedTitleTextAppearance = 0x7f0300b2 ++com.wix.detox.test:attr/thickness = 0x7f030339 ++com.wix.detox.test:style/Widget.AppCompat.Spinner.DropDown.ActionBar = 0x7f0e0248 ++com.wix.detox.test:style/TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f0e0145 ++com.wix.detox.test:attr/flow_horizontalGap = 0x7f03015c ++com.wix.detox.test:dimen/design_bottom_sheet_elevation = 0x7f06006d ++com.wix.detox.test:attr/flow_horizontalBias = 0x7f03015b ++com.wix.detox.test:id/disjoint = 0x7f08008a ++com.wix.detox.test:attr/layout_constraintLeft_toRightOf = 0x7f0301e6 ++com.wix.detox.test:attr/flow_firstVerticalStyle = 0x7f030159 ++com.wix.detox.test:attr/actionBarStyle = 0x7f030005 ++com.wix.detox.test:drawable/abc_btn_switch_to_on_mtrl_00001 = 0x7f070013 ++com.wix.detox.test:dimen/item_touch_helper_swipe_escape_max_velocity = 0x7f06009c ++com.wix.detox.test:attr/paddingTopNoTitle = 0x7f03027e ++com.wix.detox.test:drawable/abc_ic_menu_copy_mtrl_am_alpha = 0x7f070020 ++com.wix.detox.test:styleable/OnClick = 0x7f0f0062 ++com.wix.detox.test:attr/listItemLayout = 0x7f03020f ++com.wix.detox.test:attr/lineSpacing = 0x7f030209 ++com.wix.detox.test:attr/flow_firstHorizontalBias = 0x7f030156 ++com.wix.detox.test:color/test_mtrl_calendar_day_selected = 0x7f0500cb ++com.wix.detox.test:drawable/abc_textfield_default_mtrl_alpha = 0x7f070050 ++com.wix.detox.test:drawable/abc_ic_menu_share_mtrl_alpha = 0x7f070025 ++com.wix.detox.test:dimen/mtrl_badge_toolbar_action_menu_item_vertical_offset = 0x7f0600cc ++com.wix.detox.test:attr/iconTint = 0x7f030195 ++com.wix.detox.test:styleable/PropertySet = 0x7f0f0066 ++com.wix.detox.test:attr/maxVelocity = 0x7f03023f ++com.wix.detox.test:attr/fastScrollVerticalThumbDrawable = 0x7f030152 ++com.wix.detox.test:attr/cornerSizeBottomRight = 0x7f0300eb ++com.wix.detox.test:attr/fabSize = 0x7f03014e ++com.wix.detox.test:id/decor_content_parent = 0x7f08007c ++com.wix.detox.test:attr/color = 0x7f0300b4 ++com.wix.detox.test:attr/saturation = 0x7f0302b0 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Body2 = 0x7f0e0173 ++com.wix.detox.test:attr/fabCradleRoundedCornerRadius = 0x7f03014b ++com.wix.detox.test:dimen/mtrl_extended_fab_corner_radius = 0x7f060123 ++com.wix.detox.test:dimen/abc_alert_dialog_button_dimen = 0x7f060011 ++com.wix.detox.test:attr/expandedTitleMarginTop = 0x7f030143 ++com.wix.detox.test:id/material_minute_text_input = 0x7f0800d6 ++com.wix.detox.test:attr/expandedTitleMarginEnd = 0x7f030141 ++com.wix.detox.test:drawable/abc_list_longpressed_holo = 0x7f07002d ++com.wix.detox.test:attr/layout_constraintTop_toBottomOf = 0x7f0301ee ++com.wix.detox.test:attr/errorTextAppearance = 0x7f030139 ++com.wix.detox.test:style/Theme.MaterialComponents.Light.BarSize = 0x7f0e01bf ++com.wix.detox.test:attr/actionModeCutDrawable = 0x7f030015 ++com.wix.detox.test:style/Theme.MaterialComponents.NoActionBar.Bridge = 0x7f0e01d1 ++com.wix.detox.test:color/mtrl_on_surface_ripple_color = 0x7f0500a3 ++com.wix.detox.test:style/Widget.Design.AppBarLayout = 0x7f0e0250 ++com.wix.detox.test:attr/errorIconTint = 0x7f030137 ++com.wix.detox.test:dimen/material_clock_size = 0x7f0600a8 ++com.wix.detox.test:attr/colorPrimary = 0x7f0300c2 ++com.wix.detox.test:styleable/CircularProgressIndicator = 0x7f0f001c ++com.wix.detox.test:dimen/mtrl_navigation_rail_icon_margin = 0x7f06014d ++com.wix.detox.test:attr/actionBarPopupTheme = 0x7f030002 ++com.wix.detox.test:attr/buttonStyleSmall = 0x7f030075 ++com.wix.detox.test:color/mtrl_chip_surface_color = 0x7f05008e ++com.wix.detox.test:style/Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow = 0x7f0e00dd ++com.wix.detox.test:style/Base.V21.Theme.AppCompat.Dialog = 0x7f0e0082 ++com.wix.detox.test:drawable/abc_star_black_48dp = 0x7f070045 ++com.wix.detox.test:color/notification_icon_bg_color = 0x7f0500b4 ++com.wix.detox.test:attr/backgroundInsetEnd = 0x7f03003f ++com.wix.detox.test:color/abc_hint_foreground_material_dark = 0x7f050007 ++com.wix.detox.test:color/design_box_stroke_color = 0x7f05002f ++com.wix.detox.test:attr/actionBarTabBarStyle = 0x7f030006 ++com.wix.detox.test:attr/expandedTitleMarginStart = 0x7f030142 ++com.wix.detox.test:style/ThemeOverlay.Design.TextInputEditText = 0x7f0e01db ++com.wix.detox.test:attr/measureWithLargestChild = 0x7f030241 ++com.wix.detox.test:dimen/mtrl_fab_translation_z_hovered_focused = 0x7f060135 ++com.wix.detox.test:attr/deriveConstraintsFrom = 0x7f030109 ++com.wix.detox.test:attr/layout_goneMarginEnd = 0x7f0301fb ++com.wix.detox.test:attr/dayTodayStyle = 0x7f030103 ++com.wix.detox.test:attr/shapeAppearanceSmallComponent = 0x7f0302c0 ++com.wix.detox.test:color/mtrl_navigation_bar_ripple_color = 0x7f05009e ++com.wix.detox.test:attr/cardPreventCornerOverlap = 0x7f03007d ++com.wix.detox.test:dimen/mtrl_btn_text_btn_padding_right = 0x7f0600e9 ++com.wix.detox.test:dimen/mtrl_btn_text_btn_padding_left = 0x7f0600e8 ++com.wix.detox.test:style/TestStyleWithLineHeightAppearance = 0x7f0e012c ++com.wix.detox.test:layout/test_design_checkbox = 0x7f0b0063 ++com.wix.detox.test:layout/abc_action_mode_bar = 0x7f0b0004 ++com.wix.detox.test:attr/searchIcon = 0x7f0302b5 ++com.wix.detox.test:attr/elevationOverlayColor = 0x7f030128 ++com.wix.detox.test:color/dim_foreground_material_dark = 0x7f050056 ++com.wix.detox.test:attr/actionBarTabStyle = 0x7f030007 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.Switch = 0x7f0e003e ++com.wix.detox.test:id/action_bar_subtitle = 0x7f080035 ++com.wix.detox.test:dimen/mtrl_calendar_navigation_height = 0x7f060107 ++com.wix.detox.test:dimen/abc_dialog_list_padding_bottom_no_buttons = 0x7f060020 ++com.wix.detox.test:string/material_timepicker_am = 0x7f0d0038 ++com.wix.detox.test:drawable/btn_checkbox_checked_mtrl = 0x7f070057 ++com.wix.detox.test:attr/collapsingToolbarLayoutStyle = 0x7f0300b3 ++com.wix.detox.test:attr/drawerArrowStyle = 0x7f03011f ++com.wix.detox.test:style/Theme.AppCompat.DayNight.Dialog.Alert = 0x7f0e018a ++com.wix.detox.test:attr/maxAcceleration = 0x7f030238 ++com.wix.detox.test:style/Widget.MaterialComponents.Chip.Choice = 0x7f0e027e ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Headline1 = 0x7f0e0177 ++com.wix.detox.test:attr/drawableRightCompat = 0x7f030119 ++com.wix.detox.test:dimen/mtrl_navigation_item_horizontal_padding = 0x7f060144 ++com.wix.detox.test:string/abc_menu_delete_shortcut_label = 0x7f0d000a ++com.wix.detox.test:attr/controlBackground = 0x7f0300e1 ++com.wix.detox.test:dimen/material_text_view_test_line_height = 0x7f0600b9 ++com.wix.detox.test:attr/drawableBottomCompat = 0x7f030116 ++com.wix.detox.test:dimen/mtrl_badge_text_horizontal_edge_offset = 0x7f0600c9 ++com.wix.detox.test:drawable/abc_list_divider_material = 0x7f07002a ++com.wix.detox.test:attr/drawPath = 0x7f030115 ++com.wix.detox.test:attr/expanded = 0x7f03013c ++com.wix.detox.test:attr/dividerVertical = 0x7f030111 ++com.wix.detox.test:attr/animate_relativeTo = 0x7f03002d ++com.wix.detox.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow = 0x7f0e0106 ++com.wix.detox.test:anim/btn_radio_to_on_mtrl_ring_outer_path_animation = 0x7f010017 ++com.wix.detox.test:dimen/test_navigation_bar_active_item_max_width = 0x7f060194 ++com.wix.detox.test:attr/extraMultilineHeightEnabled = 0x7f030147 ++com.wix.detox.test:xml/standalone_badge_gravity_bottom_start = 0x7f100002 ++com.wix.detox.test:string/mtrl_picker_invalid_range = 0x7f0d004f ++com.wix.detox.test:attr/actionModeTheme = 0x7f03001d ++com.wix.detox.test:anim/abc_slide_out_top = 0x7f010009 ++com.wix.detox.test:id/tag_unhandled_key_listeners = 0x7f08016f ++com.wix.detox.test:attr/deltaPolarRadius = 0x7f030108 ++com.wix.detox.test:attr/defaultDuration = 0x7f030104 ++com.wix.detox.test:attr/itemIconSize = 0x7f0301a9 ++com.wix.detox.test:attr/dayInvalidStyle = 0x7f030100 ++com.wix.detox.test:attr/activityChooserViewStyle = 0x7f030024 ++com.wix.detox.test:attr/chipStrokeWidth = 0x7f03009c ++com.wix.detox.test:style/Theme.MaterialComponents.DayNight.Dialog.Bridge = 0x7f0e01ad ++com.wix.detox.test:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f0e0046 ++com.wix.detox.test:attr/submitBackground = 0x7f0302ec ++com.wix.detox.test:id/mtrl_calendar_text_input_frame = 0x7f0800f1 ++com.wix.detox.test:animator/fragment_open_exit = 0x7f020008 ++com.wix.detox.test:attr/iconSize = 0x7f030193 ++com.wix.detox.test:attr/titleMarginTop = 0x7f030353 ++com.wix.detox.test:attr/customPixelDimension = 0x7f0300fe ++com.wix.detox.test:attr/closeIconTint = 0x7f0300ab ++com.wix.detox.test:attr/checkedButton = 0x7f030082 ++com.wix.detox.test:color/bright_foreground_inverse_material_dark = 0x7f050023 ++com.wix.detox.test:style/Widget.MaterialComponents.Snackbar.TextView = 0x7f0e02b5 ++com.wix.detox.test:style/Platform.MaterialComponents = 0x7f0e00f4 ++com.wix.detox.test:attr/colorBackgroundFloating = 0x7f0300b6 ++com.wix.detox.test:dimen/cardview_default_radius = 0x7f060055 ++com.wix.detox.test:style/TextAppearance.Design.Placeholder = 0x7f0e016c ++com.wix.detox.test:color/mtrl_fab_icon_text_color_selector = 0x7f050095 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat = 0x7f0e0013 ++com.wix.detox.test:attr/crossfade = 0x7f0300f4 ++com.wix.detox.test:attr/contentPaddingStart = 0x7f0300dd ++com.wix.detox.test:style/TextAppearance.Design.Tab = 0x7f0e0170 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Display1 = 0x7f0e0018 ++com.wix.detox.test:attr/cornerSizeBottomLeft = 0x7f0300ea ++com.wix.detox.test:id/jumpToEnd = 0x7f0800c1 ++com.wix.detox.test:id/BOTTOM_END = 0x7f080001 ++com.wix.detox.test:attr/cardUseCompatPadding = 0x7f03007e ++com.wix.detox.test:dimen/abc_text_size_display_1_material = 0x7f060043 ++com.wix.detox.test:attr/alertDialogStyle = 0x7f030027 ++com.wix.detox.test:attr/maxCharacterCount = 0x7f03023b ++com.wix.detox.test:attr/daySelectedStyle = 0x7f030101 ++com.wix.detox.test:style/Base.V23.Theme.AppCompat.Light = 0x7f0e008e ++com.wix.detox.test:attr/cornerSize = 0x7f0300e9 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomSheet.Modal = 0x7f0e026e ++com.wix.detox.test:attr/endIconDrawable = 0x7f03012d ++com.wix.detox.test:attr/textEndPadding = 0x7f030332 ++com.wix.detox.test:id/SYM = 0x7f08000b ++com.wix.detox.test:dimen/test_navigation_bar_icon_size = 0x7f060199 ++com.wix.detox.test:id/checkbox = 0x7f080060 ++com.wix.detox.test:animator/fragment_close_enter = 0x7f020003 ++com.wix.detox.test:drawable/notification_bg_low = 0x7f070081 ++com.wix.detox.test:layout/material_clock_period_toggle = 0x7f0b002f ++com.wix.detox.test:attr/cornerFamilyBottomRight = 0x7f0300e5 ++com.wix.detox.test:attr/contentInsetRight = 0x7f0300d5 ++com.wix.detox.test:layout/mtrl_calendar_month = 0x7f0b0044 ++com.wix.detox.test:attr/indicatorDirectionCircular = 0x7f03019c ++com.wix.detox.test:style/Widget.MaterialComponents.MaterialCalendar.HeaderSelection = 0x7f0e029b ++com.wix.detox.test:attr/contentPaddingRight = 0x7f0300dc ++com.wix.detox.test:interpolator/btn_radio_to_on_mtrl_animation_interpolator_0 = 0x7f0a0005 ++com.wix.detox.test:dimen/mtrl_navigation_bar_item_default_icon_size = 0x7f060141 ++com.wix.detox.test:dimen/design_snackbar_padding_horizontal = 0x7f060086 ++com.wix.detox.test:attr/counterTextAppearance = 0x7f0300f2 ++com.wix.detox.test:attr/contentInsetStartWithNavigation = 0x7f0300d7 ++com.wix.detox.test:attr/queryBackground = 0x7f03029f ++com.wix.detox.test:attr/contentInsetLeft = 0x7f0300d4 ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Subtitle1 = 0x7f0e017e ++com.wix.detox.test:attr/counterOverflowTextAppearance = 0x7f0300f0 ++com.wix.detox.test:dimen/design_bottom_navigation_active_item_max_width = 0x7f060061 ++com.wix.detox.test:style/Theme.AppCompat.Light.Dialog.Alert = 0x7f0e0196 ++com.wix.detox.test:attr/contentInsetEndWithActions = 0x7f0300d3 ++com.wix.detox.test:attr/layout = 0x7f0301c4 ++com.wix.detox.test:style/Base.V26.Widget.AppCompat.Toolbar = 0x7f0e0091 ++com.wix.detox.test:attr/flow_maxElementsWrap = 0x7f030162 ++com.wix.detox.test:id/sawtooth = 0x7f08012e ++com.wix.detox.test:attr/constraintSetStart = 0x7f0300cd ++com.wix.detox.test:attr/buttonBarButtonStyle = 0x7f03006b ++com.wix.detox.test:attr/constraintSet = 0x7f0300cb ++com.wix.detox.test:color/abc_background_cache_hint_selector_material_light = 0x7f050001 ++com.wix.detox.test:dimen/tooltip_precise_anchor_extra_offset = 0x7f0601a2 ++com.wix.detox.test:attr/commitIcon = 0x7f0300ca ++com.wix.detox.test:id/jumpToStart = 0x7f0800c2 ++com.wix.detox.test:attr/colorSwitchThumbNormal = 0x7f0300c9 ++com.wix.detox.test:style/Base.Widget.AppCompat.CompoundButton.Switch = 0x7f0e00b1 ++com.wix.detox.test:string/material_clock_toggle_content_description = 0x7f0d002c ++com.wix.detox.test:dimen/mtrl_slider_label_square_side = 0x7f060166 ++com.wix.detox.test:string/mtrl_picker_text_input_year_abbr = 0x7f0d005d ++com.wix.detox.test:layout/design_navigation_item_subheader = 0x7f0b0027 ++com.wix.detox.test:dimen/mtrl_calendar_content_padding = 0x7f0600f0 ++com.wix.detox.test:attr/layout_constraintCircleAngle = 0x7f0301d5 ++com.wix.detox.test:attr/colorSecondary = 0x7f0300c6 ++com.wix.detox.test:attr/materialCardViewStyle = 0x7f030232 ++com.wix.detox.test:attr/borderWidth = 0x7f030059 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.DialogWhenLarge = 0x7f0e0067 ++com.wix.detox.test:attr/colorPrimaryVariant = 0x7f0300c5 ++com.wix.detox.test:attr/deltaPolarAngle = 0x7f030107 ++com.wix.detox.test:attr/state_lifted = 0x7f0302e5 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light.Dialog = 0x7f0e0062 ++com.wix.detox.test:attr/colorControlNormal = 0x7f0300ba ++com.wix.detox.test:attr/mock_labelColor = 0x7f03024c ++com.wix.detox.test:attr/constraint_referenced_ids = 0x7f0300ce ++com.wix.detox.test:attr/materialCalendarMonth = 0x7f03022d ++com.wix.detox.test:dimen/abc_panel_menu_list_width = 0x7f060034 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Bridge = 0x7f0e0056 ++com.wix.detox.test:id/mini = 0x7f0800e2 ++com.wix.detox.test:attr/state_above_anchor = 0x7f0302e0 ++com.wix.detox.test:dimen/abc_cascading_menus_min_smallest_width = 0x7f060016 ++com.wix.detox.test:style/Base.V26.Theme.AppCompat = 0x7f0e008f ++com.wix.detox.test:dimen/mtrl_calendar_bottom_padding = 0x7f0600ef ++com.wix.detox.test:attr/chipBackgroundColor = 0x7f03008b ++com.wix.detox.test:id/startHorizontal = 0x7f08015a ++com.wix.detox.test:attr/contentInsetEnd = 0x7f0300d2 ++com.wix.detox.test:style/Base.Widget.AppCompat.ListView.Menu = 0x7f0e00c3 ++com.wix.detox.test:id/endToStart = 0x7f080098 ++com.wix.detox.test:attr/drawerLayoutStyle = 0x7f030120 ++com.wix.detox.test:attr/collapsedSize = 0x7f0300b0 ++com.wix.detox.test:style/Animation.AppCompat.Dialog = 0x7f0e0003 ++com.wix.detox.test:attr/closeIconVisible = 0x7f0300ac ++com.wix.detox.test:dimen/material_cursor_inset_top = 0x7f0600aa ++com.wix.detox.test:dimen/notification_small_icon_background_padding = 0x7f06018e ++com.wix.detox.test:id/accessibility_custom_action_9 = 0x7f08002f ++com.wix.detox.test:attr/closeIconSize = 0x7f0300a9 ++com.wix.detox.test:attr/clockIcon = 0x7f0300a4 ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationRailView = 0x7f0e02a6 ++com.wix.detox.test:attr/clockFaceBackgroundColor = 0x7f0300a2 ++com.wix.detox.test:id/accessibility_custom_action_4 = 0x7f08002a ++com.wix.detox.test:styleable/MockView = 0x7f0f0059 ++com.wix.detox.test:attr/expandedHintEnabled = 0x7f03013d ++com.wix.detox.test:attr/motionStagger = 0x7f03025f ++com.wix.detox.test:integer/mtrl_card_anim_delay_ms = 0x7f090016 ++com.wix.detox.test:attr/circularProgressIndicatorStyle = 0x7f0300a0 ++com.wix.detox.test:attr/layout_anchor = 0x7f0301c8 ++com.wix.detox.test:attr/useCompatPadding = 0x7f030374 ++com.wix.detox.test:anim/design_bottom_sheet_slide_in = 0x7f010018 ++com.wix.detox.test:attr/behavior_autoHide = 0x7f03004e ++com.wix.detox.test:attr/constraints = 0x7f0300cf ++com.wix.detox.test:attr/layout_scrollInterpolator = 0x7f030204 ++com.wix.detox.test:color/design_snackbar_background_color = 0x7f050053 ++com.wix.detox.test:attr/chipIconEnabled = 0x7f030090 ++com.wix.detox.test:drawable/navigation_empty_icon = 0x7f07007e ++com.wix.detox.test:style/Widget.MaterialComponents.Light.ActionBar.Solid = 0x7f0e028d ++com.wix.detox.test:animator/mtrl_fab_transformation_sheet_collapse_spec = 0x7f020018 ++com.wix.detox.test:attr/helperTextEnabled = 0x7f030180 ++com.wix.detox.test:attr/buttonGravity = 0x7f030071 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f0e0034 ++com.wix.detox.test:id/search_bar = 0x7f080137 ++com.wix.detox.test:attr/prefixText = 0x7f030298 ++com.wix.detox.test:drawable/abc_ic_menu_overflow_material = 0x7f070022 ++com.wix.detox.test:attr/alertDialogCenterButtons = 0x7f030026 ++com.wix.detox.test:style/Base.V21.Theme.AppCompat.Light = 0x7f0e0083 ++com.wix.detox.test:attr/animationMode = 0x7f03002e ++com.wix.detox.test:style/TextAppearance.AppCompat.Light.SearchResult.Subtitle = 0x7f0e013e ++com.wix.detox.test:dimen/material_clock_hand_padding = 0x7f0600a2 ++com.wix.detox.test:dimen/mtrl_high_ripple_default_alpha = 0x7f060137 ++com.wix.detox.test:dimen/design_bottom_sheet_peek_height_min = 0x7f06006f ++com.wix.detox.test:attr/flow_verticalBias = 0x7f030165 ++com.wix.detox.test:attr/checkedIconMargin = 0x7f030086 ++com.wix.detox.test:layout/abc_action_menu_item_layout = 0x7f0b0002 ++com.wix.detox.test:attr/endIconCheckable = 0x7f03012b ++com.wix.detox.test:style/Widget.MaterialComponents.NavigationView = 0x7f0e02ab ++com.wix.detox.test:drawable/ic_mtrl_chip_close_circle = 0x7f070069 ++com.wix.detox.test:attr/checkedIconVisible = 0x7f030089 ++com.wix.detox.test:attr/numericModifiers = 0x7f03026f ++com.wix.detox.test:color/mtrl_calendar_selected_range = 0x7f050089 ++com.wix.detox.test:style/Widget.AppCompat.SearchView.ActionBar = 0x7f0e0243 ++com.wix.detox.test:attr/singleLine = 0x7f0302cc ++com.wix.detox.test:attr/autoSizePresetSizes = 0x7f030038 ++com.wix.detox.test:style/Widget.AppCompat.TextView = 0x7f0e024a ++com.wix.detox.test:attr/checkedChip = 0x7f030083 ++com.wix.detox.test:styleable/LinearProgressIndicator = 0x7f0f0045 ++com.wix.detox.test:id/dragDown = 0x7f08008b ++com.wix.detox.test:dimen/design_snackbar_elevation = 0x7f060082 ++com.wix.detox.test:animator/linear_indeterminate_line1_tail_interpolator = 0x7f02000a ++com.wix.detox.test:attr/boxCornerRadiusBottomEnd = 0x7f030062 ++com.wix.detox.test:id/mtrl_calendar_frame = 0x7f0800ed ++com.wix.detox.test:attr/hideOnScroll = 0x7f030186 ++com.wix.detox.test:attr/actionModeStyle = 0x7f03001c ++com.wix.detox.test:attr/boxStrokeErrorColor = 0x7f030067 ++com.wix.detox.test:attr/insetForeground = 0x7f0301a1 ++com.wix.detox.test:attr/boxStrokeColor = 0x7f030066 ++com.wix.detox.test:attr/rangeFillColor = 0x7f0302a3 ++com.wix.detox.test:attr/cardBackgroundColor = 0x7f030078 ++com.wix.detox.test:anim/mtrl_bottom_sheet_slide_in = 0x7f01001d ++com.wix.detox.test:attr/cardElevation = 0x7f03007a ++com.wix.detox.test:attr/itemMaxLines = 0x7f0301ab ++com.wix.detox.test:style/TextAppearance.MaterialComponents.Overline = 0x7f0e017d ++com.wix.detox.test:id/search_go_btn = 0x7f08013b ++com.wix.detox.test:attr/boxCornerRadiusTopEnd = 0x7f030064 ++com.wix.detox.test:style/Widget.AppCompat.Light.ListView.DropDown = 0x7f0e0230 ++com.wix.detox.test:dimen/mtrl_extended_fab_translation_z_pressed = 0x7f060132 ++com.wix.detox.test:id/text_input_end_icon = 0x7f08017c ++com.wix.detox.test:id/end = 0x7f080097 ++com.wix.detox.test:attr/actionViewClass = 0x7f030023 ++com.wix.detox.test:attr/chipSurfaceColor = 0x7f03009e ++com.wix.detox.test:style/Base.Widget.AppCompat.ActionBar = 0x7f0e009c ++com.wix.detox.test:attr/bottomSheetStyle = 0x7f03005e ++com.wix.detox.test:attr/gestureInsetBottomIgnored = 0x7f030179 ++com.wix.detox.test:anim/btn_radio_to_off_mtrl_ring_outer_path_animation = 0x7f010014 ++com.wix.detox.test:attr/thumbStrokeColor = 0x7f03033d ++com.wix.detox.test:color/design_fab_stroke_end_outer_color = 0x7f05004f ++com.wix.detox.test:attr/expandedTitleGravity = 0x7f03013e ++com.wix.detox.test:color/mtrl_tabs_icon_color_selector = 0x7f0500a9 ++com.wix.detox.test:attr/materialCalendarHeaderLayout = 0x7f030229 ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Body2 = 0x7f0e0015 ++com.wix.detox.test:attr/badgeGravity = 0x7f030047 ++com.wix.detox.test:attr/layout_collapseParallaxMultiplier = 0x7f0301cc ++com.wix.detox.test:styleable/Toolbar = 0x7f0f0080 ++com.wix.detox.test:attr/contentPaddingEnd = 0x7f0300da ++com.wix.detox.test:styleable/AppCompatTextView = 0x7f0f0010 ++com.wix.detox.test:attr/bottomAppBarStyle = 0x7f03005b ++com.wix.detox.test:drawable/abc_dialog_material_background = 0x7f070019 ++com.wix.detox.test:dimen/abc_list_item_padding_horizontal_material = 0x7f060033 ++com.wix.detox.test:attr/behavior_saveFlags = 0x7f030057 ++com.wix.detox.test:attr/motionDurationShort2 = 0x7f030255 ++com.wix.detox.test:style/Theme.AppCompat.DayNight.Dialog = 0x7f0e0189 ++com.wix.detox.test:dimen/compat_notification_large_icon_max_width = 0x7f06005d ++com.wix.detox.test:attr/actionModeSplitBackground = 0x7f03001b ++com.wix.detox.test:attr/applyMotionScene = 0x7f030030 ++com.wix.detox.test:style/Theme.MaterialComponents.Dialog.Bridge = 0x7f0e01b8 ++com.wix.detox.test:attr/layout_constrainedWidth = 0x7f0301ce ++com.wix.detox.test:attr/duration = 0x7f030123 ++com.wix.detox.test:id/SHOW_PROGRESS = 0x7f08000a ++com.wix.detox.test:anim/abc_slide_out_bottom = 0x7f010008 ++com.wix.detox.test:attr/showAnimationBehavior = 0x7f0302c2 ++com.wix.detox.test:string/password_toggle_content_description = 0x7f0d0062 ++com.wix.detox.test:id/visible_removing_fragment_view_tag = 0x7f08019f ++com.wix.detox.test:attr/customDimension = 0x7f0300fa ++com.wix.detox.test:dimen/tooltip_margin = 0x7f0601a1 ++com.wix.detox.test:animator/linear_indeterminate_line2_tail_interpolator = 0x7f02000c ++com.wix.detox.test:style/Widget.AppCompat.PopupMenu.Overflow = 0x7f0e023b ++com.wix.detox.test:style/TextAppearance.AppCompat.Caption = 0x7f0e0135 ++com.wix.detox.test:attr/textAppearanceSearchResultTitle = 0x7f03032c ++com.wix.detox.test:attr/contentDescription = 0x7f0300d1 ++com.wix.detox.test:attr/barrierDirection = 0x7f03004c ++com.wix.detox.test:dimen/abc_search_view_preferred_height = 0x7f060036 ++com.wix.detox.test:style/Widget.Design.BottomSheet.Modal = 0x7f0e0252 ++com.wix.detox.test:string/mtrl_picker_text_input_date_range_end_hint = 0x7f0d0059 ++com.wix.detox.test:attr/paddingRightSystemWindowInsets = 0x7f03027c ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Widget.Button.Colored = 0x7f0e0038 ++com.wix.detox.test:id/all = 0x7f080046 ++com.wix.detox.test:style/Base.Widget.AppCompat.PopupWindow = 0x7f0e00c6 ++com.wix.detox.test:attr/layout_constraintEnd_toStartOf = 0x7f0301d9 ++com.wix.detox.test:anim/mtrl_bottom_sheet_slide_out = 0x7f01001e ++com.wix.detox.test:attr/colorPrimaryDark = 0x7f0300c3 ++com.wix.detox.test:id/notification_main_column = 0x7f08010c ++com.wix.detox.test:dimen/mtrl_extended_fab_disabled_translation_z = 0x7f060125 ++com.wix.detox.test:anim/btn_radio_to_on_mtrl_ring_outer_animation = 0x7f010016 ++com.wix.detox.test:style/Base.Widget.MaterialComponents.PopupMenu.Overflow = 0x7f0e00de ++com.wix.detox.test:string/mtrl_badge_numberless_content_description = 0x7f0d003f ++com.wix.detox.test:attr/layout_goneMarginStart = 0x7f0301fe ++com.wix.detox.test:dimen/mtrl_alert_dialog_background_inset_top = 0x7f0600c4 ++com.wix.detox.test:color/background_floating_material_dark = 0x7f05001d ++com.wix.detox.test:styleable/FloatingActionButton_Behavior_Layout = 0x7f0f002f ++com.wix.detox.test:attr/itemStrokeColor = 0x7f0301b6 ++com.wix.detox.test:attr/defaultState = 0x7f030106 ++com.wix.detox.test:attr/region_widthLessThan = 0x7f0302aa ++com.wix.detox.test:string/abc_menu_ctrl_shortcut_label = 0x7f0d0009 ++com.wix.detox.test:attr/chipMinTouchTargetSize = 0x7f030095 ++com.wix.detox.test:color/material_cursor_color = 0x7f050061 ++com.wix.detox.test:attr/errorTextColor = 0x7f03013a ++com.wix.detox.test:attr/autoSizeStepGranularity = 0x7f030039 ++com.wix.detox.test:attr/autoSizeMaxTextSize = 0x7f030036 ++com.wix.detox.test:drawable/abc_text_cursor_material = 0x7f07004b ++com.wix.detox.test:attr/layout_constraintCircle = 0x7f0301d4 ++com.wix.detox.test:color/mtrl_indicator_text_color = 0x7f05009a ++com.wix.detox.test:attr/appBarLayoutStyle = 0x7f03002f ++com.wix.detox.test:attr/fontWeight = 0x7f030174 ++com.wix.detox.test:dimen/mtrl_tooltip_padding = 0x7f060182 ++com.wix.detox.test:attr/alpha = 0x7f03002a ++com.wix.detox.test:style/Theme.AppCompat.DayNight = 0x7f0e0187 ++com.wix.detox.test:style/TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f0e015d ++com.wix.detox.test:color/mtrl_fab_ripple_color = 0x7f050096 ++com.wix.detox.test:attr/drawableLeftCompat = 0x7f030118 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton.Icon = 0x7f0e0277 ++com.wix.detox.test:attr/hoveredFocusedTranslationZ = 0x7f03018e ++com.wix.detox.test:attr/allowStacking = 0x7f030029 ++com.wix.detox.test:attr/showTitle = 0x7f0302c9 ++com.wix.detox.test:attr/actionModeWebSearchDrawable = 0x7f03001e ++com.wix.detox.test:dimen/action_bar_size = 0x7f060051 ++com.wix.detox.test:attr/actionModeCloseButtonStyle = 0x7f030011 ++com.wix.detox.test:id/ghost_view_holder = 0x7f0800aa ++com.wix.detox.test:id/view_tree_view_model_store_owner = 0x7f08019d ++com.wix.detox.test:id/graph_wrap = 0x7f0800ad ++com.wix.detox.test:attr/colorOnPrimarySurface = 0x7f0300bf ++com.wix.detox.test:id/center_horizontal = 0x7f08005c ++com.wix.detox.test:attr/actionDropDownStyle = 0x7f03000c ++com.wix.detox.test:string/mtrl_chip_close_icon_content_description = 0x7f0d0040 ++com.wix.detox.test:attr/cardForegroundColor = 0x7f03007b ++com.wix.detox.test:style/Theme.AppCompat.Dialog.Alert = 0x7f0e018f ++com.wix.detox.test:string/abc_menu_sym_shortcut_label = 0x7f0d0010 ++com.wix.detox.test:attr/actionModeCloseDrawable = 0x7f030013 ++com.wix.detox.test:attr/shrinkMotionSpec = 0x7f0302ca ++com.wix.detox.test:attr/onTouchUp = 0x7f030275 ++com.wix.detox.test:attr/showDividers = 0x7f0302c5 ++com.wix.detox.test:attr/endIconTintMode = 0x7f030130 ++com.wix.detox.test:drawable/abc_edit_text_material = 0x7f07001a ++com.wix.detox.test:color/primary_text_disabled_material_dark = 0x7f0500bb ++com.wix.detox.test:dimen/abc_text_size_large_material = 0x7f060048 ++com.wix.detox.test:anim/btn_radio_to_off_mtrl_ring_outer_animation = 0x7f010013 ++com.wix.detox.test:dimen/notification_top_pad_large_text = 0x7f060192 ++com.wix.detox.test:attr/flow_firstVerticalBias = 0x7f030158 ++com.wix.detox.test:string/mtrl_picker_range_header_unselected = 0x7f0d0056 ++com.wix.detox.test:attr/clickAction = 0x7f0300a1 ++com.wix.detox.test:attr/pressedTranslationZ = 0x7f03029c ++com.wix.detox.test:dimen/mtrl_calendar_header_selection_line_height = 0x7f0600fe ++com.wix.detox.test:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f0a0001 ++com.wix.detox.test:integer/hide_password_duration = 0x7f090008 ++com.wix.detox.test:animator/mtrl_extended_fab_state_list_animator = 0x7f020015 ++com.wix.detox.test:anim/design_snackbar_in = 0x7f01001a ++com.wix.detox.test:id/transition_layout_save = 0x7f080190 ++com.wix.detox.test:attr/waveDecay = 0x7f03037c ++com.wix.detox.test:color/mtrl_tabs_legacy_text_color_selector = 0x7f0500ab ++com.wix.detox.test:attr/actionModePopupWindowStyle = 0x7f030018 ++com.wix.detox.test:color/button_material_light = 0x7f050028 ++com.wix.detox.test:style/Widget.AppCompat.SeekBar.Discrete = 0x7f0e0245 ++com.wix.detox.test:integer/status_bar_notification_info_maxnum = 0x7f09001b ++com.wix.detox.test:dimen/mtrl_calendar_day_today_stroke = 0x7f0600f4 ++com.wix.detox.test:attr/curveFit = 0x7f0300f6 ++com.wix.detox.test:style/TextAppearance.AppCompat.Body2 = 0x7f0e0133 ++com.wix.detox.test:string/mtrl_picker_cancel = 0x7f0d0046 ++com.wix.detox.test:animator/fragment_open_enter = 0x7f020007 ++com.wix.detox.test:id/accessibility_custom_action_14 = 0x7f080016 ++com.wix.detox.test:attr/customBoolean = 0x7f0300f7 ++com.wix.detox.test:animator/fragment_fade_exit = 0x7f020006 ++com.wix.detox.test:style/Widget.MaterialComponents.ProgressIndicator = 0x7f0e02b0 ++com.wix.detox.test:attr/layout_constraintWidth_min = 0x7f0301f5 ++com.wix.detox.test:attr/layout_constraintTop_toTopOf = 0x7f0301ef ++com.wix.detox.test:string/mtrl_picker_toggle_to_calendar_input_mode = 0x7f0d005e ++com.wix.detox.test:style/Widget.MaterialComponents.CompoundButton.CheckBox = 0x7f0e0287 ++com.wix.detox.test:attr/actionProviderClass = 0x7f030021 ++com.wix.detox.test:style/Widget.MaterialComponents.BottomNavigationView.Colored = 0x7f0e026b ++com.wix.detox.test:style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox = 0x7f0e0264 ++com.wix.detox.test:attr/errorIconTintMode = 0x7f030138 ++com.wix.detox.test:attr/windowMinWidthMajor = 0x7f030388 ++com.wix.detox.test:attr/maxHeight = 0x7f03023c ++com.wix.detox.test:style/Base.TextAppearance.AppCompat.Caption = 0x7f0e0017 ++com.wix.detox.test:style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f0e0182 ++com.wix.detox.test:attr/headerLayout = 0x7f03017d ++com.wix.detox.test:dimen/mtrl_calendar_selection_text_baseline_to_bottom_fullscreen = 0x7f06010c ++com.wix.detox.test:attr/behavior_fitToContents = 0x7f030052 ++com.wix.detox.test:attr/fastScrollHorizontalTrackDrawable = 0x7f030151 ++com.wix.detox.test:attr/customColorValue = 0x7f0300f9 ++com.wix.detox.test:style/Base.Theme.MaterialComponents.Light = 0x7f0e005e ++com.wix.detox.test:attr/pivotAnchor = 0x7f03028f ++com.wix.detox.test:drawable/abc_ab_share_pack_mtrl_alpha = 0x7f070006 ++com.wix.detox.test:attr/textAppearanceHeadline4 = 0x7f030321 ++com.wix.detox.test:attr/percentWidth = 0x7f03028b ++com.wix.detox.test:style/Base.Widget.AppCompat.Button.Small = 0x7f0e00ac ++com.wix.detox.test:attr/shapeAppearanceOverlay = 0x7f0302bf ++com.wix.detox.test:attr/indeterminateProgressStyle = 0x7f03019a ++com.wix.detox.test:animator/mtrl_fab_show_motion_spec = 0x7f020017 ++com.wix.detox.test:attr/tabIconTint = 0x7f0302fd ++com.wix.detox.test:color/design_dark_default_color_on_error = 0x7f050033 ++com.wix.detox.test:dimen/mtrl_navigation_bar_item_default_margin = 0x7f060142 ++com.wix.detox.test:style/Widget.MaterialComponents.Button.TextButton.Dialog.Flush = 0x7f0e0275 ++com.wix.detox.test:string/fab_transformation_scrim_behavior = 0x7f0d0026 ++com.wix.detox.test:dimen/mtrl_navigation_item_icon_size = 0x7f060146 ++com.wix.detox.test:dimen/mtrl_btn_max_width = 0x7f0600df ++com.wix.detox.test:dimen/mtrl_progress_circular_track_thickness_small = 0x7f06015d ++com.wix.detox.test:attr/actionMenuTextColor = 0x7f03000f ++com.wix.detox.test:style/TextAppearance.AppCompat.Display4 = 0x7f0e0139 ++com.wix.detox.test:dimen/design_tab_max_width = 0x7f06008a ++com.wix.detox.test:anim/abc_shrink_fade_out_from_bottom = 0x7f010005 ++com.wix.detox.test:string/mtrl_picker_out_of_range = 0x7f0d0051 ++com.wix.detox.test:attr/motionTarget = 0x7f030260 +diff --git a/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/coreNativeDebug/generateCoreNativeDebugRFile/package-aware-r.txt b/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/coreNativeDebug/generateCoreNativeDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..b9e2254 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/coreNativeDebug/generateCoreNativeDebugRFile/package-aware-r.txt +@@ -0,0 +1,2 @@ ++com.wix.detox ++string app_name +diff --git a/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/package-aware-r.txt b/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/package-aware-r.txt +new file mode 100644 +index 0000000..b5d43f4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/coreNativeDebugAndroidTest/processCoreNativeDebugAndroidTestResources/package-aware-r.txt +@@ -0,0 +1,3280 @@ ++com.wix.detox.test ++anim abc_fade_in ++anim abc_fade_out ++anim abc_grow_fade_in_from_bottom ++anim abc_popup_enter ++anim abc_popup_exit ++anim abc_shrink_fade_out_from_bottom ++anim abc_slide_in_bottom ++anim abc_slide_in_top ++anim abc_slide_out_bottom ++anim abc_slide_out_top ++anim abc_tooltip_enter ++anim abc_tooltip_exit ++anim btn_checkbox_to_checked_box_inner_merged_animation ++anim btn_checkbox_to_checked_box_outer_merged_animation ++anim btn_checkbox_to_checked_icon_null_animation ++anim btn_checkbox_to_unchecked_box_inner_merged_animation ++anim btn_checkbox_to_unchecked_check_path_merged_animation ++anim btn_checkbox_to_unchecked_icon_null_animation ++anim btn_radio_to_off_mtrl_dot_group_animation ++anim btn_radio_to_off_mtrl_ring_outer_animation ++anim btn_radio_to_off_mtrl_ring_outer_path_animation ++anim btn_radio_to_on_mtrl_dot_group_animation ++anim btn_radio_to_on_mtrl_ring_outer_animation ++anim btn_radio_to_on_mtrl_ring_outer_path_animation ++anim design_bottom_sheet_slide_in ++anim design_bottom_sheet_slide_out ++anim design_snackbar_in ++anim design_snackbar_out ++anim fragment_fast_out_extra_slow_in ++anim mtrl_bottom_sheet_slide_in ++anim mtrl_bottom_sheet_slide_out ++anim mtrl_card_lowers_interpolator ++animator design_appbar_state_list_animator ++animator design_fab_hide_motion_spec ++animator design_fab_show_motion_spec ++animator fragment_close_enter ++animator fragment_close_exit ++animator fragment_fade_enter ++animator fragment_fade_exit ++animator fragment_open_enter ++animator fragment_open_exit ++animator linear_indeterminate_line1_head_interpolator ++animator linear_indeterminate_line1_tail_interpolator ++animator linear_indeterminate_line2_head_interpolator ++animator linear_indeterminate_line2_tail_interpolator ++animator mtrl_btn_state_list_anim ++animator mtrl_btn_unelevated_state_list_anim ++animator mtrl_card_state_list_anim ++animator mtrl_chip_state_list_anim ++animator mtrl_extended_fab_change_size_collapse_motion_spec ++animator mtrl_extended_fab_change_size_expand_motion_spec ++animator mtrl_extended_fab_hide_motion_spec ++animator mtrl_extended_fab_show_motion_spec ++animator mtrl_extended_fab_state_list_animator ++animator mtrl_fab_hide_motion_spec ++animator mtrl_fab_show_motion_spec ++animator mtrl_fab_transformation_sheet_collapse_spec ++animator mtrl_fab_transformation_sheet_expand_spec ++attr actionBarDivider ++attr actionBarItemBackground ++attr actionBarPopupTheme ++attr actionBarSize ++attr actionBarSplitStyle ++attr actionBarStyle ++attr actionBarTabBarStyle ++attr actionBarTabStyle ++attr actionBarTabTextStyle ++attr actionBarTheme ++attr actionBarWidgetTheme ++attr actionButtonStyle ++attr actionDropDownStyle ++attr actionLayout ++attr actionMenuTextAppearance ++attr actionMenuTextColor ++attr actionModeBackground ++attr actionModeCloseButtonStyle ++attr actionModeCloseContentDescription ++attr actionModeCloseDrawable ++attr actionModeCopyDrawable ++attr actionModeCutDrawable ++attr actionModeFindDrawable ++attr actionModePasteDrawable ++attr actionModePopupWindowStyle ++attr actionModeSelectAllDrawable ++attr actionModeShareDrawable ++attr actionModeSplitBackground ++attr actionModeStyle ++attr actionModeTheme ++attr actionModeWebSearchDrawable ++attr actionOverflowButtonStyle ++attr actionOverflowMenuStyle ++attr actionProviderClass ++attr actionTextColorAlpha ++attr actionViewClass ++attr activityChooserViewStyle ++attr alertDialogButtonGroupStyle ++attr alertDialogCenterButtons ++attr alertDialogStyle ++attr alertDialogTheme ++attr allowStacking ++attr alpha ++attr alphabeticModifiers ++attr altSrc ++attr animate_relativeTo ++attr animationMode ++attr appBarLayoutStyle ++attr applyMotionScene ++attr arcMode ++attr arrowHeadLength ++attr arrowShaftLength ++attr attributeName ++attr autoCompleteTextViewStyle ++attr autoSizeMaxTextSize ++attr autoSizeMinTextSize ++attr autoSizePresetSizes ++attr autoSizeStepGranularity ++attr autoSizeTextType ++attr autoTransition ++attr background ++attr backgroundColor ++attr backgroundInsetBottom ++attr backgroundInsetEnd ++attr backgroundInsetStart ++attr backgroundInsetTop ++attr backgroundOverlayColorAlpha ++attr backgroundSplit ++attr backgroundStacked ++attr backgroundTint ++attr backgroundTintMode ++attr badgeGravity ++attr badgeStyle ++attr badgeTextColor ++attr barLength ++attr barrierAllowsGoneWidgets ++attr barrierDirection ++attr barrierMargin ++attr behavior_autoHide ++attr behavior_autoShrink ++attr behavior_draggable ++attr behavior_expandedOffset ++attr behavior_fitToContents ++attr behavior_halfExpandedRatio ++attr behavior_hideable ++attr behavior_overlapTop ++attr behavior_peekHeight ++attr behavior_saveFlags ++attr behavior_skipCollapsed ++attr borderWidth ++attr borderlessButtonStyle ++attr bottomAppBarStyle ++attr bottomNavigationStyle ++attr bottomSheetDialogTheme ++attr bottomSheetStyle ++attr boxBackgroundColor ++attr boxBackgroundMode ++attr boxCollapsedPaddingTop ++attr boxCornerRadiusBottomEnd ++attr boxCornerRadiusBottomStart ++attr boxCornerRadiusTopEnd ++attr boxCornerRadiusTopStart ++attr boxStrokeColor ++attr boxStrokeErrorColor ++attr boxStrokeWidth ++attr boxStrokeWidthFocused ++attr brightness ++attr buttonBarButtonStyle ++attr buttonBarNegativeButtonStyle ++attr buttonBarNeutralButtonStyle ++attr buttonBarPositiveButtonStyle ++attr buttonBarStyle ++attr buttonCompat ++attr buttonGravity ++attr buttonIconDimen ++attr buttonPanelSideLayout ++attr buttonStyle ++attr buttonStyleSmall ++attr buttonTint ++attr buttonTintMode ++attr cardBackgroundColor ++attr cardCornerRadius ++attr cardElevation ++attr cardForegroundColor ++attr cardMaxElevation ++attr cardPreventCornerOverlap ++attr cardUseCompatPadding ++attr cardViewStyle ++attr chainUseRtl ++attr checkboxStyle ++attr checkedButton ++attr checkedChip ++attr checkedIcon ++attr checkedIconEnabled ++attr checkedIconMargin ++attr checkedIconSize ++attr checkedIconTint ++attr checkedIconVisible ++attr checkedTextViewStyle ++attr chipBackgroundColor ++attr chipCornerRadius ++attr chipEndPadding ++attr chipGroupStyle ++attr chipIcon ++attr chipIconEnabled ++attr chipIconSize ++attr chipIconTint ++attr chipIconVisible ++attr chipMinHeight ++attr chipMinTouchTargetSize ++attr chipSpacing ++attr chipSpacingHorizontal ++attr chipSpacingVertical ++attr chipStandaloneStyle ++attr chipStartPadding ++attr chipStrokeColor ++attr chipStrokeWidth ++attr chipStyle ++attr chipSurfaceColor ++attr circleRadius ++attr circularProgressIndicatorStyle ++attr clickAction ++attr clockFaceBackgroundColor ++attr clockHandColor ++attr clockIcon ++attr clockNumberTextColor ++attr closeIcon ++attr closeIconEnabled ++attr closeIconEndPadding ++attr closeIconSize ++attr closeIconStartPadding ++attr closeIconTint ++attr closeIconVisible ++attr closeItemLayout ++attr collapseContentDescription ++attr collapseIcon ++attr collapsedSize ++attr collapsedTitleGravity ++attr collapsedTitleTextAppearance ++attr collapsingToolbarLayoutStyle ++attr color ++attr colorAccent ++attr colorBackgroundFloating ++attr colorButtonNormal ++attr colorControlActivated ++attr colorControlHighlight ++attr colorControlNormal ++attr colorError ++attr colorOnBackground ++attr colorOnError ++attr colorOnPrimary ++attr colorOnPrimarySurface ++attr colorOnSecondary ++attr colorOnSurface ++attr colorPrimary ++attr colorPrimaryDark ++attr colorPrimarySurface ++attr colorPrimaryVariant ++attr colorSecondary ++attr colorSecondaryVariant ++attr colorSurface ++attr colorSwitchThumbNormal ++attr commitIcon ++attr constraintSet ++attr constraintSetEnd ++attr constraintSetStart ++attr constraint_referenced_ids ++attr constraints ++attr content ++attr contentDescription ++attr contentInsetEnd ++attr contentInsetEndWithActions ++attr contentInsetLeft ++attr contentInsetRight ++attr contentInsetStart ++attr contentInsetStartWithNavigation ++attr contentPadding ++attr contentPaddingBottom ++attr contentPaddingEnd ++attr contentPaddingLeft ++attr contentPaddingRight ++attr contentPaddingStart ++attr contentPaddingTop ++attr contentScrim ++attr contrast ++attr controlBackground ++attr coordinatorLayoutStyle ++attr cornerFamily ++attr cornerFamilyBottomLeft ++attr cornerFamilyBottomRight ++attr cornerFamilyTopLeft ++attr cornerFamilyTopRight ++attr cornerRadius ++attr cornerSize ++attr cornerSizeBottomLeft ++attr cornerSizeBottomRight ++attr cornerSizeTopLeft ++attr cornerSizeTopRight ++attr counterEnabled ++attr counterMaxLength ++attr counterOverflowTextAppearance ++attr counterOverflowTextColor ++attr counterTextAppearance ++attr counterTextColor ++attr crossfade ++attr currentState ++attr curveFit ++attr customBoolean ++attr customColorDrawableValue ++attr customColorValue ++attr customDimension ++attr customFloatValue ++attr customIntegerValue ++attr customNavigationLayout ++attr customPixelDimension ++attr customStringValue ++attr dayInvalidStyle ++attr daySelectedStyle ++attr dayStyle ++attr dayTodayStyle ++attr defaultDuration ++attr defaultQueryHint ++attr defaultState ++attr deltaPolarAngle ++attr deltaPolarRadius ++attr deriveConstraintsFrom ++attr dialogCornerRadius ++attr dialogPreferredPadding ++attr dialogTheme ++attr displayOptions ++attr divider ++attr dividerHorizontal ++attr dividerPadding ++attr dividerVertical ++attr dragDirection ++attr dragScale ++attr dragThreshold ++attr drawPath ++attr drawableBottomCompat ++attr drawableEndCompat ++attr drawableLeftCompat ++attr drawableRightCompat ++attr drawableSize ++attr drawableStartCompat ++attr drawableTint ++attr drawableTintMode ++attr drawableTopCompat ++attr drawerArrowStyle ++attr drawerLayoutStyle ++attr dropDownListViewStyle ++attr dropdownListPreferredItemHeight ++attr duration ++attr editTextBackground ++attr editTextColor ++attr editTextStyle ++attr elevation ++attr elevationOverlayColor ++attr elevationOverlayEnabled ++attr enableEdgeToEdge ++attr endIconCheckable ++attr endIconContentDescription ++attr endIconDrawable ++attr endIconMode ++attr endIconTint ++attr endIconTintMode ++attr enforceMaterialTheme ++attr enforceTextAppearance ++attr ensureMinTouchTargetSize ++attr errorContentDescription ++attr errorEnabled ++attr errorIconDrawable ++attr errorIconTint ++attr errorIconTintMode ++attr errorTextAppearance ++attr errorTextColor ++attr expandActivityOverflowButtonDrawable ++attr expanded ++attr expandedHintEnabled ++attr expandedTitleGravity ++attr expandedTitleMargin ++attr expandedTitleMarginBottom ++attr expandedTitleMarginEnd ++attr expandedTitleMarginStart ++attr expandedTitleMarginTop ++attr expandedTitleTextAppearance ++attr extendMotionSpec ++attr extendedFloatingActionButtonStyle ++attr extraMultilineHeightEnabled ++attr fabAlignmentMode ++attr fabAnimationMode ++attr fabCradleMargin ++attr fabCradleRoundedCornerRadius ++attr fabCradleVerticalOffset ++attr fabCustomSize ++attr fabSize ++attr fastScrollEnabled ++attr fastScrollHorizontalThumbDrawable ++attr fastScrollHorizontalTrackDrawable ++attr fastScrollVerticalThumbDrawable ++attr fastScrollVerticalTrackDrawable ++attr firstBaselineToTopHeight ++attr floatingActionButtonStyle ++attr flow_firstHorizontalBias ++attr flow_firstHorizontalStyle ++attr flow_firstVerticalBias ++attr flow_firstVerticalStyle ++attr flow_horizontalAlign ++attr flow_horizontalBias ++attr flow_horizontalGap ++attr flow_horizontalStyle ++attr flow_lastHorizontalBias ++attr flow_lastHorizontalStyle ++attr flow_lastVerticalBias ++attr flow_lastVerticalStyle ++attr flow_maxElementsWrap ++attr flow_padding ++attr flow_verticalAlign ++attr flow_verticalBias ++attr flow_verticalGap ++attr flow_verticalStyle ++attr flow_wrapMode ++attr font ++attr fontFamily ++attr fontProviderAuthority ++attr fontProviderCerts ++attr fontProviderFetchStrategy ++attr fontProviderFetchTimeout ++attr fontProviderPackage ++attr fontProviderQuery ++attr fontProviderSystemFontFamily ++attr fontStyle ++attr fontVariationSettings ++attr fontWeight ++attr forceApplySystemWindowInsetTop ++attr foregroundInsidePadding ++attr framePosition ++attr gapBetweenBars ++attr gestureInsetBottomIgnored ++attr goIcon ++attr haloColor ++attr haloRadius ++attr headerLayout ++attr height ++attr helperText ++attr helperTextEnabled ++attr helperTextTextAppearance ++attr helperTextTextColor ++attr hideAnimationBehavior ++attr hideMotionSpec ++attr hideOnContentScroll ++attr hideOnScroll ++attr hintAnimationEnabled ++attr hintEnabled ++attr hintTextAppearance ++attr hintTextColor ++attr homeAsUpIndicator ++attr homeLayout ++attr horizontalOffset ++attr hoveredFocusedTranslationZ ++attr icon ++attr iconEndPadding ++attr iconGravity ++attr iconPadding ++attr iconSize ++attr iconStartPadding ++attr iconTint ++attr iconTintMode ++attr iconifiedByDefault ++attr imageButtonStyle ++attr indeterminateAnimationType ++attr indeterminateProgressStyle ++attr indicatorColor ++attr indicatorDirectionCircular ++attr indicatorDirectionLinear ++attr indicatorInset ++attr indicatorSize ++attr initialActivityCount ++attr insetForeground ++attr isLightTheme ++attr isMaterialTheme ++attr itemBackground ++attr itemFillColor ++attr itemHorizontalPadding ++attr itemHorizontalTranslationEnabled ++attr itemIconPadding ++attr itemIconSize ++attr itemIconTint ++attr itemMaxLines ++attr itemPadding ++attr itemRippleColor ++attr itemShapeAppearance ++attr itemShapeAppearanceOverlay ++attr itemShapeFillColor ++attr itemShapeInsetBottom ++attr itemShapeInsetEnd ++attr itemShapeInsetStart ++attr itemShapeInsetTop ++attr itemSpacing ++attr itemStrokeColor ++attr itemStrokeWidth ++attr itemTextAppearance ++attr itemTextAppearanceActive ++attr itemTextAppearanceInactive ++attr itemTextColor ++attr keyPositionType ++attr keyboardIcon ++attr keylines ++attr lStar ++attr labelBehavior ++attr labelStyle ++attr labelVisibilityMode ++attr lastBaselineToBottomHeight ++attr layout ++attr layoutDescription ++attr layoutDuringTransition ++attr layoutManager ++attr layout_anchor ++attr layout_anchorGravity ++attr layout_behavior ++attr layout_collapseMode ++attr layout_collapseParallaxMultiplier ++attr layout_constrainedHeight ++attr layout_constrainedWidth ++attr layout_constraintBaseline_creator ++attr layout_constraintBaseline_toBaselineOf ++attr layout_constraintBottom_creator ++attr layout_constraintBottom_toBottomOf ++attr layout_constraintBottom_toTopOf ++attr layout_constraintCircle ++attr layout_constraintCircleAngle ++attr layout_constraintCircleRadius ++attr layout_constraintDimensionRatio ++attr layout_constraintEnd_toEndOf ++attr layout_constraintEnd_toStartOf ++attr layout_constraintGuide_begin ++attr layout_constraintGuide_end ++attr layout_constraintGuide_percent ++attr layout_constraintHeight_default ++attr layout_constraintHeight_max ++attr layout_constraintHeight_min ++attr layout_constraintHeight_percent ++attr layout_constraintHorizontal_bias ++attr layout_constraintHorizontal_chainStyle ++attr layout_constraintHorizontal_weight ++attr layout_constraintLeft_creator ++attr layout_constraintLeft_toLeftOf ++attr layout_constraintLeft_toRightOf ++attr layout_constraintRight_creator ++attr layout_constraintRight_toLeftOf ++attr layout_constraintRight_toRightOf ++attr layout_constraintStart_toEndOf ++attr layout_constraintStart_toStartOf ++attr layout_constraintTag ++attr layout_constraintTop_creator ++attr layout_constraintTop_toBottomOf ++attr layout_constraintTop_toTopOf ++attr layout_constraintVertical_bias ++attr layout_constraintVertical_chainStyle ++attr layout_constraintVertical_weight ++attr layout_constraintWidth_default ++attr layout_constraintWidth_max ++attr layout_constraintWidth_min ++attr layout_constraintWidth_percent ++attr layout_dodgeInsetEdges ++attr layout_editor_absoluteX ++attr layout_editor_absoluteY ++attr layout_goneMarginBottom ++attr layout_goneMarginEnd ++attr layout_goneMarginLeft ++attr layout_goneMarginRight ++attr layout_goneMarginStart ++attr layout_goneMarginTop ++attr layout_insetEdge ++attr layout_keyline ++attr layout_optimizationLevel ++attr layout_scrollFlags ++attr layout_scrollInterpolator ++attr liftOnScroll ++attr liftOnScrollTargetViewId ++attr limitBoundsTo ++attr lineHeight ++attr lineSpacing ++attr linearProgressIndicatorStyle ++attr listChoiceBackgroundIndicator ++attr listChoiceIndicatorMultipleAnimated ++attr listChoiceIndicatorSingleAnimated ++attr listDividerAlertDialog ++attr listItemLayout ++attr listLayout ++attr listMenuViewStyle ++attr listPopupWindowStyle ++attr listPreferredItemHeight ++attr listPreferredItemHeightLarge ++attr listPreferredItemHeightSmall ++attr listPreferredItemPaddingEnd ++attr listPreferredItemPaddingLeft ++attr listPreferredItemPaddingRight ++attr listPreferredItemPaddingStart ++attr logo ++attr logoDescription ++attr materialAlertDialogBodyTextStyle ++attr materialAlertDialogTheme ++attr materialAlertDialogTitleIconStyle ++attr materialAlertDialogTitlePanelStyle ++attr materialAlertDialogTitleTextStyle ++attr materialButtonOutlinedStyle ++attr materialButtonStyle ++attr materialButtonToggleGroupStyle ++attr materialCalendarDay ++attr materialCalendarFullscreenTheme ++attr materialCalendarHeaderCancelButton ++attr materialCalendarHeaderConfirmButton ++attr materialCalendarHeaderDivider ++attr materialCalendarHeaderLayout ++attr materialCalendarHeaderSelection ++attr materialCalendarHeaderTitle ++attr materialCalendarHeaderToggleButton ++attr materialCalendarMonth ++attr materialCalendarMonthNavigationButton ++attr materialCalendarStyle ++attr materialCalendarTheme ++attr materialCalendarYearNavigationButton ++attr materialCardViewStyle ++attr materialCircleRadius ++attr materialClockStyle ++attr materialThemeOverlay ++attr materialTimePickerStyle ++attr materialTimePickerTheme ++attr maxAcceleration ++attr maxActionInlineWidth ++attr maxButtonHeight ++attr maxCharacterCount ++attr maxHeight ++attr maxImageSize ++attr maxLines ++attr maxVelocity ++attr maxWidth ++attr measureWithLargestChild ++attr menu ++attr menuGravity ++attr minHeight ++attr minHideDelay ++attr minSeparation ++attr minTouchTargetSize ++attr minWidth ++attr mock_diagonalsColor ++attr mock_label ++attr mock_labelBackgroundColor ++attr mock_labelColor ++attr mock_showDiagonals ++attr mock_showLabel ++attr motionDebug ++attr motionDurationLong1 ++attr motionDurationLong2 ++attr motionDurationMedium1 ++attr motionDurationMedium2 ++attr motionDurationShort1 ++attr motionDurationShort2 ++attr motionEasingAccelerated ++attr motionEasingDecelerated ++attr motionEasingEmphasized ++attr motionEasingLinear ++attr motionEasingStandard ++attr motionInterpolator ++attr motionPath ++attr motionPathRotate ++attr motionProgress ++attr motionStagger ++attr motionTarget ++attr motion_postLayoutCollision ++attr motion_triggerOnCollision ++attr moveWhenScrollAtTop ++attr multiChoiceItemLayout ++attr navigationContentDescription ++attr navigationIcon ++attr navigationIconTint ++attr navigationMode ++attr navigationRailStyle ++attr navigationViewStyle ++attr nestedScrollFlags ++attr nestedScrollViewStyle ++attr nestedScrollable ++attr number ++attr numericModifiers ++attr onCross ++attr onHide ++attr onNegativeCross ++attr onPositiveCross ++attr onShow ++attr onTouchUp ++attr overlapAnchor ++attr overlay ++attr paddingBottomNoButtons ++attr paddingBottomSystemWindowInsets ++attr paddingEnd ++attr paddingLeftSystemWindowInsets ++attr paddingRightSystemWindowInsets ++attr paddingStart ++attr paddingTopNoTitle ++attr paddingTopSystemWindowInsets ++attr panelBackground ++attr panelMenuListTheme ++attr panelMenuListWidth ++attr passwordToggleContentDescription ++attr passwordToggleDrawable ++attr passwordToggleEnabled ++attr passwordToggleTint ++attr passwordToggleTintMode ++attr pathMotionArc ++attr path_percent ++attr percentHeight ++attr percentWidth ++attr percentX ++attr percentY ++attr perpendicularPath_percent ++attr pivotAnchor ++attr placeholderText ++attr placeholderTextAppearance ++attr placeholderTextColor ++attr placeholder_emptyVisibility ++attr popupMenuBackground ++attr popupMenuStyle ++attr popupTheme ++attr popupWindowStyle ++attr prefixText ++attr prefixTextAppearance ++attr prefixTextColor ++attr preserveIconSpacing ++attr pressedTranslationZ ++attr progressBarPadding ++attr progressBarStyle ++attr queryBackground ++attr queryHint ++attr queryPatterns ++attr radioButtonStyle ++attr rangeFillColor ++attr ratingBarStyle ++attr ratingBarStyleIndicator ++attr ratingBarStyleSmall ++attr recyclerViewStyle ++attr region_heightLessThan ++attr region_heightMoreThan ++attr region_widthLessThan ++attr region_widthMoreThan ++attr reverseLayout ++attr rippleColor ++attr round ++attr roundPercent ++attr saturation ++attr scrimAnimationDuration ++attr scrimBackground ++attr scrimVisibleHeightTrigger ++attr searchHintIcon ++attr searchIcon ++attr searchViewStyle ++attr seekBarStyle ++attr selectableItemBackground ++attr selectableItemBackgroundBorderless ++attr selectionRequired ++attr selectorSize ++attr shapeAppearance ++attr shapeAppearanceLargeComponent ++attr shapeAppearanceMediumComponent ++attr shapeAppearanceOverlay ++attr shapeAppearanceSmallComponent ++attr shortcutMatchRequired ++attr showAnimationBehavior ++attr showAsAction ++attr showDelay ++attr showDividers ++attr showMotionSpec ++attr showPaths ++attr showText ++attr showTitle ++attr shrinkMotionSpec ++attr singleChoiceItemLayout ++attr singleLine ++attr singleSelection ++attr sizePercent ++attr sliderStyle ++attr snackbarButtonStyle ++attr snackbarStyle ++attr snackbarTextViewStyle ++attr spanCount ++attr spinBars ++attr spinnerDropDownItemStyle ++attr spinnerStyle ++attr splitTrack ++attr srcCompat ++attr stackFromEnd ++attr staggered ++attr startIconCheckable ++attr startIconContentDescription ++attr startIconDrawable ++attr startIconTint ++attr startIconTintMode ++attr state_above_anchor ++attr state_collapsed ++attr state_collapsible ++attr state_dragged ++attr state_liftable ++attr state_lifted ++attr statusBarBackground ++attr statusBarForeground ++attr statusBarScrim ++attr strokeColor ++attr strokeWidth ++attr subMenuArrow ++attr submitBackground ++attr subtitle ++attr subtitleCentered ++attr subtitleTextAppearance ++attr subtitleTextColor ++attr subtitleTextStyle ++attr suffixText ++attr suffixTextAppearance ++attr suffixTextColor ++attr suggestionRowLayout ++attr switchMinWidth ++attr switchPadding ++attr switchStyle ++attr switchTextAppearance ++attr tabBackground ++attr tabContentStart ++attr tabGravity ++attr tabIconTint ++attr tabIconTintMode ++attr tabIndicator ++attr tabIndicatorAnimationDuration ++attr tabIndicatorAnimationMode ++attr tabIndicatorColor ++attr tabIndicatorFullWidth ++attr tabIndicatorGravity ++attr tabIndicatorHeight ++attr tabInlineLabel ++attr tabMaxWidth ++attr tabMinWidth ++attr tabMode ++attr tabPadding ++attr tabPaddingBottom ++attr tabPaddingEnd ++attr tabPaddingStart ++attr tabPaddingTop ++attr tabRippleColor ++attr tabSelectedTextColor ++attr tabStyle ++attr tabTextAppearance ++attr tabTextColor ++attr tabUnboundedRipple ++attr targetId ++attr telltales_tailColor ++attr telltales_tailScale ++attr telltales_velocityMode ++attr textAllCaps ++attr textAppearanceBody1 ++attr textAppearanceBody2 ++attr textAppearanceButton ++attr textAppearanceCaption ++attr textAppearanceHeadline1 ++attr textAppearanceHeadline2 ++attr textAppearanceHeadline3 ++attr textAppearanceHeadline4 ++attr textAppearanceHeadline5 ++attr textAppearanceHeadline6 ++attr textAppearanceLargePopupMenu ++attr textAppearanceLineHeightEnabled ++attr textAppearanceListItem ++attr textAppearanceListItemSecondary ++attr textAppearanceListItemSmall ++attr textAppearanceOverline ++attr textAppearancePopupMenuHeader ++attr textAppearanceSearchResultSubtitle ++attr textAppearanceSearchResultTitle ++attr textAppearanceSmallPopupMenu ++attr textAppearanceSubtitle1 ++attr textAppearanceSubtitle2 ++attr textColorAlertDialogListItem ++attr textColorSearchUrl ++attr textEndPadding ++attr textInputLayoutFocusedRectEnabled ++attr textInputStyle ++attr textLocale ++attr textStartPadding ++attr theme ++attr themeLineHeight ++attr thickness ++attr thumbColor ++attr thumbElevation ++attr thumbRadius ++attr thumbStrokeColor ++attr thumbStrokeWidth ++attr thumbTextPadding ++attr thumbTint ++attr thumbTintMode ++attr tickColor ++attr tickColorActive ++attr tickColorInactive ++attr tickMark ++attr tickMarkTint ++attr tickMarkTintMode ++attr tickVisible ++attr tint ++attr tintMode ++attr title ++attr titleCentered ++attr titleCollapseMode ++attr titleEnabled ++attr titleMargin ++attr titleMarginBottom ++attr titleMarginEnd ++attr titleMarginStart ++attr titleMarginTop ++attr titleMargins ++attr titleTextAppearance ++attr titleTextColor ++attr titleTextStyle ++attr toolbarId ++attr toolbarNavigationButtonStyle ++attr toolbarStyle ++attr tooltipForegroundColor ++attr tooltipFrameBackground ++attr tooltipStyle ++attr tooltipText ++attr touchAnchorId ++attr touchAnchorSide ++attr touchRegionId ++attr track ++attr trackColor ++attr trackColorActive ++attr trackColorInactive ++attr trackCornerRadius ++attr trackHeight ++attr trackThickness ++attr trackTint ++attr trackTintMode ++attr transitionDisable ++attr transitionEasing ++attr transitionFlags ++attr transitionPathRotate ++attr transitionShapeAppearance ++attr triggerId ++attr triggerReceiver ++attr triggerSlack ++attr ttcIndex ++attr useCompatPadding ++attr useMaterialThemeColors ++attr values ++attr verticalOffset ++attr viewInflaterClass ++attr visibilityMode ++attr voiceIcon ++attr warmth ++attr waveDecay ++attr waveOffset ++attr wavePeriod ++attr waveShape ++attr waveVariesBy ++attr windowActionBar ++attr windowActionBarOverlay ++attr windowActionModeOverlay ++attr windowFixedHeightMajor ++attr windowFixedHeightMinor ++attr windowFixedWidthMajor ++attr windowFixedWidthMinor ++attr windowMinWidthMajor ++attr windowMinWidthMinor ++attr windowNoTitle ++attr yearSelectedStyle ++attr yearStyle ++attr yearTodayStyle ++bool abc_action_bar_embed_tabs ++bool abc_config_actionMenuItemAllCaps ++bool mtrl_btn_textappearance_all_caps ++color abc_background_cache_hint_selector_material_dark ++color abc_background_cache_hint_selector_material_light ++color abc_btn_colored_borderless_text_material ++color abc_btn_colored_text_material ++color abc_color_highlight_material ++color abc_decor_view_status_guard ++color abc_decor_view_status_guard_light ++color abc_hint_foreground_material_dark ++color abc_hint_foreground_material_light ++color abc_primary_text_disable_only_material_dark ++color abc_primary_text_disable_only_material_light ++color abc_primary_text_material_dark ++color abc_primary_text_material_light ++color abc_search_url_text ++color abc_search_url_text_normal ++color abc_search_url_text_pressed ++color abc_search_url_text_selected ++color abc_secondary_text_material_dark ++color abc_secondary_text_material_light ++color abc_tint_btn_checkable ++color abc_tint_default ++color abc_tint_edittext ++color abc_tint_seek_thumb ++color abc_tint_spinner ++color abc_tint_switch_track ++color accent_material_dark ++color accent_material_light ++color androidx_core_ripple_material_light ++color androidx_core_secondary_text_default_material_light ++color background_floating_material_dark ++color background_floating_material_light ++color background_material_dark ++color background_material_light ++color bright_foreground_disabled_material_dark ++color bright_foreground_disabled_material_light ++color bright_foreground_inverse_material_dark ++color bright_foreground_inverse_material_light ++color bright_foreground_material_dark ++color bright_foreground_material_light ++color button_material_dark ++color button_material_light ++color cardview_dark_background ++color cardview_light_background ++color cardview_shadow_end_color ++color cardview_shadow_start_color ++color checkbox_themeable_attribute_color ++color design_bottom_navigation_shadow_color ++color design_box_stroke_color ++color design_dark_default_color_background ++color design_dark_default_color_error ++color design_dark_default_color_on_background ++color design_dark_default_color_on_error ++color design_dark_default_color_on_primary ++color design_dark_default_color_on_secondary ++color design_dark_default_color_on_surface ++color design_dark_default_color_primary ++color design_dark_default_color_primary_dark ++color design_dark_default_color_primary_variant ++color design_dark_default_color_secondary ++color design_dark_default_color_secondary_variant ++color design_dark_default_color_surface ++color design_default_color_background ++color design_default_color_error ++color design_default_color_on_background ++color design_default_color_on_error ++color design_default_color_on_primary ++color design_default_color_on_secondary ++color design_default_color_on_surface ++color design_default_color_primary ++color design_default_color_primary_dark ++color design_default_color_primary_variant ++color design_default_color_secondary ++color design_default_color_secondary_variant ++color design_default_color_surface ++color design_error ++color design_fab_shadow_end_color ++color design_fab_shadow_mid_color ++color design_fab_shadow_start_color ++color design_fab_stroke_end_inner_color ++color design_fab_stroke_end_outer_color ++color design_fab_stroke_top_inner_color ++color design_fab_stroke_top_outer_color ++color design_icon_tint ++color design_snackbar_background_color ++color dim_foreground_disabled_material_dark ++color dim_foreground_disabled_material_light ++color dim_foreground_material_dark ++color dim_foreground_material_light ++color error_color_material_dark ++color error_color_material_light ++color foreground_material_dark ++color foreground_material_light ++color highlighted_text_material_dark ++color highlighted_text_material_light ++color material_blue_grey_800 ++color material_blue_grey_900 ++color material_blue_grey_950 ++color material_cursor_color ++color material_deep_teal_200 ++color material_deep_teal_500 ++color material_grey_100 ++color material_grey_300 ++color material_grey_50 ++color material_grey_600 ++color material_grey_800 ++color material_grey_850 ++color material_grey_900 ++color material_on_background_disabled ++color material_on_background_emphasis_high_type ++color material_on_background_emphasis_medium ++color material_on_primary_disabled ++color material_on_primary_emphasis_high_type ++color material_on_primary_emphasis_medium ++color material_on_surface_disabled ++color material_on_surface_emphasis_high_type ++color material_on_surface_emphasis_medium ++color material_on_surface_stroke ++color material_slider_active_tick_marks_color ++color material_slider_active_track_color ++color material_slider_halo_color ++color material_slider_inactive_tick_marks_color ++color material_slider_inactive_track_color ++color material_slider_thumb_color ++color material_timepicker_button_background ++color material_timepicker_button_stroke ++color material_timepicker_clock_text_color ++color material_timepicker_clockface ++color material_timepicker_modebutton_tint ++color mtrl_btn_bg_color_selector ++color mtrl_btn_ripple_color ++color mtrl_btn_stroke_color_selector ++color mtrl_btn_text_btn_bg_color_selector ++color mtrl_btn_text_btn_ripple_color ++color mtrl_btn_text_color_disabled ++color mtrl_btn_text_color_selector ++color mtrl_btn_transparent_bg_color ++color mtrl_calendar_item_stroke_color ++color mtrl_calendar_selected_range ++color mtrl_card_view_foreground ++color mtrl_card_view_ripple ++color mtrl_chip_background_color ++color mtrl_chip_close_icon_tint ++color mtrl_chip_surface_color ++color mtrl_chip_text_color ++color mtrl_choice_chip_background_color ++color mtrl_choice_chip_ripple_color ++color mtrl_choice_chip_text_color ++color mtrl_error ++color mtrl_fab_bg_color_selector ++color mtrl_fab_icon_text_color_selector ++color mtrl_fab_ripple_color ++color mtrl_filled_background_color ++color mtrl_filled_icon_tint ++color mtrl_filled_stroke_color ++color mtrl_indicator_text_color ++color mtrl_navigation_bar_colored_item_tint ++color mtrl_navigation_bar_colored_ripple_color ++color mtrl_navigation_bar_item_tint ++color mtrl_navigation_bar_ripple_color ++color mtrl_navigation_item_background_color ++color mtrl_navigation_item_icon_tint ++color mtrl_navigation_item_text_color ++color mtrl_on_primary_text_btn_text_color_selector ++color mtrl_on_surface_ripple_color ++color mtrl_outlined_icon_tint ++color mtrl_outlined_stroke_color ++color mtrl_popupmenu_overlay_color ++color mtrl_scrim_color ++color mtrl_tabs_colored_ripple_color ++color mtrl_tabs_icon_color_selector ++color mtrl_tabs_icon_color_selector_colored ++color mtrl_tabs_legacy_text_color_selector ++color mtrl_tabs_ripple_color ++color mtrl_text_btn_text_color_selector ++color mtrl_textinput_default_box_stroke_color ++color mtrl_textinput_disabled_color ++color mtrl_textinput_filled_box_default_background_color ++color mtrl_textinput_focused_box_stroke_color ++color mtrl_textinput_hovered_box_stroke_color ++color notification_action_color_filter ++color notification_icon_bg_color ++color primary_dark_material_dark ++color primary_dark_material_light ++color primary_material_dark ++color primary_material_light ++color primary_text_default_material_dark ++color primary_text_default_material_light ++color primary_text_disabled_material_dark ++color primary_text_disabled_material_light ++color radiobutton_themeable_attribute_color ++color ripple_material_dark ++color ripple_material_light ++color secondary_text_default_material_dark ++color secondary_text_default_material_light ++color secondary_text_disabled_material_dark ++color secondary_text_disabled_material_light ++color switch_thumb_disabled_material_dark ++color switch_thumb_disabled_material_light ++color switch_thumb_material_dark ++color switch_thumb_material_light ++color switch_thumb_normal_material_dark ++color switch_thumb_normal_material_light ++color test_mtrl_calendar_day ++color test_mtrl_calendar_day_selected ++color tooltip_background_dark ++color tooltip_background_light ++dimen abc_action_bar_content_inset_material ++dimen abc_action_bar_content_inset_with_nav ++dimen abc_action_bar_default_height_material ++dimen abc_action_bar_default_padding_end_material ++dimen abc_action_bar_default_padding_start_material ++dimen abc_action_bar_elevation_material ++dimen abc_action_bar_icon_vertical_padding_material ++dimen abc_action_bar_overflow_padding_end_material ++dimen abc_action_bar_overflow_padding_start_material ++dimen abc_action_bar_stacked_max_height ++dimen abc_action_bar_stacked_tab_max_width ++dimen abc_action_bar_subtitle_bottom_margin_material ++dimen abc_action_bar_subtitle_top_margin_material ++dimen abc_action_button_min_height_material ++dimen abc_action_button_min_width_material ++dimen abc_action_button_min_width_overflow_material ++dimen abc_alert_dialog_button_bar_height ++dimen abc_alert_dialog_button_dimen ++dimen abc_button_inset_horizontal_material ++dimen abc_button_inset_vertical_material ++dimen abc_button_padding_horizontal_material ++dimen abc_button_padding_vertical_material ++dimen abc_cascading_menus_min_smallest_width ++dimen abc_config_prefDialogWidth ++dimen abc_control_corner_material ++dimen abc_control_inset_material ++dimen abc_control_padding_material ++dimen abc_dialog_corner_radius_material ++dimen abc_dialog_fixed_height_major ++dimen abc_dialog_fixed_height_minor ++dimen abc_dialog_fixed_width_major ++dimen abc_dialog_fixed_width_minor ++dimen abc_dialog_list_padding_bottom_no_buttons ++dimen abc_dialog_list_padding_top_no_title ++dimen abc_dialog_min_width_major ++dimen abc_dialog_min_width_minor ++dimen abc_dialog_padding_material ++dimen abc_dialog_padding_top_material ++dimen abc_dialog_title_divider_material ++dimen abc_disabled_alpha_material_dark ++dimen abc_disabled_alpha_material_light ++dimen abc_dropdownitem_icon_width ++dimen abc_dropdownitem_text_padding_left ++dimen abc_dropdownitem_text_padding_right ++dimen abc_edit_text_inset_bottom_material ++dimen abc_edit_text_inset_horizontal_material ++dimen abc_edit_text_inset_top_material ++dimen abc_floating_window_z ++dimen abc_list_item_height_large_material ++dimen abc_list_item_height_material ++dimen abc_list_item_height_small_material ++dimen abc_list_item_padding_horizontal_material ++dimen abc_panel_menu_list_width ++dimen abc_progress_bar_height_material ++dimen abc_search_view_preferred_height ++dimen abc_search_view_preferred_width ++dimen abc_seekbar_track_background_height_material ++dimen abc_seekbar_track_progress_height_material ++dimen abc_select_dialog_padding_start_material ++dimen abc_star_big ++dimen abc_star_medium ++dimen abc_star_small ++dimen abc_switch_padding ++dimen abc_text_size_body_1_material ++dimen abc_text_size_body_2_material ++dimen abc_text_size_button_material ++dimen abc_text_size_caption_material ++dimen abc_text_size_display_1_material ++dimen abc_text_size_display_2_material ++dimen abc_text_size_display_3_material ++dimen abc_text_size_display_4_material ++dimen abc_text_size_headline_material ++dimen abc_text_size_large_material ++dimen abc_text_size_medium_material ++dimen abc_text_size_menu_header_material ++dimen abc_text_size_menu_material ++dimen abc_text_size_small_material ++dimen abc_text_size_subhead_material ++dimen abc_text_size_subtitle_material_toolbar ++dimen abc_text_size_title_material ++dimen abc_text_size_title_material_toolbar ++dimen action_bar_size ++dimen appcompat_dialog_background_inset ++dimen cardview_compat_inset_shadow ++dimen cardview_default_elevation ++dimen cardview_default_radius ++dimen clock_face_margin_start ++dimen compat_button_inset_horizontal_material ++dimen compat_button_inset_vertical_material ++dimen compat_button_padding_horizontal_material ++dimen compat_button_padding_vertical_material ++dimen compat_control_corner_material ++dimen compat_notification_large_icon_max_height ++dimen compat_notification_large_icon_max_width ++dimen def_drawer_elevation ++dimen default_dimension ++dimen design_appbar_elevation ++dimen design_bottom_navigation_active_item_max_width ++dimen design_bottom_navigation_active_item_min_width ++dimen design_bottom_navigation_active_text_size ++dimen design_bottom_navigation_elevation ++dimen design_bottom_navigation_height ++dimen design_bottom_navigation_icon_size ++dimen design_bottom_navigation_item_max_width ++dimen design_bottom_navigation_item_min_width ++dimen design_bottom_navigation_label_padding ++dimen design_bottom_navigation_margin ++dimen design_bottom_navigation_shadow_height ++dimen design_bottom_navigation_text_size ++dimen design_bottom_sheet_elevation ++dimen design_bottom_sheet_modal_elevation ++dimen design_bottom_sheet_peek_height_min ++dimen design_fab_border_width ++dimen design_fab_elevation ++dimen design_fab_image_size ++dimen design_fab_size_mini ++dimen design_fab_size_normal ++dimen design_fab_translation_z_hovered_focused ++dimen design_fab_translation_z_pressed ++dimen design_navigation_elevation ++dimen design_navigation_icon_padding ++dimen design_navigation_icon_size ++dimen design_navigation_item_horizontal_padding ++dimen design_navigation_item_icon_padding ++dimen design_navigation_max_width ++dimen design_navigation_padding_bottom ++dimen design_navigation_separator_vertical_padding ++dimen design_snackbar_action_inline_max_width ++dimen design_snackbar_action_text_color_alpha ++dimen design_snackbar_background_corner_radius ++dimen design_snackbar_elevation ++dimen design_snackbar_extra_spacing_horizontal ++dimen design_snackbar_max_width ++dimen design_snackbar_min_width ++dimen design_snackbar_padding_horizontal ++dimen design_snackbar_padding_vertical ++dimen design_snackbar_padding_vertical_2lines ++dimen design_snackbar_text_size ++dimen design_tab_max_width ++dimen design_tab_scrollable_min_width ++dimen design_tab_text_size ++dimen design_tab_text_size_2line ++dimen design_textinput_caption_translate_y ++dimen disabled_alpha_material_dark ++dimen disabled_alpha_material_light ++dimen fastscroll_default_thickness ++dimen fastscroll_margin ++dimen fastscroll_minimum_range ++dimen highlight_alpha_material_colored ++dimen highlight_alpha_material_dark ++dimen highlight_alpha_material_light ++dimen hint_alpha_material_dark ++dimen hint_alpha_material_light ++dimen hint_pressed_alpha_material_dark ++dimen hint_pressed_alpha_material_light ++dimen item_touch_helper_max_drag_scroll_per_frame ++dimen item_touch_helper_swipe_escape_max_velocity ++dimen item_touch_helper_swipe_escape_velocity ++dimen material_bottom_sheet_max_width ++dimen material_clock_display_padding ++dimen material_clock_face_margin_top ++dimen material_clock_hand_center_dot_radius ++dimen material_clock_hand_padding ++dimen material_clock_hand_stroke_width ++dimen material_clock_number_text_size ++dimen material_clock_period_toggle_height ++dimen material_clock_period_toggle_margin_left ++dimen material_clock_period_toggle_width ++dimen material_clock_size ++dimen material_cursor_inset_bottom ++dimen material_cursor_inset_top ++dimen material_cursor_width ++dimen material_emphasis_disabled ++dimen material_emphasis_high_type ++dimen material_emphasis_medium ++dimen material_filled_edittext_font_1_3_padding_bottom ++dimen material_filled_edittext_font_1_3_padding_top ++dimen material_filled_edittext_font_2_0_padding_bottom ++dimen material_filled_edittext_font_2_0_padding_top ++dimen material_font_1_3_box_collapsed_padding_top ++dimen material_font_2_0_box_collapsed_padding_top ++dimen material_helper_text_default_padding_top ++dimen material_helper_text_font_1_3_padding_horizontal ++dimen material_helper_text_font_1_3_padding_top ++dimen material_input_text_to_prefix_suffix_padding ++dimen material_text_view_test_line_height ++dimen material_text_view_test_line_height_override ++dimen material_textinput_default_width ++dimen material_textinput_max_width ++dimen material_textinput_min_width ++dimen material_time_picker_minimum_screen_height ++dimen material_time_picker_minimum_screen_width ++dimen material_timepicker_dialog_buttons_margin_top ++dimen mtrl_alert_dialog_background_inset_bottom ++dimen mtrl_alert_dialog_background_inset_end ++dimen mtrl_alert_dialog_background_inset_start ++dimen mtrl_alert_dialog_background_inset_top ++dimen mtrl_alert_dialog_picker_background_inset ++dimen mtrl_badge_horizontal_edge_offset ++dimen mtrl_badge_long_text_horizontal_padding ++dimen mtrl_badge_radius ++dimen mtrl_badge_text_horizontal_edge_offset ++dimen mtrl_badge_text_size ++dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset ++dimen mtrl_badge_toolbar_action_menu_item_vertical_offset ++dimen mtrl_badge_with_text_radius ++dimen mtrl_bottomappbar_fabOffsetEndMode ++dimen mtrl_bottomappbar_fab_bottom_margin ++dimen mtrl_bottomappbar_fab_cradle_margin ++dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius ++dimen mtrl_bottomappbar_fab_cradle_vertical_offset ++dimen mtrl_bottomappbar_height ++dimen mtrl_btn_corner_radius ++dimen mtrl_btn_dialog_btn_min_width ++dimen mtrl_btn_disabled_elevation ++dimen mtrl_btn_disabled_z ++dimen mtrl_btn_elevation ++dimen mtrl_btn_focused_z ++dimen mtrl_btn_hovered_z ++dimen mtrl_btn_icon_btn_padding_left ++dimen mtrl_btn_icon_padding ++dimen mtrl_btn_inset ++dimen mtrl_btn_letter_spacing ++dimen mtrl_btn_max_width ++dimen mtrl_btn_padding_bottom ++dimen mtrl_btn_padding_left ++dimen mtrl_btn_padding_right ++dimen mtrl_btn_padding_top ++dimen mtrl_btn_pressed_z ++dimen mtrl_btn_snackbar_margin_horizontal ++dimen mtrl_btn_stroke_size ++dimen mtrl_btn_text_btn_icon_padding ++dimen mtrl_btn_text_btn_padding_left ++dimen mtrl_btn_text_btn_padding_right ++dimen mtrl_btn_text_size ++dimen mtrl_btn_z ++dimen mtrl_calendar_action_confirm_button_min_width ++dimen mtrl_calendar_action_height ++dimen mtrl_calendar_action_padding ++dimen mtrl_calendar_bottom_padding ++dimen mtrl_calendar_content_padding ++dimen mtrl_calendar_day_corner ++dimen mtrl_calendar_day_height ++dimen mtrl_calendar_day_horizontal_padding ++dimen mtrl_calendar_day_today_stroke ++dimen mtrl_calendar_day_vertical_padding ++dimen mtrl_calendar_day_width ++dimen mtrl_calendar_days_of_week_height ++dimen mtrl_calendar_dialog_background_inset ++dimen mtrl_calendar_header_content_padding ++dimen mtrl_calendar_header_content_padding_fullscreen ++dimen mtrl_calendar_header_divider_thickness ++dimen mtrl_calendar_header_height ++dimen mtrl_calendar_header_height_fullscreen ++dimen mtrl_calendar_header_selection_line_height ++dimen mtrl_calendar_header_text_padding ++dimen mtrl_calendar_header_toggle_margin_bottom ++dimen mtrl_calendar_header_toggle_margin_top ++dimen mtrl_calendar_landscape_header_width ++dimen mtrl_calendar_maximum_default_fullscreen_minor_axis ++dimen mtrl_calendar_month_horizontal_padding ++dimen mtrl_calendar_month_vertical_padding ++dimen mtrl_calendar_navigation_bottom_padding ++dimen mtrl_calendar_navigation_height ++dimen mtrl_calendar_navigation_top_padding ++dimen mtrl_calendar_pre_l_text_clip_padding ++dimen mtrl_calendar_selection_baseline_to_top_fullscreen ++dimen mtrl_calendar_selection_text_baseline_to_bottom ++dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen ++dimen mtrl_calendar_selection_text_baseline_to_top ++dimen mtrl_calendar_text_input_padding_top ++dimen mtrl_calendar_title_baseline_to_top ++dimen mtrl_calendar_title_baseline_to_top_fullscreen ++dimen mtrl_calendar_year_corner ++dimen mtrl_calendar_year_height ++dimen mtrl_calendar_year_horizontal_padding ++dimen mtrl_calendar_year_vertical_padding ++dimen mtrl_calendar_year_width ++dimen mtrl_card_checked_icon_margin ++dimen mtrl_card_checked_icon_size ++dimen mtrl_card_corner_radius ++dimen mtrl_card_dragged_z ++dimen mtrl_card_elevation ++dimen mtrl_card_spacing ++dimen mtrl_chip_pressed_translation_z ++dimen mtrl_chip_text_size ++dimen mtrl_edittext_rectangle_top_offset ++dimen mtrl_exposed_dropdown_menu_popup_elevation ++dimen mtrl_exposed_dropdown_menu_popup_vertical_offset ++dimen mtrl_exposed_dropdown_menu_popup_vertical_padding ++dimen mtrl_extended_fab_bottom_padding ++dimen mtrl_extended_fab_corner_radius ++dimen mtrl_extended_fab_disabled_elevation ++dimen mtrl_extended_fab_disabled_translation_z ++dimen mtrl_extended_fab_elevation ++dimen mtrl_extended_fab_end_padding ++dimen mtrl_extended_fab_end_padding_icon ++dimen mtrl_extended_fab_icon_size ++dimen mtrl_extended_fab_icon_text_spacing ++dimen mtrl_extended_fab_min_height ++dimen mtrl_extended_fab_min_width ++dimen mtrl_extended_fab_start_padding ++dimen mtrl_extended_fab_start_padding_icon ++dimen mtrl_extended_fab_top_padding ++dimen mtrl_extended_fab_translation_z_base ++dimen mtrl_extended_fab_translation_z_hovered_focused ++dimen mtrl_extended_fab_translation_z_pressed ++dimen mtrl_fab_elevation ++dimen mtrl_fab_min_touch_target ++dimen mtrl_fab_translation_z_hovered_focused ++dimen mtrl_fab_translation_z_pressed ++dimen mtrl_high_ripple_default_alpha ++dimen mtrl_high_ripple_focused_alpha ++dimen mtrl_high_ripple_hovered_alpha ++dimen mtrl_high_ripple_pressed_alpha ++dimen mtrl_large_touch_target ++dimen mtrl_low_ripple_default_alpha ++dimen mtrl_low_ripple_focused_alpha ++dimen mtrl_low_ripple_hovered_alpha ++dimen mtrl_low_ripple_pressed_alpha ++dimen mtrl_min_touch_target_size ++dimen mtrl_navigation_bar_item_default_icon_size ++dimen mtrl_navigation_bar_item_default_margin ++dimen mtrl_navigation_elevation ++dimen mtrl_navigation_item_horizontal_padding ++dimen mtrl_navigation_item_icon_padding ++dimen mtrl_navigation_item_icon_size ++dimen mtrl_navigation_item_shape_horizontal_margin ++dimen mtrl_navigation_item_shape_vertical_margin ++dimen mtrl_navigation_rail_active_text_size ++dimen mtrl_navigation_rail_compact_width ++dimen mtrl_navigation_rail_default_width ++dimen mtrl_navigation_rail_elevation ++dimen mtrl_navigation_rail_icon_margin ++dimen mtrl_navigation_rail_icon_size ++dimen mtrl_navigation_rail_margin ++dimen mtrl_navigation_rail_text_bottom_margin ++dimen mtrl_navigation_rail_text_size ++dimen mtrl_progress_circular_inset ++dimen mtrl_progress_circular_inset_extra_small ++dimen mtrl_progress_circular_inset_medium ++dimen mtrl_progress_circular_inset_small ++dimen mtrl_progress_circular_radius ++dimen mtrl_progress_circular_size ++dimen mtrl_progress_circular_size_extra_small ++dimen mtrl_progress_circular_size_medium ++dimen mtrl_progress_circular_size_small ++dimen mtrl_progress_circular_track_thickness_extra_small ++dimen mtrl_progress_circular_track_thickness_medium ++dimen mtrl_progress_circular_track_thickness_small ++dimen mtrl_progress_indicator_full_rounded_corner_radius ++dimen mtrl_progress_track_thickness ++dimen mtrl_shape_corner_size_large_component ++dimen mtrl_shape_corner_size_medium_component ++dimen mtrl_shape_corner_size_small_component ++dimen mtrl_slider_halo_radius ++dimen mtrl_slider_label_padding ++dimen mtrl_slider_label_radius ++dimen mtrl_slider_label_square_side ++dimen mtrl_slider_thumb_elevation ++dimen mtrl_slider_thumb_radius ++dimen mtrl_slider_track_height ++dimen mtrl_slider_track_side_padding ++dimen mtrl_slider_track_top ++dimen mtrl_slider_widget_height ++dimen mtrl_snackbar_action_text_color_alpha ++dimen mtrl_snackbar_background_corner_radius ++dimen mtrl_snackbar_background_overlay_color_alpha ++dimen mtrl_snackbar_margin ++dimen mtrl_snackbar_message_margin_horizontal ++dimen mtrl_snackbar_padding_horizontal ++dimen mtrl_switch_thumb_elevation ++dimen mtrl_textinput_box_corner_radius_medium ++dimen mtrl_textinput_box_corner_radius_small ++dimen mtrl_textinput_box_label_cutout_padding ++dimen mtrl_textinput_box_stroke_width_default ++dimen mtrl_textinput_box_stroke_width_focused ++dimen mtrl_textinput_counter_margin_start ++dimen mtrl_textinput_end_icon_margin_start ++dimen mtrl_textinput_outline_box_expanded_padding ++dimen mtrl_textinput_start_icon_margin_end ++dimen mtrl_toolbar_default_height ++dimen mtrl_tooltip_arrowSize ++dimen mtrl_tooltip_cornerSize ++dimen mtrl_tooltip_minHeight ++dimen mtrl_tooltip_minWidth ++dimen mtrl_tooltip_padding ++dimen mtrl_transition_shared_axis_slide_distance ++dimen notification_action_icon_size ++dimen notification_action_text_size ++dimen notification_big_circle_margin ++dimen notification_content_margin_start ++dimen notification_large_icon_height ++dimen notification_large_icon_width ++dimen notification_main_column_padding_top ++dimen notification_media_narrow_margin ++dimen notification_right_icon_size ++dimen notification_right_side_padding_top ++dimen notification_small_icon_background_padding ++dimen notification_small_icon_size_as_large ++dimen notification_subtext_size ++dimen notification_top_pad ++dimen notification_top_pad_large_text ++dimen test_mtrl_calendar_day_cornerSize ++dimen test_navigation_bar_active_item_max_width ++dimen test_navigation_bar_active_item_min_width ++dimen test_navigation_bar_active_text_size ++dimen test_navigation_bar_elevation ++dimen test_navigation_bar_height ++dimen test_navigation_bar_icon_size ++dimen test_navigation_bar_item_max_width ++dimen test_navigation_bar_item_min_width ++dimen test_navigation_bar_label_padding ++dimen test_navigation_bar_shadow_height ++dimen test_navigation_bar_text_size ++dimen tooltip_corner_radius ++dimen tooltip_horizontal_padding ++dimen tooltip_margin ++dimen tooltip_precise_anchor_extra_offset ++dimen tooltip_precise_anchor_threshold ++dimen tooltip_vertical_padding ++dimen tooltip_y_offset_non_touch ++dimen tooltip_y_offset_touch ++drawable abc_ab_share_pack_mtrl_alpha ++drawable abc_action_bar_item_background_material ++drawable abc_btn_borderless_material ++drawable abc_btn_check_material ++drawable abc_btn_check_material_anim ++drawable abc_btn_check_to_on_mtrl_000 ++drawable abc_btn_check_to_on_mtrl_015 ++drawable abc_btn_colored_material ++drawable abc_btn_default_mtrl_shape ++drawable abc_btn_radio_material ++drawable abc_btn_radio_material_anim ++drawable abc_btn_radio_to_on_mtrl_000 ++drawable abc_btn_radio_to_on_mtrl_015 ++drawable abc_btn_switch_to_on_mtrl_00001 ++drawable abc_btn_switch_to_on_mtrl_00012 ++drawable abc_cab_background_internal_bg ++drawable abc_cab_background_top_material ++drawable abc_cab_background_top_mtrl_alpha ++drawable abc_control_background_material ++drawable abc_dialog_material_background ++drawable abc_edit_text_material ++drawable abc_ic_ab_back_material ++drawable abc_ic_arrow_drop_right_black_24dp ++drawable abc_ic_clear_material ++drawable abc_ic_commit_search_api_mtrl_alpha ++drawable abc_ic_go_search_api_material ++drawable abc_ic_menu_copy_mtrl_am_alpha ++drawable abc_ic_menu_cut_mtrl_alpha ++drawable abc_ic_menu_overflow_material ++drawable abc_ic_menu_paste_mtrl_am_alpha ++drawable abc_ic_menu_selectall_mtrl_alpha ++drawable abc_ic_menu_share_mtrl_alpha ++drawable abc_ic_search_api_material ++drawable abc_ic_voice_search_api_material ++drawable abc_item_background_holo_dark ++drawable abc_item_background_holo_light ++drawable abc_list_divider_material ++drawable abc_list_divider_mtrl_alpha ++drawable abc_list_focused_holo ++drawable abc_list_longpressed_holo ++drawable abc_list_pressed_holo_dark ++drawable abc_list_pressed_holo_light ++drawable abc_list_selector_background_transition_holo_dark ++drawable abc_list_selector_background_transition_holo_light ++drawable abc_list_selector_disabled_holo_dark ++drawable abc_list_selector_disabled_holo_light ++drawable abc_list_selector_holo_dark ++drawable abc_list_selector_holo_light ++drawable abc_menu_hardkey_panel_mtrl_mult ++drawable abc_popup_background_mtrl_mult ++drawable abc_ratingbar_indicator_material ++drawable abc_ratingbar_material ++drawable abc_ratingbar_small_material ++drawable abc_scrubber_control_off_mtrl_alpha ++drawable abc_scrubber_control_to_pressed_mtrl_000 ++drawable abc_scrubber_control_to_pressed_mtrl_005 ++drawable abc_scrubber_primary_mtrl_alpha ++drawable abc_scrubber_track_mtrl_alpha ++drawable abc_seekbar_thumb_material ++drawable abc_seekbar_tick_mark_material ++drawable abc_seekbar_track_material ++drawable abc_spinner_mtrl_am_alpha ++drawable abc_spinner_textfield_background_material ++drawable abc_star_black_48dp ++drawable abc_star_half_black_48dp ++drawable abc_switch_thumb_material ++drawable abc_switch_track_mtrl_alpha ++drawable abc_tab_indicator_material ++drawable abc_tab_indicator_mtrl_alpha ++drawable abc_text_cursor_material ++drawable abc_text_select_handle_left_mtrl ++drawable abc_text_select_handle_middle_mtrl ++drawable abc_text_select_handle_right_mtrl ++drawable abc_textfield_activated_mtrl_alpha ++drawable abc_textfield_default_mtrl_alpha ++drawable abc_textfield_search_activated_mtrl_alpha ++drawable abc_textfield_search_default_mtrl_alpha ++drawable abc_textfield_search_material ++drawable abc_vector_test ++drawable avd_hide_password ++drawable avd_show_password ++drawable btn_checkbox_checked_mtrl ++drawable btn_checkbox_checked_to_unchecked_mtrl_animation ++drawable btn_checkbox_unchecked_mtrl ++drawable btn_checkbox_unchecked_to_checked_mtrl_animation ++drawable btn_radio_off_mtrl ++drawable btn_radio_off_to_on_mtrl_animation ++drawable btn_radio_on_mtrl ++drawable btn_radio_on_to_off_mtrl_animation ++drawable design_fab_background ++drawable design_ic_visibility ++drawable design_ic_visibility_off ++drawable design_password_eye ++drawable design_snackbar_background ++drawable ic_clock_black_24dp ++drawable ic_keyboard_black_24dp ++drawable ic_mtrl_checked_circle ++drawable ic_mtrl_chip_checked_black ++drawable ic_mtrl_chip_checked_circle ++drawable ic_mtrl_chip_close_circle ++drawable material_cursor_drawable ++drawable material_ic_calendar_black_24dp ++drawable material_ic_clear_black_24dp ++drawable material_ic_edit_black_24dp ++drawable material_ic_keyboard_arrow_left_black_24dp ++drawable material_ic_keyboard_arrow_next_black_24dp ++drawable material_ic_keyboard_arrow_previous_black_24dp ++drawable material_ic_keyboard_arrow_right_black_24dp ++drawable material_ic_menu_arrow_down_black_24dp ++drawable material_ic_menu_arrow_up_black_24dp ++drawable mtrl_dialog_background ++drawable mtrl_dropdown_arrow ++drawable mtrl_ic_arrow_drop_down ++drawable mtrl_ic_arrow_drop_up ++drawable mtrl_ic_cancel ++drawable mtrl_ic_error ++drawable mtrl_navigation_bar_item_background ++drawable mtrl_popupmenu_background ++drawable mtrl_popupmenu_background_dark ++drawable mtrl_tabs_default_indicator ++drawable navigation_empty_icon ++drawable notification_action_background ++drawable notification_bg ++drawable notification_bg_low ++drawable notification_bg_low_normal ++drawable notification_bg_low_pressed ++drawable notification_bg_normal ++drawable notification_bg_normal_pressed ++drawable notification_icon_background ++drawable notification_template_icon_bg ++drawable notification_template_icon_low_bg ++drawable notification_tile_bg ++drawable notify_panel_notification_icon_bg ++drawable test_custom_background ++drawable tooltip_frame_dark ++drawable tooltip_frame_light ++id ALT ++id BOTTOM_END ++id BOTTOM_START ++id CTRL ++id FUNCTION ++id META ++id NO_DEBUG ++id SHIFT ++id SHOW_ALL ++id SHOW_PATH ++id SHOW_PROGRESS ++id SYM ++id TOP_END ++id TOP_START ++id accelerate ++id accessibility_action_clickable_span ++id accessibility_custom_action_0 ++id accessibility_custom_action_1 ++id accessibility_custom_action_10 ++id accessibility_custom_action_11 ++id accessibility_custom_action_12 ++id accessibility_custom_action_13 ++id accessibility_custom_action_14 ++id accessibility_custom_action_15 ++id accessibility_custom_action_16 ++id accessibility_custom_action_17 ++id accessibility_custom_action_18 ++id accessibility_custom_action_19 ++id accessibility_custom_action_2 ++id accessibility_custom_action_20 ++id accessibility_custom_action_21 ++id accessibility_custom_action_22 ++id accessibility_custom_action_23 ++id accessibility_custom_action_24 ++id accessibility_custom_action_25 ++id accessibility_custom_action_26 ++id accessibility_custom_action_27 ++id accessibility_custom_action_28 ++id accessibility_custom_action_29 ++id accessibility_custom_action_3 ++id accessibility_custom_action_30 ++id accessibility_custom_action_31 ++id accessibility_custom_action_4 ++id accessibility_custom_action_5 ++id accessibility_custom_action_6 ++id accessibility_custom_action_7 ++id accessibility_custom_action_8 ++id accessibility_custom_action_9 ++id action_bar ++id action_bar_activity_content ++id action_bar_container ++id action_bar_root ++id action_bar_spinner ++id action_bar_subtitle ++id action_bar_title ++id action_container ++id action_context_bar ++id action_divider ++id action_image ++id action_menu_divider ++id action_menu_presenter ++id action_mode_bar ++id action_mode_bar_stub ++id action_mode_close_button ++id action_text ++id actions ++id activity_chooser_view_content ++id add ++id alertTitle ++id aligned ++id all ++id always ++id androidx_test_espresso_contrib_drawer_layout_tag ++id animateToEnd ++id animateToStart ++id arc ++id asConfigured ++id async ++id auto ++id autoComplete ++id autoCompleteToEnd ++id autoCompleteToStart ++id barrier ++id baseline ++id beginOnFirstDraw ++id beginning ++id blocking ++id bottom ++id bounce ++id buttonPanel ++id cancel_button ++id center ++id center_horizontal ++id center_vertical ++id chain ++id chains ++id checkbox ++id checked ++id chip ++id chip1 ++id chip2 ++id chip3 ++id chip_group ++id chronometer ++id circle_center ++id clear_text ++id clip_horizontal ++id clip_vertical ++id clockwise ++id collapseActionView ++id confirm_button ++id container ++id content ++id contentPanel ++id contiguous ++id coordinator ++id cos ++id counterclockwise ++id custom ++id customPanel ++id cut ++id date_picker_actions ++id decelerate ++id decelerateAndComplete ++id decor_content_parent ++id default_activity_button ++id deltaRelative ++id design_bottom_sheet ++id design_menu_item_action_area ++id design_menu_item_action_area_stub ++id design_menu_item_text ++id design_navigation_view ++id dialog_button ++id dimensions ++id direct ++id disableHome ++id disablePostScroll ++id disableScroll ++id disjoint ++id dragDown ++id dragEnd ++id dragLeft ++id dragRight ++id dragStart ++id dragUp ++id dropdown_menu ++id easeIn ++id easeInOut ++id easeOut ++id edit_query ++id elastic ++id end ++id endToStart ++id enterAlways ++id enterAlwaysCollapsed ++id exitUntilCollapsed ++id expand_activities_button ++id expanded_menu ++id fade ++id fill ++id fill_horizontal ++id fill_vertical ++id filled ++id fitToContents ++id fixed ++id flip ++id floating ++id forever ++id fragment_container_view_tag ++id ghost_view ++id ghost_view_holder ++id gone ++id graph ++id graph_wrap ++id group_divider ++id groups ++id guideline ++id header_title ++id hideable ++id home ++id homeAsUp ++id honorRequest ++id icon ++id icon_group ++id ifRoom ++id ignore ++id ignoreRequest ++id image ++id info ++id invisible ++id inward ++id italic ++id item_touch_helper_previous_elevation ++id jumpToEnd ++id jumpToStart ++id labeled ++id layout ++id left ++id leftToRight ++id line1 ++id line3 ++id linear ++id listMode ++id list_item ++id masked ++id material_clock_display ++id material_clock_face ++id material_clock_hand ++id material_clock_period_am_button ++id material_clock_period_pm_button ++id material_clock_period_toggle ++id material_hour_text_input ++id material_hour_tv ++id material_label ++id material_minute_text_input ++id material_minute_tv ++id material_textinput_timepicker ++id material_timepicker_cancel_button ++id material_timepicker_container ++id material_timepicker_edit_text ++id material_timepicker_mode_button ++id material_timepicker_ok_button ++id material_timepicker_view ++id material_value_index ++id message ++id middle ++id mini ++id month_grid ++id month_navigation_bar ++id month_navigation_fragment_toggle ++id month_navigation_next ++id month_navigation_previous ++id month_title ++id motion_base ++id mtrl_anchor_parent ++id mtrl_calendar_day_selector_frame ++id mtrl_calendar_days_of_week ++id mtrl_calendar_frame ++id mtrl_calendar_main_pane ++id mtrl_calendar_months ++id mtrl_calendar_selection_frame ++id mtrl_calendar_text_input_frame ++id mtrl_calendar_year_selector_frame ++id mtrl_card_checked_layer_id ++id mtrl_child_content_container ++id mtrl_internal_children_alpha_tag ++id mtrl_motion_snapshot_view ++id mtrl_picker_fullscreen ++id mtrl_picker_header ++id mtrl_picker_header_selection_text ++id mtrl_picker_header_title_and_selection ++id mtrl_picker_header_toggle ++id mtrl_picker_text_input_date ++id mtrl_picker_text_input_range_end ++id mtrl_picker_text_input_range_start ++id mtrl_picker_title_text ++id mtrl_view_tag_bottom_padding ++id multiply ++id navigation_bar_item_icon_view ++id navigation_bar_item_labels_group ++id navigation_bar_item_large_label_view ++id navigation_bar_item_small_label_view ++id navigation_header_container ++id never ++id noScroll ++id none ++id normal ++id notification_background ++id notification_main_column ++id notification_main_column_container ++id off ++id on ++id outline ++id outward ++id packed ++id parallax ++id parent ++id parentPanel ++id parentRelative ++id parent_matrix ++id password_toggle ++id path ++id pathRelative ++id peekHeight ++id percent ++id pin ++id position ++id postLayout ++id progress_circular ++id progress_horizontal ++id radio ++id ratio ++id rectangles ++id reverseSawtooth ++id right ++id rightToLeft ++id right_icon ++id right_side ++id rounded ++id row_index_key ++id save_non_transition_alpha ++id save_overlay_view ++id sawtooth ++id scale ++id screen ++id scroll ++id scrollIndicatorDown ++id scrollIndicatorUp ++id scrollView ++id scrollable ++id search_badge ++id search_bar ++id search_button ++id search_close_btn ++id search_edit_frame ++id search_go_btn ++id search_mag_icon ++id search_plate ++id search_src_text ++id search_voice_btn ++id select_dialog_listview ++id selected ++id selection_type ++id shortcut ++id showCustom ++id showHome ++id showTitle ++id sin ++id skipCollapsed ++id slide ++id snackbar_action ++id snackbar_text ++id snap ++id snapMargins ++id spacer ++id special_effects_controller_view_tag ++id spline ++id split_action_bar ++id spread ++id spread_inside ++id square ++id src_atop ++id src_in ++id src_over ++id standard ++id start ++id startHorizontal ++id startToEnd ++id startVertical ++id staticLayout ++id staticPostLayout ++id stop ++id stretch ++id submenuarrow ++id submit_area ++id tabMode ++id tag_accessibility_actions ++id tag_accessibility_clickable_spans ++id tag_accessibility_heading ++id tag_accessibility_pane_title ++id tag_on_apply_window_listener ++id tag_on_receive_content_listener ++id tag_on_receive_content_mime_types ++id tag_screen_reader_focusable ++id tag_state_description ++id tag_transition_group ++id tag_unhandled_key_event_manager ++id tag_unhandled_key_listeners ++id tag_window_insets_animation_callback ++id test_checkbox_android_button_tint ++id test_checkbox_app_button_tint ++id test_radiobutton_android_button_tint ++id test_radiobutton_app_button_tint ++id text ++id text2 ++id textEnd ++id textSpacerNoButtons ++id textSpacerNoTitle ++id textStart ++id textTop ++id text_input_end_icon ++id text_input_error_icon ++id text_input_start_icon ++id textinput_counter ++id textinput_error ++id textinput_helper_text ++id textinput_placeholder ++id textinput_prefix_text ++id textinput_suffix_text ++id time ++id title ++id titleDividerNoCustom ++id title_template ++id toggle ++id top ++id topPanel ++id touch_outside ++id transitionToEnd ++id transitionToStart ++id transition_current_scene ++id transition_layout_save ++id transition_position ++id transition_scene_layoutid_cache ++id transition_transform ++id triangle ++id unchecked ++id uniform ++id unlabeled ++id up ++id useLogo ++id view_offset_helper ++id view_tree_lifecycle_owner ++id view_tree_saved_state_registry_owner ++id view_tree_view_model_store_owner ++id visible ++id visible_removing_fragment_view_tag ++id withText ++id withinBounds ++id wrap ++id wrap_content ++id zero_corner_chip ++integer abc_config_activityDefaultDur ++integer abc_config_activityShortDur ++integer app_bar_elevation_anim_duration ++integer bottom_sheet_slide_duration ++integer cancel_button_image_alpha ++integer config_tooltipAnimTime ++integer design_snackbar_text_max_lines ++integer design_tab_indicator_anim_duration_ms ++integer hide_password_duration ++integer material_motion_duration_long_1 ++integer material_motion_duration_long_2 ++integer material_motion_duration_medium_1 ++integer material_motion_duration_medium_2 ++integer material_motion_duration_short_1 ++integer material_motion_duration_short_2 ++integer material_motion_path ++integer mtrl_badge_max_character_count ++integer mtrl_btn_anim_delay_ms ++integer mtrl_btn_anim_duration_ms ++integer mtrl_calendar_header_orientation ++integer mtrl_calendar_selection_text_lines ++integer mtrl_calendar_year_selector_span ++integer mtrl_card_anim_delay_ms ++integer mtrl_card_anim_duration_ms ++integer mtrl_chip_anim_duration ++integer mtrl_tab_indicator_anim_duration_ms ++integer show_password_duration ++integer status_bar_notification_info_maxnum ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 ++interpolator btn_radio_to_off_mtrl_animation_interpolator_0 ++interpolator btn_radio_to_on_mtrl_animation_interpolator_0 ++interpolator fast_out_slow_in ++interpolator mtrl_fast_out_linear_in ++interpolator mtrl_fast_out_slow_in ++interpolator mtrl_linear ++interpolator mtrl_linear_out_slow_in ++layout abc_action_bar_title_item ++layout abc_action_bar_up_container ++layout abc_action_menu_item_layout ++layout abc_action_menu_layout ++layout abc_action_mode_bar ++layout abc_action_mode_close_item_material ++layout abc_activity_chooser_view ++layout abc_activity_chooser_view_list_item ++layout abc_alert_dialog_button_bar_material ++layout abc_alert_dialog_material ++layout abc_alert_dialog_title_material ++layout abc_cascading_menu_item_layout ++layout abc_dialog_title_material ++layout abc_expanded_menu_layout ++layout abc_list_menu_item_checkbox ++layout abc_list_menu_item_icon ++layout abc_list_menu_item_layout ++layout abc_list_menu_item_radio ++layout abc_popup_menu_header_item_layout ++layout abc_popup_menu_item_layout ++layout abc_screen_content_include ++layout abc_screen_simple ++layout abc_screen_simple_overlay_action_mode ++layout abc_screen_toolbar ++layout abc_search_dropdown_item_icons_2line ++layout abc_search_view ++layout abc_select_dialog_material ++layout abc_tooltip ++layout custom_dialog ++layout design_bottom_navigation_item ++layout design_bottom_sheet_dialog ++layout design_layout_snackbar ++layout design_layout_snackbar_include ++layout design_layout_tab_icon ++layout design_layout_tab_text ++layout design_menu_item_action_area ++layout design_navigation_item ++layout design_navigation_item_header ++layout design_navigation_item_separator ++layout design_navigation_item_subheader ++layout design_navigation_menu ++layout design_navigation_menu_item ++layout design_text_input_end_icon ++layout design_text_input_start_icon ++layout material_chip_input_combo ++layout material_clock_display ++layout material_clock_display_divider ++layout material_clock_period_toggle ++layout material_clock_period_toggle_land ++layout material_clockface_textview ++layout material_clockface_view ++layout material_radial_view_group ++layout material_textinput_timepicker ++layout material_time_chip ++layout material_time_input ++layout material_timepicker ++layout material_timepicker_dialog ++layout material_timepicker_textinput_display ++layout mtrl_alert_dialog ++layout mtrl_alert_dialog_actions ++layout mtrl_alert_dialog_title ++layout mtrl_alert_select_dialog_item ++layout mtrl_alert_select_dialog_multichoice ++layout mtrl_alert_select_dialog_singlechoice ++layout mtrl_calendar_day ++layout mtrl_calendar_day_of_week ++layout mtrl_calendar_days_of_week ++layout mtrl_calendar_horizontal ++layout mtrl_calendar_month ++layout mtrl_calendar_month_labeled ++layout mtrl_calendar_month_navigation ++layout mtrl_calendar_months ++layout mtrl_calendar_vertical ++layout mtrl_calendar_year ++layout mtrl_layout_snackbar ++layout mtrl_layout_snackbar_include ++layout mtrl_navigation_rail_item ++layout mtrl_picker_actions ++layout mtrl_picker_dialog ++layout mtrl_picker_fullscreen ++layout mtrl_picker_header_dialog ++layout mtrl_picker_header_fullscreen ++layout mtrl_picker_header_selection_text ++layout mtrl_picker_header_title_text ++layout mtrl_picker_header_toggle ++layout mtrl_picker_text_input_date ++layout mtrl_picker_text_input_date_range ++layout notification_action ++layout notification_action_tombstone ++layout notification_template_custom_big ++layout notification_template_icon_group ++layout notification_template_part_chronometer ++layout notification_template_part_time ++layout select_dialog_item_material ++layout select_dialog_multichoice_material ++layout select_dialog_singlechoice_material ++layout support_simple_spinner_dropdown_item ++layout test_action_chip ++layout test_chip_zero_corner_radius ++layout test_design_checkbox ++layout test_design_radiobutton ++layout test_navigation_bar_item_layout ++layout test_reflow_chipgroup ++layout test_toolbar ++layout test_toolbar_custom_background ++layout test_toolbar_elevation ++layout test_toolbar_surface ++layout text_view_with_line_height_from_appearance ++layout text_view_with_line_height_from_layout ++layout text_view_with_line_height_from_style ++layout text_view_with_theme_line_height ++layout text_view_without_line_height ++plurals mtrl_badge_content_description ++string abc_action_bar_home_description ++string abc_action_bar_up_description ++string abc_action_menu_overflow_description ++string abc_action_mode_done ++string abc_activity_chooser_view_see_all ++string abc_activitychooserview_choose_application ++string abc_capital_off ++string abc_capital_on ++string abc_menu_alt_shortcut_label ++string abc_menu_ctrl_shortcut_label ++string abc_menu_delete_shortcut_label ++string abc_menu_enter_shortcut_label ++string abc_menu_function_shortcut_label ++string abc_menu_meta_shortcut_label ++string abc_menu_shift_shortcut_label ++string abc_menu_space_shortcut_label ++string abc_menu_sym_shortcut_label ++string abc_prepend_shortcut_label ++string abc_search_hint ++string abc_searchview_description_clear ++string abc_searchview_description_query ++string abc_searchview_description_search ++string abc_searchview_description_submit ++string abc_searchview_description_voice ++string abc_shareactionprovider_share_with ++string abc_shareactionprovider_share_with_application ++string abc_toolbar_collapse_description ++string app_name ++string appbar_scrolling_view_behavior ++string bottom_sheet_behavior ++string bottomsheet_action_expand_halfway ++string character_counter_content_description ++string character_counter_overflowed_content_description ++string character_counter_pattern ++string chip_text ++string clear_text_end_icon_content_description ++string error_icon_content_description ++string exposed_dropdown_menu_content_description ++string fab_transformation_scrim_behavior ++string fab_transformation_sheet_behavior ++string hide_bottom_view_on_scroll_behavior ++string icon_content_description ++string item_view_role_description ++string material_clock_display_divider ++string material_clock_toggle_content_description ++string material_hour_selection ++string material_hour_suffix ++string material_minute_selection ++string material_minute_suffix ++string material_motion_easing_accelerated ++string material_motion_easing_decelerated ++string material_motion_easing_emphasized ++string material_motion_easing_linear ++string material_motion_easing_standard ++string material_slider_range_end ++string material_slider_range_start ++string material_timepicker_am ++string material_timepicker_clock_mode_description ++string material_timepicker_hour ++string material_timepicker_minute ++string material_timepicker_pm ++string material_timepicker_select_time ++string material_timepicker_text_input_mode_description ++string mtrl_badge_numberless_content_description ++string mtrl_chip_close_icon_content_description ++string mtrl_exceed_max_badge_number_content_description ++string mtrl_exceed_max_badge_number_suffix ++string mtrl_picker_a11y_next_month ++string mtrl_picker_a11y_prev_month ++string mtrl_picker_announce_current_selection ++string mtrl_picker_cancel ++string mtrl_picker_confirm ++string mtrl_picker_date_header_selected ++string mtrl_picker_date_header_title ++string mtrl_picker_date_header_unselected ++string mtrl_picker_day_of_week_column_header ++string mtrl_picker_invalid_format ++string mtrl_picker_invalid_format_example ++string mtrl_picker_invalid_format_use ++string mtrl_picker_invalid_range ++string mtrl_picker_navigate_to_year_description ++string mtrl_picker_out_of_range ++string mtrl_picker_range_header_only_end_selected ++string mtrl_picker_range_header_only_start_selected ++string mtrl_picker_range_header_selected ++string mtrl_picker_range_header_title ++string mtrl_picker_range_header_unselected ++string mtrl_picker_save ++string mtrl_picker_text_input_date_hint ++string mtrl_picker_text_input_date_range_end_hint ++string mtrl_picker_text_input_date_range_start_hint ++string mtrl_picker_text_input_day_abbr ++string mtrl_picker_text_input_month_abbr ++string mtrl_picker_text_input_year_abbr ++string mtrl_picker_toggle_to_calendar_input_mode ++string mtrl_picker_toggle_to_day_selection ++string mtrl_picker_toggle_to_text_input_mode ++string mtrl_picker_toggle_to_year_selection ++string password_toggle_content_description ++string path_password_eye ++string path_password_eye_mask_strike_through ++string path_password_eye_mask_visible ++string path_password_strike_through ++string search_menu_title ++string status_bar_notification_info_overflow ++style AlertDialog_AppCompat ++style AlertDialog_AppCompat_Light ++style AndroidThemeColorAccentYellow ++style Animation_AppCompat_Dialog ++style Animation_AppCompat_DropDownUp ++style Animation_AppCompat_Tooltip ++style Animation_Design_BottomSheetDialog ++style Animation_MaterialComponents_BottomSheetDialog ++style Base_AlertDialog_AppCompat ++style Base_AlertDialog_AppCompat_Light ++style Base_Animation_AppCompat_Dialog ++style Base_Animation_AppCompat_DropDownUp ++style Base_Animation_AppCompat_Tooltip ++style Base_CardView ++style Base_DialogWindowTitle_AppCompat ++style Base_DialogWindowTitleBackground_AppCompat ++style Base_MaterialAlertDialog_MaterialComponents_Title_Icon ++style Base_MaterialAlertDialog_MaterialComponents_Title_Panel ++style Base_MaterialAlertDialog_MaterialComponents_Title_Text ++style Base_TextAppearance_AppCompat ++style Base_TextAppearance_AppCompat_Body1 ++style Base_TextAppearance_AppCompat_Body2 ++style Base_TextAppearance_AppCompat_Button ++style Base_TextAppearance_AppCompat_Caption ++style Base_TextAppearance_AppCompat_Display1 ++style Base_TextAppearance_AppCompat_Display2 ++style Base_TextAppearance_AppCompat_Display3 ++style Base_TextAppearance_AppCompat_Display4 ++style Base_TextAppearance_AppCompat_Headline ++style Base_TextAppearance_AppCompat_Inverse ++style Base_TextAppearance_AppCompat_Large ++style Base_TextAppearance_AppCompat_Large_Inverse ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Medium ++style Base_TextAppearance_AppCompat_Medium_Inverse ++style Base_TextAppearance_AppCompat_Menu ++style Base_TextAppearance_AppCompat_SearchResult ++style Base_TextAppearance_AppCompat_SearchResult_Subtitle ++style Base_TextAppearance_AppCompat_SearchResult_Title ++style Base_TextAppearance_AppCompat_Small ++style Base_TextAppearance_AppCompat_Small_Inverse ++style Base_TextAppearance_AppCompat_Subhead ++style Base_TextAppearance_AppCompat_Subhead_Inverse ++style Base_TextAppearance_AppCompat_Title ++style Base_TextAppearance_AppCompat_Title_Inverse ++style Base_TextAppearance_AppCompat_Tooltip ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Title ++style Base_TextAppearance_AppCompat_Widget_Button ++style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Inverse ++style Base_TextAppearance_AppCompat_Widget_DropDownItem ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Widget_Switch ++style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style Base_TextAppearance_MaterialComponents_Badge ++style Base_TextAppearance_MaterialComponents_Button ++style Base_TextAppearance_MaterialComponents_Headline6 ++style Base_TextAppearance_MaterialComponents_Subtitle2 ++style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Title ++style Base_Theme_AppCompat ++style Base_Theme_AppCompat_CompactMenu ++style Base_Theme_AppCompat_Dialog ++style Base_Theme_AppCompat_Dialog_Alert ++style Base_Theme_AppCompat_Dialog_FixedSize ++style Base_Theme_AppCompat_Dialog_MinWidth ++style Base_Theme_AppCompat_DialogWhenLarge ++style Base_Theme_AppCompat_Light ++style Base_Theme_AppCompat_Light_DarkActionBar ++style Base_Theme_AppCompat_Light_Dialog ++style Base_Theme_AppCompat_Light_Dialog_Alert ++style Base_Theme_AppCompat_Light_Dialog_FixedSize ++style Base_Theme_AppCompat_Light_Dialog_MinWidth ++style Base_Theme_AppCompat_Light_DialogWhenLarge ++style Base_Theme_MaterialComponents ++style Base_Theme_MaterialComponents_Bridge ++style Base_Theme_MaterialComponents_CompactMenu ++style Base_Theme_MaterialComponents_Dialog ++style Base_Theme_MaterialComponents_Dialog_Alert ++style Base_Theme_MaterialComponents_Dialog_Bridge ++style Base_Theme_MaterialComponents_Dialog_FixedSize ++style Base_Theme_MaterialComponents_Dialog_MinWidth ++style Base_Theme_MaterialComponents_DialogWhenLarge ++style Base_Theme_MaterialComponents_Light ++style Base_Theme_MaterialComponents_Light_Bridge ++style Base_Theme_MaterialComponents_Light_DarkActionBar ++style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge ++style Base_Theme_MaterialComponents_Light_Dialog ++style Base_Theme_MaterialComponents_Light_Dialog_Alert ++style Base_Theme_MaterialComponents_Light_Dialog_Bridge ++style Base_Theme_MaterialComponents_Light_Dialog_FixedSize ++style Base_Theme_MaterialComponents_Light_Dialog_MinWidth ++style Base_Theme_MaterialComponents_Light_DialogWhenLarge ++style Base_ThemeOverlay_AppCompat ++style Base_ThemeOverlay_AppCompat_ActionBar ++style Base_ThemeOverlay_AppCompat_Dark ++style Base_ThemeOverlay_AppCompat_Dark_ActionBar ++style Base_ThemeOverlay_AppCompat_Dialog ++style Base_ThemeOverlay_AppCompat_Dialog_Alert ++style Base_ThemeOverlay_AppCompat_Light ++style Base_ThemeOverlay_MaterialComponents_Dialog ++style Base_ThemeOverlay_MaterialComponents_Dialog_Alert ++style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework ++style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework ++style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog ++style Base_V14_Theme_MaterialComponents ++style Base_V14_Theme_MaterialComponents_Bridge ++style Base_V14_Theme_MaterialComponents_Dialog ++style Base_V14_Theme_MaterialComponents_Dialog_Bridge ++style Base_V14_Theme_MaterialComponents_Light ++style Base_V14_Theme_MaterialComponents_Light_Bridge ++style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge ++style Base_V14_Theme_MaterialComponents_Light_Dialog ++style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge ++style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog ++style Base_V14_ThemeOverlay_MaterialComponents_Dialog ++style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert ++style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog ++style Base_V21_Theme_AppCompat ++style Base_V21_Theme_AppCompat_Dialog ++style Base_V21_Theme_AppCompat_Light ++style Base_V21_Theme_AppCompat_Light_Dialog ++style Base_V21_Theme_MaterialComponents ++style Base_V21_Theme_MaterialComponents_Dialog ++style Base_V21_Theme_MaterialComponents_Light ++style Base_V21_Theme_MaterialComponents_Light_Dialog ++style Base_V21_ThemeOverlay_AppCompat_Dialog ++style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog ++style Base_V22_Theme_AppCompat ++style Base_V22_Theme_AppCompat_Light ++style Base_V23_Theme_AppCompat ++style Base_V23_Theme_AppCompat_Light ++style Base_V26_Theme_AppCompat ++style Base_V26_Theme_AppCompat_Light ++style Base_V26_Widget_AppCompat_Toolbar ++style Base_V28_Theme_AppCompat ++style Base_V28_Theme_AppCompat_Light ++style Base_V7_Theme_AppCompat ++style Base_V7_Theme_AppCompat_Dialog ++style Base_V7_Theme_AppCompat_Light ++style Base_V7_Theme_AppCompat_Light_Dialog ++style Base_V7_ThemeOverlay_AppCompat_Dialog ++style Base_V7_Widget_AppCompat_AutoCompleteTextView ++style Base_V7_Widget_AppCompat_EditText ++style Base_V7_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_ActionBar ++style Base_Widget_AppCompat_ActionBar_Solid ++style Base_Widget_AppCompat_ActionBar_TabBar ++style Base_Widget_AppCompat_ActionBar_TabText ++style Base_Widget_AppCompat_ActionBar_TabView ++style Base_Widget_AppCompat_ActionButton ++style Base_Widget_AppCompat_ActionButton_CloseMode ++style Base_Widget_AppCompat_ActionButton_Overflow ++style Base_Widget_AppCompat_ActionMode ++style Base_Widget_AppCompat_ActivityChooserView ++style Base_Widget_AppCompat_AutoCompleteTextView ++style Base_Widget_AppCompat_Button ++style Base_Widget_AppCompat_Button_Borderless ++style Base_Widget_AppCompat_Button_Borderless_Colored ++style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_Button_Colored ++style Base_Widget_AppCompat_Button_Small ++style Base_Widget_AppCompat_ButtonBar ++style Base_Widget_AppCompat_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_CompoundButton_CheckBox ++style Base_Widget_AppCompat_CompoundButton_RadioButton ++style Base_Widget_AppCompat_CompoundButton_Switch ++style Base_Widget_AppCompat_DrawerArrowToggle ++style Base_Widget_AppCompat_DrawerArrowToggle_Common ++style Base_Widget_AppCompat_DropDownItem_Spinner ++style Base_Widget_AppCompat_EditText ++style Base_Widget_AppCompat_ImageButton ++style Base_Widget_AppCompat_Light_ActionBar ++style Base_Widget_AppCompat_Light_ActionBar_Solid ++style Base_Widget_AppCompat_Light_ActionBar_TabBar ++style Base_Widget_AppCompat_Light_ActionBar_TabText ++style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Base_Widget_AppCompat_Light_ActionBar_TabView ++style Base_Widget_AppCompat_Light_PopupMenu ++style Base_Widget_AppCompat_Light_PopupMenu_Overflow ++style Base_Widget_AppCompat_ListMenuView ++style Base_Widget_AppCompat_ListPopupWindow ++style Base_Widget_AppCompat_ListView ++style Base_Widget_AppCompat_ListView_DropDown ++style Base_Widget_AppCompat_ListView_Menu ++style Base_Widget_AppCompat_PopupMenu ++style Base_Widget_AppCompat_PopupMenu_Overflow ++style Base_Widget_AppCompat_PopupWindow ++style Base_Widget_AppCompat_ProgressBar ++style Base_Widget_AppCompat_ProgressBar_Horizontal ++style Base_Widget_AppCompat_RatingBar ++style Base_Widget_AppCompat_RatingBar_Indicator ++style Base_Widget_AppCompat_RatingBar_Small ++style Base_Widget_AppCompat_SearchView ++style Base_Widget_AppCompat_SearchView_ActionBar ++style Base_Widget_AppCompat_SeekBar ++style Base_Widget_AppCompat_SeekBar_Discrete ++style Base_Widget_AppCompat_Spinner ++style Base_Widget_AppCompat_Spinner_Underlined ++style Base_Widget_AppCompat_TextView ++style Base_Widget_AppCompat_TextView_SpinnerItem ++style Base_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_Toolbar_Button_Navigation ++style Base_Widget_Design_TabLayout ++style Base_Widget_MaterialComponents_AutoCompleteTextView ++style Base_Widget_MaterialComponents_CheckedTextView ++style Base_Widget_MaterialComponents_Chip ++style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton ++style Base_Widget_MaterialComponents_PopupMenu ++style Base_Widget_MaterialComponents_PopupMenu_ContextMenu ++style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow ++style Base_Widget_MaterialComponents_PopupMenu_Overflow ++style Base_Widget_MaterialComponents_Slider ++style Base_Widget_MaterialComponents_Snackbar ++style Base_Widget_MaterialComponents_TextInputEditText ++style Base_Widget_MaterialComponents_TextInputLayout ++style Base_Widget_MaterialComponents_TextView ++style CardView ++style CardView_Dark ++style CardView_Light ++style EmptyTheme ++style MaterialAlertDialog_MaterialComponents ++style MaterialAlertDialog_MaterialComponents_Body_Text ++style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar ++style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner ++style MaterialAlertDialog_MaterialComponents_Title_Icon ++style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked ++style MaterialAlertDialog_MaterialComponents_Title_Panel ++style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked ++style MaterialAlertDialog_MaterialComponents_Title_Text ++style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked ++style Platform_AppCompat ++style Platform_AppCompat_Light ++style Platform_MaterialComponents ++style Platform_MaterialComponents_Dialog ++style Platform_MaterialComponents_Light ++style Platform_MaterialComponents_Light_Dialog ++style Platform_ThemeOverlay_AppCompat ++style Platform_ThemeOverlay_AppCompat_Dark ++style Platform_ThemeOverlay_AppCompat_Light ++style Platform_V21_AppCompat ++style Platform_V21_AppCompat_Light ++style Platform_V25_AppCompat ++style Platform_V25_AppCompat_Light ++style Platform_Widget_AppCompat_Spinner ++style RtlOverlay_DialogWindowTitle_AppCompat ++style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem ++style RtlOverlay_Widget_AppCompat_DialogTitle_Icon ++style RtlOverlay_Widget_AppCompat_PopupMenuItem ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title ++style RtlOverlay_Widget_AppCompat_Search_DropDown ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Query ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Text ++style RtlOverlay_Widget_AppCompat_SearchView_MagIcon ++style RtlUnderlay_Widget_AppCompat_ActionButton ++style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow ++style ShapeAppearance_MaterialComponents ++style ShapeAppearance_MaterialComponents_LargeComponent ++style ShapeAppearance_MaterialComponents_MediumComponent ++style ShapeAppearance_MaterialComponents_SmallComponent ++style ShapeAppearance_MaterialComponents_Test ++style ShapeAppearance_MaterialComponents_Tooltip ++style ShapeAppearanceOverlay ++style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize ++style ShapeAppearanceOverlay_BottomRightCut ++style ShapeAppearanceOverlay_Cut ++style ShapeAppearanceOverlay_DifferentCornerSize ++style ShapeAppearanceOverlay_MaterialComponents_BottomSheet ++style ShapeAppearanceOverlay_MaterialComponents_Chip ++style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton ++style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton ++style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day ++style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen ++style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year ++style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox ++style ShapeAppearanceOverlay_TopLeftCut ++style ShapeAppearanceOverlay_TopRightDifferentCornerSize ++style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day ++style Test_Theme_MaterialComponents_MaterialCalendar ++style Test_Widget_MaterialComponents_MaterialCalendar ++style Test_Widget_MaterialComponents_MaterialCalendar_Day ++style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected ++style TestStyleWithLineHeight ++style TestStyleWithLineHeightAppearance ++style TestStyleWithThemeLineHeightAttribute ++style TestStyleWithoutLineHeight ++style TestThemeWithLineHeight ++style TestThemeWithLineHeightDisabled ++style TextAppearance_AppCompat ++style TextAppearance_AppCompat_Body1 ++style TextAppearance_AppCompat_Body2 ++style TextAppearance_AppCompat_Button ++style TextAppearance_AppCompat_Caption ++style TextAppearance_AppCompat_Display1 ++style TextAppearance_AppCompat_Display2 ++style TextAppearance_AppCompat_Display3 ++style TextAppearance_AppCompat_Display4 ++style TextAppearance_AppCompat_Headline ++style TextAppearance_AppCompat_Inverse ++style TextAppearance_AppCompat_Large ++style TextAppearance_AppCompat_Large_Inverse ++style TextAppearance_AppCompat_Light_SearchResult_Subtitle ++style TextAppearance_AppCompat_Light_SearchResult_Title ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Medium ++style TextAppearance_AppCompat_Medium_Inverse ++style TextAppearance_AppCompat_Menu ++style TextAppearance_AppCompat_SearchResult_Subtitle ++style TextAppearance_AppCompat_SearchResult_Title ++style TextAppearance_AppCompat_Small ++style TextAppearance_AppCompat_Small_Inverse ++style TextAppearance_AppCompat_Subhead ++style TextAppearance_AppCompat_Subhead_Inverse ++style TextAppearance_AppCompat_Title ++style TextAppearance_AppCompat_Title_Inverse ++style TextAppearance_AppCompat_Tooltip ++style TextAppearance_AppCompat_Widget_ActionBar_Menu ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionBar_Title ++style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Title ++style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse ++style TextAppearance_AppCompat_Widget_Button ++style TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style TextAppearance_AppCompat_Widget_Button_Colored ++style TextAppearance_AppCompat_Widget_Button_Inverse ++style TextAppearance_AppCompat_Widget_DropDownItem ++style TextAppearance_AppCompat_Widget_PopupMenu_Header ++style TextAppearance_AppCompat_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Widget_Switch ++style TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style TextAppearance_Compat_Notification ++style TextAppearance_Compat_Notification_Info ++style TextAppearance_Compat_Notification_Line2 ++style TextAppearance_Compat_Notification_Time ++style TextAppearance_Compat_Notification_Title ++style TextAppearance_Design_CollapsingToolbar_Expanded ++style TextAppearance_Design_Counter ++style TextAppearance_Design_Counter_Overflow ++style TextAppearance_Design_Error ++style TextAppearance_Design_HelperText ++style TextAppearance_Design_Hint ++style TextAppearance_Design_Placeholder ++style TextAppearance_Design_Prefix ++style TextAppearance_Design_Snackbar_Message ++style TextAppearance_Design_Suffix ++style TextAppearance_Design_Tab ++style TextAppearance_MaterialComponents_Badge ++style TextAppearance_MaterialComponents_Body1 ++style TextAppearance_MaterialComponents_Body2 ++style TextAppearance_MaterialComponents_Button ++style TextAppearance_MaterialComponents_Caption ++style TextAppearance_MaterialComponents_Chip ++style TextAppearance_MaterialComponents_Headline1 ++style TextAppearance_MaterialComponents_Headline2 ++style TextAppearance_MaterialComponents_Headline3 ++style TextAppearance_MaterialComponents_Headline4 ++style TextAppearance_MaterialComponents_Headline5 ++style TextAppearance_MaterialComponents_Headline6 ++style TextAppearance_MaterialComponents_Overline ++style TextAppearance_MaterialComponents_Subtitle1 ++style TextAppearance_MaterialComponents_Subtitle2 ++style TextAppearance_MaterialComponents_TimePicker_Title ++style TextAppearance_MaterialComponents_Tooltip ++style TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style TextAppearance_Widget_AppCompat_Toolbar_Title ++style Theme_AppCompat ++style Theme_AppCompat_CompactMenu ++style Theme_AppCompat_DayNight ++style Theme_AppCompat_DayNight_DarkActionBar ++style Theme_AppCompat_DayNight_Dialog ++style Theme_AppCompat_DayNight_Dialog_Alert ++style Theme_AppCompat_DayNight_Dialog_MinWidth ++style Theme_AppCompat_DayNight_DialogWhenLarge ++style Theme_AppCompat_DayNight_NoActionBar ++style Theme_AppCompat_Dialog ++style Theme_AppCompat_Dialog_Alert ++style Theme_AppCompat_Dialog_MinWidth ++style Theme_AppCompat_DialogWhenLarge ++style Theme_AppCompat_Empty ++style Theme_AppCompat_Light ++style Theme_AppCompat_Light_DarkActionBar ++style Theme_AppCompat_Light_Dialog ++style Theme_AppCompat_Light_Dialog_Alert ++style Theme_AppCompat_Light_Dialog_MinWidth ++style Theme_AppCompat_Light_DialogWhenLarge ++style Theme_AppCompat_Light_NoActionBar ++style Theme_AppCompat_NoActionBar ++style Theme_Design ++style Theme_Design_BottomSheetDialog ++style Theme_Design_Light ++style Theme_Design_Light_BottomSheetDialog ++style Theme_Design_Light_NoActionBar ++style Theme_Design_NoActionBar ++style Theme_MaterialComponents ++style Theme_MaterialComponents_BottomSheetDialog ++style Theme_MaterialComponents_Bridge ++style Theme_MaterialComponents_CompactMenu ++style Theme_MaterialComponents_DayNight ++style Theme_MaterialComponents_DayNight_BottomSheetDialog ++style Theme_MaterialComponents_DayNight_Bridge ++style Theme_MaterialComponents_DayNight_DarkActionBar ++style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge ++style Theme_MaterialComponents_DayNight_Dialog ++style Theme_MaterialComponents_DayNight_Dialog_Alert ++style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge ++style Theme_MaterialComponents_DayNight_Dialog_Bridge ++style Theme_MaterialComponents_DayNight_Dialog_FixedSize ++style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge ++style Theme_MaterialComponents_DayNight_Dialog_MinWidth ++style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge ++style Theme_MaterialComponents_DayNight_DialogWhenLarge ++style Theme_MaterialComponents_DayNight_NoActionBar ++style Theme_MaterialComponents_DayNight_NoActionBar_Bridge ++style Theme_MaterialComponents_Dialog ++style Theme_MaterialComponents_Dialog_Alert ++style Theme_MaterialComponents_Dialog_Alert_Bridge ++style Theme_MaterialComponents_Dialog_Bridge ++style Theme_MaterialComponents_Dialog_FixedSize ++style Theme_MaterialComponents_Dialog_FixedSize_Bridge ++style Theme_MaterialComponents_Dialog_MinWidth ++style Theme_MaterialComponents_Dialog_MinWidth_Bridge ++style Theme_MaterialComponents_DialogWhenLarge ++style Theme_MaterialComponents_Light ++style Theme_MaterialComponents_Light_BarSize ++style Theme_MaterialComponents_Light_BottomSheetDialog ++style Theme_MaterialComponents_Light_Bridge ++style Theme_MaterialComponents_Light_DarkActionBar ++style Theme_MaterialComponents_Light_DarkActionBar_Bridge ++style Theme_MaterialComponents_Light_Dialog ++style Theme_MaterialComponents_Light_Dialog_Alert ++style Theme_MaterialComponents_Light_Dialog_Alert_Bridge ++style Theme_MaterialComponents_Light_Dialog_Bridge ++style Theme_MaterialComponents_Light_Dialog_FixedSize ++style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge ++style Theme_MaterialComponents_Light_Dialog_MinWidth ++style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge ++style Theme_MaterialComponents_Light_DialogWhenLarge ++style Theme_MaterialComponents_Light_LargeTouch ++style Theme_MaterialComponents_Light_NoActionBar ++style Theme_MaterialComponents_Light_NoActionBar_Bridge ++style Theme_MaterialComponents_NoActionBar ++style Theme_MaterialComponents_NoActionBar_Bridge ++style ThemeOverlay_AppCompat ++style ThemeOverlay_AppCompat_ActionBar ++style ThemeOverlay_AppCompat_Dark ++style ThemeOverlay_AppCompat_Dark_ActionBar ++style ThemeOverlay_AppCompat_DayNight ++style ThemeOverlay_AppCompat_DayNight_ActionBar ++style ThemeOverlay_AppCompat_Dialog ++style ThemeOverlay_AppCompat_Dialog_Alert ++style ThemeOverlay_AppCompat_Light ++style ThemeOverlay_Design_TextInputEditText ++style ThemeOverlay_MaterialComponents ++style ThemeOverlay_MaterialComponents_ActionBar ++style ThemeOverlay_MaterialComponents_ActionBar_Primary ++style ThemeOverlay_MaterialComponents_ActionBar_Surface ++style ThemeOverlay_MaterialComponents_AutoCompleteTextView ++style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox ++style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense ++style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox ++style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense ++style ThemeOverlay_MaterialComponents_BottomAppBar_Primary ++style ThemeOverlay_MaterialComponents_BottomAppBar_Surface ++style ThemeOverlay_MaterialComponents_BottomSheetDialog ++style ThemeOverlay_MaterialComponents_Dark ++style ThemeOverlay_MaterialComponents_Dark_ActionBar ++style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog ++style ThemeOverlay_MaterialComponents_Dialog ++style ThemeOverlay_MaterialComponents_Dialog_Alert ++style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework ++style ThemeOverlay_MaterialComponents_Light ++style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner ++style ThemeOverlay_MaterialComponents_MaterialCalendar ++style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen ++style ThemeOverlay_MaterialComponents_TextInputEditText ++style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox ++style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense ++style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox ++style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense ++style ThemeOverlay_MaterialComponents_TimePicker ++style ThemeOverlay_MaterialComponents_TimePicker_Display ++style ThemeOverlay_MaterialComponents_Toolbar_Primary ++style ThemeOverlay_MaterialComponents_Toolbar_Surface ++style ThemeOverlayColorAccentRed ++style WhiteBackgroundDialogTheme ++style WhiteBackgroundTheme ++style Widget_AppCompat_ActionBar ++style Widget_AppCompat_ActionBar_Solid ++style Widget_AppCompat_ActionBar_TabBar ++style Widget_AppCompat_ActionBar_TabText ++style Widget_AppCompat_ActionBar_TabView ++style Widget_AppCompat_ActionButton ++style Widget_AppCompat_ActionButton_CloseMode ++style Widget_AppCompat_ActionButton_Overflow ++style Widget_AppCompat_ActionMode ++style Widget_AppCompat_ActivityChooserView ++style Widget_AppCompat_AutoCompleteTextView ++style Widget_AppCompat_Button ++style Widget_AppCompat_Button_Borderless ++style Widget_AppCompat_Button_Borderless_Colored ++style Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Widget_AppCompat_Button_Colored ++style Widget_AppCompat_Button_Small ++style Widget_AppCompat_ButtonBar ++style Widget_AppCompat_ButtonBar_AlertDialog ++style Widget_AppCompat_CompoundButton_CheckBox ++style Widget_AppCompat_CompoundButton_RadioButton ++style Widget_AppCompat_CompoundButton_Switch ++style Widget_AppCompat_DrawerArrowToggle ++style Widget_AppCompat_DropDownItem_Spinner ++style Widget_AppCompat_EditText ++style Widget_AppCompat_ImageButton ++style Widget_AppCompat_Light_ActionBar ++style Widget_AppCompat_Light_ActionBar_Solid ++style Widget_AppCompat_Light_ActionBar_Solid_Inverse ++style Widget_AppCompat_Light_ActionBar_TabBar ++style Widget_AppCompat_Light_ActionBar_TabBar_Inverse ++style Widget_AppCompat_Light_ActionBar_TabText ++style Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Widget_AppCompat_Light_ActionBar_TabView ++style Widget_AppCompat_Light_ActionBar_TabView_Inverse ++style Widget_AppCompat_Light_ActionButton ++style Widget_AppCompat_Light_ActionButton_CloseMode ++style Widget_AppCompat_Light_ActionButton_Overflow ++style Widget_AppCompat_Light_ActionMode_Inverse ++style Widget_AppCompat_Light_ActivityChooserView ++style Widget_AppCompat_Light_AutoCompleteTextView ++style Widget_AppCompat_Light_DropDownItem_Spinner ++style Widget_AppCompat_Light_ListPopupWindow ++style Widget_AppCompat_Light_ListView_DropDown ++style Widget_AppCompat_Light_PopupMenu ++style Widget_AppCompat_Light_PopupMenu_Overflow ++style Widget_AppCompat_Light_SearchView ++style Widget_AppCompat_Light_Spinner_DropDown_ActionBar ++style Widget_AppCompat_ListMenuView ++style Widget_AppCompat_ListPopupWindow ++style Widget_AppCompat_ListView ++style Widget_AppCompat_ListView_DropDown ++style Widget_AppCompat_ListView_Menu ++style Widget_AppCompat_PopupMenu ++style Widget_AppCompat_PopupMenu_Overflow ++style Widget_AppCompat_PopupWindow ++style Widget_AppCompat_ProgressBar ++style Widget_AppCompat_ProgressBar_Horizontal ++style Widget_AppCompat_RatingBar ++style Widget_AppCompat_RatingBar_Indicator ++style Widget_AppCompat_RatingBar_Small ++style Widget_AppCompat_SearchView ++style Widget_AppCompat_SearchView_ActionBar ++style Widget_AppCompat_SeekBar ++style Widget_AppCompat_SeekBar_Discrete ++style Widget_AppCompat_Spinner ++style Widget_AppCompat_Spinner_DropDown ++style Widget_AppCompat_Spinner_DropDown_ActionBar ++style Widget_AppCompat_Spinner_Underlined ++style Widget_AppCompat_TextView ++style Widget_AppCompat_TextView_SpinnerItem ++style Widget_AppCompat_Toolbar ++style Widget_AppCompat_Toolbar_Button_Navigation ++style Widget_Compat_NotificationActionContainer ++style Widget_Compat_NotificationActionText ++style Widget_Design_AppBarLayout ++style Widget_Design_BottomNavigationView ++style Widget_Design_BottomSheet_Modal ++style Widget_Design_CollapsingToolbar ++style Widget_Design_FloatingActionButton ++style Widget_Design_NavigationView ++style Widget_Design_ScrimInsetsFrameLayout ++style Widget_Design_Snackbar ++style Widget_Design_TabLayout ++style Widget_Design_TextInputEditText ++style Widget_Design_TextInputLayout ++style Widget_MaterialComponents_ActionBar_Primary ++style Widget_MaterialComponents_ActionBar_PrimarySurface ++style Widget_MaterialComponents_ActionBar_Solid ++style Widget_MaterialComponents_ActionBar_Surface ++style Widget_MaterialComponents_AppBarLayout_Primary ++style Widget_MaterialComponents_AppBarLayout_PrimarySurface ++style Widget_MaterialComponents_AppBarLayout_Surface ++style Widget_MaterialComponents_AutoCompleteTextView_FilledBox ++style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense ++style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox ++style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense ++style Widget_MaterialComponents_Badge ++style Widget_MaterialComponents_BottomAppBar ++style Widget_MaterialComponents_BottomAppBar_Colored ++style Widget_MaterialComponents_BottomAppBar_PrimarySurface ++style Widget_MaterialComponents_BottomNavigationView ++style Widget_MaterialComponents_BottomNavigationView_Colored ++style Widget_MaterialComponents_BottomNavigationView_PrimarySurface ++style Widget_MaterialComponents_BottomSheet ++style Widget_MaterialComponents_BottomSheet_Modal ++style Widget_MaterialComponents_Button ++style Widget_MaterialComponents_Button_Icon ++style Widget_MaterialComponents_Button_OutlinedButton ++style Widget_MaterialComponents_Button_OutlinedButton_Icon ++style Widget_MaterialComponents_Button_TextButton ++style Widget_MaterialComponents_Button_TextButton_Dialog ++style Widget_MaterialComponents_Button_TextButton_Dialog_Flush ++style Widget_MaterialComponents_Button_TextButton_Dialog_Icon ++style Widget_MaterialComponents_Button_TextButton_Icon ++style Widget_MaterialComponents_Button_TextButton_Snackbar ++style Widget_MaterialComponents_Button_UnelevatedButton ++style Widget_MaterialComponents_Button_UnelevatedButton_Icon ++style Widget_MaterialComponents_CardView ++style Widget_MaterialComponents_CheckedTextView ++style Widget_MaterialComponents_Chip_Action ++style Widget_MaterialComponents_Chip_Choice ++style Widget_MaterialComponents_Chip_Entry ++style Widget_MaterialComponents_Chip_Filter ++style Widget_MaterialComponents_ChipGroup ++style Widget_MaterialComponents_CircularProgressIndicator ++style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall ++style Widget_MaterialComponents_CircularProgressIndicator_Medium ++style Widget_MaterialComponents_CircularProgressIndicator_Small ++style Widget_MaterialComponents_CollapsingToolbar ++style Widget_MaterialComponents_CompoundButton_CheckBox ++style Widget_MaterialComponents_CompoundButton_RadioButton ++style Widget_MaterialComponents_CompoundButton_Switch ++style Widget_MaterialComponents_ExtendedFloatingActionButton ++style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon ++style Widget_MaterialComponents_FloatingActionButton ++style Widget_MaterialComponents_Light_ActionBar_Solid ++style Widget_MaterialComponents_LinearProgressIndicator ++style Widget_MaterialComponents_MaterialButtonToggleGroup ++style Widget_MaterialComponents_MaterialCalendar ++style Widget_MaterialComponents_MaterialCalendar_Day ++style Widget_MaterialComponents_MaterialCalendar_Day_Invalid ++style Widget_MaterialComponents_MaterialCalendar_Day_Selected ++style Widget_MaterialComponents_MaterialCalendar_Day_Today ++style Widget_MaterialComponents_MaterialCalendar_DayTextView ++style Widget_MaterialComponents_MaterialCalendar_Fullscreen ++style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton ++style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton ++style Widget_MaterialComponents_MaterialCalendar_HeaderDivider ++style Widget_MaterialComponents_MaterialCalendar_HeaderLayout ++style Widget_MaterialComponents_MaterialCalendar_HeaderSelection ++style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen ++style Widget_MaterialComponents_MaterialCalendar_HeaderTitle ++style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton ++style Widget_MaterialComponents_MaterialCalendar_Item ++style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton ++style Widget_MaterialComponents_MaterialCalendar_MonthTextView ++style Widget_MaterialComponents_MaterialCalendar_Year ++style Widget_MaterialComponents_MaterialCalendar_Year_Selected ++style Widget_MaterialComponents_MaterialCalendar_Year_Today ++style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton ++style Widget_MaterialComponents_NavigationRailView ++style Widget_MaterialComponents_NavigationRailView_Colored ++style Widget_MaterialComponents_NavigationRailView_Colored_Compact ++style Widget_MaterialComponents_NavigationRailView_Compact ++style Widget_MaterialComponents_NavigationRailView_PrimarySurface ++style Widget_MaterialComponents_NavigationView ++style Widget_MaterialComponents_PopupMenu ++style Widget_MaterialComponents_PopupMenu_ContextMenu ++style Widget_MaterialComponents_PopupMenu_ListPopupWindow ++style Widget_MaterialComponents_PopupMenu_Overflow ++style Widget_MaterialComponents_ProgressIndicator ++style Widget_MaterialComponents_ShapeableImageView ++style Widget_MaterialComponents_Slider ++style Widget_MaterialComponents_Snackbar ++style Widget_MaterialComponents_Snackbar_FullWidth ++style Widget_MaterialComponents_Snackbar_TextView ++style Widget_MaterialComponents_TabLayout ++style Widget_MaterialComponents_TabLayout_Colored ++style Widget_MaterialComponents_TabLayout_PrimarySurface ++style Widget_MaterialComponents_TextInputEditText_FilledBox ++style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense ++style Widget_MaterialComponents_TextInputEditText_OutlinedBox ++style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense ++style Widget_MaterialComponents_TextInputLayout_FilledBox ++style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense ++style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu ++style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu ++style Widget_MaterialComponents_TextInputLayout_OutlinedBox ++style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense ++style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu ++style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu ++style Widget_MaterialComponents_TextView ++style Widget_MaterialComponents_TimePicker ++style Widget_MaterialComponents_TimePicker_Button ++style Widget_MaterialComponents_TimePicker_Clock ++style Widget_MaterialComponents_TimePicker_Display ++style Widget_MaterialComponents_TimePicker_Display_TextInputEditText ++style Widget_MaterialComponents_TimePicker_ImageButton ++style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance ++style Widget_MaterialComponents_Toolbar ++style Widget_MaterialComponents_Toolbar_Primary ++style Widget_MaterialComponents_Toolbar_PrimarySurface ++style Widget_MaterialComponents_Toolbar_Surface ++style Widget_MaterialComponents_Tooltip ++style Widget_Support_CoordinatorLayout ++styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle ++styleable ActionBarLayout android_layout_gravity ++styleable ActionMenuItemView android_minWidth ++styleable ActionMenuView ++styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle ++styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount ++styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout ++styleable AnimatedStateListDrawableCompat android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration ++styleable AnimatedStateListDrawableItem android_id android_drawable ++styleable AnimatedStateListDrawableTransition android_drawable android_toId android_fromId android_reversible ++styleable AppBarLayout android_background android_touchscreenBlocksFocus android_keyboardNavigationCluster elevation expanded liftOnScroll liftOnScrollTargetViewId statusBarForeground ++styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted ++styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator ++styleable AppCompatImageView android_src srcCompat tint tintMode ++styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode ++styleable AppCompatTextHelper android_textAppearance android_drawableTop android_drawableBottom android_drawableLeft android_drawableRight android_drawableStart android_drawableEnd ++styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale ++styleable AppCompatTheme android_windowIsFloating android_windowAnimationStyle actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle ++styleable Badge backgroundColor badgeGravity badgeTextColor horizontalOffset maxCharacterCount number verticalOffset ++styleable BaseProgressIndicator android_indeterminate hideAnimationBehavior indicatorColor minHideDelay showAnimationBehavior showDelay trackColor trackCornerRadius trackThickness ++styleable BottomAppBar backgroundTint elevation fabAlignmentMode fabAnimationMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets ++styleable BottomNavigationView itemHorizontalTranslationEnabled ++styleable BottomSheetBehavior_Layout android_maxWidth android_elevation backgroundTint behavior_draggable behavior_expandedOffset behavior_fitToContents behavior_halfExpandedRatio behavior_hideable behavior_peekHeight behavior_saveFlags behavior_skipCollapsed gestureInsetBottomIgnored paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets shapeAppearance shapeAppearanceOverlay ++styleable ButtonBarLayout allowStacking ++styleable Capability queryPatterns shortcutMatchRequired ++styleable CardView android_minWidth android_minHeight cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop ++styleable Chip android_textAppearance android_textSize android_textColor android_ellipsize android_maxWidth android_text android_checkable checkedIcon checkedIconEnabled checkedIconTint checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipMinTouchTargetSize chipStartPadding chipStrokeColor chipStrokeWidth chipSurfaceColor closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible ensureMinTouchTargetSize hideMotionSpec iconEndPadding iconStartPadding rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec textEndPadding textStartPadding ++styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical selectionRequired singleLine singleSelection ++styleable CircularProgressIndicator indicatorDirectionCircular indicatorInset indicatorSize ++styleable ClockFaceView clockFaceBackgroundColor clockNumberTextColor ++styleable ClockHandView clockHandColor materialCircleRadius selectorSize ++styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance extraMultilineHeightEnabled forceApplySystemWindowInsetTop maxLines scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleCollapseMode titleEnabled toolbarId ++styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier ++styleable ColorStateListItem android_color android_alpha android_lStar alpha lStar ++styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode ++styleable Constraint android_orientation android_id android_visibility android_layout_width android_layout_height android_layout_marginLeft android_layout_marginTop android_layout_marginRight android_layout_marginBottom android_maxWidth android_maxHeight android_minWidth android_minHeight android_alpha android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_layout_marginStart android_layout_marginEnd android_translationZ android_elevation animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop motionProgress motionStagger pathMotionArc pivotAnchor transitionEasing transitionPathRotate visibilityMode ++styleable ConstraintLayout_Layout android_orientation android_padding android_paddingLeft android_paddingTop android_paddingRight android_paddingBottom android_visibility android_maxWidth android_maxHeight android_minWidth android_minHeight android_paddingStart android_paddingEnd android_elevation barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraintSet constraint_referenced_ids flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layoutDescription layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_optimizationLevel ++styleable ConstraintLayout_placeholder content placeholder_emptyVisibility ++styleable ConstraintSet android_orientation android_id android_visibility android_layout_width android_layout_height android_layout_marginLeft android_layout_marginTop android_layout_marginRight android_layout_marginBottom android_maxWidth android_maxHeight android_minWidth android_minHeight android_pivotX android_pivotY android_alpha android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_layout_marginStart android_layout_marginEnd android_translationZ android_elevation animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids deriveConstraintsFrom drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop motionProgress motionStagger pathMotionArc pivotAnchor transitionEasing transitionPathRotate ++styleable CoordinatorLayout keylines statusBarBackground ++styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline ++styleable CustomAttribute attributeName customBoolean customColorDrawableValue customColorValue customDimension customFloatValue customIntegerValue customPixelDimension customStringValue ++styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness ++styleable DrawerLayout elevation ++styleable ExtendedFloatingActionButton collapsedSize elevation extendMotionSpec hideMotionSpec showMotionSpec shrinkMotionSpec ++styleable ExtendedFloatingActionButton_Behavior_Layout behavior_autoHide behavior_autoShrink ++styleable FloatingActionButton android_enabled backgroundTint backgroundTintMode borderWidth elevation ensureMinTouchTargetSize fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec useCompatPadding ++styleable FloatingActionButton_Behavior_Layout behavior_autoHide ++styleable FlowLayout itemSpacing lineSpacing ++styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily ++styleable FontFamilyFont android_font android_fontWeight android_fontStyle android_ttcIndex android_fontVariationSettings font fontStyle fontVariationSettings fontWeight ttcIndex ++styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding ++styleable Fragment android_name android_id android_tag ++styleable FragmentContainerView android_name android_tag ++styleable GradientColor android_startColor android_endColor android_type android_centerX android_centerY android_gradientRadius android_tileMode android_centerColor android_startX android_startY android_endX android_endY ++styleable GradientColorItem android_color android_offset ++styleable ImageFilterView altSrc brightness contrast crossfade overlay round roundPercent saturation warmth ++styleable Insets paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets ++styleable KeyAttribute android_alpha android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate ++styleable KeyCycle android_alpha android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveOffset wavePeriod waveShape waveVariesBy ++styleable KeyFrame ++styleable KeyFramesAcceleration ++styleable KeyFramesVelocity ++styleable KeyPosition curveFit drawPath framePosition keyPositionType motionTarget pathMotionArc percentHeight percentWidth percentX percentY sizePercent transitionEasing ++styleable KeyTimeCycle android_alpha android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveDecay waveOffset wavePeriod waveShape ++styleable KeyTrigger framePosition motionTarget motion_postLayoutCollision motion_triggerOnCollision onCross onNegativeCross onPositiveCross triggerId triggerReceiver triggerSlack ++styleable Layout android_orientation android_layout_width android_layout_height android_layout_marginLeft android_layout_marginTop android_layout_marginRight android_layout_marginBottom android_layout_marginStart android_layout_marginEnd barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop maxHeight maxWidth minHeight minWidth ++styleable LinearLayoutCompat android_gravity android_orientation android_baselineAligned android_baselineAlignedChildIndex android_weightSum divider dividerPadding measureWithLargestChild showDividers ++styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_width android_layout_height android_layout_weight ++styleable LinearProgressIndicator indeterminateAnimationType indicatorDirectionLinear ++styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset ++styleable MaterialAlertDialog backgroundInsetBottom backgroundInsetEnd backgroundInsetStart backgroundInsetTop ++styleable MaterialAlertDialogTheme materialAlertDialogBodyTextStyle materialAlertDialogTheme materialAlertDialogTitleIconStyle materialAlertDialogTitlePanelStyle materialAlertDialogTitleTextStyle ++styleable MaterialAutoCompleteTextView android_inputType ++styleable MaterialButton android_background android_insetLeft android_insetRight android_insetTop android_insetBottom android_checkable backgroundTint backgroundTintMode cornerRadius elevation icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth ++styleable MaterialButtonToggleGroup checkedButton selectionRequired singleSelection ++styleable MaterialCalendar android_windowFullscreen dayInvalidStyle daySelectedStyle dayStyle dayTodayStyle nestedScrollable rangeFillColor yearSelectedStyle yearStyle yearTodayStyle ++styleable MaterialCalendarItem android_insetLeft android_insetRight android_insetTop android_insetBottom itemFillColor itemShapeAppearance itemShapeAppearanceOverlay itemStrokeColor itemStrokeWidth itemTextColor ++styleable MaterialCardView android_checkable cardForegroundColor checkedIcon checkedIconMargin checkedIconSize checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth ++styleable MaterialCheckBox buttonTint useMaterialThemeColors ++styleable MaterialRadioButton buttonTint useMaterialThemeColors ++styleable MaterialShape shapeAppearance shapeAppearanceOverlay ++styleable MaterialTextAppearance android_letterSpacing android_lineHeight lineHeight ++styleable MaterialTextView android_textAppearance android_lineHeight lineHeight ++styleable MaterialTimePicker clockIcon keyboardIcon ++styleable MaterialToolbar navigationIconTint subtitleCentered titleCentered ++styleable MenuGroup android_enabled android_id android_visible android_menuCategory android_orderInCategory android_checkableBehavior ++styleable MenuItem android_icon android_enabled android_id android_checked android_visible android_menuCategory android_orderInCategory android_title android_titleCondensed android_alphabeticShortcut android_numericShortcut android_checkable android_onClick actionLayout actionProviderClass actionViewClass alphabeticModifiers contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText ++styleable MenuView android_windowAnimationStyle android_itemTextAppearance android_horizontalDivider android_verticalDivider android_headerBackground android_itemBackground android_itemIconDisabledAlpha preserveIconSpacing subMenuArrow ++styleable MockView mock_diagonalsColor mock_label mock_labelBackgroundColor mock_labelColor mock_showDiagonals mock_showLabel ++styleable Motion animate_relativeTo drawPath motionPathRotate motionStagger pathMotionArc transitionEasing ++styleable MotionHelper onHide onShow ++styleable MotionLayout applyMotionScene currentState layoutDescription motionDebug motionProgress showPaths ++styleable MotionScene defaultDuration layoutDuringTransition ++styleable MotionTelltales telltales_tailColor telltales_tailScale telltales_velocityMode ++styleable NavigationBarView backgroundTint elevation itemBackground itemIconSize itemIconTint itemRippleColor itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu ++styleable NavigationRailView headerLayout menuGravity ++styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconSize itemIconTint itemMaxLines itemShapeAppearance itemShapeAppearanceOverlay itemShapeFillColor itemShapeInsetBottom itemShapeInsetEnd itemShapeInsetStart itemShapeInsetTop itemTextAppearance itemTextColor menu shapeAppearance shapeAppearanceOverlay ++styleable OnClick clickAction targetId ++styleable OnSwipe dragDirection dragScale dragThreshold limitBoundsTo maxAcceleration maxVelocity moveWhenScrollAtTop nestedScrollFlags onTouchUp touchAnchorId touchAnchorSide touchRegionId ++styleable PopupWindow android_popupBackground android_popupAnimationStyle overlapAnchor ++styleable PopupWindowBackgroundState state_above_anchor ++styleable PropertySet android_visibility android_alpha layout_constraintTag motionProgress visibilityMode ++styleable RadialViewGroup materialCircleRadius ++styleable RangeSlider minSeparation values ++styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle ++styleable RecyclerView android_orientation android_clipToPadding android_descendantFocusability fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd ++styleable ScrimInsetsFrameLayout insetForeground ++styleable ScrollingViewBehavior_Layout behavior_overlapTop ++styleable SearchView android_focusable android_maxWidth android_inputType android_imeOptions closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon ++styleable ShapeAppearance cornerFamily cornerFamilyBottomLeft cornerFamilyBottomRight cornerFamilyTopLeft cornerFamilyTopRight cornerSize cornerSizeBottomLeft cornerSizeBottomRight cornerSizeTopLeft cornerSizeTopRight ++styleable ShapeableImageView contentPadding contentPaddingBottom contentPaddingEnd contentPaddingLeft contentPaddingRight contentPaddingStart contentPaddingTop shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth ++styleable Slider android_enabled android_value android_stepSize android_valueFrom android_valueTo haloColor haloRadius labelBehavior labelStyle thumbColor thumbElevation thumbRadius thumbStrokeColor thumbStrokeWidth tickColor tickColorActive tickColorInactive tickVisible trackColor trackColorActive trackColorInactive trackHeight ++styleable Snackbar snackbarButtonStyle snackbarStyle snackbarTextViewStyle ++styleable SnackbarLayout android_maxWidth actionTextColorAlpha animationMode backgroundOverlayColorAlpha backgroundTint backgroundTintMode elevation maxActionInlineWidth ++styleable Spinner android_entries android_popupBackground android_prompt android_dropDownWidth popupTheme ++styleable State android_id constraints ++styleable StateListDrawable android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration ++styleable StateListDrawableItem android_drawable ++styleable StateSet defaultState ++styleable SwitchCompat android_textOn android_textOff android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode ++styleable SwitchMaterial useMaterialThemeColors ++styleable TabItem android_icon android_layout android_text ++styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorAnimationMode tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple ++styleable TextAppearance android_textSize android_typeface android_textStyle android_textColor android_textColorHint android_textColorLink android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_fontFamily android_textFontWeight fontFamily fontVariationSettings textAllCaps textLocale ++styleable TextInputEditText textInputLayoutFocusedRectEnabled ++styleable TextInputLayout android_enabled android_textColorHint android_maxWidth android_minWidth android_hint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeErrorColor boxStrokeWidth boxStrokeWidthFocused counterEnabled counterMaxLength counterOverflowTextAppearance counterOverflowTextColor counterTextAppearance counterTextColor endIconCheckable endIconContentDescription endIconDrawable endIconMode endIconTint endIconTintMode errorContentDescription errorEnabled errorIconDrawable errorIconTint errorIconTintMode errorTextAppearance errorTextColor expandedHintEnabled helperText helperTextEnabled helperTextTextAppearance helperTextTextColor hintAnimationEnabled hintEnabled hintTextAppearance hintTextColor passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode placeholderText placeholderTextAppearance placeholderTextColor prefixText prefixTextAppearance prefixTextColor shapeAppearance shapeAppearanceOverlay startIconCheckable startIconContentDescription startIconDrawable startIconTint startIconTintMode suffixText suffixTextAppearance suffixTextColor ++styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance ++styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor ++styleable Tooltip android_textAppearance android_padding android_layout_margin android_minWidth android_minHeight android_text backgroundTint ++styleable Transform android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation ++styleable Transition android_id autoTransition constraintSetEnd constraintSetStart duration layoutDuringTransition motionInterpolator pathMotionArc staggered transitionDisable transitionFlags ++styleable Variant constraints region_heightLessThan region_heightMoreThan region_widthLessThan region_widthMoreThan ++styleable View android_theme android_focusable paddingEnd paddingStart theme ++styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode ++styleable ViewPager2 android_orientation ++styleable ViewStubCompat android_id android_layout android_inflatedId ++xml standalone_badge ++xml standalone_badge_gravity_bottom_end ++xml standalone_badge_gravity_bottom_start ++xml standalone_badge_gravity_top_start ++xml standalone_badge_offset +diff --git a/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/fullDebug/generateFullDebugRFile/package-aware-r.txt b/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/fullDebug/generateFullDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..b9e2254 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/fullDebug/generateFullDebugRFile/package-aware-r.txt +@@ -0,0 +1,2 @@ ++com.wix.detox ++string app_name +diff --git a/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/fullDebugAndroidTest/processFullDebugAndroidTestResources/package-aware-r.txt b/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/fullDebugAndroidTest/processFullDebugAndroidTestResources/package-aware-r.txt +new file mode 100644 +index 0000000..b5d43f4 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/intermediates/symbol_list_with_package_name/fullDebugAndroidTest/processFullDebugAndroidTestResources/package-aware-r.txt +@@ -0,0 +1,3280 @@ ++com.wix.detox.test ++anim abc_fade_in ++anim abc_fade_out ++anim abc_grow_fade_in_from_bottom ++anim abc_popup_enter ++anim abc_popup_exit ++anim abc_shrink_fade_out_from_bottom ++anim abc_slide_in_bottom ++anim abc_slide_in_top ++anim abc_slide_out_bottom ++anim abc_slide_out_top ++anim abc_tooltip_enter ++anim abc_tooltip_exit ++anim btn_checkbox_to_checked_box_inner_merged_animation ++anim btn_checkbox_to_checked_box_outer_merged_animation ++anim btn_checkbox_to_checked_icon_null_animation ++anim btn_checkbox_to_unchecked_box_inner_merged_animation ++anim btn_checkbox_to_unchecked_check_path_merged_animation ++anim btn_checkbox_to_unchecked_icon_null_animation ++anim btn_radio_to_off_mtrl_dot_group_animation ++anim btn_radio_to_off_mtrl_ring_outer_animation ++anim btn_radio_to_off_mtrl_ring_outer_path_animation ++anim btn_radio_to_on_mtrl_dot_group_animation ++anim btn_radio_to_on_mtrl_ring_outer_animation ++anim btn_radio_to_on_mtrl_ring_outer_path_animation ++anim design_bottom_sheet_slide_in ++anim design_bottom_sheet_slide_out ++anim design_snackbar_in ++anim design_snackbar_out ++anim fragment_fast_out_extra_slow_in ++anim mtrl_bottom_sheet_slide_in ++anim mtrl_bottom_sheet_slide_out ++anim mtrl_card_lowers_interpolator ++animator design_appbar_state_list_animator ++animator design_fab_hide_motion_spec ++animator design_fab_show_motion_spec ++animator fragment_close_enter ++animator fragment_close_exit ++animator fragment_fade_enter ++animator fragment_fade_exit ++animator fragment_open_enter ++animator fragment_open_exit ++animator linear_indeterminate_line1_head_interpolator ++animator linear_indeterminate_line1_tail_interpolator ++animator linear_indeterminate_line2_head_interpolator ++animator linear_indeterminate_line2_tail_interpolator ++animator mtrl_btn_state_list_anim ++animator mtrl_btn_unelevated_state_list_anim ++animator mtrl_card_state_list_anim ++animator mtrl_chip_state_list_anim ++animator mtrl_extended_fab_change_size_collapse_motion_spec ++animator mtrl_extended_fab_change_size_expand_motion_spec ++animator mtrl_extended_fab_hide_motion_spec ++animator mtrl_extended_fab_show_motion_spec ++animator mtrl_extended_fab_state_list_animator ++animator mtrl_fab_hide_motion_spec ++animator mtrl_fab_show_motion_spec ++animator mtrl_fab_transformation_sheet_collapse_spec ++animator mtrl_fab_transformation_sheet_expand_spec ++attr actionBarDivider ++attr actionBarItemBackground ++attr actionBarPopupTheme ++attr actionBarSize ++attr actionBarSplitStyle ++attr actionBarStyle ++attr actionBarTabBarStyle ++attr actionBarTabStyle ++attr actionBarTabTextStyle ++attr actionBarTheme ++attr actionBarWidgetTheme ++attr actionButtonStyle ++attr actionDropDownStyle ++attr actionLayout ++attr actionMenuTextAppearance ++attr actionMenuTextColor ++attr actionModeBackground ++attr actionModeCloseButtonStyle ++attr actionModeCloseContentDescription ++attr actionModeCloseDrawable ++attr actionModeCopyDrawable ++attr actionModeCutDrawable ++attr actionModeFindDrawable ++attr actionModePasteDrawable ++attr actionModePopupWindowStyle ++attr actionModeSelectAllDrawable ++attr actionModeShareDrawable ++attr actionModeSplitBackground ++attr actionModeStyle ++attr actionModeTheme ++attr actionModeWebSearchDrawable ++attr actionOverflowButtonStyle ++attr actionOverflowMenuStyle ++attr actionProviderClass ++attr actionTextColorAlpha ++attr actionViewClass ++attr activityChooserViewStyle ++attr alertDialogButtonGroupStyle ++attr alertDialogCenterButtons ++attr alertDialogStyle ++attr alertDialogTheme ++attr allowStacking ++attr alpha ++attr alphabeticModifiers ++attr altSrc ++attr animate_relativeTo ++attr animationMode ++attr appBarLayoutStyle ++attr applyMotionScene ++attr arcMode ++attr arrowHeadLength ++attr arrowShaftLength ++attr attributeName ++attr autoCompleteTextViewStyle ++attr autoSizeMaxTextSize ++attr autoSizeMinTextSize ++attr autoSizePresetSizes ++attr autoSizeStepGranularity ++attr autoSizeTextType ++attr autoTransition ++attr background ++attr backgroundColor ++attr backgroundInsetBottom ++attr backgroundInsetEnd ++attr backgroundInsetStart ++attr backgroundInsetTop ++attr backgroundOverlayColorAlpha ++attr backgroundSplit ++attr backgroundStacked ++attr backgroundTint ++attr backgroundTintMode ++attr badgeGravity ++attr badgeStyle ++attr badgeTextColor ++attr barLength ++attr barrierAllowsGoneWidgets ++attr barrierDirection ++attr barrierMargin ++attr behavior_autoHide ++attr behavior_autoShrink ++attr behavior_draggable ++attr behavior_expandedOffset ++attr behavior_fitToContents ++attr behavior_halfExpandedRatio ++attr behavior_hideable ++attr behavior_overlapTop ++attr behavior_peekHeight ++attr behavior_saveFlags ++attr behavior_skipCollapsed ++attr borderWidth ++attr borderlessButtonStyle ++attr bottomAppBarStyle ++attr bottomNavigationStyle ++attr bottomSheetDialogTheme ++attr bottomSheetStyle ++attr boxBackgroundColor ++attr boxBackgroundMode ++attr boxCollapsedPaddingTop ++attr boxCornerRadiusBottomEnd ++attr boxCornerRadiusBottomStart ++attr boxCornerRadiusTopEnd ++attr boxCornerRadiusTopStart ++attr boxStrokeColor ++attr boxStrokeErrorColor ++attr boxStrokeWidth ++attr boxStrokeWidthFocused ++attr brightness ++attr buttonBarButtonStyle ++attr buttonBarNegativeButtonStyle ++attr buttonBarNeutralButtonStyle ++attr buttonBarPositiveButtonStyle ++attr buttonBarStyle ++attr buttonCompat ++attr buttonGravity ++attr buttonIconDimen ++attr buttonPanelSideLayout ++attr buttonStyle ++attr buttonStyleSmall ++attr buttonTint ++attr buttonTintMode ++attr cardBackgroundColor ++attr cardCornerRadius ++attr cardElevation ++attr cardForegroundColor ++attr cardMaxElevation ++attr cardPreventCornerOverlap ++attr cardUseCompatPadding ++attr cardViewStyle ++attr chainUseRtl ++attr checkboxStyle ++attr checkedButton ++attr checkedChip ++attr checkedIcon ++attr checkedIconEnabled ++attr checkedIconMargin ++attr checkedIconSize ++attr checkedIconTint ++attr checkedIconVisible ++attr checkedTextViewStyle ++attr chipBackgroundColor ++attr chipCornerRadius ++attr chipEndPadding ++attr chipGroupStyle ++attr chipIcon ++attr chipIconEnabled ++attr chipIconSize ++attr chipIconTint ++attr chipIconVisible ++attr chipMinHeight ++attr chipMinTouchTargetSize ++attr chipSpacing ++attr chipSpacingHorizontal ++attr chipSpacingVertical ++attr chipStandaloneStyle ++attr chipStartPadding ++attr chipStrokeColor ++attr chipStrokeWidth ++attr chipStyle ++attr chipSurfaceColor ++attr circleRadius ++attr circularProgressIndicatorStyle ++attr clickAction ++attr clockFaceBackgroundColor ++attr clockHandColor ++attr clockIcon ++attr clockNumberTextColor ++attr closeIcon ++attr closeIconEnabled ++attr closeIconEndPadding ++attr closeIconSize ++attr closeIconStartPadding ++attr closeIconTint ++attr closeIconVisible ++attr closeItemLayout ++attr collapseContentDescription ++attr collapseIcon ++attr collapsedSize ++attr collapsedTitleGravity ++attr collapsedTitleTextAppearance ++attr collapsingToolbarLayoutStyle ++attr color ++attr colorAccent ++attr colorBackgroundFloating ++attr colorButtonNormal ++attr colorControlActivated ++attr colorControlHighlight ++attr colorControlNormal ++attr colorError ++attr colorOnBackground ++attr colorOnError ++attr colorOnPrimary ++attr colorOnPrimarySurface ++attr colorOnSecondary ++attr colorOnSurface ++attr colorPrimary ++attr colorPrimaryDark ++attr colorPrimarySurface ++attr colorPrimaryVariant ++attr colorSecondary ++attr colorSecondaryVariant ++attr colorSurface ++attr colorSwitchThumbNormal ++attr commitIcon ++attr constraintSet ++attr constraintSetEnd ++attr constraintSetStart ++attr constraint_referenced_ids ++attr constraints ++attr content ++attr contentDescription ++attr contentInsetEnd ++attr contentInsetEndWithActions ++attr contentInsetLeft ++attr contentInsetRight ++attr contentInsetStart ++attr contentInsetStartWithNavigation ++attr contentPadding ++attr contentPaddingBottom ++attr contentPaddingEnd ++attr contentPaddingLeft ++attr contentPaddingRight ++attr contentPaddingStart ++attr contentPaddingTop ++attr contentScrim ++attr contrast ++attr controlBackground ++attr coordinatorLayoutStyle ++attr cornerFamily ++attr cornerFamilyBottomLeft ++attr cornerFamilyBottomRight ++attr cornerFamilyTopLeft ++attr cornerFamilyTopRight ++attr cornerRadius ++attr cornerSize ++attr cornerSizeBottomLeft ++attr cornerSizeBottomRight ++attr cornerSizeTopLeft ++attr cornerSizeTopRight ++attr counterEnabled ++attr counterMaxLength ++attr counterOverflowTextAppearance ++attr counterOverflowTextColor ++attr counterTextAppearance ++attr counterTextColor ++attr crossfade ++attr currentState ++attr curveFit ++attr customBoolean ++attr customColorDrawableValue ++attr customColorValue ++attr customDimension ++attr customFloatValue ++attr customIntegerValue ++attr customNavigationLayout ++attr customPixelDimension ++attr customStringValue ++attr dayInvalidStyle ++attr daySelectedStyle ++attr dayStyle ++attr dayTodayStyle ++attr defaultDuration ++attr defaultQueryHint ++attr defaultState ++attr deltaPolarAngle ++attr deltaPolarRadius ++attr deriveConstraintsFrom ++attr dialogCornerRadius ++attr dialogPreferredPadding ++attr dialogTheme ++attr displayOptions ++attr divider ++attr dividerHorizontal ++attr dividerPadding ++attr dividerVertical ++attr dragDirection ++attr dragScale ++attr dragThreshold ++attr drawPath ++attr drawableBottomCompat ++attr drawableEndCompat ++attr drawableLeftCompat ++attr drawableRightCompat ++attr drawableSize ++attr drawableStartCompat ++attr drawableTint ++attr drawableTintMode ++attr drawableTopCompat ++attr drawerArrowStyle ++attr drawerLayoutStyle ++attr dropDownListViewStyle ++attr dropdownListPreferredItemHeight ++attr duration ++attr editTextBackground ++attr editTextColor ++attr editTextStyle ++attr elevation ++attr elevationOverlayColor ++attr elevationOverlayEnabled ++attr enableEdgeToEdge ++attr endIconCheckable ++attr endIconContentDescription ++attr endIconDrawable ++attr endIconMode ++attr endIconTint ++attr endIconTintMode ++attr enforceMaterialTheme ++attr enforceTextAppearance ++attr ensureMinTouchTargetSize ++attr errorContentDescription ++attr errorEnabled ++attr errorIconDrawable ++attr errorIconTint ++attr errorIconTintMode ++attr errorTextAppearance ++attr errorTextColor ++attr expandActivityOverflowButtonDrawable ++attr expanded ++attr expandedHintEnabled ++attr expandedTitleGravity ++attr expandedTitleMargin ++attr expandedTitleMarginBottom ++attr expandedTitleMarginEnd ++attr expandedTitleMarginStart ++attr expandedTitleMarginTop ++attr expandedTitleTextAppearance ++attr extendMotionSpec ++attr extendedFloatingActionButtonStyle ++attr extraMultilineHeightEnabled ++attr fabAlignmentMode ++attr fabAnimationMode ++attr fabCradleMargin ++attr fabCradleRoundedCornerRadius ++attr fabCradleVerticalOffset ++attr fabCustomSize ++attr fabSize ++attr fastScrollEnabled ++attr fastScrollHorizontalThumbDrawable ++attr fastScrollHorizontalTrackDrawable ++attr fastScrollVerticalThumbDrawable ++attr fastScrollVerticalTrackDrawable ++attr firstBaselineToTopHeight ++attr floatingActionButtonStyle ++attr flow_firstHorizontalBias ++attr flow_firstHorizontalStyle ++attr flow_firstVerticalBias ++attr flow_firstVerticalStyle ++attr flow_horizontalAlign ++attr flow_horizontalBias ++attr flow_horizontalGap ++attr flow_horizontalStyle ++attr flow_lastHorizontalBias ++attr flow_lastHorizontalStyle ++attr flow_lastVerticalBias ++attr flow_lastVerticalStyle ++attr flow_maxElementsWrap ++attr flow_padding ++attr flow_verticalAlign ++attr flow_verticalBias ++attr flow_verticalGap ++attr flow_verticalStyle ++attr flow_wrapMode ++attr font ++attr fontFamily ++attr fontProviderAuthority ++attr fontProviderCerts ++attr fontProviderFetchStrategy ++attr fontProviderFetchTimeout ++attr fontProviderPackage ++attr fontProviderQuery ++attr fontProviderSystemFontFamily ++attr fontStyle ++attr fontVariationSettings ++attr fontWeight ++attr forceApplySystemWindowInsetTop ++attr foregroundInsidePadding ++attr framePosition ++attr gapBetweenBars ++attr gestureInsetBottomIgnored ++attr goIcon ++attr haloColor ++attr haloRadius ++attr headerLayout ++attr height ++attr helperText ++attr helperTextEnabled ++attr helperTextTextAppearance ++attr helperTextTextColor ++attr hideAnimationBehavior ++attr hideMotionSpec ++attr hideOnContentScroll ++attr hideOnScroll ++attr hintAnimationEnabled ++attr hintEnabled ++attr hintTextAppearance ++attr hintTextColor ++attr homeAsUpIndicator ++attr homeLayout ++attr horizontalOffset ++attr hoveredFocusedTranslationZ ++attr icon ++attr iconEndPadding ++attr iconGravity ++attr iconPadding ++attr iconSize ++attr iconStartPadding ++attr iconTint ++attr iconTintMode ++attr iconifiedByDefault ++attr imageButtonStyle ++attr indeterminateAnimationType ++attr indeterminateProgressStyle ++attr indicatorColor ++attr indicatorDirectionCircular ++attr indicatorDirectionLinear ++attr indicatorInset ++attr indicatorSize ++attr initialActivityCount ++attr insetForeground ++attr isLightTheme ++attr isMaterialTheme ++attr itemBackground ++attr itemFillColor ++attr itemHorizontalPadding ++attr itemHorizontalTranslationEnabled ++attr itemIconPadding ++attr itemIconSize ++attr itemIconTint ++attr itemMaxLines ++attr itemPadding ++attr itemRippleColor ++attr itemShapeAppearance ++attr itemShapeAppearanceOverlay ++attr itemShapeFillColor ++attr itemShapeInsetBottom ++attr itemShapeInsetEnd ++attr itemShapeInsetStart ++attr itemShapeInsetTop ++attr itemSpacing ++attr itemStrokeColor ++attr itemStrokeWidth ++attr itemTextAppearance ++attr itemTextAppearanceActive ++attr itemTextAppearanceInactive ++attr itemTextColor ++attr keyPositionType ++attr keyboardIcon ++attr keylines ++attr lStar ++attr labelBehavior ++attr labelStyle ++attr labelVisibilityMode ++attr lastBaselineToBottomHeight ++attr layout ++attr layoutDescription ++attr layoutDuringTransition ++attr layoutManager ++attr layout_anchor ++attr layout_anchorGravity ++attr layout_behavior ++attr layout_collapseMode ++attr layout_collapseParallaxMultiplier ++attr layout_constrainedHeight ++attr layout_constrainedWidth ++attr layout_constraintBaseline_creator ++attr layout_constraintBaseline_toBaselineOf ++attr layout_constraintBottom_creator ++attr layout_constraintBottom_toBottomOf ++attr layout_constraintBottom_toTopOf ++attr layout_constraintCircle ++attr layout_constraintCircleAngle ++attr layout_constraintCircleRadius ++attr layout_constraintDimensionRatio ++attr layout_constraintEnd_toEndOf ++attr layout_constraintEnd_toStartOf ++attr layout_constraintGuide_begin ++attr layout_constraintGuide_end ++attr layout_constraintGuide_percent ++attr layout_constraintHeight_default ++attr layout_constraintHeight_max ++attr layout_constraintHeight_min ++attr layout_constraintHeight_percent ++attr layout_constraintHorizontal_bias ++attr layout_constraintHorizontal_chainStyle ++attr layout_constraintHorizontal_weight ++attr layout_constraintLeft_creator ++attr layout_constraintLeft_toLeftOf ++attr layout_constraintLeft_toRightOf ++attr layout_constraintRight_creator ++attr layout_constraintRight_toLeftOf ++attr layout_constraintRight_toRightOf ++attr layout_constraintStart_toEndOf ++attr layout_constraintStart_toStartOf ++attr layout_constraintTag ++attr layout_constraintTop_creator ++attr layout_constraintTop_toBottomOf ++attr layout_constraintTop_toTopOf ++attr layout_constraintVertical_bias ++attr layout_constraintVertical_chainStyle ++attr layout_constraintVertical_weight ++attr layout_constraintWidth_default ++attr layout_constraintWidth_max ++attr layout_constraintWidth_min ++attr layout_constraintWidth_percent ++attr layout_dodgeInsetEdges ++attr layout_editor_absoluteX ++attr layout_editor_absoluteY ++attr layout_goneMarginBottom ++attr layout_goneMarginEnd ++attr layout_goneMarginLeft ++attr layout_goneMarginRight ++attr layout_goneMarginStart ++attr layout_goneMarginTop ++attr layout_insetEdge ++attr layout_keyline ++attr layout_optimizationLevel ++attr layout_scrollFlags ++attr layout_scrollInterpolator ++attr liftOnScroll ++attr liftOnScrollTargetViewId ++attr limitBoundsTo ++attr lineHeight ++attr lineSpacing ++attr linearProgressIndicatorStyle ++attr listChoiceBackgroundIndicator ++attr listChoiceIndicatorMultipleAnimated ++attr listChoiceIndicatorSingleAnimated ++attr listDividerAlertDialog ++attr listItemLayout ++attr listLayout ++attr listMenuViewStyle ++attr listPopupWindowStyle ++attr listPreferredItemHeight ++attr listPreferredItemHeightLarge ++attr listPreferredItemHeightSmall ++attr listPreferredItemPaddingEnd ++attr listPreferredItemPaddingLeft ++attr listPreferredItemPaddingRight ++attr listPreferredItemPaddingStart ++attr logo ++attr logoDescription ++attr materialAlertDialogBodyTextStyle ++attr materialAlertDialogTheme ++attr materialAlertDialogTitleIconStyle ++attr materialAlertDialogTitlePanelStyle ++attr materialAlertDialogTitleTextStyle ++attr materialButtonOutlinedStyle ++attr materialButtonStyle ++attr materialButtonToggleGroupStyle ++attr materialCalendarDay ++attr materialCalendarFullscreenTheme ++attr materialCalendarHeaderCancelButton ++attr materialCalendarHeaderConfirmButton ++attr materialCalendarHeaderDivider ++attr materialCalendarHeaderLayout ++attr materialCalendarHeaderSelection ++attr materialCalendarHeaderTitle ++attr materialCalendarHeaderToggleButton ++attr materialCalendarMonth ++attr materialCalendarMonthNavigationButton ++attr materialCalendarStyle ++attr materialCalendarTheme ++attr materialCalendarYearNavigationButton ++attr materialCardViewStyle ++attr materialCircleRadius ++attr materialClockStyle ++attr materialThemeOverlay ++attr materialTimePickerStyle ++attr materialTimePickerTheme ++attr maxAcceleration ++attr maxActionInlineWidth ++attr maxButtonHeight ++attr maxCharacterCount ++attr maxHeight ++attr maxImageSize ++attr maxLines ++attr maxVelocity ++attr maxWidth ++attr measureWithLargestChild ++attr menu ++attr menuGravity ++attr minHeight ++attr minHideDelay ++attr minSeparation ++attr minTouchTargetSize ++attr minWidth ++attr mock_diagonalsColor ++attr mock_label ++attr mock_labelBackgroundColor ++attr mock_labelColor ++attr mock_showDiagonals ++attr mock_showLabel ++attr motionDebug ++attr motionDurationLong1 ++attr motionDurationLong2 ++attr motionDurationMedium1 ++attr motionDurationMedium2 ++attr motionDurationShort1 ++attr motionDurationShort2 ++attr motionEasingAccelerated ++attr motionEasingDecelerated ++attr motionEasingEmphasized ++attr motionEasingLinear ++attr motionEasingStandard ++attr motionInterpolator ++attr motionPath ++attr motionPathRotate ++attr motionProgress ++attr motionStagger ++attr motionTarget ++attr motion_postLayoutCollision ++attr motion_triggerOnCollision ++attr moveWhenScrollAtTop ++attr multiChoiceItemLayout ++attr navigationContentDescription ++attr navigationIcon ++attr navigationIconTint ++attr navigationMode ++attr navigationRailStyle ++attr navigationViewStyle ++attr nestedScrollFlags ++attr nestedScrollViewStyle ++attr nestedScrollable ++attr number ++attr numericModifiers ++attr onCross ++attr onHide ++attr onNegativeCross ++attr onPositiveCross ++attr onShow ++attr onTouchUp ++attr overlapAnchor ++attr overlay ++attr paddingBottomNoButtons ++attr paddingBottomSystemWindowInsets ++attr paddingEnd ++attr paddingLeftSystemWindowInsets ++attr paddingRightSystemWindowInsets ++attr paddingStart ++attr paddingTopNoTitle ++attr paddingTopSystemWindowInsets ++attr panelBackground ++attr panelMenuListTheme ++attr panelMenuListWidth ++attr passwordToggleContentDescription ++attr passwordToggleDrawable ++attr passwordToggleEnabled ++attr passwordToggleTint ++attr passwordToggleTintMode ++attr pathMotionArc ++attr path_percent ++attr percentHeight ++attr percentWidth ++attr percentX ++attr percentY ++attr perpendicularPath_percent ++attr pivotAnchor ++attr placeholderText ++attr placeholderTextAppearance ++attr placeholderTextColor ++attr placeholder_emptyVisibility ++attr popupMenuBackground ++attr popupMenuStyle ++attr popupTheme ++attr popupWindowStyle ++attr prefixText ++attr prefixTextAppearance ++attr prefixTextColor ++attr preserveIconSpacing ++attr pressedTranslationZ ++attr progressBarPadding ++attr progressBarStyle ++attr queryBackground ++attr queryHint ++attr queryPatterns ++attr radioButtonStyle ++attr rangeFillColor ++attr ratingBarStyle ++attr ratingBarStyleIndicator ++attr ratingBarStyleSmall ++attr recyclerViewStyle ++attr region_heightLessThan ++attr region_heightMoreThan ++attr region_widthLessThan ++attr region_widthMoreThan ++attr reverseLayout ++attr rippleColor ++attr round ++attr roundPercent ++attr saturation ++attr scrimAnimationDuration ++attr scrimBackground ++attr scrimVisibleHeightTrigger ++attr searchHintIcon ++attr searchIcon ++attr searchViewStyle ++attr seekBarStyle ++attr selectableItemBackground ++attr selectableItemBackgroundBorderless ++attr selectionRequired ++attr selectorSize ++attr shapeAppearance ++attr shapeAppearanceLargeComponent ++attr shapeAppearanceMediumComponent ++attr shapeAppearanceOverlay ++attr shapeAppearanceSmallComponent ++attr shortcutMatchRequired ++attr showAnimationBehavior ++attr showAsAction ++attr showDelay ++attr showDividers ++attr showMotionSpec ++attr showPaths ++attr showText ++attr showTitle ++attr shrinkMotionSpec ++attr singleChoiceItemLayout ++attr singleLine ++attr singleSelection ++attr sizePercent ++attr sliderStyle ++attr snackbarButtonStyle ++attr snackbarStyle ++attr snackbarTextViewStyle ++attr spanCount ++attr spinBars ++attr spinnerDropDownItemStyle ++attr spinnerStyle ++attr splitTrack ++attr srcCompat ++attr stackFromEnd ++attr staggered ++attr startIconCheckable ++attr startIconContentDescription ++attr startIconDrawable ++attr startIconTint ++attr startIconTintMode ++attr state_above_anchor ++attr state_collapsed ++attr state_collapsible ++attr state_dragged ++attr state_liftable ++attr state_lifted ++attr statusBarBackground ++attr statusBarForeground ++attr statusBarScrim ++attr strokeColor ++attr strokeWidth ++attr subMenuArrow ++attr submitBackground ++attr subtitle ++attr subtitleCentered ++attr subtitleTextAppearance ++attr subtitleTextColor ++attr subtitleTextStyle ++attr suffixText ++attr suffixTextAppearance ++attr suffixTextColor ++attr suggestionRowLayout ++attr switchMinWidth ++attr switchPadding ++attr switchStyle ++attr switchTextAppearance ++attr tabBackground ++attr tabContentStart ++attr tabGravity ++attr tabIconTint ++attr tabIconTintMode ++attr tabIndicator ++attr tabIndicatorAnimationDuration ++attr tabIndicatorAnimationMode ++attr tabIndicatorColor ++attr tabIndicatorFullWidth ++attr tabIndicatorGravity ++attr tabIndicatorHeight ++attr tabInlineLabel ++attr tabMaxWidth ++attr tabMinWidth ++attr tabMode ++attr tabPadding ++attr tabPaddingBottom ++attr tabPaddingEnd ++attr tabPaddingStart ++attr tabPaddingTop ++attr tabRippleColor ++attr tabSelectedTextColor ++attr tabStyle ++attr tabTextAppearance ++attr tabTextColor ++attr tabUnboundedRipple ++attr targetId ++attr telltales_tailColor ++attr telltales_tailScale ++attr telltales_velocityMode ++attr textAllCaps ++attr textAppearanceBody1 ++attr textAppearanceBody2 ++attr textAppearanceButton ++attr textAppearanceCaption ++attr textAppearanceHeadline1 ++attr textAppearanceHeadline2 ++attr textAppearanceHeadline3 ++attr textAppearanceHeadline4 ++attr textAppearanceHeadline5 ++attr textAppearanceHeadline6 ++attr textAppearanceLargePopupMenu ++attr textAppearanceLineHeightEnabled ++attr textAppearanceListItem ++attr textAppearanceListItemSecondary ++attr textAppearanceListItemSmall ++attr textAppearanceOverline ++attr textAppearancePopupMenuHeader ++attr textAppearanceSearchResultSubtitle ++attr textAppearanceSearchResultTitle ++attr textAppearanceSmallPopupMenu ++attr textAppearanceSubtitle1 ++attr textAppearanceSubtitle2 ++attr textColorAlertDialogListItem ++attr textColorSearchUrl ++attr textEndPadding ++attr textInputLayoutFocusedRectEnabled ++attr textInputStyle ++attr textLocale ++attr textStartPadding ++attr theme ++attr themeLineHeight ++attr thickness ++attr thumbColor ++attr thumbElevation ++attr thumbRadius ++attr thumbStrokeColor ++attr thumbStrokeWidth ++attr thumbTextPadding ++attr thumbTint ++attr thumbTintMode ++attr tickColor ++attr tickColorActive ++attr tickColorInactive ++attr tickMark ++attr tickMarkTint ++attr tickMarkTintMode ++attr tickVisible ++attr tint ++attr tintMode ++attr title ++attr titleCentered ++attr titleCollapseMode ++attr titleEnabled ++attr titleMargin ++attr titleMarginBottom ++attr titleMarginEnd ++attr titleMarginStart ++attr titleMarginTop ++attr titleMargins ++attr titleTextAppearance ++attr titleTextColor ++attr titleTextStyle ++attr toolbarId ++attr toolbarNavigationButtonStyle ++attr toolbarStyle ++attr tooltipForegroundColor ++attr tooltipFrameBackground ++attr tooltipStyle ++attr tooltipText ++attr touchAnchorId ++attr touchAnchorSide ++attr touchRegionId ++attr track ++attr trackColor ++attr trackColorActive ++attr trackColorInactive ++attr trackCornerRadius ++attr trackHeight ++attr trackThickness ++attr trackTint ++attr trackTintMode ++attr transitionDisable ++attr transitionEasing ++attr transitionFlags ++attr transitionPathRotate ++attr transitionShapeAppearance ++attr triggerId ++attr triggerReceiver ++attr triggerSlack ++attr ttcIndex ++attr useCompatPadding ++attr useMaterialThemeColors ++attr values ++attr verticalOffset ++attr viewInflaterClass ++attr visibilityMode ++attr voiceIcon ++attr warmth ++attr waveDecay ++attr waveOffset ++attr wavePeriod ++attr waveShape ++attr waveVariesBy ++attr windowActionBar ++attr windowActionBarOverlay ++attr windowActionModeOverlay ++attr windowFixedHeightMajor ++attr windowFixedHeightMinor ++attr windowFixedWidthMajor ++attr windowFixedWidthMinor ++attr windowMinWidthMajor ++attr windowMinWidthMinor ++attr windowNoTitle ++attr yearSelectedStyle ++attr yearStyle ++attr yearTodayStyle ++bool abc_action_bar_embed_tabs ++bool abc_config_actionMenuItemAllCaps ++bool mtrl_btn_textappearance_all_caps ++color abc_background_cache_hint_selector_material_dark ++color abc_background_cache_hint_selector_material_light ++color abc_btn_colored_borderless_text_material ++color abc_btn_colored_text_material ++color abc_color_highlight_material ++color abc_decor_view_status_guard ++color abc_decor_view_status_guard_light ++color abc_hint_foreground_material_dark ++color abc_hint_foreground_material_light ++color abc_primary_text_disable_only_material_dark ++color abc_primary_text_disable_only_material_light ++color abc_primary_text_material_dark ++color abc_primary_text_material_light ++color abc_search_url_text ++color abc_search_url_text_normal ++color abc_search_url_text_pressed ++color abc_search_url_text_selected ++color abc_secondary_text_material_dark ++color abc_secondary_text_material_light ++color abc_tint_btn_checkable ++color abc_tint_default ++color abc_tint_edittext ++color abc_tint_seek_thumb ++color abc_tint_spinner ++color abc_tint_switch_track ++color accent_material_dark ++color accent_material_light ++color androidx_core_ripple_material_light ++color androidx_core_secondary_text_default_material_light ++color background_floating_material_dark ++color background_floating_material_light ++color background_material_dark ++color background_material_light ++color bright_foreground_disabled_material_dark ++color bright_foreground_disabled_material_light ++color bright_foreground_inverse_material_dark ++color bright_foreground_inverse_material_light ++color bright_foreground_material_dark ++color bright_foreground_material_light ++color button_material_dark ++color button_material_light ++color cardview_dark_background ++color cardview_light_background ++color cardview_shadow_end_color ++color cardview_shadow_start_color ++color checkbox_themeable_attribute_color ++color design_bottom_navigation_shadow_color ++color design_box_stroke_color ++color design_dark_default_color_background ++color design_dark_default_color_error ++color design_dark_default_color_on_background ++color design_dark_default_color_on_error ++color design_dark_default_color_on_primary ++color design_dark_default_color_on_secondary ++color design_dark_default_color_on_surface ++color design_dark_default_color_primary ++color design_dark_default_color_primary_dark ++color design_dark_default_color_primary_variant ++color design_dark_default_color_secondary ++color design_dark_default_color_secondary_variant ++color design_dark_default_color_surface ++color design_default_color_background ++color design_default_color_error ++color design_default_color_on_background ++color design_default_color_on_error ++color design_default_color_on_primary ++color design_default_color_on_secondary ++color design_default_color_on_surface ++color design_default_color_primary ++color design_default_color_primary_dark ++color design_default_color_primary_variant ++color design_default_color_secondary ++color design_default_color_secondary_variant ++color design_default_color_surface ++color design_error ++color design_fab_shadow_end_color ++color design_fab_shadow_mid_color ++color design_fab_shadow_start_color ++color design_fab_stroke_end_inner_color ++color design_fab_stroke_end_outer_color ++color design_fab_stroke_top_inner_color ++color design_fab_stroke_top_outer_color ++color design_icon_tint ++color design_snackbar_background_color ++color dim_foreground_disabled_material_dark ++color dim_foreground_disabled_material_light ++color dim_foreground_material_dark ++color dim_foreground_material_light ++color error_color_material_dark ++color error_color_material_light ++color foreground_material_dark ++color foreground_material_light ++color highlighted_text_material_dark ++color highlighted_text_material_light ++color material_blue_grey_800 ++color material_blue_grey_900 ++color material_blue_grey_950 ++color material_cursor_color ++color material_deep_teal_200 ++color material_deep_teal_500 ++color material_grey_100 ++color material_grey_300 ++color material_grey_50 ++color material_grey_600 ++color material_grey_800 ++color material_grey_850 ++color material_grey_900 ++color material_on_background_disabled ++color material_on_background_emphasis_high_type ++color material_on_background_emphasis_medium ++color material_on_primary_disabled ++color material_on_primary_emphasis_high_type ++color material_on_primary_emphasis_medium ++color material_on_surface_disabled ++color material_on_surface_emphasis_high_type ++color material_on_surface_emphasis_medium ++color material_on_surface_stroke ++color material_slider_active_tick_marks_color ++color material_slider_active_track_color ++color material_slider_halo_color ++color material_slider_inactive_tick_marks_color ++color material_slider_inactive_track_color ++color material_slider_thumb_color ++color material_timepicker_button_background ++color material_timepicker_button_stroke ++color material_timepicker_clock_text_color ++color material_timepicker_clockface ++color material_timepicker_modebutton_tint ++color mtrl_btn_bg_color_selector ++color mtrl_btn_ripple_color ++color mtrl_btn_stroke_color_selector ++color mtrl_btn_text_btn_bg_color_selector ++color mtrl_btn_text_btn_ripple_color ++color mtrl_btn_text_color_disabled ++color mtrl_btn_text_color_selector ++color mtrl_btn_transparent_bg_color ++color mtrl_calendar_item_stroke_color ++color mtrl_calendar_selected_range ++color mtrl_card_view_foreground ++color mtrl_card_view_ripple ++color mtrl_chip_background_color ++color mtrl_chip_close_icon_tint ++color mtrl_chip_surface_color ++color mtrl_chip_text_color ++color mtrl_choice_chip_background_color ++color mtrl_choice_chip_ripple_color ++color mtrl_choice_chip_text_color ++color mtrl_error ++color mtrl_fab_bg_color_selector ++color mtrl_fab_icon_text_color_selector ++color mtrl_fab_ripple_color ++color mtrl_filled_background_color ++color mtrl_filled_icon_tint ++color mtrl_filled_stroke_color ++color mtrl_indicator_text_color ++color mtrl_navigation_bar_colored_item_tint ++color mtrl_navigation_bar_colored_ripple_color ++color mtrl_navigation_bar_item_tint ++color mtrl_navigation_bar_ripple_color ++color mtrl_navigation_item_background_color ++color mtrl_navigation_item_icon_tint ++color mtrl_navigation_item_text_color ++color mtrl_on_primary_text_btn_text_color_selector ++color mtrl_on_surface_ripple_color ++color mtrl_outlined_icon_tint ++color mtrl_outlined_stroke_color ++color mtrl_popupmenu_overlay_color ++color mtrl_scrim_color ++color mtrl_tabs_colored_ripple_color ++color mtrl_tabs_icon_color_selector ++color mtrl_tabs_icon_color_selector_colored ++color mtrl_tabs_legacy_text_color_selector ++color mtrl_tabs_ripple_color ++color mtrl_text_btn_text_color_selector ++color mtrl_textinput_default_box_stroke_color ++color mtrl_textinput_disabled_color ++color mtrl_textinput_filled_box_default_background_color ++color mtrl_textinput_focused_box_stroke_color ++color mtrl_textinput_hovered_box_stroke_color ++color notification_action_color_filter ++color notification_icon_bg_color ++color primary_dark_material_dark ++color primary_dark_material_light ++color primary_material_dark ++color primary_material_light ++color primary_text_default_material_dark ++color primary_text_default_material_light ++color primary_text_disabled_material_dark ++color primary_text_disabled_material_light ++color radiobutton_themeable_attribute_color ++color ripple_material_dark ++color ripple_material_light ++color secondary_text_default_material_dark ++color secondary_text_default_material_light ++color secondary_text_disabled_material_dark ++color secondary_text_disabled_material_light ++color switch_thumb_disabled_material_dark ++color switch_thumb_disabled_material_light ++color switch_thumb_material_dark ++color switch_thumb_material_light ++color switch_thumb_normal_material_dark ++color switch_thumb_normal_material_light ++color test_mtrl_calendar_day ++color test_mtrl_calendar_day_selected ++color tooltip_background_dark ++color tooltip_background_light ++dimen abc_action_bar_content_inset_material ++dimen abc_action_bar_content_inset_with_nav ++dimen abc_action_bar_default_height_material ++dimen abc_action_bar_default_padding_end_material ++dimen abc_action_bar_default_padding_start_material ++dimen abc_action_bar_elevation_material ++dimen abc_action_bar_icon_vertical_padding_material ++dimen abc_action_bar_overflow_padding_end_material ++dimen abc_action_bar_overflow_padding_start_material ++dimen abc_action_bar_stacked_max_height ++dimen abc_action_bar_stacked_tab_max_width ++dimen abc_action_bar_subtitle_bottom_margin_material ++dimen abc_action_bar_subtitle_top_margin_material ++dimen abc_action_button_min_height_material ++dimen abc_action_button_min_width_material ++dimen abc_action_button_min_width_overflow_material ++dimen abc_alert_dialog_button_bar_height ++dimen abc_alert_dialog_button_dimen ++dimen abc_button_inset_horizontal_material ++dimen abc_button_inset_vertical_material ++dimen abc_button_padding_horizontal_material ++dimen abc_button_padding_vertical_material ++dimen abc_cascading_menus_min_smallest_width ++dimen abc_config_prefDialogWidth ++dimen abc_control_corner_material ++dimen abc_control_inset_material ++dimen abc_control_padding_material ++dimen abc_dialog_corner_radius_material ++dimen abc_dialog_fixed_height_major ++dimen abc_dialog_fixed_height_minor ++dimen abc_dialog_fixed_width_major ++dimen abc_dialog_fixed_width_minor ++dimen abc_dialog_list_padding_bottom_no_buttons ++dimen abc_dialog_list_padding_top_no_title ++dimen abc_dialog_min_width_major ++dimen abc_dialog_min_width_minor ++dimen abc_dialog_padding_material ++dimen abc_dialog_padding_top_material ++dimen abc_dialog_title_divider_material ++dimen abc_disabled_alpha_material_dark ++dimen abc_disabled_alpha_material_light ++dimen abc_dropdownitem_icon_width ++dimen abc_dropdownitem_text_padding_left ++dimen abc_dropdownitem_text_padding_right ++dimen abc_edit_text_inset_bottom_material ++dimen abc_edit_text_inset_horizontal_material ++dimen abc_edit_text_inset_top_material ++dimen abc_floating_window_z ++dimen abc_list_item_height_large_material ++dimen abc_list_item_height_material ++dimen abc_list_item_height_small_material ++dimen abc_list_item_padding_horizontal_material ++dimen abc_panel_menu_list_width ++dimen abc_progress_bar_height_material ++dimen abc_search_view_preferred_height ++dimen abc_search_view_preferred_width ++dimen abc_seekbar_track_background_height_material ++dimen abc_seekbar_track_progress_height_material ++dimen abc_select_dialog_padding_start_material ++dimen abc_star_big ++dimen abc_star_medium ++dimen abc_star_small ++dimen abc_switch_padding ++dimen abc_text_size_body_1_material ++dimen abc_text_size_body_2_material ++dimen abc_text_size_button_material ++dimen abc_text_size_caption_material ++dimen abc_text_size_display_1_material ++dimen abc_text_size_display_2_material ++dimen abc_text_size_display_3_material ++dimen abc_text_size_display_4_material ++dimen abc_text_size_headline_material ++dimen abc_text_size_large_material ++dimen abc_text_size_medium_material ++dimen abc_text_size_menu_header_material ++dimen abc_text_size_menu_material ++dimen abc_text_size_small_material ++dimen abc_text_size_subhead_material ++dimen abc_text_size_subtitle_material_toolbar ++dimen abc_text_size_title_material ++dimen abc_text_size_title_material_toolbar ++dimen action_bar_size ++dimen appcompat_dialog_background_inset ++dimen cardview_compat_inset_shadow ++dimen cardview_default_elevation ++dimen cardview_default_radius ++dimen clock_face_margin_start ++dimen compat_button_inset_horizontal_material ++dimen compat_button_inset_vertical_material ++dimen compat_button_padding_horizontal_material ++dimen compat_button_padding_vertical_material ++dimen compat_control_corner_material ++dimen compat_notification_large_icon_max_height ++dimen compat_notification_large_icon_max_width ++dimen def_drawer_elevation ++dimen default_dimension ++dimen design_appbar_elevation ++dimen design_bottom_navigation_active_item_max_width ++dimen design_bottom_navigation_active_item_min_width ++dimen design_bottom_navigation_active_text_size ++dimen design_bottom_navigation_elevation ++dimen design_bottom_navigation_height ++dimen design_bottom_navigation_icon_size ++dimen design_bottom_navigation_item_max_width ++dimen design_bottom_navigation_item_min_width ++dimen design_bottom_navigation_label_padding ++dimen design_bottom_navigation_margin ++dimen design_bottom_navigation_shadow_height ++dimen design_bottom_navigation_text_size ++dimen design_bottom_sheet_elevation ++dimen design_bottom_sheet_modal_elevation ++dimen design_bottom_sheet_peek_height_min ++dimen design_fab_border_width ++dimen design_fab_elevation ++dimen design_fab_image_size ++dimen design_fab_size_mini ++dimen design_fab_size_normal ++dimen design_fab_translation_z_hovered_focused ++dimen design_fab_translation_z_pressed ++dimen design_navigation_elevation ++dimen design_navigation_icon_padding ++dimen design_navigation_icon_size ++dimen design_navigation_item_horizontal_padding ++dimen design_navigation_item_icon_padding ++dimen design_navigation_max_width ++dimen design_navigation_padding_bottom ++dimen design_navigation_separator_vertical_padding ++dimen design_snackbar_action_inline_max_width ++dimen design_snackbar_action_text_color_alpha ++dimen design_snackbar_background_corner_radius ++dimen design_snackbar_elevation ++dimen design_snackbar_extra_spacing_horizontal ++dimen design_snackbar_max_width ++dimen design_snackbar_min_width ++dimen design_snackbar_padding_horizontal ++dimen design_snackbar_padding_vertical ++dimen design_snackbar_padding_vertical_2lines ++dimen design_snackbar_text_size ++dimen design_tab_max_width ++dimen design_tab_scrollable_min_width ++dimen design_tab_text_size ++dimen design_tab_text_size_2line ++dimen design_textinput_caption_translate_y ++dimen disabled_alpha_material_dark ++dimen disabled_alpha_material_light ++dimen fastscroll_default_thickness ++dimen fastscroll_margin ++dimen fastscroll_minimum_range ++dimen highlight_alpha_material_colored ++dimen highlight_alpha_material_dark ++dimen highlight_alpha_material_light ++dimen hint_alpha_material_dark ++dimen hint_alpha_material_light ++dimen hint_pressed_alpha_material_dark ++dimen hint_pressed_alpha_material_light ++dimen item_touch_helper_max_drag_scroll_per_frame ++dimen item_touch_helper_swipe_escape_max_velocity ++dimen item_touch_helper_swipe_escape_velocity ++dimen material_bottom_sheet_max_width ++dimen material_clock_display_padding ++dimen material_clock_face_margin_top ++dimen material_clock_hand_center_dot_radius ++dimen material_clock_hand_padding ++dimen material_clock_hand_stroke_width ++dimen material_clock_number_text_size ++dimen material_clock_period_toggle_height ++dimen material_clock_period_toggle_margin_left ++dimen material_clock_period_toggle_width ++dimen material_clock_size ++dimen material_cursor_inset_bottom ++dimen material_cursor_inset_top ++dimen material_cursor_width ++dimen material_emphasis_disabled ++dimen material_emphasis_high_type ++dimen material_emphasis_medium ++dimen material_filled_edittext_font_1_3_padding_bottom ++dimen material_filled_edittext_font_1_3_padding_top ++dimen material_filled_edittext_font_2_0_padding_bottom ++dimen material_filled_edittext_font_2_0_padding_top ++dimen material_font_1_3_box_collapsed_padding_top ++dimen material_font_2_0_box_collapsed_padding_top ++dimen material_helper_text_default_padding_top ++dimen material_helper_text_font_1_3_padding_horizontal ++dimen material_helper_text_font_1_3_padding_top ++dimen material_input_text_to_prefix_suffix_padding ++dimen material_text_view_test_line_height ++dimen material_text_view_test_line_height_override ++dimen material_textinput_default_width ++dimen material_textinput_max_width ++dimen material_textinput_min_width ++dimen material_time_picker_minimum_screen_height ++dimen material_time_picker_minimum_screen_width ++dimen material_timepicker_dialog_buttons_margin_top ++dimen mtrl_alert_dialog_background_inset_bottom ++dimen mtrl_alert_dialog_background_inset_end ++dimen mtrl_alert_dialog_background_inset_start ++dimen mtrl_alert_dialog_background_inset_top ++dimen mtrl_alert_dialog_picker_background_inset ++dimen mtrl_badge_horizontal_edge_offset ++dimen mtrl_badge_long_text_horizontal_padding ++dimen mtrl_badge_radius ++dimen mtrl_badge_text_horizontal_edge_offset ++dimen mtrl_badge_text_size ++dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset ++dimen mtrl_badge_toolbar_action_menu_item_vertical_offset ++dimen mtrl_badge_with_text_radius ++dimen mtrl_bottomappbar_fabOffsetEndMode ++dimen mtrl_bottomappbar_fab_bottom_margin ++dimen mtrl_bottomappbar_fab_cradle_margin ++dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius ++dimen mtrl_bottomappbar_fab_cradle_vertical_offset ++dimen mtrl_bottomappbar_height ++dimen mtrl_btn_corner_radius ++dimen mtrl_btn_dialog_btn_min_width ++dimen mtrl_btn_disabled_elevation ++dimen mtrl_btn_disabled_z ++dimen mtrl_btn_elevation ++dimen mtrl_btn_focused_z ++dimen mtrl_btn_hovered_z ++dimen mtrl_btn_icon_btn_padding_left ++dimen mtrl_btn_icon_padding ++dimen mtrl_btn_inset ++dimen mtrl_btn_letter_spacing ++dimen mtrl_btn_max_width ++dimen mtrl_btn_padding_bottom ++dimen mtrl_btn_padding_left ++dimen mtrl_btn_padding_right ++dimen mtrl_btn_padding_top ++dimen mtrl_btn_pressed_z ++dimen mtrl_btn_snackbar_margin_horizontal ++dimen mtrl_btn_stroke_size ++dimen mtrl_btn_text_btn_icon_padding ++dimen mtrl_btn_text_btn_padding_left ++dimen mtrl_btn_text_btn_padding_right ++dimen mtrl_btn_text_size ++dimen mtrl_btn_z ++dimen mtrl_calendar_action_confirm_button_min_width ++dimen mtrl_calendar_action_height ++dimen mtrl_calendar_action_padding ++dimen mtrl_calendar_bottom_padding ++dimen mtrl_calendar_content_padding ++dimen mtrl_calendar_day_corner ++dimen mtrl_calendar_day_height ++dimen mtrl_calendar_day_horizontal_padding ++dimen mtrl_calendar_day_today_stroke ++dimen mtrl_calendar_day_vertical_padding ++dimen mtrl_calendar_day_width ++dimen mtrl_calendar_days_of_week_height ++dimen mtrl_calendar_dialog_background_inset ++dimen mtrl_calendar_header_content_padding ++dimen mtrl_calendar_header_content_padding_fullscreen ++dimen mtrl_calendar_header_divider_thickness ++dimen mtrl_calendar_header_height ++dimen mtrl_calendar_header_height_fullscreen ++dimen mtrl_calendar_header_selection_line_height ++dimen mtrl_calendar_header_text_padding ++dimen mtrl_calendar_header_toggle_margin_bottom ++dimen mtrl_calendar_header_toggle_margin_top ++dimen mtrl_calendar_landscape_header_width ++dimen mtrl_calendar_maximum_default_fullscreen_minor_axis ++dimen mtrl_calendar_month_horizontal_padding ++dimen mtrl_calendar_month_vertical_padding ++dimen mtrl_calendar_navigation_bottom_padding ++dimen mtrl_calendar_navigation_height ++dimen mtrl_calendar_navigation_top_padding ++dimen mtrl_calendar_pre_l_text_clip_padding ++dimen mtrl_calendar_selection_baseline_to_top_fullscreen ++dimen mtrl_calendar_selection_text_baseline_to_bottom ++dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen ++dimen mtrl_calendar_selection_text_baseline_to_top ++dimen mtrl_calendar_text_input_padding_top ++dimen mtrl_calendar_title_baseline_to_top ++dimen mtrl_calendar_title_baseline_to_top_fullscreen ++dimen mtrl_calendar_year_corner ++dimen mtrl_calendar_year_height ++dimen mtrl_calendar_year_horizontal_padding ++dimen mtrl_calendar_year_vertical_padding ++dimen mtrl_calendar_year_width ++dimen mtrl_card_checked_icon_margin ++dimen mtrl_card_checked_icon_size ++dimen mtrl_card_corner_radius ++dimen mtrl_card_dragged_z ++dimen mtrl_card_elevation ++dimen mtrl_card_spacing ++dimen mtrl_chip_pressed_translation_z ++dimen mtrl_chip_text_size ++dimen mtrl_edittext_rectangle_top_offset ++dimen mtrl_exposed_dropdown_menu_popup_elevation ++dimen mtrl_exposed_dropdown_menu_popup_vertical_offset ++dimen mtrl_exposed_dropdown_menu_popup_vertical_padding ++dimen mtrl_extended_fab_bottom_padding ++dimen mtrl_extended_fab_corner_radius ++dimen mtrl_extended_fab_disabled_elevation ++dimen mtrl_extended_fab_disabled_translation_z ++dimen mtrl_extended_fab_elevation ++dimen mtrl_extended_fab_end_padding ++dimen mtrl_extended_fab_end_padding_icon ++dimen mtrl_extended_fab_icon_size ++dimen mtrl_extended_fab_icon_text_spacing ++dimen mtrl_extended_fab_min_height ++dimen mtrl_extended_fab_min_width ++dimen mtrl_extended_fab_start_padding ++dimen mtrl_extended_fab_start_padding_icon ++dimen mtrl_extended_fab_top_padding ++dimen mtrl_extended_fab_translation_z_base ++dimen mtrl_extended_fab_translation_z_hovered_focused ++dimen mtrl_extended_fab_translation_z_pressed ++dimen mtrl_fab_elevation ++dimen mtrl_fab_min_touch_target ++dimen mtrl_fab_translation_z_hovered_focused ++dimen mtrl_fab_translation_z_pressed ++dimen mtrl_high_ripple_default_alpha ++dimen mtrl_high_ripple_focused_alpha ++dimen mtrl_high_ripple_hovered_alpha ++dimen mtrl_high_ripple_pressed_alpha ++dimen mtrl_large_touch_target ++dimen mtrl_low_ripple_default_alpha ++dimen mtrl_low_ripple_focused_alpha ++dimen mtrl_low_ripple_hovered_alpha ++dimen mtrl_low_ripple_pressed_alpha ++dimen mtrl_min_touch_target_size ++dimen mtrl_navigation_bar_item_default_icon_size ++dimen mtrl_navigation_bar_item_default_margin ++dimen mtrl_navigation_elevation ++dimen mtrl_navigation_item_horizontal_padding ++dimen mtrl_navigation_item_icon_padding ++dimen mtrl_navigation_item_icon_size ++dimen mtrl_navigation_item_shape_horizontal_margin ++dimen mtrl_navigation_item_shape_vertical_margin ++dimen mtrl_navigation_rail_active_text_size ++dimen mtrl_navigation_rail_compact_width ++dimen mtrl_navigation_rail_default_width ++dimen mtrl_navigation_rail_elevation ++dimen mtrl_navigation_rail_icon_margin ++dimen mtrl_navigation_rail_icon_size ++dimen mtrl_navigation_rail_margin ++dimen mtrl_navigation_rail_text_bottom_margin ++dimen mtrl_navigation_rail_text_size ++dimen mtrl_progress_circular_inset ++dimen mtrl_progress_circular_inset_extra_small ++dimen mtrl_progress_circular_inset_medium ++dimen mtrl_progress_circular_inset_small ++dimen mtrl_progress_circular_radius ++dimen mtrl_progress_circular_size ++dimen mtrl_progress_circular_size_extra_small ++dimen mtrl_progress_circular_size_medium ++dimen mtrl_progress_circular_size_small ++dimen mtrl_progress_circular_track_thickness_extra_small ++dimen mtrl_progress_circular_track_thickness_medium ++dimen mtrl_progress_circular_track_thickness_small ++dimen mtrl_progress_indicator_full_rounded_corner_radius ++dimen mtrl_progress_track_thickness ++dimen mtrl_shape_corner_size_large_component ++dimen mtrl_shape_corner_size_medium_component ++dimen mtrl_shape_corner_size_small_component ++dimen mtrl_slider_halo_radius ++dimen mtrl_slider_label_padding ++dimen mtrl_slider_label_radius ++dimen mtrl_slider_label_square_side ++dimen mtrl_slider_thumb_elevation ++dimen mtrl_slider_thumb_radius ++dimen mtrl_slider_track_height ++dimen mtrl_slider_track_side_padding ++dimen mtrl_slider_track_top ++dimen mtrl_slider_widget_height ++dimen mtrl_snackbar_action_text_color_alpha ++dimen mtrl_snackbar_background_corner_radius ++dimen mtrl_snackbar_background_overlay_color_alpha ++dimen mtrl_snackbar_margin ++dimen mtrl_snackbar_message_margin_horizontal ++dimen mtrl_snackbar_padding_horizontal ++dimen mtrl_switch_thumb_elevation ++dimen mtrl_textinput_box_corner_radius_medium ++dimen mtrl_textinput_box_corner_radius_small ++dimen mtrl_textinput_box_label_cutout_padding ++dimen mtrl_textinput_box_stroke_width_default ++dimen mtrl_textinput_box_stroke_width_focused ++dimen mtrl_textinput_counter_margin_start ++dimen mtrl_textinput_end_icon_margin_start ++dimen mtrl_textinput_outline_box_expanded_padding ++dimen mtrl_textinput_start_icon_margin_end ++dimen mtrl_toolbar_default_height ++dimen mtrl_tooltip_arrowSize ++dimen mtrl_tooltip_cornerSize ++dimen mtrl_tooltip_minHeight ++dimen mtrl_tooltip_minWidth ++dimen mtrl_tooltip_padding ++dimen mtrl_transition_shared_axis_slide_distance ++dimen notification_action_icon_size ++dimen notification_action_text_size ++dimen notification_big_circle_margin ++dimen notification_content_margin_start ++dimen notification_large_icon_height ++dimen notification_large_icon_width ++dimen notification_main_column_padding_top ++dimen notification_media_narrow_margin ++dimen notification_right_icon_size ++dimen notification_right_side_padding_top ++dimen notification_small_icon_background_padding ++dimen notification_small_icon_size_as_large ++dimen notification_subtext_size ++dimen notification_top_pad ++dimen notification_top_pad_large_text ++dimen test_mtrl_calendar_day_cornerSize ++dimen test_navigation_bar_active_item_max_width ++dimen test_navigation_bar_active_item_min_width ++dimen test_navigation_bar_active_text_size ++dimen test_navigation_bar_elevation ++dimen test_navigation_bar_height ++dimen test_navigation_bar_icon_size ++dimen test_navigation_bar_item_max_width ++dimen test_navigation_bar_item_min_width ++dimen test_navigation_bar_label_padding ++dimen test_navigation_bar_shadow_height ++dimen test_navigation_bar_text_size ++dimen tooltip_corner_radius ++dimen tooltip_horizontal_padding ++dimen tooltip_margin ++dimen tooltip_precise_anchor_extra_offset ++dimen tooltip_precise_anchor_threshold ++dimen tooltip_vertical_padding ++dimen tooltip_y_offset_non_touch ++dimen tooltip_y_offset_touch ++drawable abc_ab_share_pack_mtrl_alpha ++drawable abc_action_bar_item_background_material ++drawable abc_btn_borderless_material ++drawable abc_btn_check_material ++drawable abc_btn_check_material_anim ++drawable abc_btn_check_to_on_mtrl_000 ++drawable abc_btn_check_to_on_mtrl_015 ++drawable abc_btn_colored_material ++drawable abc_btn_default_mtrl_shape ++drawable abc_btn_radio_material ++drawable abc_btn_radio_material_anim ++drawable abc_btn_radio_to_on_mtrl_000 ++drawable abc_btn_radio_to_on_mtrl_015 ++drawable abc_btn_switch_to_on_mtrl_00001 ++drawable abc_btn_switch_to_on_mtrl_00012 ++drawable abc_cab_background_internal_bg ++drawable abc_cab_background_top_material ++drawable abc_cab_background_top_mtrl_alpha ++drawable abc_control_background_material ++drawable abc_dialog_material_background ++drawable abc_edit_text_material ++drawable abc_ic_ab_back_material ++drawable abc_ic_arrow_drop_right_black_24dp ++drawable abc_ic_clear_material ++drawable abc_ic_commit_search_api_mtrl_alpha ++drawable abc_ic_go_search_api_material ++drawable abc_ic_menu_copy_mtrl_am_alpha ++drawable abc_ic_menu_cut_mtrl_alpha ++drawable abc_ic_menu_overflow_material ++drawable abc_ic_menu_paste_mtrl_am_alpha ++drawable abc_ic_menu_selectall_mtrl_alpha ++drawable abc_ic_menu_share_mtrl_alpha ++drawable abc_ic_search_api_material ++drawable abc_ic_voice_search_api_material ++drawable abc_item_background_holo_dark ++drawable abc_item_background_holo_light ++drawable abc_list_divider_material ++drawable abc_list_divider_mtrl_alpha ++drawable abc_list_focused_holo ++drawable abc_list_longpressed_holo ++drawable abc_list_pressed_holo_dark ++drawable abc_list_pressed_holo_light ++drawable abc_list_selector_background_transition_holo_dark ++drawable abc_list_selector_background_transition_holo_light ++drawable abc_list_selector_disabled_holo_dark ++drawable abc_list_selector_disabled_holo_light ++drawable abc_list_selector_holo_dark ++drawable abc_list_selector_holo_light ++drawable abc_menu_hardkey_panel_mtrl_mult ++drawable abc_popup_background_mtrl_mult ++drawable abc_ratingbar_indicator_material ++drawable abc_ratingbar_material ++drawable abc_ratingbar_small_material ++drawable abc_scrubber_control_off_mtrl_alpha ++drawable abc_scrubber_control_to_pressed_mtrl_000 ++drawable abc_scrubber_control_to_pressed_mtrl_005 ++drawable abc_scrubber_primary_mtrl_alpha ++drawable abc_scrubber_track_mtrl_alpha ++drawable abc_seekbar_thumb_material ++drawable abc_seekbar_tick_mark_material ++drawable abc_seekbar_track_material ++drawable abc_spinner_mtrl_am_alpha ++drawable abc_spinner_textfield_background_material ++drawable abc_star_black_48dp ++drawable abc_star_half_black_48dp ++drawable abc_switch_thumb_material ++drawable abc_switch_track_mtrl_alpha ++drawable abc_tab_indicator_material ++drawable abc_tab_indicator_mtrl_alpha ++drawable abc_text_cursor_material ++drawable abc_text_select_handle_left_mtrl ++drawable abc_text_select_handle_middle_mtrl ++drawable abc_text_select_handle_right_mtrl ++drawable abc_textfield_activated_mtrl_alpha ++drawable abc_textfield_default_mtrl_alpha ++drawable abc_textfield_search_activated_mtrl_alpha ++drawable abc_textfield_search_default_mtrl_alpha ++drawable abc_textfield_search_material ++drawable abc_vector_test ++drawable avd_hide_password ++drawable avd_show_password ++drawable btn_checkbox_checked_mtrl ++drawable btn_checkbox_checked_to_unchecked_mtrl_animation ++drawable btn_checkbox_unchecked_mtrl ++drawable btn_checkbox_unchecked_to_checked_mtrl_animation ++drawable btn_radio_off_mtrl ++drawable btn_radio_off_to_on_mtrl_animation ++drawable btn_radio_on_mtrl ++drawable btn_radio_on_to_off_mtrl_animation ++drawable design_fab_background ++drawable design_ic_visibility ++drawable design_ic_visibility_off ++drawable design_password_eye ++drawable design_snackbar_background ++drawable ic_clock_black_24dp ++drawable ic_keyboard_black_24dp ++drawable ic_mtrl_checked_circle ++drawable ic_mtrl_chip_checked_black ++drawable ic_mtrl_chip_checked_circle ++drawable ic_mtrl_chip_close_circle ++drawable material_cursor_drawable ++drawable material_ic_calendar_black_24dp ++drawable material_ic_clear_black_24dp ++drawable material_ic_edit_black_24dp ++drawable material_ic_keyboard_arrow_left_black_24dp ++drawable material_ic_keyboard_arrow_next_black_24dp ++drawable material_ic_keyboard_arrow_previous_black_24dp ++drawable material_ic_keyboard_arrow_right_black_24dp ++drawable material_ic_menu_arrow_down_black_24dp ++drawable material_ic_menu_arrow_up_black_24dp ++drawable mtrl_dialog_background ++drawable mtrl_dropdown_arrow ++drawable mtrl_ic_arrow_drop_down ++drawable mtrl_ic_arrow_drop_up ++drawable mtrl_ic_cancel ++drawable mtrl_ic_error ++drawable mtrl_navigation_bar_item_background ++drawable mtrl_popupmenu_background ++drawable mtrl_popupmenu_background_dark ++drawable mtrl_tabs_default_indicator ++drawable navigation_empty_icon ++drawable notification_action_background ++drawable notification_bg ++drawable notification_bg_low ++drawable notification_bg_low_normal ++drawable notification_bg_low_pressed ++drawable notification_bg_normal ++drawable notification_bg_normal_pressed ++drawable notification_icon_background ++drawable notification_template_icon_bg ++drawable notification_template_icon_low_bg ++drawable notification_tile_bg ++drawable notify_panel_notification_icon_bg ++drawable test_custom_background ++drawable tooltip_frame_dark ++drawable tooltip_frame_light ++id ALT ++id BOTTOM_END ++id BOTTOM_START ++id CTRL ++id FUNCTION ++id META ++id NO_DEBUG ++id SHIFT ++id SHOW_ALL ++id SHOW_PATH ++id SHOW_PROGRESS ++id SYM ++id TOP_END ++id TOP_START ++id accelerate ++id accessibility_action_clickable_span ++id accessibility_custom_action_0 ++id accessibility_custom_action_1 ++id accessibility_custom_action_10 ++id accessibility_custom_action_11 ++id accessibility_custom_action_12 ++id accessibility_custom_action_13 ++id accessibility_custom_action_14 ++id accessibility_custom_action_15 ++id accessibility_custom_action_16 ++id accessibility_custom_action_17 ++id accessibility_custom_action_18 ++id accessibility_custom_action_19 ++id accessibility_custom_action_2 ++id accessibility_custom_action_20 ++id accessibility_custom_action_21 ++id accessibility_custom_action_22 ++id accessibility_custom_action_23 ++id accessibility_custom_action_24 ++id accessibility_custom_action_25 ++id accessibility_custom_action_26 ++id accessibility_custom_action_27 ++id accessibility_custom_action_28 ++id accessibility_custom_action_29 ++id accessibility_custom_action_3 ++id accessibility_custom_action_30 ++id accessibility_custom_action_31 ++id accessibility_custom_action_4 ++id accessibility_custom_action_5 ++id accessibility_custom_action_6 ++id accessibility_custom_action_7 ++id accessibility_custom_action_8 ++id accessibility_custom_action_9 ++id action_bar ++id action_bar_activity_content ++id action_bar_container ++id action_bar_root ++id action_bar_spinner ++id action_bar_subtitle ++id action_bar_title ++id action_container ++id action_context_bar ++id action_divider ++id action_image ++id action_menu_divider ++id action_menu_presenter ++id action_mode_bar ++id action_mode_bar_stub ++id action_mode_close_button ++id action_text ++id actions ++id activity_chooser_view_content ++id add ++id alertTitle ++id aligned ++id all ++id always ++id androidx_test_espresso_contrib_drawer_layout_tag ++id animateToEnd ++id animateToStart ++id arc ++id asConfigured ++id async ++id auto ++id autoComplete ++id autoCompleteToEnd ++id autoCompleteToStart ++id barrier ++id baseline ++id beginOnFirstDraw ++id beginning ++id blocking ++id bottom ++id bounce ++id buttonPanel ++id cancel_button ++id center ++id center_horizontal ++id center_vertical ++id chain ++id chains ++id checkbox ++id checked ++id chip ++id chip1 ++id chip2 ++id chip3 ++id chip_group ++id chronometer ++id circle_center ++id clear_text ++id clip_horizontal ++id clip_vertical ++id clockwise ++id collapseActionView ++id confirm_button ++id container ++id content ++id contentPanel ++id contiguous ++id coordinator ++id cos ++id counterclockwise ++id custom ++id customPanel ++id cut ++id date_picker_actions ++id decelerate ++id decelerateAndComplete ++id decor_content_parent ++id default_activity_button ++id deltaRelative ++id design_bottom_sheet ++id design_menu_item_action_area ++id design_menu_item_action_area_stub ++id design_menu_item_text ++id design_navigation_view ++id dialog_button ++id dimensions ++id direct ++id disableHome ++id disablePostScroll ++id disableScroll ++id disjoint ++id dragDown ++id dragEnd ++id dragLeft ++id dragRight ++id dragStart ++id dragUp ++id dropdown_menu ++id easeIn ++id easeInOut ++id easeOut ++id edit_query ++id elastic ++id end ++id endToStart ++id enterAlways ++id enterAlwaysCollapsed ++id exitUntilCollapsed ++id expand_activities_button ++id expanded_menu ++id fade ++id fill ++id fill_horizontal ++id fill_vertical ++id filled ++id fitToContents ++id fixed ++id flip ++id floating ++id forever ++id fragment_container_view_tag ++id ghost_view ++id ghost_view_holder ++id gone ++id graph ++id graph_wrap ++id group_divider ++id groups ++id guideline ++id header_title ++id hideable ++id home ++id homeAsUp ++id honorRequest ++id icon ++id icon_group ++id ifRoom ++id ignore ++id ignoreRequest ++id image ++id info ++id invisible ++id inward ++id italic ++id item_touch_helper_previous_elevation ++id jumpToEnd ++id jumpToStart ++id labeled ++id layout ++id left ++id leftToRight ++id line1 ++id line3 ++id linear ++id listMode ++id list_item ++id masked ++id material_clock_display ++id material_clock_face ++id material_clock_hand ++id material_clock_period_am_button ++id material_clock_period_pm_button ++id material_clock_period_toggle ++id material_hour_text_input ++id material_hour_tv ++id material_label ++id material_minute_text_input ++id material_minute_tv ++id material_textinput_timepicker ++id material_timepicker_cancel_button ++id material_timepicker_container ++id material_timepicker_edit_text ++id material_timepicker_mode_button ++id material_timepicker_ok_button ++id material_timepicker_view ++id material_value_index ++id message ++id middle ++id mini ++id month_grid ++id month_navigation_bar ++id month_navigation_fragment_toggle ++id month_navigation_next ++id month_navigation_previous ++id month_title ++id motion_base ++id mtrl_anchor_parent ++id mtrl_calendar_day_selector_frame ++id mtrl_calendar_days_of_week ++id mtrl_calendar_frame ++id mtrl_calendar_main_pane ++id mtrl_calendar_months ++id mtrl_calendar_selection_frame ++id mtrl_calendar_text_input_frame ++id mtrl_calendar_year_selector_frame ++id mtrl_card_checked_layer_id ++id mtrl_child_content_container ++id mtrl_internal_children_alpha_tag ++id mtrl_motion_snapshot_view ++id mtrl_picker_fullscreen ++id mtrl_picker_header ++id mtrl_picker_header_selection_text ++id mtrl_picker_header_title_and_selection ++id mtrl_picker_header_toggle ++id mtrl_picker_text_input_date ++id mtrl_picker_text_input_range_end ++id mtrl_picker_text_input_range_start ++id mtrl_picker_title_text ++id mtrl_view_tag_bottom_padding ++id multiply ++id navigation_bar_item_icon_view ++id navigation_bar_item_labels_group ++id navigation_bar_item_large_label_view ++id navigation_bar_item_small_label_view ++id navigation_header_container ++id never ++id noScroll ++id none ++id normal ++id notification_background ++id notification_main_column ++id notification_main_column_container ++id off ++id on ++id outline ++id outward ++id packed ++id parallax ++id parent ++id parentPanel ++id parentRelative ++id parent_matrix ++id password_toggle ++id path ++id pathRelative ++id peekHeight ++id percent ++id pin ++id position ++id postLayout ++id progress_circular ++id progress_horizontal ++id radio ++id ratio ++id rectangles ++id reverseSawtooth ++id right ++id rightToLeft ++id right_icon ++id right_side ++id rounded ++id row_index_key ++id save_non_transition_alpha ++id save_overlay_view ++id sawtooth ++id scale ++id screen ++id scroll ++id scrollIndicatorDown ++id scrollIndicatorUp ++id scrollView ++id scrollable ++id search_badge ++id search_bar ++id search_button ++id search_close_btn ++id search_edit_frame ++id search_go_btn ++id search_mag_icon ++id search_plate ++id search_src_text ++id search_voice_btn ++id select_dialog_listview ++id selected ++id selection_type ++id shortcut ++id showCustom ++id showHome ++id showTitle ++id sin ++id skipCollapsed ++id slide ++id snackbar_action ++id snackbar_text ++id snap ++id snapMargins ++id spacer ++id special_effects_controller_view_tag ++id spline ++id split_action_bar ++id spread ++id spread_inside ++id square ++id src_atop ++id src_in ++id src_over ++id standard ++id start ++id startHorizontal ++id startToEnd ++id startVertical ++id staticLayout ++id staticPostLayout ++id stop ++id stretch ++id submenuarrow ++id submit_area ++id tabMode ++id tag_accessibility_actions ++id tag_accessibility_clickable_spans ++id tag_accessibility_heading ++id tag_accessibility_pane_title ++id tag_on_apply_window_listener ++id tag_on_receive_content_listener ++id tag_on_receive_content_mime_types ++id tag_screen_reader_focusable ++id tag_state_description ++id tag_transition_group ++id tag_unhandled_key_event_manager ++id tag_unhandled_key_listeners ++id tag_window_insets_animation_callback ++id test_checkbox_android_button_tint ++id test_checkbox_app_button_tint ++id test_radiobutton_android_button_tint ++id test_radiobutton_app_button_tint ++id text ++id text2 ++id textEnd ++id textSpacerNoButtons ++id textSpacerNoTitle ++id textStart ++id textTop ++id text_input_end_icon ++id text_input_error_icon ++id text_input_start_icon ++id textinput_counter ++id textinput_error ++id textinput_helper_text ++id textinput_placeholder ++id textinput_prefix_text ++id textinput_suffix_text ++id time ++id title ++id titleDividerNoCustom ++id title_template ++id toggle ++id top ++id topPanel ++id touch_outside ++id transitionToEnd ++id transitionToStart ++id transition_current_scene ++id transition_layout_save ++id transition_position ++id transition_scene_layoutid_cache ++id transition_transform ++id triangle ++id unchecked ++id uniform ++id unlabeled ++id up ++id useLogo ++id view_offset_helper ++id view_tree_lifecycle_owner ++id view_tree_saved_state_registry_owner ++id view_tree_view_model_store_owner ++id visible ++id visible_removing_fragment_view_tag ++id withText ++id withinBounds ++id wrap ++id wrap_content ++id zero_corner_chip ++integer abc_config_activityDefaultDur ++integer abc_config_activityShortDur ++integer app_bar_elevation_anim_duration ++integer bottom_sheet_slide_duration ++integer cancel_button_image_alpha ++integer config_tooltipAnimTime ++integer design_snackbar_text_max_lines ++integer design_tab_indicator_anim_duration_ms ++integer hide_password_duration ++integer material_motion_duration_long_1 ++integer material_motion_duration_long_2 ++integer material_motion_duration_medium_1 ++integer material_motion_duration_medium_2 ++integer material_motion_duration_short_1 ++integer material_motion_duration_short_2 ++integer material_motion_path ++integer mtrl_badge_max_character_count ++integer mtrl_btn_anim_delay_ms ++integer mtrl_btn_anim_duration_ms ++integer mtrl_calendar_header_orientation ++integer mtrl_calendar_selection_text_lines ++integer mtrl_calendar_year_selector_span ++integer mtrl_card_anim_delay_ms ++integer mtrl_card_anim_duration_ms ++integer mtrl_chip_anim_duration ++integer mtrl_tab_indicator_anim_duration_ms ++integer show_password_duration ++integer status_bar_notification_info_maxnum ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 ++interpolator btn_radio_to_off_mtrl_animation_interpolator_0 ++interpolator btn_radio_to_on_mtrl_animation_interpolator_0 ++interpolator fast_out_slow_in ++interpolator mtrl_fast_out_linear_in ++interpolator mtrl_fast_out_slow_in ++interpolator mtrl_linear ++interpolator mtrl_linear_out_slow_in ++layout abc_action_bar_title_item ++layout abc_action_bar_up_container ++layout abc_action_menu_item_layout ++layout abc_action_menu_layout ++layout abc_action_mode_bar ++layout abc_action_mode_close_item_material ++layout abc_activity_chooser_view ++layout abc_activity_chooser_view_list_item ++layout abc_alert_dialog_button_bar_material ++layout abc_alert_dialog_material ++layout abc_alert_dialog_title_material ++layout abc_cascading_menu_item_layout ++layout abc_dialog_title_material ++layout abc_expanded_menu_layout ++layout abc_list_menu_item_checkbox ++layout abc_list_menu_item_icon ++layout abc_list_menu_item_layout ++layout abc_list_menu_item_radio ++layout abc_popup_menu_header_item_layout ++layout abc_popup_menu_item_layout ++layout abc_screen_content_include ++layout abc_screen_simple ++layout abc_screen_simple_overlay_action_mode ++layout abc_screen_toolbar ++layout abc_search_dropdown_item_icons_2line ++layout abc_search_view ++layout abc_select_dialog_material ++layout abc_tooltip ++layout custom_dialog ++layout design_bottom_navigation_item ++layout design_bottom_sheet_dialog ++layout design_layout_snackbar ++layout design_layout_snackbar_include ++layout design_layout_tab_icon ++layout design_layout_tab_text ++layout design_menu_item_action_area ++layout design_navigation_item ++layout design_navigation_item_header ++layout design_navigation_item_separator ++layout design_navigation_item_subheader ++layout design_navigation_menu ++layout design_navigation_menu_item ++layout design_text_input_end_icon ++layout design_text_input_start_icon ++layout material_chip_input_combo ++layout material_clock_display ++layout material_clock_display_divider ++layout material_clock_period_toggle ++layout material_clock_period_toggle_land ++layout material_clockface_textview ++layout material_clockface_view ++layout material_radial_view_group ++layout material_textinput_timepicker ++layout material_time_chip ++layout material_time_input ++layout material_timepicker ++layout material_timepicker_dialog ++layout material_timepicker_textinput_display ++layout mtrl_alert_dialog ++layout mtrl_alert_dialog_actions ++layout mtrl_alert_dialog_title ++layout mtrl_alert_select_dialog_item ++layout mtrl_alert_select_dialog_multichoice ++layout mtrl_alert_select_dialog_singlechoice ++layout mtrl_calendar_day ++layout mtrl_calendar_day_of_week ++layout mtrl_calendar_days_of_week ++layout mtrl_calendar_horizontal ++layout mtrl_calendar_month ++layout mtrl_calendar_month_labeled ++layout mtrl_calendar_month_navigation ++layout mtrl_calendar_months ++layout mtrl_calendar_vertical ++layout mtrl_calendar_year ++layout mtrl_layout_snackbar ++layout mtrl_layout_snackbar_include ++layout mtrl_navigation_rail_item ++layout mtrl_picker_actions ++layout mtrl_picker_dialog ++layout mtrl_picker_fullscreen ++layout mtrl_picker_header_dialog ++layout mtrl_picker_header_fullscreen ++layout mtrl_picker_header_selection_text ++layout mtrl_picker_header_title_text ++layout mtrl_picker_header_toggle ++layout mtrl_picker_text_input_date ++layout mtrl_picker_text_input_date_range ++layout notification_action ++layout notification_action_tombstone ++layout notification_template_custom_big ++layout notification_template_icon_group ++layout notification_template_part_chronometer ++layout notification_template_part_time ++layout select_dialog_item_material ++layout select_dialog_multichoice_material ++layout select_dialog_singlechoice_material ++layout support_simple_spinner_dropdown_item ++layout test_action_chip ++layout test_chip_zero_corner_radius ++layout test_design_checkbox ++layout test_design_radiobutton ++layout test_navigation_bar_item_layout ++layout test_reflow_chipgroup ++layout test_toolbar ++layout test_toolbar_custom_background ++layout test_toolbar_elevation ++layout test_toolbar_surface ++layout text_view_with_line_height_from_appearance ++layout text_view_with_line_height_from_layout ++layout text_view_with_line_height_from_style ++layout text_view_with_theme_line_height ++layout text_view_without_line_height ++plurals mtrl_badge_content_description ++string abc_action_bar_home_description ++string abc_action_bar_up_description ++string abc_action_menu_overflow_description ++string abc_action_mode_done ++string abc_activity_chooser_view_see_all ++string abc_activitychooserview_choose_application ++string abc_capital_off ++string abc_capital_on ++string abc_menu_alt_shortcut_label ++string abc_menu_ctrl_shortcut_label ++string abc_menu_delete_shortcut_label ++string abc_menu_enter_shortcut_label ++string abc_menu_function_shortcut_label ++string abc_menu_meta_shortcut_label ++string abc_menu_shift_shortcut_label ++string abc_menu_space_shortcut_label ++string abc_menu_sym_shortcut_label ++string abc_prepend_shortcut_label ++string abc_search_hint ++string abc_searchview_description_clear ++string abc_searchview_description_query ++string abc_searchview_description_search ++string abc_searchview_description_submit ++string abc_searchview_description_voice ++string abc_shareactionprovider_share_with ++string abc_shareactionprovider_share_with_application ++string abc_toolbar_collapse_description ++string app_name ++string appbar_scrolling_view_behavior ++string bottom_sheet_behavior ++string bottomsheet_action_expand_halfway ++string character_counter_content_description ++string character_counter_overflowed_content_description ++string character_counter_pattern ++string chip_text ++string clear_text_end_icon_content_description ++string error_icon_content_description ++string exposed_dropdown_menu_content_description ++string fab_transformation_scrim_behavior ++string fab_transformation_sheet_behavior ++string hide_bottom_view_on_scroll_behavior ++string icon_content_description ++string item_view_role_description ++string material_clock_display_divider ++string material_clock_toggle_content_description ++string material_hour_selection ++string material_hour_suffix ++string material_minute_selection ++string material_minute_suffix ++string material_motion_easing_accelerated ++string material_motion_easing_decelerated ++string material_motion_easing_emphasized ++string material_motion_easing_linear ++string material_motion_easing_standard ++string material_slider_range_end ++string material_slider_range_start ++string material_timepicker_am ++string material_timepicker_clock_mode_description ++string material_timepicker_hour ++string material_timepicker_minute ++string material_timepicker_pm ++string material_timepicker_select_time ++string material_timepicker_text_input_mode_description ++string mtrl_badge_numberless_content_description ++string mtrl_chip_close_icon_content_description ++string mtrl_exceed_max_badge_number_content_description ++string mtrl_exceed_max_badge_number_suffix ++string mtrl_picker_a11y_next_month ++string mtrl_picker_a11y_prev_month ++string mtrl_picker_announce_current_selection ++string mtrl_picker_cancel ++string mtrl_picker_confirm ++string mtrl_picker_date_header_selected ++string mtrl_picker_date_header_title ++string mtrl_picker_date_header_unselected ++string mtrl_picker_day_of_week_column_header ++string mtrl_picker_invalid_format ++string mtrl_picker_invalid_format_example ++string mtrl_picker_invalid_format_use ++string mtrl_picker_invalid_range ++string mtrl_picker_navigate_to_year_description ++string mtrl_picker_out_of_range ++string mtrl_picker_range_header_only_end_selected ++string mtrl_picker_range_header_only_start_selected ++string mtrl_picker_range_header_selected ++string mtrl_picker_range_header_title ++string mtrl_picker_range_header_unselected ++string mtrl_picker_save ++string mtrl_picker_text_input_date_hint ++string mtrl_picker_text_input_date_range_end_hint ++string mtrl_picker_text_input_date_range_start_hint ++string mtrl_picker_text_input_day_abbr ++string mtrl_picker_text_input_month_abbr ++string mtrl_picker_text_input_year_abbr ++string mtrl_picker_toggle_to_calendar_input_mode ++string mtrl_picker_toggle_to_day_selection ++string mtrl_picker_toggle_to_text_input_mode ++string mtrl_picker_toggle_to_year_selection ++string password_toggle_content_description ++string path_password_eye ++string path_password_eye_mask_strike_through ++string path_password_eye_mask_visible ++string path_password_strike_through ++string search_menu_title ++string status_bar_notification_info_overflow ++style AlertDialog_AppCompat ++style AlertDialog_AppCompat_Light ++style AndroidThemeColorAccentYellow ++style Animation_AppCompat_Dialog ++style Animation_AppCompat_DropDownUp ++style Animation_AppCompat_Tooltip ++style Animation_Design_BottomSheetDialog ++style Animation_MaterialComponents_BottomSheetDialog ++style Base_AlertDialog_AppCompat ++style Base_AlertDialog_AppCompat_Light ++style Base_Animation_AppCompat_Dialog ++style Base_Animation_AppCompat_DropDownUp ++style Base_Animation_AppCompat_Tooltip ++style Base_CardView ++style Base_DialogWindowTitle_AppCompat ++style Base_DialogWindowTitleBackground_AppCompat ++style Base_MaterialAlertDialog_MaterialComponents_Title_Icon ++style Base_MaterialAlertDialog_MaterialComponents_Title_Panel ++style Base_MaterialAlertDialog_MaterialComponents_Title_Text ++style Base_TextAppearance_AppCompat ++style Base_TextAppearance_AppCompat_Body1 ++style Base_TextAppearance_AppCompat_Body2 ++style Base_TextAppearance_AppCompat_Button ++style Base_TextAppearance_AppCompat_Caption ++style Base_TextAppearance_AppCompat_Display1 ++style Base_TextAppearance_AppCompat_Display2 ++style Base_TextAppearance_AppCompat_Display3 ++style Base_TextAppearance_AppCompat_Display4 ++style Base_TextAppearance_AppCompat_Headline ++style Base_TextAppearance_AppCompat_Inverse ++style Base_TextAppearance_AppCompat_Large ++style Base_TextAppearance_AppCompat_Large_Inverse ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Medium ++style Base_TextAppearance_AppCompat_Medium_Inverse ++style Base_TextAppearance_AppCompat_Menu ++style Base_TextAppearance_AppCompat_SearchResult ++style Base_TextAppearance_AppCompat_SearchResult_Subtitle ++style Base_TextAppearance_AppCompat_SearchResult_Title ++style Base_TextAppearance_AppCompat_Small ++style Base_TextAppearance_AppCompat_Small_Inverse ++style Base_TextAppearance_AppCompat_Subhead ++style Base_TextAppearance_AppCompat_Subhead_Inverse ++style Base_TextAppearance_AppCompat_Title ++style Base_TextAppearance_AppCompat_Title_Inverse ++style Base_TextAppearance_AppCompat_Tooltip ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Title ++style Base_TextAppearance_AppCompat_Widget_Button ++style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Inverse ++style Base_TextAppearance_AppCompat_Widget_DropDownItem ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Widget_Switch ++style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style Base_TextAppearance_MaterialComponents_Badge ++style Base_TextAppearance_MaterialComponents_Button ++style Base_TextAppearance_MaterialComponents_Headline6 ++style Base_TextAppearance_MaterialComponents_Subtitle2 ++style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Title ++style Base_Theme_AppCompat ++style Base_Theme_AppCompat_CompactMenu ++style Base_Theme_AppCompat_Dialog ++style Base_Theme_AppCompat_Dialog_Alert ++style Base_Theme_AppCompat_Dialog_FixedSize ++style Base_Theme_AppCompat_Dialog_MinWidth ++style Base_Theme_AppCompat_DialogWhenLarge ++style Base_Theme_AppCompat_Light ++style Base_Theme_AppCompat_Light_DarkActionBar ++style Base_Theme_AppCompat_Light_Dialog ++style Base_Theme_AppCompat_Light_Dialog_Alert ++style Base_Theme_AppCompat_Light_Dialog_FixedSize ++style Base_Theme_AppCompat_Light_Dialog_MinWidth ++style Base_Theme_AppCompat_Light_DialogWhenLarge ++style Base_Theme_MaterialComponents ++style Base_Theme_MaterialComponents_Bridge ++style Base_Theme_MaterialComponents_CompactMenu ++style Base_Theme_MaterialComponents_Dialog ++style Base_Theme_MaterialComponents_Dialog_Alert ++style Base_Theme_MaterialComponents_Dialog_Bridge ++style Base_Theme_MaterialComponents_Dialog_FixedSize ++style Base_Theme_MaterialComponents_Dialog_MinWidth ++style Base_Theme_MaterialComponents_DialogWhenLarge ++style Base_Theme_MaterialComponents_Light ++style Base_Theme_MaterialComponents_Light_Bridge ++style Base_Theme_MaterialComponents_Light_DarkActionBar ++style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge ++style Base_Theme_MaterialComponents_Light_Dialog ++style Base_Theme_MaterialComponents_Light_Dialog_Alert ++style Base_Theme_MaterialComponents_Light_Dialog_Bridge ++style Base_Theme_MaterialComponents_Light_Dialog_FixedSize ++style Base_Theme_MaterialComponents_Light_Dialog_MinWidth ++style Base_Theme_MaterialComponents_Light_DialogWhenLarge ++style Base_ThemeOverlay_AppCompat ++style Base_ThemeOverlay_AppCompat_ActionBar ++style Base_ThemeOverlay_AppCompat_Dark ++style Base_ThemeOverlay_AppCompat_Dark_ActionBar ++style Base_ThemeOverlay_AppCompat_Dialog ++style Base_ThemeOverlay_AppCompat_Dialog_Alert ++style Base_ThemeOverlay_AppCompat_Light ++style Base_ThemeOverlay_MaterialComponents_Dialog ++style Base_ThemeOverlay_MaterialComponents_Dialog_Alert ++style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework ++style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework ++style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog ++style Base_V14_Theme_MaterialComponents ++style Base_V14_Theme_MaterialComponents_Bridge ++style Base_V14_Theme_MaterialComponents_Dialog ++style Base_V14_Theme_MaterialComponents_Dialog_Bridge ++style Base_V14_Theme_MaterialComponents_Light ++style Base_V14_Theme_MaterialComponents_Light_Bridge ++style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge ++style Base_V14_Theme_MaterialComponents_Light_Dialog ++style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge ++style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog ++style Base_V14_ThemeOverlay_MaterialComponents_Dialog ++style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert ++style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog ++style Base_V21_Theme_AppCompat ++style Base_V21_Theme_AppCompat_Dialog ++style Base_V21_Theme_AppCompat_Light ++style Base_V21_Theme_AppCompat_Light_Dialog ++style Base_V21_Theme_MaterialComponents ++style Base_V21_Theme_MaterialComponents_Dialog ++style Base_V21_Theme_MaterialComponents_Light ++style Base_V21_Theme_MaterialComponents_Light_Dialog ++style Base_V21_ThemeOverlay_AppCompat_Dialog ++style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog ++style Base_V22_Theme_AppCompat ++style Base_V22_Theme_AppCompat_Light ++style Base_V23_Theme_AppCompat ++style Base_V23_Theme_AppCompat_Light ++style Base_V26_Theme_AppCompat ++style Base_V26_Theme_AppCompat_Light ++style Base_V26_Widget_AppCompat_Toolbar ++style Base_V28_Theme_AppCompat ++style Base_V28_Theme_AppCompat_Light ++style Base_V7_Theme_AppCompat ++style Base_V7_Theme_AppCompat_Dialog ++style Base_V7_Theme_AppCompat_Light ++style Base_V7_Theme_AppCompat_Light_Dialog ++style Base_V7_ThemeOverlay_AppCompat_Dialog ++style Base_V7_Widget_AppCompat_AutoCompleteTextView ++style Base_V7_Widget_AppCompat_EditText ++style Base_V7_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_ActionBar ++style Base_Widget_AppCompat_ActionBar_Solid ++style Base_Widget_AppCompat_ActionBar_TabBar ++style Base_Widget_AppCompat_ActionBar_TabText ++style Base_Widget_AppCompat_ActionBar_TabView ++style Base_Widget_AppCompat_ActionButton ++style Base_Widget_AppCompat_ActionButton_CloseMode ++style Base_Widget_AppCompat_ActionButton_Overflow ++style Base_Widget_AppCompat_ActionMode ++style Base_Widget_AppCompat_ActivityChooserView ++style Base_Widget_AppCompat_AutoCompleteTextView ++style Base_Widget_AppCompat_Button ++style Base_Widget_AppCompat_Button_Borderless ++style Base_Widget_AppCompat_Button_Borderless_Colored ++style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_Button_Colored ++style Base_Widget_AppCompat_Button_Small ++style Base_Widget_AppCompat_ButtonBar ++style Base_Widget_AppCompat_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_CompoundButton_CheckBox ++style Base_Widget_AppCompat_CompoundButton_RadioButton ++style Base_Widget_AppCompat_CompoundButton_Switch ++style Base_Widget_AppCompat_DrawerArrowToggle ++style Base_Widget_AppCompat_DrawerArrowToggle_Common ++style Base_Widget_AppCompat_DropDownItem_Spinner ++style Base_Widget_AppCompat_EditText ++style Base_Widget_AppCompat_ImageButton ++style Base_Widget_AppCompat_Light_ActionBar ++style Base_Widget_AppCompat_Light_ActionBar_Solid ++style Base_Widget_AppCompat_Light_ActionBar_TabBar ++style Base_Widget_AppCompat_Light_ActionBar_TabText ++style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Base_Widget_AppCompat_Light_ActionBar_TabView ++style Base_Widget_AppCompat_Light_PopupMenu ++style Base_Widget_AppCompat_Light_PopupMenu_Overflow ++style Base_Widget_AppCompat_ListMenuView ++style Base_Widget_AppCompat_ListPopupWindow ++style Base_Widget_AppCompat_ListView ++style Base_Widget_AppCompat_ListView_DropDown ++style Base_Widget_AppCompat_ListView_Menu ++style Base_Widget_AppCompat_PopupMenu ++style Base_Widget_AppCompat_PopupMenu_Overflow ++style Base_Widget_AppCompat_PopupWindow ++style Base_Widget_AppCompat_ProgressBar ++style Base_Widget_AppCompat_ProgressBar_Horizontal ++style Base_Widget_AppCompat_RatingBar ++style Base_Widget_AppCompat_RatingBar_Indicator ++style Base_Widget_AppCompat_RatingBar_Small ++style Base_Widget_AppCompat_SearchView ++style Base_Widget_AppCompat_SearchView_ActionBar ++style Base_Widget_AppCompat_SeekBar ++style Base_Widget_AppCompat_SeekBar_Discrete ++style Base_Widget_AppCompat_Spinner ++style Base_Widget_AppCompat_Spinner_Underlined ++style Base_Widget_AppCompat_TextView ++style Base_Widget_AppCompat_TextView_SpinnerItem ++style Base_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_Toolbar_Button_Navigation ++style Base_Widget_Design_TabLayout ++style Base_Widget_MaterialComponents_AutoCompleteTextView ++style Base_Widget_MaterialComponents_CheckedTextView ++style Base_Widget_MaterialComponents_Chip ++style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton ++style Base_Widget_MaterialComponents_PopupMenu ++style Base_Widget_MaterialComponents_PopupMenu_ContextMenu ++style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow ++style Base_Widget_MaterialComponents_PopupMenu_Overflow ++style Base_Widget_MaterialComponents_Slider ++style Base_Widget_MaterialComponents_Snackbar ++style Base_Widget_MaterialComponents_TextInputEditText ++style Base_Widget_MaterialComponents_TextInputLayout ++style Base_Widget_MaterialComponents_TextView ++style CardView ++style CardView_Dark ++style CardView_Light ++style EmptyTheme ++style MaterialAlertDialog_MaterialComponents ++style MaterialAlertDialog_MaterialComponents_Body_Text ++style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar ++style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner ++style MaterialAlertDialog_MaterialComponents_Title_Icon ++style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked ++style MaterialAlertDialog_MaterialComponents_Title_Panel ++style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked ++style MaterialAlertDialog_MaterialComponents_Title_Text ++style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked ++style Platform_AppCompat ++style Platform_AppCompat_Light ++style Platform_MaterialComponents ++style Platform_MaterialComponents_Dialog ++style Platform_MaterialComponents_Light ++style Platform_MaterialComponents_Light_Dialog ++style Platform_ThemeOverlay_AppCompat ++style Platform_ThemeOverlay_AppCompat_Dark ++style Platform_ThemeOverlay_AppCompat_Light ++style Platform_V21_AppCompat ++style Platform_V21_AppCompat_Light ++style Platform_V25_AppCompat ++style Platform_V25_AppCompat_Light ++style Platform_Widget_AppCompat_Spinner ++style RtlOverlay_DialogWindowTitle_AppCompat ++style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem ++style RtlOverlay_Widget_AppCompat_DialogTitle_Icon ++style RtlOverlay_Widget_AppCompat_PopupMenuItem ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title ++style RtlOverlay_Widget_AppCompat_Search_DropDown ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Query ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Text ++style RtlOverlay_Widget_AppCompat_SearchView_MagIcon ++style RtlUnderlay_Widget_AppCompat_ActionButton ++style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow ++style ShapeAppearance_MaterialComponents ++style ShapeAppearance_MaterialComponents_LargeComponent ++style ShapeAppearance_MaterialComponents_MediumComponent ++style ShapeAppearance_MaterialComponents_SmallComponent ++style ShapeAppearance_MaterialComponents_Test ++style ShapeAppearance_MaterialComponents_Tooltip ++style ShapeAppearanceOverlay ++style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize ++style ShapeAppearanceOverlay_BottomRightCut ++style ShapeAppearanceOverlay_Cut ++style ShapeAppearanceOverlay_DifferentCornerSize ++style ShapeAppearanceOverlay_MaterialComponents_BottomSheet ++style ShapeAppearanceOverlay_MaterialComponents_Chip ++style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton ++style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton ++style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day ++style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen ++style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year ++style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox ++style ShapeAppearanceOverlay_TopLeftCut ++style ShapeAppearanceOverlay_TopRightDifferentCornerSize ++style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day ++style Test_Theme_MaterialComponents_MaterialCalendar ++style Test_Widget_MaterialComponents_MaterialCalendar ++style Test_Widget_MaterialComponents_MaterialCalendar_Day ++style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected ++style TestStyleWithLineHeight ++style TestStyleWithLineHeightAppearance ++style TestStyleWithThemeLineHeightAttribute ++style TestStyleWithoutLineHeight ++style TestThemeWithLineHeight ++style TestThemeWithLineHeightDisabled ++style TextAppearance_AppCompat ++style TextAppearance_AppCompat_Body1 ++style TextAppearance_AppCompat_Body2 ++style TextAppearance_AppCompat_Button ++style TextAppearance_AppCompat_Caption ++style TextAppearance_AppCompat_Display1 ++style TextAppearance_AppCompat_Display2 ++style TextAppearance_AppCompat_Display3 ++style TextAppearance_AppCompat_Display4 ++style TextAppearance_AppCompat_Headline ++style TextAppearance_AppCompat_Inverse ++style TextAppearance_AppCompat_Large ++style TextAppearance_AppCompat_Large_Inverse ++style TextAppearance_AppCompat_Light_SearchResult_Subtitle ++style TextAppearance_AppCompat_Light_SearchResult_Title ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Medium ++style TextAppearance_AppCompat_Medium_Inverse ++style TextAppearance_AppCompat_Menu ++style TextAppearance_AppCompat_SearchResult_Subtitle ++style TextAppearance_AppCompat_SearchResult_Title ++style TextAppearance_AppCompat_Small ++style TextAppearance_AppCompat_Small_Inverse ++style TextAppearance_AppCompat_Subhead ++style TextAppearance_AppCompat_Subhead_Inverse ++style TextAppearance_AppCompat_Title ++style TextAppearance_AppCompat_Title_Inverse ++style TextAppearance_AppCompat_Tooltip ++style TextAppearance_AppCompat_Widget_ActionBar_Menu ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionBar_Title ++style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Title ++style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse ++style TextAppearance_AppCompat_Widget_Button ++style TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style TextAppearance_AppCompat_Widget_Button_Colored ++style TextAppearance_AppCompat_Widget_Button_Inverse ++style TextAppearance_AppCompat_Widget_DropDownItem ++style TextAppearance_AppCompat_Widget_PopupMenu_Header ++style TextAppearance_AppCompat_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Widget_Switch ++style TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style TextAppearance_Compat_Notification ++style TextAppearance_Compat_Notification_Info ++style TextAppearance_Compat_Notification_Line2 ++style TextAppearance_Compat_Notification_Time ++style TextAppearance_Compat_Notification_Title ++style TextAppearance_Design_CollapsingToolbar_Expanded ++style TextAppearance_Design_Counter ++style TextAppearance_Design_Counter_Overflow ++style TextAppearance_Design_Error ++style TextAppearance_Design_HelperText ++style TextAppearance_Design_Hint ++style TextAppearance_Design_Placeholder ++style TextAppearance_Design_Prefix ++style TextAppearance_Design_Snackbar_Message ++style TextAppearance_Design_Suffix ++style TextAppearance_Design_Tab ++style TextAppearance_MaterialComponents_Badge ++style TextAppearance_MaterialComponents_Body1 ++style TextAppearance_MaterialComponents_Body2 ++style TextAppearance_MaterialComponents_Button ++style TextAppearance_MaterialComponents_Caption ++style TextAppearance_MaterialComponents_Chip ++style TextAppearance_MaterialComponents_Headline1 ++style TextAppearance_MaterialComponents_Headline2 ++style TextAppearance_MaterialComponents_Headline3 ++style TextAppearance_MaterialComponents_Headline4 ++style TextAppearance_MaterialComponents_Headline5 ++style TextAppearance_MaterialComponents_Headline6 ++style TextAppearance_MaterialComponents_Overline ++style TextAppearance_MaterialComponents_Subtitle1 ++style TextAppearance_MaterialComponents_Subtitle2 ++style TextAppearance_MaterialComponents_TimePicker_Title ++style TextAppearance_MaterialComponents_Tooltip ++style TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style TextAppearance_Widget_AppCompat_Toolbar_Title ++style Theme_AppCompat ++style Theme_AppCompat_CompactMenu ++style Theme_AppCompat_DayNight ++style Theme_AppCompat_DayNight_DarkActionBar ++style Theme_AppCompat_DayNight_Dialog ++style Theme_AppCompat_DayNight_Dialog_Alert ++style Theme_AppCompat_DayNight_Dialog_MinWidth ++style Theme_AppCompat_DayNight_DialogWhenLarge ++style Theme_AppCompat_DayNight_NoActionBar ++style Theme_AppCompat_Dialog ++style Theme_AppCompat_Dialog_Alert ++style Theme_AppCompat_Dialog_MinWidth ++style Theme_AppCompat_DialogWhenLarge ++style Theme_AppCompat_Empty ++style Theme_AppCompat_Light ++style Theme_AppCompat_Light_DarkActionBar ++style Theme_AppCompat_Light_Dialog ++style Theme_AppCompat_Light_Dialog_Alert ++style Theme_AppCompat_Light_Dialog_MinWidth ++style Theme_AppCompat_Light_DialogWhenLarge ++style Theme_AppCompat_Light_NoActionBar ++style Theme_AppCompat_NoActionBar ++style Theme_Design ++style Theme_Design_BottomSheetDialog ++style Theme_Design_Light ++style Theme_Design_Light_BottomSheetDialog ++style Theme_Design_Light_NoActionBar ++style Theme_Design_NoActionBar ++style Theme_MaterialComponents ++style Theme_MaterialComponents_BottomSheetDialog ++style Theme_MaterialComponents_Bridge ++style Theme_MaterialComponents_CompactMenu ++style Theme_MaterialComponents_DayNight ++style Theme_MaterialComponents_DayNight_BottomSheetDialog ++style Theme_MaterialComponents_DayNight_Bridge ++style Theme_MaterialComponents_DayNight_DarkActionBar ++style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge ++style Theme_MaterialComponents_DayNight_Dialog ++style Theme_MaterialComponents_DayNight_Dialog_Alert ++style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge ++style Theme_MaterialComponents_DayNight_Dialog_Bridge ++style Theme_MaterialComponents_DayNight_Dialog_FixedSize ++style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge ++style Theme_MaterialComponents_DayNight_Dialog_MinWidth ++style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge ++style Theme_MaterialComponents_DayNight_DialogWhenLarge ++style Theme_MaterialComponents_DayNight_NoActionBar ++style Theme_MaterialComponents_DayNight_NoActionBar_Bridge ++style Theme_MaterialComponents_Dialog ++style Theme_MaterialComponents_Dialog_Alert ++style Theme_MaterialComponents_Dialog_Alert_Bridge ++style Theme_MaterialComponents_Dialog_Bridge ++style Theme_MaterialComponents_Dialog_FixedSize ++style Theme_MaterialComponents_Dialog_FixedSize_Bridge ++style Theme_MaterialComponents_Dialog_MinWidth ++style Theme_MaterialComponents_Dialog_MinWidth_Bridge ++style Theme_MaterialComponents_DialogWhenLarge ++style Theme_MaterialComponents_Light ++style Theme_MaterialComponents_Light_BarSize ++style Theme_MaterialComponents_Light_BottomSheetDialog ++style Theme_MaterialComponents_Light_Bridge ++style Theme_MaterialComponents_Light_DarkActionBar ++style Theme_MaterialComponents_Light_DarkActionBar_Bridge ++style Theme_MaterialComponents_Light_Dialog ++style Theme_MaterialComponents_Light_Dialog_Alert ++style Theme_MaterialComponents_Light_Dialog_Alert_Bridge ++style Theme_MaterialComponents_Light_Dialog_Bridge ++style Theme_MaterialComponents_Light_Dialog_FixedSize ++style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge ++style Theme_MaterialComponents_Light_Dialog_MinWidth ++style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge ++style Theme_MaterialComponents_Light_DialogWhenLarge ++style Theme_MaterialComponents_Light_LargeTouch ++style Theme_MaterialComponents_Light_NoActionBar ++style Theme_MaterialComponents_Light_NoActionBar_Bridge ++style Theme_MaterialComponents_NoActionBar ++style Theme_MaterialComponents_NoActionBar_Bridge ++style ThemeOverlay_AppCompat ++style ThemeOverlay_AppCompat_ActionBar ++style ThemeOverlay_AppCompat_Dark ++style ThemeOverlay_AppCompat_Dark_ActionBar ++style ThemeOverlay_AppCompat_DayNight ++style ThemeOverlay_AppCompat_DayNight_ActionBar ++style ThemeOverlay_AppCompat_Dialog ++style ThemeOverlay_AppCompat_Dialog_Alert ++style ThemeOverlay_AppCompat_Light ++style ThemeOverlay_Design_TextInputEditText ++style ThemeOverlay_MaterialComponents ++style ThemeOverlay_MaterialComponents_ActionBar ++style ThemeOverlay_MaterialComponents_ActionBar_Primary ++style ThemeOverlay_MaterialComponents_ActionBar_Surface ++style ThemeOverlay_MaterialComponents_AutoCompleteTextView ++style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox ++style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense ++style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox ++style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense ++style ThemeOverlay_MaterialComponents_BottomAppBar_Primary ++style ThemeOverlay_MaterialComponents_BottomAppBar_Surface ++style ThemeOverlay_MaterialComponents_BottomSheetDialog ++style ThemeOverlay_MaterialComponents_Dark ++style ThemeOverlay_MaterialComponents_Dark_ActionBar ++style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog ++style ThemeOverlay_MaterialComponents_Dialog ++style ThemeOverlay_MaterialComponents_Dialog_Alert ++style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework ++style ThemeOverlay_MaterialComponents_Light ++style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day ++style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner ++style ThemeOverlay_MaterialComponents_MaterialCalendar ++style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen ++style ThemeOverlay_MaterialComponents_TextInputEditText ++style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox ++style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense ++style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox ++style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense ++style ThemeOverlay_MaterialComponents_TimePicker ++style ThemeOverlay_MaterialComponents_TimePicker_Display ++style ThemeOverlay_MaterialComponents_Toolbar_Primary ++style ThemeOverlay_MaterialComponents_Toolbar_Surface ++style ThemeOverlayColorAccentRed ++style WhiteBackgroundDialogTheme ++style WhiteBackgroundTheme ++style Widget_AppCompat_ActionBar ++style Widget_AppCompat_ActionBar_Solid ++style Widget_AppCompat_ActionBar_TabBar ++style Widget_AppCompat_ActionBar_TabText ++style Widget_AppCompat_ActionBar_TabView ++style Widget_AppCompat_ActionButton ++style Widget_AppCompat_ActionButton_CloseMode ++style Widget_AppCompat_ActionButton_Overflow ++style Widget_AppCompat_ActionMode ++style Widget_AppCompat_ActivityChooserView ++style Widget_AppCompat_AutoCompleteTextView ++style Widget_AppCompat_Button ++style Widget_AppCompat_Button_Borderless ++style Widget_AppCompat_Button_Borderless_Colored ++style Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Widget_AppCompat_Button_Colored ++style Widget_AppCompat_Button_Small ++style Widget_AppCompat_ButtonBar ++style Widget_AppCompat_ButtonBar_AlertDialog ++style Widget_AppCompat_CompoundButton_CheckBox ++style Widget_AppCompat_CompoundButton_RadioButton ++style Widget_AppCompat_CompoundButton_Switch ++style Widget_AppCompat_DrawerArrowToggle ++style Widget_AppCompat_DropDownItem_Spinner ++style Widget_AppCompat_EditText ++style Widget_AppCompat_ImageButton ++style Widget_AppCompat_Light_ActionBar ++style Widget_AppCompat_Light_ActionBar_Solid ++style Widget_AppCompat_Light_ActionBar_Solid_Inverse ++style Widget_AppCompat_Light_ActionBar_TabBar ++style Widget_AppCompat_Light_ActionBar_TabBar_Inverse ++style Widget_AppCompat_Light_ActionBar_TabText ++style Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Widget_AppCompat_Light_ActionBar_TabView ++style Widget_AppCompat_Light_ActionBar_TabView_Inverse ++style Widget_AppCompat_Light_ActionButton ++style Widget_AppCompat_Light_ActionButton_CloseMode ++style Widget_AppCompat_Light_ActionButton_Overflow ++style Widget_AppCompat_Light_ActionMode_Inverse ++style Widget_AppCompat_Light_ActivityChooserView ++style Widget_AppCompat_Light_AutoCompleteTextView ++style Widget_AppCompat_Light_DropDownItem_Spinner ++style Widget_AppCompat_Light_ListPopupWindow ++style Widget_AppCompat_Light_ListView_DropDown ++style Widget_AppCompat_Light_PopupMenu ++style Widget_AppCompat_Light_PopupMenu_Overflow ++style Widget_AppCompat_Light_SearchView ++style Widget_AppCompat_Light_Spinner_DropDown_ActionBar ++style Widget_AppCompat_ListMenuView ++style Widget_AppCompat_ListPopupWindow ++style Widget_AppCompat_ListView ++style Widget_AppCompat_ListView_DropDown ++style Widget_AppCompat_ListView_Menu ++style Widget_AppCompat_PopupMenu ++style Widget_AppCompat_PopupMenu_Overflow ++style Widget_AppCompat_PopupWindow ++style Widget_AppCompat_ProgressBar ++style Widget_AppCompat_ProgressBar_Horizontal ++style Widget_AppCompat_RatingBar ++style Widget_AppCompat_RatingBar_Indicator ++style Widget_AppCompat_RatingBar_Small ++style Widget_AppCompat_SearchView ++style Widget_AppCompat_SearchView_ActionBar ++style Widget_AppCompat_SeekBar ++style Widget_AppCompat_SeekBar_Discrete ++style Widget_AppCompat_Spinner ++style Widget_AppCompat_Spinner_DropDown ++style Widget_AppCompat_Spinner_DropDown_ActionBar ++style Widget_AppCompat_Spinner_Underlined ++style Widget_AppCompat_TextView ++style Widget_AppCompat_TextView_SpinnerItem ++style Widget_AppCompat_Toolbar ++style Widget_AppCompat_Toolbar_Button_Navigation ++style Widget_Compat_NotificationActionContainer ++style Widget_Compat_NotificationActionText ++style Widget_Design_AppBarLayout ++style Widget_Design_BottomNavigationView ++style Widget_Design_BottomSheet_Modal ++style Widget_Design_CollapsingToolbar ++style Widget_Design_FloatingActionButton ++style Widget_Design_NavigationView ++style Widget_Design_ScrimInsetsFrameLayout ++style Widget_Design_Snackbar ++style Widget_Design_TabLayout ++style Widget_Design_TextInputEditText ++style Widget_Design_TextInputLayout ++style Widget_MaterialComponents_ActionBar_Primary ++style Widget_MaterialComponents_ActionBar_PrimarySurface ++style Widget_MaterialComponents_ActionBar_Solid ++style Widget_MaterialComponents_ActionBar_Surface ++style Widget_MaterialComponents_AppBarLayout_Primary ++style Widget_MaterialComponents_AppBarLayout_PrimarySurface ++style Widget_MaterialComponents_AppBarLayout_Surface ++style Widget_MaterialComponents_AutoCompleteTextView_FilledBox ++style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense ++style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox ++style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense ++style Widget_MaterialComponents_Badge ++style Widget_MaterialComponents_BottomAppBar ++style Widget_MaterialComponents_BottomAppBar_Colored ++style Widget_MaterialComponents_BottomAppBar_PrimarySurface ++style Widget_MaterialComponents_BottomNavigationView ++style Widget_MaterialComponents_BottomNavigationView_Colored ++style Widget_MaterialComponents_BottomNavigationView_PrimarySurface ++style Widget_MaterialComponents_BottomSheet ++style Widget_MaterialComponents_BottomSheet_Modal ++style Widget_MaterialComponents_Button ++style Widget_MaterialComponents_Button_Icon ++style Widget_MaterialComponents_Button_OutlinedButton ++style Widget_MaterialComponents_Button_OutlinedButton_Icon ++style Widget_MaterialComponents_Button_TextButton ++style Widget_MaterialComponents_Button_TextButton_Dialog ++style Widget_MaterialComponents_Button_TextButton_Dialog_Flush ++style Widget_MaterialComponents_Button_TextButton_Dialog_Icon ++style Widget_MaterialComponents_Button_TextButton_Icon ++style Widget_MaterialComponents_Button_TextButton_Snackbar ++style Widget_MaterialComponents_Button_UnelevatedButton ++style Widget_MaterialComponents_Button_UnelevatedButton_Icon ++style Widget_MaterialComponents_CardView ++style Widget_MaterialComponents_CheckedTextView ++style Widget_MaterialComponents_Chip_Action ++style Widget_MaterialComponents_Chip_Choice ++style Widget_MaterialComponents_Chip_Entry ++style Widget_MaterialComponents_Chip_Filter ++style Widget_MaterialComponents_ChipGroup ++style Widget_MaterialComponents_CircularProgressIndicator ++style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall ++style Widget_MaterialComponents_CircularProgressIndicator_Medium ++style Widget_MaterialComponents_CircularProgressIndicator_Small ++style Widget_MaterialComponents_CollapsingToolbar ++style Widget_MaterialComponents_CompoundButton_CheckBox ++style Widget_MaterialComponents_CompoundButton_RadioButton ++style Widget_MaterialComponents_CompoundButton_Switch ++style Widget_MaterialComponents_ExtendedFloatingActionButton ++style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon ++style Widget_MaterialComponents_FloatingActionButton ++style Widget_MaterialComponents_Light_ActionBar_Solid ++style Widget_MaterialComponents_LinearProgressIndicator ++style Widget_MaterialComponents_MaterialButtonToggleGroup ++style Widget_MaterialComponents_MaterialCalendar ++style Widget_MaterialComponents_MaterialCalendar_Day ++style Widget_MaterialComponents_MaterialCalendar_Day_Invalid ++style Widget_MaterialComponents_MaterialCalendar_Day_Selected ++style Widget_MaterialComponents_MaterialCalendar_Day_Today ++style Widget_MaterialComponents_MaterialCalendar_DayTextView ++style Widget_MaterialComponents_MaterialCalendar_Fullscreen ++style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton ++style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton ++style Widget_MaterialComponents_MaterialCalendar_HeaderDivider ++style Widget_MaterialComponents_MaterialCalendar_HeaderLayout ++style Widget_MaterialComponents_MaterialCalendar_HeaderSelection ++style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen ++style Widget_MaterialComponents_MaterialCalendar_HeaderTitle ++style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton ++style Widget_MaterialComponents_MaterialCalendar_Item ++style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton ++style Widget_MaterialComponents_MaterialCalendar_MonthTextView ++style Widget_MaterialComponents_MaterialCalendar_Year ++style Widget_MaterialComponents_MaterialCalendar_Year_Selected ++style Widget_MaterialComponents_MaterialCalendar_Year_Today ++style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton ++style Widget_MaterialComponents_NavigationRailView ++style Widget_MaterialComponents_NavigationRailView_Colored ++style Widget_MaterialComponents_NavigationRailView_Colored_Compact ++style Widget_MaterialComponents_NavigationRailView_Compact ++style Widget_MaterialComponents_NavigationRailView_PrimarySurface ++style Widget_MaterialComponents_NavigationView ++style Widget_MaterialComponents_PopupMenu ++style Widget_MaterialComponents_PopupMenu_ContextMenu ++style Widget_MaterialComponents_PopupMenu_ListPopupWindow ++style Widget_MaterialComponents_PopupMenu_Overflow ++style Widget_MaterialComponents_ProgressIndicator ++style Widget_MaterialComponents_ShapeableImageView ++style Widget_MaterialComponents_Slider ++style Widget_MaterialComponents_Snackbar ++style Widget_MaterialComponents_Snackbar_FullWidth ++style Widget_MaterialComponents_Snackbar_TextView ++style Widget_MaterialComponents_TabLayout ++style Widget_MaterialComponents_TabLayout_Colored ++style Widget_MaterialComponents_TabLayout_PrimarySurface ++style Widget_MaterialComponents_TextInputEditText_FilledBox ++style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense ++style Widget_MaterialComponents_TextInputEditText_OutlinedBox ++style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense ++style Widget_MaterialComponents_TextInputLayout_FilledBox ++style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense ++style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu ++style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu ++style Widget_MaterialComponents_TextInputLayout_OutlinedBox ++style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense ++style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu ++style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu ++style Widget_MaterialComponents_TextView ++style Widget_MaterialComponents_TimePicker ++style Widget_MaterialComponents_TimePicker_Button ++style Widget_MaterialComponents_TimePicker_Clock ++style Widget_MaterialComponents_TimePicker_Display ++style Widget_MaterialComponents_TimePicker_Display_TextInputEditText ++style Widget_MaterialComponents_TimePicker_ImageButton ++style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance ++style Widget_MaterialComponents_Toolbar ++style Widget_MaterialComponents_Toolbar_Primary ++style Widget_MaterialComponents_Toolbar_PrimarySurface ++style Widget_MaterialComponents_Toolbar_Surface ++style Widget_MaterialComponents_Tooltip ++style Widget_Support_CoordinatorLayout ++styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle ++styleable ActionBarLayout android_layout_gravity ++styleable ActionMenuItemView android_minWidth ++styleable ActionMenuView ++styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle ++styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount ++styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout ++styleable AnimatedStateListDrawableCompat android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration ++styleable AnimatedStateListDrawableItem android_id android_drawable ++styleable AnimatedStateListDrawableTransition android_drawable android_toId android_fromId android_reversible ++styleable AppBarLayout android_background android_touchscreenBlocksFocus android_keyboardNavigationCluster elevation expanded liftOnScroll liftOnScrollTargetViewId statusBarForeground ++styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted ++styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator ++styleable AppCompatImageView android_src srcCompat tint tintMode ++styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode ++styleable AppCompatTextHelper android_textAppearance android_drawableTop android_drawableBottom android_drawableLeft android_drawableRight android_drawableStart android_drawableEnd ++styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale ++styleable AppCompatTheme android_windowIsFloating android_windowAnimationStyle actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle ++styleable Badge backgroundColor badgeGravity badgeTextColor horizontalOffset maxCharacterCount number verticalOffset ++styleable BaseProgressIndicator android_indeterminate hideAnimationBehavior indicatorColor minHideDelay showAnimationBehavior showDelay trackColor trackCornerRadius trackThickness ++styleable BottomAppBar backgroundTint elevation fabAlignmentMode fabAnimationMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets ++styleable BottomNavigationView itemHorizontalTranslationEnabled ++styleable BottomSheetBehavior_Layout android_maxWidth android_elevation backgroundTint behavior_draggable behavior_expandedOffset behavior_fitToContents behavior_halfExpandedRatio behavior_hideable behavior_peekHeight behavior_saveFlags behavior_skipCollapsed gestureInsetBottomIgnored paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets shapeAppearance shapeAppearanceOverlay ++styleable ButtonBarLayout allowStacking ++styleable Capability queryPatterns shortcutMatchRequired ++styleable CardView android_minWidth android_minHeight cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop ++styleable Chip android_textAppearance android_textSize android_textColor android_ellipsize android_maxWidth android_text android_checkable checkedIcon checkedIconEnabled checkedIconTint checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipMinTouchTargetSize chipStartPadding chipStrokeColor chipStrokeWidth chipSurfaceColor closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible ensureMinTouchTargetSize hideMotionSpec iconEndPadding iconStartPadding rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec textEndPadding textStartPadding ++styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical selectionRequired singleLine singleSelection ++styleable CircularProgressIndicator indicatorDirectionCircular indicatorInset indicatorSize ++styleable ClockFaceView clockFaceBackgroundColor clockNumberTextColor ++styleable ClockHandView clockHandColor materialCircleRadius selectorSize ++styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance extraMultilineHeightEnabled forceApplySystemWindowInsetTop maxLines scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleCollapseMode titleEnabled toolbarId ++styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier ++styleable ColorStateListItem android_color android_alpha android_lStar alpha lStar ++styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode ++styleable Constraint android_orientation android_id android_visibility android_layout_width android_layout_height android_layout_marginLeft android_layout_marginTop android_layout_marginRight android_layout_marginBottom android_maxWidth android_maxHeight android_minWidth android_minHeight android_alpha android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_layout_marginStart android_layout_marginEnd android_translationZ android_elevation animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop motionProgress motionStagger pathMotionArc pivotAnchor transitionEasing transitionPathRotate visibilityMode ++styleable ConstraintLayout_Layout android_orientation android_padding android_paddingLeft android_paddingTop android_paddingRight android_paddingBottom android_visibility android_maxWidth android_maxHeight android_minWidth android_minHeight android_paddingStart android_paddingEnd android_elevation barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraintSet constraint_referenced_ids flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layoutDescription layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_optimizationLevel ++styleable ConstraintLayout_placeholder content placeholder_emptyVisibility ++styleable ConstraintSet android_orientation android_id android_visibility android_layout_width android_layout_height android_layout_marginLeft android_layout_marginTop android_layout_marginRight android_layout_marginBottom android_maxWidth android_maxHeight android_minWidth android_minHeight android_pivotX android_pivotY android_alpha android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_layout_marginStart android_layout_marginEnd android_translationZ android_elevation animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids deriveConstraintsFrom drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop motionProgress motionStagger pathMotionArc pivotAnchor transitionEasing transitionPathRotate ++styleable CoordinatorLayout keylines statusBarBackground ++styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline ++styleable CustomAttribute attributeName customBoolean customColorDrawableValue customColorValue customDimension customFloatValue customIntegerValue customPixelDimension customStringValue ++styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness ++styleable DrawerLayout elevation ++styleable ExtendedFloatingActionButton collapsedSize elevation extendMotionSpec hideMotionSpec showMotionSpec shrinkMotionSpec ++styleable ExtendedFloatingActionButton_Behavior_Layout behavior_autoHide behavior_autoShrink ++styleable FloatingActionButton android_enabled backgroundTint backgroundTintMode borderWidth elevation ensureMinTouchTargetSize fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec useCompatPadding ++styleable FloatingActionButton_Behavior_Layout behavior_autoHide ++styleable FlowLayout itemSpacing lineSpacing ++styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily ++styleable FontFamilyFont android_font android_fontWeight android_fontStyle android_ttcIndex android_fontVariationSettings font fontStyle fontVariationSettings fontWeight ttcIndex ++styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding ++styleable Fragment android_name android_id android_tag ++styleable FragmentContainerView android_name android_tag ++styleable GradientColor android_startColor android_endColor android_type android_centerX android_centerY android_gradientRadius android_tileMode android_centerColor android_startX android_startY android_endX android_endY ++styleable GradientColorItem android_color android_offset ++styleable ImageFilterView altSrc brightness contrast crossfade overlay round roundPercent saturation warmth ++styleable Insets paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets ++styleable KeyAttribute android_alpha android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate ++styleable KeyCycle android_alpha android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveOffset wavePeriod waveShape waveVariesBy ++styleable KeyFrame ++styleable KeyFramesAcceleration ++styleable KeyFramesVelocity ++styleable KeyPosition curveFit drawPath framePosition keyPositionType motionTarget pathMotionArc percentHeight percentWidth percentX percentY sizePercent transitionEasing ++styleable KeyTimeCycle android_alpha android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveDecay waveOffset wavePeriod waveShape ++styleable KeyTrigger framePosition motionTarget motion_postLayoutCollision motion_triggerOnCollision onCross onNegativeCross onPositiveCross triggerId triggerReceiver triggerSlack ++styleable Layout android_orientation android_layout_width android_layout_height android_layout_marginLeft android_layout_marginTop android_layout_marginRight android_layout_marginBottom android_layout_marginStart android_layout_marginEnd barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop maxHeight maxWidth minHeight minWidth ++styleable LinearLayoutCompat android_gravity android_orientation android_baselineAligned android_baselineAlignedChildIndex android_weightSum divider dividerPadding measureWithLargestChild showDividers ++styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_width android_layout_height android_layout_weight ++styleable LinearProgressIndicator indeterminateAnimationType indicatorDirectionLinear ++styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset ++styleable MaterialAlertDialog backgroundInsetBottom backgroundInsetEnd backgroundInsetStart backgroundInsetTop ++styleable MaterialAlertDialogTheme materialAlertDialogBodyTextStyle materialAlertDialogTheme materialAlertDialogTitleIconStyle materialAlertDialogTitlePanelStyle materialAlertDialogTitleTextStyle ++styleable MaterialAutoCompleteTextView android_inputType ++styleable MaterialButton android_background android_insetLeft android_insetRight android_insetTop android_insetBottom android_checkable backgroundTint backgroundTintMode cornerRadius elevation icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth ++styleable MaterialButtonToggleGroup checkedButton selectionRequired singleSelection ++styleable MaterialCalendar android_windowFullscreen dayInvalidStyle daySelectedStyle dayStyle dayTodayStyle nestedScrollable rangeFillColor yearSelectedStyle yearStyle yearTodayStyle ++styleable MaterialCalendarItem android_insetLeft android_insetRight android_insetTop android_insetBottom itemFillColor itemShapeAppearance itemShapeAppearanceOverlay itemStrokeColor itemStrokeWidth itemTextColor ++styleable MaterialCardView android_checkable cardForegroundColor checkedIcon checkedIconMargin checkedIconSize checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth ++styleable MaterialCheckBox buttonTint useMaterialThemeColors ++styleable MaterialRadioButton buttonTint useMaterialThemeColors ++styleable MaterialShape shapeAppearance shapeAppearanceOverlay ++styleable MaterialTextAppearance android_letterSpacing android_lineHeight lineHeight ++styleable MaterialTextView android_textAppearance android_lineHeight lineHeight ++styleable MaterialTimePicker clockIcon keyboardIcon ++styleable MaterialToolbar navigationIconTint subtitleCentered titleCentered ++styleable MenuGroup android_enabled android_id android_visible android_menuCategory android_orderInCategory android_checkableBehavior ++styleable MenuItem android_icon android_enabled android_id android_checked android_visible android_menuCategory android_orderInCategory android_title android_titleCondensed android_alphabeticShortcut android_numericShortcut android_checkable android_onClick actionLayout actionProviderClass actionViewClass alphabeticModifiers contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText ++styleable MenuView android_windowAnimationStyle android_itemTextAppearance android_horizontalDivider android_verticalDivider android_headerBackground android_itemBackground android_itemIconDisabledAlpha preserveIconSpacing subMenuArrow ++styleable MockView mock_diagonalsColor mock_label mock_labelBackgroundColor mock_labelColor mock_showDiagonals mock_showLabel ++styleable Motion animate_relativeTo drawPath motionPathRotate motionStagger pathMotionArc transitionEasing ++styleable MotionHelper onHide onShow ++styleable MotionLayout applyMotionScene currentState layoutDescription motionDebug motionProgress showPaths ++styleable MotionScene defaultDuration layoutDuringTransition ++styleable MotionTelltales telltales_tailColor telltales_tailScale telltales_velocityMode ++styleable NavigationBarView backgroundTint elevation itemBackground itemIconSize itemIconTint itemRippleColor itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu ++styleable NavigationRailView headerLayout menuGravity ++styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconSize itemIconTint itemMaxLines itemShapeAppearance itemShapeAppearanceOverlay itemShapeFillColor itemShapeInsetBottom itemShapeInsetEnd itemShapeInsetStart itemShapeInsetTop itemTextAppearance itemTextColor menu shapeAppearance shapeAppearanceOverlay ++styleable OnClick clickAction targetId ++styleable OnSwipe dragDirection dragScale dragThreshold limitBoundsTo maxAcceleration maxVelocity moveWhenScrollAtTop nestedScrollFlags onTouchUp touchAnchorId touchAnchorSide touchRegionId ++styleable PopupWindow android_popupBackground android_popupAnimationStyle overlapAnchor ++styleable PopupWindowBackgroundState state_above_anchor ++styleable PropertySet android_visibility android_alpha layout_constraintTag motionProgress visibilityMode ++styleable RadialViewGroup materialCircleRadius ++styleable RangeSlider minSeparation values ++styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle ++styleable RecyclerView android_orientation android_clipToPadding android_descendantFocusability fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd ++styleable ScrimInsetsFrameLayout insetForeground ++styleable ScrollingViewBehavior_Layout behavior_overlapTop ++styleable SearchView android_focusable android_maxWidth android_inputType android_imeOptions closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon ++styleable ShapeAppearance cornerFamily cornerFamilyBottomLeft cornerFamilyBottomRight cornerFamilyTopLeft cornerFamilyTopRight cornerSize cornerSizeBottomLeft cornerSizeBottomRight cornerSizeTopLeft cornerSizeTopRight ++styleable ShapeableImageView contentPadding contentPaddingBottom contentPaddingEnd contentPaddingLeft contentPaddingRight contentPaddingStart contentPaddingTop shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth ++styleable Slider android_enabled android_value android_stepSize android_valueFrom android_valueTo haloColor haloRadius labelBehavior labelStyle thumbColor thumbElevation thumbRadius thumbStrokeColor thumbStrokeWidth tickColor tickColorActive tickColorInactive tickVisible trackColor trackColorActive trackColorInactive trackHeight ++styleable Snackbar snackbarButtonStyle snackbarStyle snackbarTextViewStyle ++styleable SnackbarLayout android_maxWidth actionTextColorAlpha animationMode backgroundOverlayColorAlpha backgroundTint backgroundTintMode elevation maxActionInlineWidth ++styleable Spinner android_entries android_popupBackground android_prompt android_dropDownWidth popupTheme ++styleable State android_id constraints ++styleable StateListDrawable android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration ++styleable StateListDrawableItem android_drawable ++styleable StateSet defaultState ++styleable SwitchCompat android_textOn android_textOff android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode ++styleable SwitchMaterial useMaterialThemeColors ++styleable TabItem android_icon android_layout android_text ++styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorAnimationMode tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple ++styleable TextAppearance android_textSize android_typeface android_textStyle android_textColor android_textColorHint android_textColorLink android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_fontFamily android_textFontWeight fontFamily fontVariationSettings textAllCaps textLocale ++styleable TextInputEditText textInputLayoutFocusedRectEnabled ++styleable TextInputLayout android_enabled android_textColorHint android_maxWidth android_minWidth android_hint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeErrorColor boxStrokeWidth boxStrokeWidthFocused counterEnabled counterMaxLength counterOverflowTextAppearance counterOverflowTextColor counterTextAppearance counterTextColor endIconCheckable endIconContentDescription endIconDrawable endIconMode endIconTint endIconTintMode errorContentDescription errorEnabled errorIconDrawable errorIconTint errorIconTintMode errorTextAppearance errorTextColor expandedHintEnabled helperText helperTextEnabled helperTextTextAppearance helperTextTextColor hintAnimationEnabled hintEnabled hintTextAppearance hintTextColor passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode placeholderText placeholderTextAppearance placeholderTextColor prefixText prefixTextAppearance prefixTextColor shapeAppearance shapeAppearanceOverlay startIconCheckable startIconContentDescription startIconDrawable startIconTint startIconTintMode suffixText suffixTextAppearance suffixTextColor ++styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance ++styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor ++styleable Tooltip android_textAppearance android_padding android_layout_margin android_minWidth android_minHeight android_text backgroundTint ++styleable Transform android_transformPivotX android_transformPivotY android_translationX android_translationY android_scaleX android_scaleY android_rotation android_rotationX android_rotationY android_translationZ android_elevation ++styleable Transition android_id autoTransition constraintSetEnd constraintSetStart duration layoutDuringTransition motionInterpolator pathMotionArc staggered transitionDisable transitionFlags ++styleable Variant constraints region_heightLessThan region_heightMoreThan region_widthLessThan region_widthMoreThan ++styleable View android_theme android_focusable paddingEnd paddingStart theme ++styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode ++styleable ViewPager2 android_orientation ++styleable ViewStubCompat android_id android_layout android_inflatedId ++xml standalone_badge ++xml standalone_badge_gravity_bottom_end ++xml standalone_badge_gravity_bottom_start ++xml standalone_badge_gravity_top_start ++xml standalone_badge_offset +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab +new file mode 100644 +index 0000000..a8ef990 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +new file mode 100644 +index 0000000..826d1cf +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len +new file mode 100644 +index 0000000..606d521 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len +new file mode 100644 +index 0000000..b8872cd +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at +new file mode 100644 +index 0000000..2aaae6c +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i +new file mode 100644 +index 0000000..2f6ff72 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab +new file mode 100644 +index 0000000..52c52a4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +new file mode 100644 +index 0000000..07632fd +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +new file mode 100644 +index 0000000..723a782 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len +new file mode 100644 +index 0000000..bff9925 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +new file mode 100644 +index 0000000..ea00ff6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i +new file mode 100644 +index 0000000..2c47528 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +new file mode 100644 +index 0000000..91da7f7 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +new file mode 100644 +index 0000000..07632fd +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..723a782 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +new file mode 100644 +index 0000000..bff9925 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +new file mode 100644 +index 0000000..b2afe81 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +new file mode 100644 +index 0000000..2c47528 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab +new file mode 100644 +index 0000000..830bd87 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream +new file mode 100644 +index 0000000..5ce870a +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len +new file mode 100644 +index 0000000..029e602 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len +new file mode 100644 +index 0000000..a9f80ae +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at +new file mode 100644 +index 0000000..c763066 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i +new file mode 100644 +index 0000000..c59762d +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab +new file mode 100644 +index 0000000..64ba980 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +new file mode 100644 +index 0000000..4327a7e +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..25490a1 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +new file mode 100644 +index 0000000..86c9c3e +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +new file mode 100644 +index 0000000..1a05f46 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +new file mode 100644 +index 0000000..a4bc10b +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab +new file mode 100644 +index 0000000..dd67817 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream +new file mode 100644 +index 0000000..591a437 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream.len +new file mode 100644 +index 0000000..ffc9b0d +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.len +new file mode 100644 +index 0000000..a9f80ae +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.values.at +new file mode 100644 +index 0000000..df44f54 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i +new file mode 100644 +index 0000000..fe67011 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab +new file mode 100644 +index 0000000..fe0f015 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream +new file mode 100644 +index 0000000..d195590 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +new file mode 100644 +index 0000000..013ea45 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len +new file mode 100644 +index 0000000..6f677df +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at +new file mode 100644 +index 0000000..8f88b0a +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i +new file mode 100644 +index 0000000..94461d8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab +new file mode 100644 +index 0000000..2986c28 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream +new file mode 100644 +index 0000000..a293bce +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len +new file mode 100644 +index 0000000..0eb7d8c +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len +new file mode 100644 +index 0000000..66444d2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at +new file mode 100644 +index 0000000..d789107 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i +new file mode 100644 +index 0000000..555a0ac +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab +new file mode 100644 +index 0000000..35036d0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +new file mode 100644 +index 0000000..f3146d6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +new file mode 100644 +index 0000000..fcea17f +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len +new file mode 100644 +index 0000000..b67c227 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +new file mode 100644 +index 0000000..d29867d +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i +new file mode 100644 +index 0000000..45b043d +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab +new file mode 100644 +index 0000000..d6cf0b3 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream +new file mode 100644 +index 0000000..dfa8fba +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +new file mode 100644 +index 0000000..aa7972f +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len +new file mode 100644 +index 0000000..6f677df +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at +new file mode 100644 +index 0000000..36bf004 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i +new file mode 100644 +index 0000000..d29cbbd +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab +new file mode 100644 +index 0000000..ea736fb +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream +new file mode 100644 +index 0000000..db55fca +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +new file mode 100644 +index 0000000..9b6aee9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len +new file mode 100644 +index 0000000..b31f54b +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at +new file mode 100644 +index 0000000..92039be +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i +new file mode 100644 +index 0000000..20386c2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +new file mode 100644 +index 0000000..04040dd +--- /dev/null ++++ b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +@@ -0,0 +1,2 @@ ++35 ++0 +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab +new file mode 100644 +index 0000000..b3f4095 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream +new file mode 100644 +index 0000000..8692e07 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len +new file mode 100644 +index 0000000..606d521 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len +new file mode 100644 +index 0000000..b8872cd +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at +new file mode 100644 +index 0000000..cc7303b +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i +new file mode 100644 +index 0000000..3b65a7e +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab +new file mode 100644 +index 0000000..a3484d4 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream +new file mode 100644 +index 0000000..ce5e93d +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len +new file mode 100644 +index 0000000..68d7fbd +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len +new file mode 100644 +index 0000000..b8872cd +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at +new file mode 100644 +index 0000000..597d1d9 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i +new file mode 100644 +index 0000000..2c3ac34 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab +new file mode 100644 +index 0000000..cdfb2e8 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream +new file mode 100644 +index 0000000..bac8710 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len +new file mode 100644 +index 0000000..88685c6 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len +new file mode 100644 +index 0000000..f82e9dd +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at +new file mode 100644 +index 0000000..f0ccda2 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i +new file mode 100644 +index 0000000..67a7fb0 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/last-build.bin b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/last-build.bin +new file mode 100644 +index 0000000..332bc4c +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/cacheable/last-build.bin differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin +new file mode 100644 +index 0000000..00fb171 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/local-state/build-history.bin b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/local-state/build-history.bin +new file mode 100644 +index 0000000..431224a +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileCoreNativeDebugKotlin/local-state/build-history.bin differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab +new file mode 100644 +index 0000000..bd37191 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +new file mode 100644 +index 0000000..fecf272 +--- /dev/null ++++ b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +@@ -0,0 +1 @@ ++s../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/matcher/IsDisplayingAtLeastDetoxMatcher.kte../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/scroll/DetoxScrollActions.ktR../node_modules/detox/android/detox/src/main/java/com/wix/detox/common/UIThread.kta../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/ViewScreenshot.ktc../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/ReactNativeExtension.ktW../node_modules/detox/android/detox/src/full/java/com/wix/detox/common/RNAnnotations.ktY../node_modules/detox/android/detox/src/full/java/com/wix/detox/NotificationDataParser.kt`../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/matcher/ViewMatchers.ktq../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/common/utils/UiControllerUtils.kt[../node_modules/detox/android/detox/src/main/java/com/wix/detox/action/common/MotionDefs.ktd../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/common/ReactSliderHelper.ktZ../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/utils/Vector2D.kt_../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/scroll/LinearSwiper.ktW../node_modules/detox/android/detox/src/full/java/com/wix/detox/ActivityLaunchHelper.kt_../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/scroll/ScrollProbes.ktf../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/common/MotionEvents.kt_../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/MultipleViewsAction.kt../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/uimodule/DispatchCommandOperationReflected.ktL../node_modules/detox/android/detox/src/full/java/com/wix/detox/DetoxMain.kt|../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/network/NetworkIdlingResource.kt../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/storage/AsyncStorageIdlingResource.ktq../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/matcher/WithAccessibilityLabelMatcher.ktk../node_modules/detox/android/detox/src/full/java/com/wix/detox/adapters/server/QueryStatusActionHandler.kt_../node_modules/detox/android/detox/src/main/java/com/wix/detox/common/collect/PairsIterator.ktT../node_modules/detox/android/detox/src/main/java/com/wix/detox/common/ErrorUtils.ktb../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/ReactNativeReloader.ktj../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/registry/BusyResourcesInquirer.kt~../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/storage/SerialExecutorReflected.kt`../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/helpers/RNHelpers.ktg../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/common/MaterialSliderHelper.kto../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/performer/SingleViewActionPerformer.kt\../node_modules/detox/android/detox/src/full/java/com/wix/detox/inquiry/DetoxBusyResource.kt../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory.ktg../node_modules/detox/android/detox/src/main/java/com/wix/detox/common/proxy/SpyingInvocationHandler.ktT../node_modules/detox/android/detox/src/full/java/com/wix/detox/DetoxCrashHandler.ktu../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/idlingresources/DescriptiveIdlingResource.kte../node_modules/detox/android/detox/src/full/java/com/wix/detox/adapters/server/DetoxServerAdapter.ktr../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/DetoxIdlingResource.ktq../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/factory/LooperName.ktW../node_modules/detox/android/detox/src/full/java/com/wix/detox/LaunchIntentsFactory.kt^../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/scroll/DetoxSwiper.ktW../node_modules/detox/android/detox/src/main/java/com/wix/detox/common/JsonConverter.kto../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/action/AdjustSliderToPositionAction.kt`../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/matcher/RegexMatcher.kt]../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/scroll/DetoxSwipe.ktZ../node_modules/detox/android/detox/src/main/java/com/wix/detox/common/proxy/MethodsSpy.kt../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResource.ktf../node_modules/detox/android/detox/src/full/java/com/wix/detox/adapters/server/DetoxActionHandlers.ktR../node_modules/detox/android/detox/src/main/java/com/wix/detox/common/DetoxLog.kth../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/ReactNativeLoadingMonitor.kt../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/uimodule/ViewCommandOpsQueueReflected.kt`../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/ViewActionWithResult.ktf../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/ScrollToIndexAction.kt../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/uimodule/NativeHierarchyManagerReflected.ktV../node_modules/detox/android/detox/src/full/java/com/wix/detox/common/UIExtensions.ktg../node_modules/detox/android/detox/src/full/java/com/wix/detox/inquiry/DetoxBusyResourceDescription.ktr../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/performer/MultipleViewsActionPerformer.ktm../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/action/RNDetoxAccessibilityAction.kti../node_modules/detox/android/detox/src/full/java/com/wix/detox/adapters/server/DetoxActionsDispatcher.ktf../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/action/GetAttributesAction.kt../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/uimodule/UIManagerModuleReflected.ktR../node_modules/detox/android/detox/src/full/java/com/wix/detox/DetoxANRHandler.ktz../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/timers/TimersIdlingResource.kt~../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/uimodule/UIModuleIdlingResource.ktS../node_modules/detox/android/detox/src/full/java/com/wix/detox/TestEngineFacade.ktU../node_modules/detox/android/detox/src/full/java/com/wix/detox/config/DetoxConfig.ktb../node_modules/detox/android/detox/src/full/java/com/wix/detox/adapters/server/DetoxServerInfo.ktc../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/common/TapEvents.ktd../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/DetoxCustomTapper.kti../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/performer/ViewActionPerformer.kta../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/DetoxSingleTap.ktf../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/scroll/ScrollEdgeException.ktk../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/TakeViewScreenshotAction.ktr../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/common/utils/ViewInteractionExt.ktp../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/common/DetoxViewConfiguration.ktl../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/common/UiControllerImplReflected.kty../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources.ktx../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/looper/MQThreadsReflector.ktj../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/DetoxSwipeWithLongPress.kt../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/network/NetworkingModuleReflected.kt_../node_modules/detox/android/detox/src/full/java/com/wix/detox/config/DetoxIdlePolicyConfig.kt[../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/UiControllerSpy.kti../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/LongPressAndDragAction.kt\../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/utils/RNUtils.ktf../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/action/common/ReflectUtils.ktl../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/hierarchy/ViewHierarchyGenerator.kt^../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/ui/UIExtensions.ktY../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/DeviceDisplay.ktz../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/factory/IdlingResourcesName.ktz../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource.kta../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/ReactMarkersLogger.ktX../node_modules/detox/android/detox/src/main/java/com/wix/detox/common/TextFileReader.kte../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/hierarchy/RootViewsHelper.ktf../node_modules/detox/android/detox/src/full/java/com/wix/detox/espresso/matcher/ViewAtIndexMatcher.kt^../node_modules/detox/android/detox/src/main/java/com/wix/detox/espresso/scroll/SwipeHelper.kt^../node_modules/detox/android/detox/src/full/java/com/wix/detox/reactnative/ReactNativeInfo.kt +\ No newline at end of file +diff --git a/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len +new file mode 100644 +index 0000000..8fc1619 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len +new file mode 100644 +index 0000000..3375390 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at +new file mode 100644 +index 0000000..deb621d +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i +new file mode 100644 +index 0000000..8dccb82 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab +new file mode 100644 +index 0000000..9c94521 +Binary files /dev/null and b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ +diff --git a/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +new file mode 100644 +index 0000000..75f5d6e +--- /dev/null ++++ b/node_modules/detox/android/detox/build/kotlin/compileFullDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +@@ -0,0 +1 @@ ++"com.wix.detox.ActivityLaunchHelper,com.wix.detox.ActivityLaunchHelper.Companioncom.wix.detox.DetoxANRHandler'com.wix.detox.DetoxANRHandler.Companioncom.wix.detox.DetoxCrashHandler)com.wix.detox.DetoxCrashHandler.Companioncom.wix.detox.DetoxMain"com.wix.detox.LaunchIntentsFactory$com.wix.detox.NotificationDataParsercom.wix.detox.TestEngineFacade0com.wix.detox.adapters.server.DetoxActionHandler0com.wix.detox.adapters.server.ReadyActionHandlercom.wix.detox.espresso.matcher.IsDisplayingAtLeastDetoxMatcher+com.wix.detox.espresso.matcher.RegexMatcher1com.wix.detox.espresso.matcher.ViewAtIndexMatcher6com.wix.detox.espresso.matcher.IsAssignableFromMatchercom.wix.detox.espresso.performer.ViewActionPerformer.Companion5com.wix.detox.espresso.registry.BusyResourcesInquirer?com.wix.detox.espresso.registry.BusyResourcesInquirer.Companion'com.wix.detox.inquiry.DetoxBusyResource:com.wix.detox.inquiry.DetoxBusyResource.BusyIdlingResource6com.wix.detox.inquiry.DetoxBusyResource.BusyAsyncTasks2com.wix.detox.inquiry.DetoxBusyResourceDescription:com.wix.detox.inquiry.DetoxBusyResourceDescription.Builder,com.wix.detox.reactnative.ReactMarkersLogger.com.wix.detox.reactnative.ReactNativeExtension#com.wix.detox.reactnative.RNVersion)com.wix.detox.reactnative.ReactNativeInfo3com.wix.detox.reactnative.ReactNativeLoadingMonitor1com.wix.detox.reactnative.DummyListenerIdentifier-com.wix.detox.reactnative.ReactNativeReLoader+com.wix.detox.reactnative.helpers.RNHelpers=com.wix.detox.reactnative.idlingresources.DetoxIdlingResourceDcom.wix.detox.reactnative.idlingresources.ReactNativeIdlingResourcesQcom.wix.detox.reactnative.idlingresources.animations.AnimatedModuleIdlingResourceEcom.wix.detox.reactnative.idlingresources.bridge.BridgeIdlingResourceOcom.wix.detox.reactnative.idlingresources.bridge.BridgeIdlingResource.CompanionLcom.wix.detox.reactnative.idlingresources.factory.DetoxIdlingResourceFactoryEcom.wix.detox.reactnative.idlingresources.factory.IdlingResourcesNamecom.wix.detox.espresso.matcher.IsDisplayingAtLeastDetoxMatcher+com.wix.detox.espresso.matcher.RegexMatcher1com.wix.detox.espresso.matcher.ViewAtIndexMatcher6com.wix.detox.espresso.matcher.IsAssignableFromMatchercom.wix.detox.espresso.performer.ViewActionPerformer.Companion5com.wix.detox.espresso.registry.BusyResourcesInquirer?com.wix.detox.espresso.registry.BusyResourcesInquirer.Companion'com.wix.detox.inquiry.DetoxBusyResource:com.wix.detox.inquiry.DetoxBusyResource.BusyIdlingResource6com.wix.detox.inquiry.DetoxBusyResource.BusyAsyncTasks2com.wix.detox.inquiry.DetoxBusyResourceDescription:com.wix.detox.inquiry.DetoxBusyResourceDescription.Builder,com.wix.detox.reactnative.ReactMarkersLogger.com.wix.detox.reactnative.ReactNativeExtension#com.wix.detox.reactnative.RNVersion)com.wix.detox.reactnative.ReactNativeInfo3com.wix.detox.reactnative.ReactNativeLoadingMonitor1com.wix.detox.reactnative.DummyListenerIdentifier-com.wix.detox.reactnative.ReactNativeReLoader+com.wix.detox.reactnative.helpers.RNHelpers=com.wix.detox.reactnative.idlingresources.DetoxIdlingResourceDcom.wix.detox.reactnative.idlingresources.ReactNativeIdlingResourcesQcom.wix.detox.reactnative.idlingresources.animations.AnimatedModuleIdlingResourceEcom.wix.detox.reactnative.idlingresources.bridge.BridgeIdlingResourceOcom.wix.detox.reactnative.idlingresources.bridge.BridgeIdlingResource.CompanionLcom.wix.detox.reactnative.idlingresources.factory.DetoxIdlingResourceFactoryEcom.wix.detox.reactnative.idlingresources.factory.IdlingResourcesNamecom/wix/detox/espresso/matcher/IsDisplayingAtLeastDetoxMatcher+com/wix/detox/espresso/matcher/RegexMatcher-com/wix/detox/espresso/matcher/RegexMatcherKt1com/wix/detox/espresso/matcher/ViewAtIndexMatcher6com/wix/detox/espresso/matcher/IsAssignableFromMatcher+com/wix/detox/espresso/matcher/ViewMatchers;com/wix/detox/espresso/matcher/ViewMatchers$isOfClassName$1Bcom/wix/detox/espresso/matcher/ViewMatchers$toHaveSliderPosition$1com/wix/detox/espresso/performer/ViewActionPerformer$Companion5com/wix/detox/espresso/registry/BusyResourcesInquirer?com/wix/detox/espresso/registry/BusyResourcesInquirer$Companion7com/wix/detox/espresso/registry/BusyResourcesInquirerKt'com/wix/detox/inquiry/DetoxBusyResource:com/wix/detox/inquiry/DetoxBusyResource$BusyIdlingResource6com/wix/detox/inquiry/DetoxBusyResource$BusyAsyncTasks2com/wix/detox/inquiry/DetoxBusyResourceDescription:com/wix/detox/inquiry/DetoxBusyResourceDescription$Builder,com/wix/detox/reactnative/ReactMarkersLogger.com/wix/detox/reactnative/ReactNativeExtension0com/wix/detox/reactnative/ReactNativeExtensionKt#com/wix/detox/reactnative/RNVersion)com/wix/detox/reactnative/ReactNativeInfo3com/wix/detox/reactnative/ReactNativeLoadingMonitorVcom/wix/detox/reactnative/ReactNativeLoadingMonitor$subscribeToNewRNContextUpdates$1$11com/wix/detox/reactnative/DummyListenerIdentifier5com/wix/detox/reactnative/ReactNativeLoadingMonitorKt-com/wix/detox/reactnative/ReactNativeReLoader+com/wix/detox/reactnative/helpers/RNHelpers-com/wix/detox/reactnative/helpers/RNHelpersKt=com/wix/detox/reactnative/idlingresources/DetoxIdlingResourceDcom/wix/detox/reactnative/idlingresources/ReactNativeIdlingResourcesRcom/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$registerAll$1[com/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$setupIdlingResources$1Qcom/wix/detox/reactnative/idlingresources/ReactNativeIdlingResources$WhenMappingsFcom/wix/detox/reactnative/idlingresources/ReactNativeIdlingResourcesKtQcom/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResourceScom/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResourceKtEcom/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResourceOcom/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource$CompanionLcom/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactoryUcom/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactory$create$2Ecom/wix/detox/reactnative/idlingresources/factory/IdlingResourcesNamecom/wix/detox/espresso/matcher/IsDisplayingAtLeastDetoxMatcher+com/wix/detox/espresso/matcher/RegexMatcher-com/wix/detox/espresso/matcher/RegexMatcherKt1com/wix/detox/espresso/matcher/ViewAtIndexMatcher6com/wix/detox/espresso/matcher/IsAssignableFromMatcher+com/wix/detox/espresso/matcher/ViewMatcherscom/wix/detox/espresso/performer/ViewActionPerformer$Companion5com/wix/detox/espresso/registry/BusyResourcesInquirer?com/wix/detox/espresso/registry/BusyResourcesInquirer$Companion7com/wix/detox/espresso/registry/BusyResourcesInquirerKt'com/wix/detox/inquiry/DetoxBusyResource:com/wix/detox/inquiry/DetoxBusyResource$BusyIdlingResource6com/wix/detox/inquiry/DetoxBusyResource$BusyAsyncTasks2com/wix/detox/inquiry/DetoxBusyResourceDescription:com/wix/detox/inquiry/DetoxBusyResourceDescription$Builder,com/wix/detox/reactnative/ReactMarkersLogger.com/wix/detox/reactnative/ReactNativeExtension0com/wix/detox/reactnative/ReactNativeExtensionKt#com/wix/detox/reactnative/RNVersion)com/wix/detox/reactnative/ReactNativeInfo3com/wix/detox/reactnative/ReactNativeLoadingMonitor1com/wix/detox/reactnative/DummyListenerIdentifier5com/wix/detox/reactnative/ReactNativeLoadingMonitorKt-com/wix/detox/reactnative/ReactNativeReLoader+com/wix/detox/reactnative/helpers/RNHelpers-com/wix/detox/reactnative/helpers/RNHelpersKt=com/wix/detox/reactnative/idlingresources/DetoxIdlingResourceDcom/wix/detox/reactnative/idlingresources/ReactNativeIdlingResourcesFcom/wix/detox/reactnative/idlingresources/ReactNativeIdlingResourcesKtQcom/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResourceScom/wix/detox/reactnative/idlingresources/animations/AnimatedModuleIdlingResourceKtEcom/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResourceOcom/wix/detox/reactnative/idlingresources/bridge/BridgeIdlingResource$CompanionLcom/wix/detox/reactnative/idlingresources/factory/DetoxIdlingResourceFactoryEcom/wix/detox/reactnative/idlingresources/factory/IdlingResourcesName ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/jet/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..a926f3b +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "io.invertase.jet", ++ "variantName": "debug", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar b/node_modules/jet/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar +new file mode 100644 +index 0000000..6aedf08 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar differ +diff --git a/node_modules/jet/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/jet/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +@@ -0,0 +1,6 @@ ++aarFormatVersion=1.0 ++aarMetadataVersion=1.0 ++minCompileSdk=1 ++minCompileSdkExtension=0 ++minAndroidGradlePluginVersion=1.0.0 ++coreLibraryDesugaringEnabled=false +diff --git a/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/debug-artifact-dependencies.xml b/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/debug-artifact-dependencies.xml +new file mode 100644 +index 0000000..c3f5077 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/debug-artifact-dependencies.xml +@@ -0,0 +1,419 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/debug-artifact-libraries.xml b/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/debug-artifact-libraries.xml +new file mode 100644 +index 0000000..4a62618 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/debug-artifact-libraries.xml +@@ -0,0 +1,735 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/debug.xml b/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/debug.xml +new file mode 100644 +index 0000000..c625a10 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/debug.xml +@@ -0,0 +1,30 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/module.xml b/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/module.xml +new file mode 100644 +index 0000000..634a447 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/android_test_lint_model/debug/generateDebugAndroidTestLintModel/module.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/android_test_lint_partial_results/debug/lintAnalyzeDebugAndroidTest/out/lint-partial.xml b/node_modules/jet/android/build/intermediates/android_test_lint_partial_results/debug/lintAnalyzeDebugAndroidTest/out/lint-partial.xml +new file mode 100644 +index 0000000..e7731fd +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/android_test_lint_partial_results/debug/lintAnalyzeDebugAndroidTest/out/lint-partial.xml +@@ -0,0 +1,9 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/jet/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/annotation_processor_list/debugAndroidTest/javaPreCompileDebugAndroidTest/annotationProcessors.json b/node_modules/jet/android/build/intermediates/annotation_processor_list/debugAndroidTest/javaPreCompileDebugAndroidTest/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/annotation_processor_list/debugAndroidTest/javaPreCompileDebugAndroidTest/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/node_modules/jet/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/jet/android/build/intermediates/apk_ide_redirect_file/debugAndroidTest/createDebugAndroidTestApkListingFileRedirect/redirect.txt b/node_modules/jet/android/build/intermediates/apk_ide_redirect_file/debugAndroidTest/createDebugAndroidTestApkListingFileRedirect/redirect.txt +new file mode 100644 +index 0000000..84e7ae0 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/apk_ide_redirect_file/debugAndroidTest/createDebugAndroidTestApkListingFileRedirect/redirect.txt +@@ -0,0 +1,2 @@ ++#- File Locator - ++listingFile=../../../../outputs/apk/androidTest/debug/output-metadata.json +diff --git a/node_modules/jet/android/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/processDebugAndroidTestResources/R.jar b/node_modules/jet/android/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/processDebugAndroidTestResources/R.jar +new file mode 100644 +index 0000000..d258718 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/processDebugAndroidTestResources/R.jar differ +diff --git a/node_modules/jet/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/jet/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..d446fec +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/jet/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/jet/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..fe56275 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/jet/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/jet/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/jet/android/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.6.0 b/node_modules/jet/android/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.6.0 +new file mode 100644 +index 0000000..5a3e3a5 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.6.0 +@@ -0,0 +1,89 @@ ++# This is a configuration file for ProGuard. ++# http://proguard.sourceforge.net/index.html#manual/usage.html ++# ++# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with ++# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and ++# will be ignored by new version of the Android plugin for Gradle. ++ ++# Optimizations: If you don't want to optimize, use the proguard-android.txt configuration file ++# instead of this one, which turns off the optimization flags. ++-allowaccessmodification ++ ++# Preserve some attributes that may be required for reflection. ++-keepattributes AnnotationDefault, ++ EnclosingMethod, ++ InnerClasses, ++ RuntimeVisibleAnnotations, ++ RuntimeVisibleParameterAnnotations, ++ RuntimeVisibleTypeAnnotations, ++ Signature ++ ++-keep public class com.google.vending.licensing.ILicensingService ++-keep public class com.android.vending.licensing.ILicensingService ++-keep public class com.google.android.vending.licensing.ILicensingService ++-dontnote com.android.vending.licensing.ILicensingService ++-dontnote com.google.vending.licensing.ILicensingService ++-dontnote com.google.android.vending.licensing.ILicensingService ++ ++# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native ++-keepclasseswithmembernames,includedescriptorclasses class * { ++ native ; ++} ++ ++# Keep setters in Views so that animations can still work. ++-keepclassmembers public class * extends android.view.View { ++ void set*(***); ++ *** get*(); ++} ++ ++# We want to keep methods in Activity that could be used in the XML attribute onClick. ++-keepclassmembers class * extends android.app.Activity { ++ public void *(android.view.View); ++} ++ ++# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations ++-keepclassmembers enum * { ++ public static **[] values(); ++ public static ** valueOf(java.lang.String); ++} ++ ++-keepclassmembers class * implements android.os.Parcelable { ++ public static final ** CREATOR; ++} ++ ++# Preserve annotated Javascript interface methods. ++-keepclassmembers class * { ++ @android.webkit.JavascriptInterface ; ++} ++ ++# The support libraries contains references to newer platform versions. ++# Don't warn about those in case this app is linking against an older ++# platform version. We know about them, and they are safe. ++-dontnote android.support.** ++-dontnote androidx.** ++-dontwarn android.support.** ++-dontwarn androidx.** ++ ++# Understand the @Keep support annotation. ++-keep class android.support.annotation.Keep ++ ++-keep @android.support.annotation.Keep class * {*;} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep (...); ++} ++ ++# These classes are duplicated between android.jar and org.apache.http.legacy.jar. ++-dontnote org.apache.http.** ++-dontnote android.net.http.** ++ ++# These classes are duplicated between android.jar and core-lambda-stubs.jar. ++-dontnote java.lang.invoke.** +diff --git a/node_modules/jet/android/build/intermediates/default_proguard_files/global/proguard-android.txt-8.6.0 b/node_modules/jet/android/build/intermediates/default_proguard_files/global/proguard-android.txt-8.6.0 +new file mode 100644 +index 0000000..6f7e4ef +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/default_proguard_files/global/proguard-android.txt-8.6.0 +@@ -0,0 +1,95 @@ ++# This is a configuration file for ProGuard. ++# http://proguard.sourceforge.net/index.html#manual/usage.html ++# ++# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with ++# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and ++# will be ignored by new version of the Android plugin for Gradle. ++ ++# Optimization is turned off by default. Dex does not like code run ++# through the ProGuard optimize steps (and performs some ++# of these optimizations on its own). ++# Note that if you want to enable optimization, you cannot just ++# include optimization flags in your own project configuration file; ++# instead you will need to point to the ++# "proguard-android-optimize.txt" file instead of this one from your ++# project.properties file. ++-dontoptimize ++ ++# Preserve some attributes that may be required for reflection. ++-keepattributes AnnotationDefault, ++ EnclosingMethod, ++ InnerClasses, ++ RuntimeVisibleAnnotations, ++ RuntimeVisibleParameterAnnotations, ++ RuntimeVisibleTypeAnnotations, ++ Signature ++ ++-keep public class com.google.vending.licensing.ILicensingService ++-keep public class com.android.vending.licensing.ILicensingService ++-keep public class com.google.android.vending.licensing.ILicensingService ++-dontnote com.android.vending.licensing.ILicensingService ++-dontnote com.google.vending.licensing.ILicensingService ++-dontnote com.google.android.vending.licensing.ILicensingService ++ ++# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native ++-keepclasseswithmembernames,includedescriptorclasses class * { ++ native ; ++} ++ ++# Keep setters in Views so that animations can still work. ++-keepclassmembers public class * extends android.view.View { ++ void set*(***); ++ *** get*(); ++} ++ ++# We want to keep methods in Activity that could be used in the XML attribute onClick. ++-keepclassmembers class * extends android.app.Activity { ++ public void *(android.view.View); ++} ++ ++# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations ++-keepclassmembers enum * { ++ public static **[] values(); ++ public static ** valueOf(java.lang.String); ++} ++ ++-keepclassmembers class * implements android.os.Parcelable { ++ public static final ** CREATOR; ++} ++ ++# Preserve annotated Javascript interface methods. ++-keepclassmembers class * { ++ @android.webkit.JavascriptInterface ; ++} ++ ++# The support libraries contains references to newer platform versions. ++# Don't warn about those in case this app is linking against an older ++# platform version. We know about them, and they are safe. ++-dontnote android.support.** ++-dontnote androidx.** ++-dontwarn android.support.** ++-dontwarn androidx.** ++ ++# Understand the @Keep support annotation. ++-keep class android.support.annotation.Keep ++ ++-keep @android.support.annotation.Keep class * {*;} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep (...); ++} ++ ++# These classes are duplicated between android.jar and org.apache.http.legacy.jar. ++-dontnote org.apache.http.** ++-dontnote android.net.http.** ++ ++# These classes are duplicated between android.jar and core-lambda-stubs.jar. ++-dontnote java.lang.invoke.** +diff --git a/node_modules/jet/android/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.6.0 b/node_modules/jet/android/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.6.0 +new file mode 100644 +index 0000000..7bbb228 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.6.0 +@@ -0,0 +1,89 @@ ++# This is a configuration file for ProGuard. ++# http://proguard.sourceforge.net/index.html#manual/usage.html ++# ++# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with ++# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and ++# will be ignored by new version of the Android plugin for Gradle. ++ ++# Optimizations can be turned on and off in the 'postProcessing' DSL block. ++# The configuration below is applied if optimizations are enabled. ++-allowaccessmodification ++ ++# Preserve some attributes that may be required for reflection. ++-keepattributes AnnotationDefault, ++ EnclosingMethod, ++ InnerClasses, ++ RuntimeVisibleAnnotations, ++ RuntimeVisibleParameterAnnotations, ++ RuntimeVisibleTypeAnnotations, ++ Signature ++ ++-keep public class com.google.vending.licensing.ILicensingService ++-keep public class com.android.vending.licensing.ILicensingService ++-keep public class com.google.android.vending.licensing.ILicensingService ++-dontnote com.android.vending.licensing.ILicensingService ++-dontnote com.google.vending.licensing.ILicensingService ++-dontnote com.google.android.vending.licensing.ILicensingService ++ ++# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native ++-keepclasseswithmembernames,includedescriptorclasses class * { ++ native ; ++} ++ ++# Keep setters in Views so that animations can still work. ++-keepclassmembers public class * extends android.view.View { ++ void set*(***); ++ *** get*(); ++} ++ ++# We want to keep methods in Activity that could be used in the XML attribute onClick. ++-keepclassmembers class * extends android.app.Activity { ++ public void *(android.view.View); ++} ++ ++# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations ++-keepclassmembers enum * { ++ public static **[] values(); ++ public static ** valueOf(java.lang.String); ++} ++ ++-keepclassmembers class * implements android.os.Parcelable { ++ public static final ** CREATOR; ++} ++ ++# Preserve annotated Javascript interface methods. ++-keepclassmembers class * { ++ @android.webkit.JavascriptInterface ; ++} ++ ++# The support libraries contains references to newer platform versions. ++# Don't warn about those in case this app is linking against an older ++# platform version. We know about them, and they are safe. ++-dontnote android.support.** ++-dontnote androidx.** ++-dontwarn android.support.** ++-dontwarn androidx.** ++ ++# Understand the @Keep support annotation. ++-keep class android.support.annotation.Keep ++ ++-keep @android.support.annotation.Keep class * {*;} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep (...); ++} ++ ++# These classes are duplicated between android.jar and org.apache.http.legacy.jar. ++-dontnote org.apache.http.** ++-dontnote android.net.http.** ++ ++# These classes are duplicated between android.jar and core-lambda-stubs.jar. ++-dontnote java.lang.invoke.** +diff --git a/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin differ +diff --git a/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin differ +diff --git a/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin differ +diff --git a/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin differ +diff --git a/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_0/graph.bin b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_0/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_0/graph.bin differ +diff --git a/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_1/graph.bin b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_1/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_1/graph.bin differ +diff --git a/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_2/graph.bin b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_2/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_2/graph.bin differ +diff --git a/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_3/graph.bin b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_3/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/desugar_graph/debugAndroidTest/dexBuilderDebugAndroidTest/out/currentProject/jar_357f96ddd02b4b3ea75f8e6bd0674445df1e30dfff5318cf7f24d7c7497db30a_bucket_3/graph.bin differ +diff --git a/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex b/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex +new file mode 100644 +index 0000000..8be43dd +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex differ +diff --git a/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/1/classes.dex b/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/1/classes.dex +new file mode 100644 +index 0000000..7533c5e +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/1/classes.dex differ +diff --git a/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex b/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex +new file mode 100644 +index 0000000..9533355 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex differ +diff --git a/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/4/classes.dex b/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/4/classes.dex +new file mode 100644 +index 0000000..00ebba4 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/4/classes.dex differ +diff --git a/node_modules/jet/android/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/dexBuilderDebugAndroidTest/out b/node_modules/jet/android/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/dexBuilderDebugAndroidTest/out +new file mode 100644 +index 0000000..d6acc8a +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/dexBuilderDebugAndroidTest/out differ +diff --git a/node_modules/jet/android/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/dexBuilderDebugAndroidTest/out b/node_modules/jet/android/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/dexBuilderDebugAndroidTest/out +new file mode 100644 +index 0000000..bf0d87a +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/dexBuilderDebugAndroidTest/out +@@ -0,0 +1 @@ ++4 +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/full_jar/debug/createFullJarDebug/full.jar b/node_modules/jet/android/build/intermediates/full_jar/debug/createFullJarDebug/full.jar +new file mode 100644 +index 0000000..fa7c654 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/full_jar/debug/createFullJarDebug/full.jar differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/node_modules/jet/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..1c983fc +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/jet/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..98e1f01 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Mon Dec 30 08:10:38 ECT 2024 +diff --git a/node_modules/jet/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/jet/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..21d4c69 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..9da3b77 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3DsCV9Uyb3to8rIjubMMbNtrYh0= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3DsCV9Uyb3to8rIjubMMbNtrYh0= +new file mode 100644 +index 0000000..fe3b040 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3DsCV9Uyb3to8rIjubMMbNtrYh0= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3pvZvPuHA7F+xUcguOBm8MxfsKE= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3pvZvPuHA7F+xUcguOBm8MxfsKE= +new file mode 100644 +index 0000000..389b9e5 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3pvZvPuHA7F+xUcguOBm8MxfsKE= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3tBsjpZc_WMZuw4zaPqa53kQRXI= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3tBsjpZc_WMZuw4zaPqa53kQRXI= +new file mode 100644 +index 0000000..8a1f67e +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3tBsjpZc_WMZuw4zaPqa53kQRXI= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/4n3ol3HpYmoBQ_Dilr+hJkZBxBw= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/4n3ol3HpYmoBQ_Dilr+hJkZBxBw= +new file mode 100644 +index 0000000..1c472d0 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/4n3ol3HpYmoBQ_Dilr+hJkZBxBw= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5kp+xMR7F4ObhEmQ8_bgElKcNIY= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5kp+xMR7F4ObhEmQ8_bgElKcNIY= +new file mode 100644 +index 0000000..0796fcd +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5kp+xMR7F4ObhEmQ8_bgElKcNIY= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/64wIDKAn7tvafGXFgiMgivS6qCw= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/64wIDKAn7tvafGXFgiMgivS6qCw= +new file mode 100644 +index 0000000..d0a17a9 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/64wIDKAn7tvafGXFgiMgivS6qCw= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8HLsucvkKvIKtBcE+Wt3_qm9wkQ= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8HLsucvkKvIKtBcE+Wt3_qm9wkQ= +new file mode 100644 +index 0000000..30185e4 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8HLsucvkKvIKtBcE+Wt3_qm9wkQ= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8SZ872k1zVqtxpel2HruPNP9u_s= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8SZ872k1zVqtxpel2HruPNP9u_s= +new file mode 100644 +index 0000000..3c651e5 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8SZ872k1zVqtxpel2HruPNP9u_s= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8d_fRlTUZtpuqb4gW8rmd9w5qFU= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8d_fRlTUZtpuqb4gW8rmd9w5qFU= +new file mode 100644 +index 0000000..a237ee0 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8d_fRlTUZtpuqb4gW8rmd9w5qFU= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/9Y1L+cKYiA3NUb6OXeVPsVzIdN4= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/9Y1L+cKYiA3NUb6OXeVPsVzIdN4= +new file mode 100644 +index 0000000..761fe3b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/9Y1L+cKYiA3NUb6OXeVPsVzIdN4= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/AUpnCiznkUpdBYI_XaWELSXh0fc= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/AUpnCiznkUpdBYI_XaWELSXh0fc= +new file mode 100644 +index 0000000..b86ecd5 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/AUpnCiznkUpdBYI_XaWELSXh0fc= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DUpCgas2E+4ohptQYOZ1xF4yhpE= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DUpCgas2E+4ohptQYOZ1xF4yhpE= +new file mode 100644 +index 0000000..5a02816 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DUpCgas2E+4ohptQYOZ1xF4yhpE= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DpNsTAMqDlG9CQcksOuW5ODNz9M= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DpNsTAMqDlG9CQcksOuW5ODNz9M= +new file mode 100644 +index 0000000..ba19014 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DpNsTAMqDlG9CQcksOuW5ODNz9M= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/FDGUA2mlzc4FxvyYkgKDVYAgqLk= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/FDGUA2mlzc4FxvyYkgKDVYAgqLk= +new file mode 100644 +index 0000000..5dd6acd +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/FDGUA2mlzc4FxvyYkgKDVYAgqLk= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/HeQI1lzTcycUBIkuZfdHwluvTwo= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/HeQI1lzTcycUBIkuZfdHwluvTwo= +new file mode 100644 +index 0000000..2eaa254 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/HeQI1lzTcycUBIkuZfdHwluvTwo= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/I1OzQYNkqzGMYxNrJwx32QQLs5A= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/I1OzQYNkqzGMYxNrJwx32QQLs5A= +new file mode 100644 +index 0000000..5707aa8 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/I1OzQYNkqzGMYxNrJwx32QQLs5A= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Ie2b0hH5I+lOqJoif_peC9jpj0g= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Ie2b0hH5I+lOqJoif_peC9jpj0g= +new file mode 100644 +index 0000000..15cb0ec +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Ie2b0hH5I+lOqJoif_peC9jpj0g= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KRqO22ksqNdI9RWOAPT0Y+K6tLs= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KRqO22ksqNdI9RWOAPT0Y+K6tLs= +new file mode 100644 +index 0000000..0474caa +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KRqO22ksqNdI9RWOAPT0Y+K6tLs= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KiekVCTvDXeD7jog57bAatb5hiw= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KiekVCTvDXeD7jog57bAatb5hiw= +new file mode 100644 +index 0000000..70ce9f3 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KiekVCTvDXeD7jog57bAatb5hiw= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KnISHY+soeQBHRds_6ElFki+PwM= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KnISHY+soeQBHRds_6ElFki+PwM= +new file mode 100644 +index 0000000..7197412 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KnISHY+soeQBHRds_6ElFki+PwM= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/LeiJ06k6HNgMRWA3RV8k8Gvu87w= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/LeiJ06k6HNgMRWA3RV8k8Gvu87w= +new file mode 100644 +index 0000000..b2a9d0b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/LeiJ06k6HNgMRWA3RV8k8Gvu87w= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/MC0nEo6j+j3K3mV5Bc6CS+F6ac4= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/MC0nEo6j+j3K3mV5Bc6CS+F6ac4= +new file mode 100644 +index 0000000..5ff5dc6 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/MC0nEo6j+j3K3mV5Bc6CS+F6ac4= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/N68ABLfvHFnymTnveiRtKSN0WHY= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/N68ABLfvHFnymTnveiRtKSN0WHY= +new file mode 100644 +index 0000000..59222d9 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/N68ABLfvHFnymTnveiRtKSN0WHY= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/NKz8DobrsLk59oUO8z69djK1c_o= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/NKz8DobrsLk59oUO8z69djK1c_o= +new file mode 100644 +index 0000000..7fefd79 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/NKz8DobrsLk59oUO8z69djK1c_o= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OHH26W2ixweYpIRjsFc4GVD_iGo= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OHH26W2ixweYpIRjsFc4GVD_iGo= +new file mode 100644 +index 0000000..beffeba +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OHH26W2ixweYpIRjsFc4GVD_iGo= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OMnl3_LydOfgKckWf24AaS6y2W0= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OMnl3_LydOfgKckWf24AaS6y2W0= +new file mode 100644 +index 0000000..8568b5b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OMnl3_LydOfgKckWf24AaS6y2W0= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OZYevkaoYtxXLVjF+K7GZhsAK9c= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OZYevkaoYtxXLVjF+K7GZhsAK9c= +new file mode 100644 +index 0000000..862ee84 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OZYevkaoYtxXLVjF+K7GZhsAK9c= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Ov5SyZwZkjEUzggnUSDLDjuYx6s= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Ov5SyZwZkjEUzggnUSDLDjuYx6s= +new file mode 100644 +index 0000000..d90d154 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Ov5SyZwZkjEUzggnUSDLDjuYx6s= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/SxG9MeKDWoYx0RXJqO1EikIDWgg= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/SxG9MeKDWoYx0RXJqO1EikIDWgg= +new file mode 100644 +index 0000000..5b521a1 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/SxG9MeKDWoYx0RXJqO1EikIDWgg= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/T2bMr2C68r9UClmRM1ugfyMTurI= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/T2bMr2C68r9UClmRM1ugfyMTurI= +new file mode 100644 +index 0000000..5e67692 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/T2bMr2C68r9UClmRM1ugfyMTurI= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/TGjOHqVOKmxnknyD7bmntA+y3xk= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/TGjOHqVOKmxnknyD7bmntA+y3xk= +new file mode 100644 +index 0000000..c129a36 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/TGjOHqVOKmxnknyD7bmntA+y3xk= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/U6EwcWKSPAZxZ3ViJTFNVKsIphU= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/U6EwcWKSPAZxZ3ViJTFNVKsIphU= +new file mode 100644 +index 0000000..d791aa1 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/U6EwcWKSPAZxZ3ViJTFNVKsIphU= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UGfmGwdTUJC90WWWgVL7J+ZYhVU= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UGfmGwdTUJC90WWWgVL7J+ZYhVU= +new file mode 100644 +index 0000000..03c80a9 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UGfmGwdTUJC90WWWgVL7J+ZYhVU= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Vm695uctj3OhN74BjA5RRX9IBbA= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Vm695uctj3OhN74BjA5RRX9IBbA= +new file mode 100644 +index 0000000..c036e32 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Vm695uctj3OhN74BjA5RRX9IBbA= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/XB91DpO+5ZFa_NuzRa3GxwM9b+s= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/XB91DpO+5ZFa_NuzRa3GxwM9b+s= +new file mode 100644 +index 0000000..98a9888 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/XB91DpO+5ZFa_NuzRa3GxwM9b+s= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/XZ55xsTnYXtq_VlN4BeM2YTuN+U= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/XZ55xsTnYXtq_VlN4BeM2YTuN+U= +new file mode 100644 +index 0000000..da323a9 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/XZ55xsTnYXtq_VlN4BeM2YTuN+U= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/YWm9lAHzc4Fwuxz24xu9MYGBe9w= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/YWm9lAHzc4Fwuxz24xu9MYGBe9w= +new file mode 100644 +index 0000000..8ef090d +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/YWm9lAHzc4Fwuxz24xu9MYGBe9w= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZOXdnOSkbPRg5cQZgeL_GkEpFgk= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZOXdnOSkbPRg5cQZgeL_GkEpFgk= +new file mode 100644 +index 0000000..8fd6cd4 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZOXdnOSkbPRg5cQZgeL_GkEpFgk= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZZBij2jwlbFDWBesshezL59jT0E= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZZBij2jwlbFDWBesshezL59jT0E= +new file mode 100644 +index 0000000..b26d29e +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZZBij2jwlbFDWBesshezL59jT0E= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZzapdIr5FRtrRR0_MUYaMzU7zlQ= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZzapdIr5FRtrRR0_MUYaMzU7zlQ= +new file mode 100644 +index 0000000..5f608ea +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZzapdIr5FRtrRR0_MUYaMzU7zlQ= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/_B1FqomQRimgfJlXKYfcSe6gcfg= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/_B1FqomQRimgfJlXKYfcSe6gcfg= +new file mode 100644 +index 0000000..72acadb +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/_B1FqomQRimgfJlXKYfcSe6gcfg= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/aD+DOtkUn+EG31+gNAoN1QPN3tU= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/aD+DOtkUn+EG31+gNAoN1QPN3tU= +new file mode 100644 +index 0000000..926710e +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/aD+DOtkUn+EG31+gNAoN1QPN3tU= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/aS9KBz+ae8aag0BQGajfNH19xuQ= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/aS9KBz+ae8aag0BQGajfNH19xuQ= +new file mode 100644 +index 0000000..13a896d +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/aS9KBz+ae8aag0BQGajfNH19xuQ= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/bDRnzw5tlBjPG7w3CVPjP3DEmFY= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/bDRnzw5tlBjPG7w3CVPjP3DEmFY= +new file mode 100644 +index 0000000..52887bb +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/bDRnzw5tlBjPG7w3CVPjP3DEmFY= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/b_8uIek4gvLvDZaOYzjbVPH7B1E= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/b_8uIek4gvLvDZaOYzjbVPH7B1E= +new file mode 100644 +index 0000000..160357a +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/b_8uIek4gvLvDZaOYzjbVPH7B1E= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/beeTSRxCHS+Ksu_MiAcDjyWCmRI= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/beeTSRxCHS+Ksu_MiAcDjyWCmRI= +new file mode 100644 +index 0000000..fb794be +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/beeTSRxCHS+Ksu_MiAcDjyWCmRI= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/dl2oCRYA+iV+5SeQTS09IjkjnhA= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/dl2oCRYA+iV+5SeQTS09IjkjnhA= +new file mode 100644 +index 0000000..1ffce77 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/dl2oCRYA+iV+5SeQTS09IjkjnhA= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/hUYpAh3JirEEUfL7N1y5nh5yZTM= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/hUYpAh3JirEEUfL7N1y5nh5yZTM= +new file mode 100644 +index 0000000..d4118d6 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/hUYpAh3JirEEUfL7N1y5nh5yZTM= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/iHKEHMw8SjFB4d3+d8PNRTqho6E= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/iHKEHMw8SjFB4d3+d8PNRTqho6E= +new file mode 100644 +index 0000000..68dbdba +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/iHKEHMw8SjFB4d3+d8PNRTqho6E= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/j7xKEnFXKuUgHtzneD4rbsO8Eho= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/j7xKEnFXKuUgHtzneD4rbsO8Eho= +new file mode 100644 +index 0000000..bd918c2 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/j7xKEnFXKuUgHtzneD4rbsO8Eho= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jZZq6JtPjCt0eWiYLjP5YmKX+tg= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jZZq6JtPjCt0eWiYLjP5YmKX+tg= +new file mode 100644 +index 0000000..4385785 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jZZq6JtPjCt0eWiYLjP5YmKX+tg= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/kltBMuXBzoFku4Xr6iU6lItULXE= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/kltBMuXBzoFku4Xr6iU6lItULXE= +new file mode 100644 +index 0000000..e36377d +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/kltBMuXBzoFku4Xr6iU6lItULXE= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/l205KGjvw5klIVrpHhytegeQ5Ao= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/l205KGjvw5klIVrpHhytegeQ5Ao= +new file mode 100644 +index 0000000..c68ea7a +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/l205KGjvw5klIVrpHhytegeQ5Ao= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/lMJ7MAdLOIoeVAZ1JOW3__blJKM= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/lMJ7MAdLOIoeVAZ1JOW3__blJKM= +new file mode 100644 +index 0000000..fdd8c15 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/lMJ7MAdLOIoeVAZ1JOW3__blJKM= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/lOFFcqFGJDALUTsYpFVNVlPE87M= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/lOFFcqFGJDALUTsYpFVNVlPE87M= +new file mode 100644 +index 0000000..6f686cc +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/lOFFcqFGJDALUTsYpFVNVlPE87M= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mhBcA4DvazelXLmqw299eMD4uj4= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mhBcA4DvazelXLmqw299eMD4uj4= +new file mode 100644 +index 0000000..de755d1 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mhBcA4DvazelXLmqw299eMD4uj4= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mwWXtoVOa8aSxnlkVUAWpohZO04= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mwWXtoVOa8aSxnlkVUAWpohZO04= +new file mode 100644 +index 0000000..9ed07b4 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mwWXtoVOa8aSxnlkVUAWpohZO04= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nm62OuTjUdkjq7+wsiN8+pfFqN4= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nm62OuTjUdkjq7+wsiN8+pfFqN4= +new file mode 100644 +index 0000000..21eb307 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nm62OuTjUdkjq7+wsiN8+pfFqN4= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/op110xG5hQO2tvBJeteS9zaLW4k= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/op110xG5hQO2tvBJeteS9zaLW4k= +new file mode 100644 +index 0000000..508e570 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/op110xG5hQO2tvBJeteS9zaLW4k= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/p+393qonSA0EQe4ZGqXdMi7XX9Y= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/p+393qonSA0EQe4ZGqXdMi7XX9Y= +new file mode 100644 +index 0000000..10c7c9d +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/p+393qonSA0EQe4ZGqXdMi7XX9Y= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/qHon7YrsugonT_536lhv8TfDnYg= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/qHon7YrsugonT_536lhv8TfDnYg= +new file mode 100644 +index 0000000..22bdb4e +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/qHon7YrsugonT_536lhv8TfDnYg= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rB2iKVoOklUQgq6xdofUo5xOKBk= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rB2iKVoOklUQgq6xdofUo5xOKBk= +new file mode 100644 +index 0000000..f07e9d4 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rB2iKVoOklUQgq6xdofUo5xOKBk= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rdTpWYmyXu6YvUMwxdo3l6Ph_xA= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rdTpWYmyXu6YvUMwxdo3l6Ph_xA= +new file mode 100644 +index 0000000..6ccda32 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rdTpWYmyXu6YvUMwxdo3l6Ph_xA= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/sCg__0hnCWk1hGSlVi0PzJ1x8TM= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/sCg__0hnCWk1hGSlVi0PzJ1x8TM= +new file mode 100644 +index 0000000..29b9153 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/sCg__0hnCWk1hGSlVi0PzJ1x8TM= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/sEcGFlvtGuqf5uQhuof7sHYWvjA= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/sEcGFlvtGuqf5uQhuof7sHYWvjA= +new file mode 100644 +index 0000000..54bd507 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/sEcGFlvtGuqf5uQhuof7sHYWvjA= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/sObZcbOzUU6f0CvQ2gsX1b6HCMs= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/sObZcbOzUU6f0CvQ2gsX1b6HCMs= +new file mode 100644 +index 0000000..90d5279 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/sObZcbOzUU6f0CvQ2gsX1b6HCMs= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/uIKr1wlw2H0zI5W3mb41WWO9XIU= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/uIKr1wlw2H0zI5W3mb41WWO9XIU= +new file mode 100644 +index 0000000..5157405 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/uIKr1wlw2H0zI5W3mb41WWO9XIU= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ugDNrPza5+viJ6O4_Y1ZQ2iPURY= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ugDNrPza5+viJ6O4_Y1ZQ2iPURY= +new file mode 100644 +index 0000000..239aa4f +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ugDNrPza5+viJ6O4_Y1ZQ2iPURY= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vAT_YOhdNdSUMCVlZvDp_0DXEMA= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vAT_YOhdNdSUMCVlZvDp_0DXEMA= +new file mode 100644 +index 0000000..c3f92d2 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vAT_YOhdNdSUMCVlZvDp_0DXEMA= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vGEb_7LDjEWdJQTNLIdVJHVDqmY= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vGEb_7LDjEWdJQTNLIdVJHVDqmY= +new file mode 100644 +index 0000000..c8d54e2 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vGEb_7LDjEWdJQTNLIdVJHVDqmY= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/wd9_U0FfiAQGd4GM35saE8P1Pzk= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/wd9_U0FfiAQGd4GM35saE8P1Pzk= +new file mode 100644 +index 0000000..1c165af +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/wd9_U0FfiAQGd4GM35saE8P1Pzk= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/x1EJ1xQtMkJ4TRf4FJJkR373bz8= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/x1EJ1xQtMkJ4TRf4FJJkR373bz8= +new file mode 100644 +index 0000000..dfea5b0 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/x1EJ1xQtMkJ4TRf4FJJkR373bz8= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/xeHd4o7ku9jd1Bf2SZWlGuwHFqA= b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/xeHd4o7ku9jd1Bf2SZWlGuwHFqA= +new file mode 100644 +index 0000000..ccaef6b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/xeHd4o7ku9jd1Bf2SZWlGuwHFqA= differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties +new file mode 100644 +index 0000000..736db8a +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Mon Dec 30 08:12:16 ECT 2024 +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml +new file mode 100644 +index 0000000..0a5030c +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "Gaan na tuisskerm" ++ "Gaan op" ++ "Nog opsies" ++ "Klaar" ++ "Sien alles" ++ "Kies \'n program" ++ "AF" ++ "AAN" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Funksie+" ++ "Meta+" ++ "Shift+" ++ "spasiebalk" ++ "Simbool+" ++ "Kieslys+" ++ "Soek …" ++ "Vee navraag uit" ++ "Soektognavraag" ++ "Soek" ++ "Dien navraag in" ++ "Stemsoektog" ++ "Deel met" ++ "Deel met %s" ++ "Vou in" ++ Opletnota ++ Kombinasiekassie ++ Opskrif ++ Prent ++ Knoppie, prent ++ Skakel ++ Kieslys ++ Kieslysbalk ++ Kieslysitem ++ Vorderingbalk ++ Radiogroep ++ Oortjie ++ Rolleesbalk ++ "Soek" ++ Tolknoppie ++ besig ++ is ingevou ++ is uitgevou ++ is gemeng ++ af ++ aan ++ ontkies ++ "999+" ++ Opsomming ++ Oortjielys ++ Afteller ++ Nutsbalk ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml +new file mode 100644 +index 0000000..88b54b7 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "መነሻ ዳስስ" ++ "ወደ ላይ ያስሱ" ++ "ተጨማሪ አማራጮች" ++ "ተከናውኗል" ++ "ሁሉንም ይመልከቱ" ++ "አንድ መተግበሪያ ይምረጡ" ++ "አጥፋ" ++ "አብራ" ++ "Alt+" ++ "Ctrl+" ++ "ሰርዝ" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "ክፍተት" ++ "Sym+" ++ "Menu+" ++ "ይፈልጉ…" ++ "መጠይቅ አጽዳ" ++ "የፍለጋ መጠይቅ" ++ "ፍለጋ" ++ "መጠይቅ አስገባ" ++ "የድምጽ ፍለጋ" ++ "አጋራ በ" ++ "ለ%s አጋራ" ++ "ሰብስብ" ++ "ፍለጋ" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml +new file mode 100644 +index 0000000..238a161 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "التوجه إلى المنزل" ++ "التنقل إلى أعلى" ++ "خيارات أكثر" ++ "تم" ++ "عرض الكل" ++ "اختيار تطبيق" ++ "إيقاف" ++ "مفعّلة" ++ "Alt+" ++ "Ctrl+" ++ "حذف" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "فضاء" ++ "Sym+" ++ "القائمة+" ++ "بحث…" ++ "محو طلب البحث" ++ "طلب بحث" ++ "البحث" ++ "إرسال طلب البحث" ++ "بحث صوتي" ++ "مشاركة مع" ++ "مشاركة مع %s" ++ "تصغير" ++ تنبيه ++ مربع تحرير وسرد ++ العنوان ++ صورة ++ زر، صورة ++ رابط ++ القائمة ++ شريط القائمة ++ عنصر القائمة ++ شريط التقدم ++ مجموعة أزرار اختيار ++ علامة التبويب ++ شريط التمرير ++ "البحث" ++ زر زيادة ونقصان ++ مشغول ++ مطوي ++ موسع ++ مختلط ++ إيقاف تشغيل ++ تشغيل ++ غير محدَد ++ "999+" ++ ملخص ++ قائمة علامات التبويب ++ مؤقِت ++ شريط الأدوات ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-as/values-as.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-as/values-as.xml +new file mode 100644 +index 0000000..e96dde6 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-as/values-as.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "গৃহ পৃষ্ঠালৈ যাওক" ++ "ওপৰলৈ যাওক" ++ "অধিক বিকল্প" ++ "সম্পন্ন হ’ল" ++ "আটাইবোৰ চাওক" ++ "কোনো এপ্ বাছনি কৰক" ++ "অফ" ++ "অন" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "সন্ধান কৰক…" ++ "সন্ধান কৰা প্ৰশ্ন মচক" ++ "সন্ধান কৰা প্ৰশ্ন" ++ "সন্ধান কৰক" ++ "প্ৰশ্ন দাখিল কৰক" ++ "কণ্ঠধ্বনিৰ দ্বাৰা সন্ধান" ++ "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক" ++ "%sৰ জৰিয়তে শ্বেয়াৰ কৰক" ++ "সংকোচন কৰক" ++ "সন্ধান" ++ "৯৯৯+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml +new file mode 100644 +index 0000000..f2efd89 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml +@@ -0,0 +1,39 @@ ++ ++ ++ "Əsas səhifəyə keçin" ++ "Yuxarı keçin" ++ "Digər seçimlər" ++ "Hazırdır" ++ "Hamısına baxın" ++ "Tətbiq seçin" ++ "DEAKTİV" ++ "AKTİV" ++ "Alt+" ++ "Ctrl+" ++ "silin" ++ "daxil olun" ++ "Funksiya+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menyu+" ++ "Axtarış..." ++ "Sorğunu silin" ++ "Axtarış sorğusu" ++ "Axtarın" ++ "Sorğunu göndərin" ++ "Səsli axtarış" ++ "Paylaşın" ++ "%s ilə paylaşın" ++ "Yığcamlaşdırın" ++ Kombo siyahısı ++ Şəkil ++ Düymə, şəkil ++ Keçid ++ Menyu ++ "Axtarın" ++ deaktiv ++ aktivdir ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +new file mode 100644 +index 0000000..1742b18 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Idite na početnu" ++ "Idite nagore" ++ "Još opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Izaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "taster za razmak" ++ "Sym+" ++ "Menu+" ++ "Pretražite…" ++ "Obrišite upit" ++ "Pretražite upit" ++ "Pretražite" ++ "Pošaljite upit" ++ "Glasovna pretraga" ++ "Delite pomoću" ++ "Delite pomoću aplikacije %s" ++ "Skupi" ++ "Pretražite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml +new file mode 100644 +index 0000000..8f64d73 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml +@@ -0,0 +1,37 @@ ++ ++ ++ "Перайсці на галоўную старонку" ++ "Перайсці ўверх" ++ "Дадатковыя параметры" ++ "Гатова" ++ "Паказаць усе" ++ "Выберыце праграму" ++ "ВЫКЛ." ++ "УКЛ." ++ "Alt +" ++ "Ctrl +" ++ "Delete" ++ "Enter" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "Прабел" ++ "Sym +" ++ "Меню +" ++ "Пошук…" ++ "Выдаліць запыт" ++ "Пошукавы запыт" ++ "Пошук" ++ "Адправіць запыт" ++ "Галасавы пошук" ++ "Абагуліць праз" ++ "Абагуліць праз праграму \"%s\"" ++ "Згарнуць" ++ Камбінаваны спіс ++ Відарыс ++ Кнопка, відарыс ++ Спасылка ++ Меню ++ "Пошук" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml +new file mode 100644 +index 0000000..12a2bf8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "Навигиране към началния екран" ++ "Навигиране нагоре" ++ "Още опции" ++ "Готово" ++ "Преглед на всички" ++ "Изберете приложение" ++ "ИЗКЛ." ++ "ВКЛ." ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "клавиша за интервал" ++ "Sym+" ++ "Menu+" ++ "Търсете…" ++ "Изчистване на заявката" ++ "Заявка за търсене" ++ "Търсене" ++ "Изпращане на заявката" ++ "Гласово търсене" ++ "Споделяне със:" ++ "Споделяне със: %s" ++ "Свиване" ++ Сигнал ++ Комбинирана кутия ++ Заглавие ++ Изображение ++ Бутон, изображение ++ Връзка ++ Меню ++ Лента с менюта ++ Елемент от меню ++ Лента за напредък ++ Радио група ++ Раздел ++ Лента за превъртане ++ "Търсене" ++ Бутон за завъртане ++ заето ++ свито ++ разширено ++ смесено ++ изключено ++ включено ++ неизбрано ++ "999+" ++ Обобщение ++ Списък с раздели ++ Таймер ++ Лента с инструменти ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml +new file mode 100644 +index 0000000..04342eb +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "হোমে নেভিগেট করুন" ++ "উপরে নেভিগেট করুন" ++ "আরও বিকল্প" ++ "হয়ে গেছে" ++ "সবগুলি দেখুন" ++ "একটি অ্যাপ বেছে নিন" ++ "বন্ধ আছে" ++ "চালু করুন" ++ "Alt+" ++ "Ctrl+" ++ "মুছুন" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "সার্চ করুন…" ++ "কোয়েরি মুছে ফেলুন" ++ "সার্চ কোয়েরি" ++ "সার্চ করুন" ++ "কোয়েরি জমা দিন" ++ "ভয়েস সার্চ করুন" ++ "শেয়ার করুন" ++ "%s-এর সাথে শেয়ার করুন" ++ "সঙ্কুচিত করুন" ++ অ্যালার্ট ++ কম্বো বক্স ++ শিরোনাম ++ ইমেজ ++ বোতাম, ছবি ++ লিঙ্ক ++ মেনু ++ মেনু বার ++ মেনু আইটেম ++ প্রোগ্রেস বার ++ রেডিও গ্রুপ ++ ট্যাব ++ স্ক্রোল বার ++ "সার্চ করুন" ++ স্পিন বোতাম ++ ব্যস্ত ++ ছোট করা হয়েছে ++ বাড়ানো হয়েছে ++ মিশ্র ++ বন্ধ আছে ++ চালু আছে ++ আনসিলেক্ট করা হয়েছে ++ "৯৯৯+" ++ সারসংক্ষেপ ++ ট্যাব লিস্ট ++ টাইমার ++ টুল বার ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml +new file mode 100644 +index 0000000..008ce54 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Vratite se na početnu stranicu" ++ "Idi gore" ++ "Više opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Odaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "razmak" ++ "Sym+" ++ "Menu+" ++ "Pretražite..." ++ "Obriši upit" ++ "Pretraži upit" ++ "Pretraži" ++ "Pošalji upit" ++ "Glasovno pretraživanje" ++ "Dijeli sa" ++ "Dijeli putem aplikacije %s" ++ "Suzi" ++ "Pretražite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml +new file mode 100644 +index 0000000..c47fac8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navega fins a la pàgina d\'inici" ++ "Navega cap amunt" ++ "Més opcions" ++ "Fet" ++ "Mostra-ho tot" ++ "Selecciona una aplicació" ++ "DESACTIVA" ++ "ACTIVA" ++ "Alt+" ++ "Ctrl+" ++ "Supr" ++ "Retorn" ++ "Funció+" ++ "Meta+" ++ "Maj+" ++ "Espai" ++ "Sym+" ++ "Menú+" ++ "Cerca…" ++ "Esborra la consulta" ++ "Consulta de cerca" ++ "Cerca" ++ "Envia la consulta" ++ "Cerca per veu" ++ "Comparteix amb" ++ "Comparteix amb %s" ++ "Replega" ++ "Cerca" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml +new file mode 100644 +index 0000000..1c11e55 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "Přejít na plochu" ++ "Přejít nahoru" ++ "Další možnosti" ++ "Hotovo" ++ "Zobrazit vše" ++ "Vybrat aplikaci" ++ "VYP" ++ "ZAP" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mezerník" ++ "Sym+" ++ "Menu+" ++ "Vyhledat…" ++ "Smazat dotaz" ++ "Dotaz pro vyhledávání" ++ "Hledat" ++ "Odeslat dotaz" ++ "Hlasové vyhledávání" ++ "Sdílet s" ++ "Sdílet s aplikací %s" ++ "Sbalit" ++ Výstraha ++ Kombinované pole ++ Nadpis ++ Obrázek ++ Tlačítko, obrázek ++ Odkaz ++ Nabídka ++ Panel nabídky ++ Položka nabídky ++ Ukazatel postupu ++ Skupina přepínačů ++ Karta ++ Posuvník ++ "Hledat" ++ Číselník ++ zaneprázdněno ++ sbaleno ++ rozbaleno ++ oboje ++ vyp ++ zap ++ nevybráno ++ "999+" ++ Přehled ++ Seznam karet ++ Časovač ++ Panel nástrojů ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml +new file mode 100644 +index 0000000..7c6038a +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml +@@ -0,0 +1,54 @@ ++ ++ ++ "Find hjem" ++ "Gå op" ++ "Flere valgmuligheder" ++ "Udfør" ++ "Se alle" ++ "Vælg en app" ++ "FRA" ++ "TIL" ++ "Alt+" ++ "Ctrl+" ++ "slet" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mellemrum" ++ "Sym+" ++ "Menu+" ++ "Søg…" ++ "Ryd forespørgsel" ++ "Søgeforespørgsel" ++ "Søg" ++ "Indsend forespørgsel" ++ "Talesøgning" ++ "Del med" ++ "Del med %s" ++ "Skjul" ++ Underretning ++ Kombinationsboks ++ Overskrift ++ Billede ++ Knap, billede ++ Menulinje ++ Menupunkt ++ Statuslinje ++ Radiogruppe ++ Fane ++ Rullelinje ++ "Søg" ++ Snurreknap ++ optaget ++ skjult ++ udvidet ++ blandet ++ fra ++ til ++ fravalgt ++ "999+" ++ Oversigt ++ Liste over faner ++ Værktøjslinje ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml +new file mode 100644 +index 0000000..52582c1 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml +@@ -0,0 +1,54 @@ ++ ++ ++ "Zur Startseite" ++ "Nach oben" ++ "Weitere Optionen" ++ "Fertig" ++ "Alle anzeigen" ++ "App auswählen" ++ "AUS" ++ "AN" ++ "Alt +" ++ "Strg +" ++ "Löschen" ++ "Eingabetaste" ++ "Funktionstaste +" ++ "Meta-Taste +" ++ "Umschalttaste +" ++ "Leertaste" ++ "Sym-Taste +" ++ "Menütaste +" ++ "Suchen…" ++ "Suchanfrage löschen" ++ "Suchanfrage" ++ "Suche" ++ "Anfrage senden" ++ "Sprachsuche" ++ "Teilen mit" ++ "Mit %s teilen" ++ "Minimieren" ++ Warnhinweis ++ Kombinationsfeld ++ Überschrift ++ Bild ++ Button, Bild ++ Menü ++ Menüleiste ++ Menüpunkt ++ Statusanzeige ++ Gruppe von Buttons ++ Scroll-Leiste ++ "Suche" ++ Auswahl-Button ++ in Gebrauch ++ ausgeblendet ++ eingeblendet ++ gemischt ++ aus ++ ein ++ nicht ausgewählt ++ "999+" ++ Übersicht ++ Tab-Liste ++ Symbolleiste ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml +new file mode 100644 +index 0000000..64f7086 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "Πλοήγηση στην αρχική σελίδα" ++ "Πλοήγηση προς τα επάνω" ++ "Περισσότερες επιλογές" ++ "Τέλος" ++ "Εμφάνιση όλων" ++ "Επιλέξτε μια εφαρμογή" ++ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ" ++ "ΕΝΕΡΓΟΠΟΙΗΣΗ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "διάστημα" ++ "Sym+" ++ "Menu+" ++ "Αναζήτηση…" ++ "Διαγραφή ερωτήματος" ++ "Ερώτημα αναζήτησης" ++ "Αναζήτηση" ++ "Υποβολή ερωτήματος" ++ "Φωνητική αναζήτηση" ++ "Κοινοποίηση σε" ++ "Κοινοποίηση στην εφαρμογή %s" ++ "Σύμπτυξη" ++ Ειδοποίηση ++ Συνδυαστικό κουτάκι ++ Επικεφαλίδα ++ Εικόνα ++ Κουμπί, εικόνα ++ Σύνδεσμος ++ Μενού ++ Γραμμή μενού ++ Στοιχείο μενού ++ Γραμμή προόδου ++ Ομάδα κουμπιών επιλογής ++ Καρτέλα ++ Γραμμή κύλισης ++ "Αναζήτηση" ++ Κουμπί περιστροφής ++ απασχολημένος/η ++ συμπτυγμένο ++ διευρυμένο ++ συνδυασμός ++ όχι ++ ναι ++ μη επιλεγμένα ++ "999+" ++ Σύνοψη ++ Λίστα καρτελών ++ Χρονόμετρο ++ Γραμμή εργαλείων ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml +new file mode 100644 +index 0000000..830549f +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml +@@ -0,0 +1,42 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ Combo box ++ Button, image ++ Menu bar ++ Menu item ++ Progress bar ++ Radio group ++ Scroll bar ++ "Search" ++ Spin button ++ "999+" ++ Tab list ++ Tool bar ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml +new file mode 100644 +index 0000000..14b21fa +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‎‏‎‏‏‏‏‎‎‎‏‎‎‏‎‎‏‎‏‎‎‎‎‏‏‎‏‎‏‏‎‎‏‎‎‎‏‎‏‎‏‏‏‎‏‎‎‎‎‏‏‎‏‏‏‏‏‏‎‎Navigate home‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‏‏‎‏‎‎‎‏‏‎‎‎‏‏‏‏‎‏‎‎‎‎‏‏‎‏‏‎‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‎‎‏‏‏‎‎‎‎‎Navigate up‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‎‎‏‎‎‎‎‏‎‎‎‏‎‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‎‎‎‎‏‎‎‏‎‏‏‏‏‏‎‏‎‎‏‎More options‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‎‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‏‏‎‎‏‏‎‏‎‎‏‏‏‎‎‎‎‏‎‎‎‏‏‏‎‎‏‎‎‎‏‎‎‎‎‎Done‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‎‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‎‎‎‏‏‎‏‏‏‎‎‎‎‏‏‏‎‎‏‎‎‎‎‏‏‏‎‏‏‎‏‎‏‎‏‎‎‎‎‏‎See all‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‎‏‎‏‎‎‏‏‎‏‏‎‏‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‎‏‎‎‏‎‏‎‎‎‎‎‎‎‎‎‎Choose an app‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‎‏‎‎‎‏‏‏‎‏‏‎‎‏‏‎‏‏‎‏‎‎‎‎‎‏‏‎‏‎‏‏‎‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‎‏‏‎OFF‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‎‎‏‏‏‏‏‎‎‏‏‎‏‏‎‎‎‎ON‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‎‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‎‎‏‏‎‎‏‏‏‏‎‏‎‎Alt+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‎‏‏‏‏‎‎‏‎‎‎‏‎‎‏‎‏‎‎‎‎‎‏‎‏‎‎‏‎‏‎‏‎‏‎‎Ctrl+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‏‎‏‏‎‏‎‏‏‏‏‏‎‏‏‎‎‏‎‏‎‎‏‏‏‎‏‏‏‏‏‏‎‎‎‎‏‏‏‎‏‎‎‎delete‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‎‏‎‏‏‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‏‏‎enter‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‏‏‎‏‎‎‏‏‎‏‎‏‎‎‎‎‎‏‏‏‏‎‎‎‎‎‏‏‎‎‎‏‏‎‎‏‎‎‏‏‎‎‏‎‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎Function+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‏‎‏‏‎‏‏‏‎‎‎‏‎‎‎‏‎‎‎‎‏‏‏‏‎‎‏‏‎‎‏‎‎‎‎‎‏‎‏‎‎‏‎‎‏‏‏‏‏‏‎‎Meta+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‎‎‏‎‎‎‏‏‎‎‎‎‏‏‎Shift+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‎‏‏‏‏‏‏‎‏‏‏‎‎‎‏‎‎‏‏‏‎‏‏‎‎‎‎‎‎‎‏‏‎‏‏‎‎‎‏‏‎‎‏‎‎‎‏‏‎‏‎‎‎‎‏‎‏‏‎‎space‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‏‏‏‎‎‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‏‏‏‏‏‎‏‎‎‎‎‎‎‎‎‎‎‎‏‎‎‎‏‎‎‏‏‎‏‏‏‎‎Sym+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‏‎‎‏‎‎‏‏‏‎‎‎‎‎‎‏‏‏‎‏‏‏‏‎‎‎‎‎‏‎‎‎‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎‎‏‏‏‏‎‏‏‏‏‏‎‎Menu+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‎‎‎‎‎‎‏‎‎‎‎‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‎‏‎‎‎‏‏‏‏‏‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‎‏‏‎‏‎‎‎Search…‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‏‏‏‏‏‎‏‎‏‏‎‏‎‏‎‎‎‏‎‎‏‏‏‏‎‎‎‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‏‏‏‎‎‏‏‎Clear query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‏‏‏‎‏‏‎‏‎‎‎‏‏‎‎‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‎Search query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‎‏‎‎‏‎‏‎‎‏‏‎‎‎‎‎‎‎‎‎‏‏‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‏‏‎‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‎‎‏‎‏‎‎‎‎‏‎‎‏‏‏‏‎‎‎‎‏‎‏‏‎‏‎‏‎‏‎‏‏‎‏‏‏‎‎‎‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‏‏‏‎Submit query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‎‏‏‎‏‏‎‏‏‎‎‎‏‎‏‏‏‏‏‎‏‏‎‎‎‏‏‎‏‏‎‏‎‎‎‎‏‎‎‎‏‎‎‏‎‏‏‏‎Voice search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‎‏‎‏‎‏‎‏‏‎‏‎‎‏‏‎‎‏‎‎‏‎‎‏‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‏‎‏‏‏‏‎‏‏‎‏‏‏‎Share with‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‏‎‏‎‏‎‏‏‎‎‎‏‏‎‏‏‏‎‎‏‎‏‎‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‏‏‏‎‎‎‎‏‏‏‎‎‎Share with ‎‏‎‎‏‏‎%s‎‏‎‎‏‏‏‎‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‏‎‎‏‎‏‎‎‏‎‏‎‎‏‏‎‏‏‏‎‏‏‏‏‏‏‏‏‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‏‎‎‏‎‎Collapse‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‏‏‏‎‎‎‎‏‎‏‏‎‎‎‏‎‏‏‎‎‏‎‏‎‎‏‎‎‏‎‎‎‏‎‏‏‎‎‏‎‏‎‏‏‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es-rES/values-es-rES.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es-rES/values-es-rES.xml +new file mode 100644 +index 0000000..b860671 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es-rES/values-es-rES.xml +@@ -0,0 +1,28 @@ ++ ++ ++ Alerta ++ Cuadro combinado ++ Encabezado ++ Imagen ++ Botón, imagen ++ Enlace ++ Menú ++ Barra de menú ++ Elemento del menú ++ Barra de progreso ++ Grupo de botones de radio ++ Pestaña ++ Barra de desplazamiento ++ Botón de selección ++ ocupado ++ contraído ++ ampliado ++ mezclado ++ desactivado ++ activado ++ sin seleccionar ++ Resumen ++ Lista de pestañas ++ Temporizador ++ Barra de herramientas ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml +new file mode 100644 +index 0000000..47c7e5c +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navegar a la página principal" ++ "Navegar hacia arriba" ++ "Más opciones" ++ "Listo" ++ "Ver todas" ++ "Elegir una app" ++ "DESACTIVAR" ++ "ACTIVAR" ++ "Alt+" ++ "Ctrl+" ++ "borrar" ++ "intro" ++ "Función+" ++ "Meta+" ++ "Mayúscula+" ++ "espacio" ++ "Sym+" ++ "Menú+" ++ "Buscar…" ++ "Borrar consulta" ++ "Búsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "Búsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Contraer" ++ "Buscar" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml +new file mode 100644 +index 0000000..e1a0012 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "Ir a inicio" ++ "Desplazarse hacia arriba" ++ "Más opciones" ++ "Hecho" ++ "Ver todo" ++ "Seleccionar una aplicación" ++ "DESACTIVADO" ++ "ACTIVADO" ++ "Alt +" ++ "Ctrl +" ++ "Suprimir" ++ "Intro" ++ "Función +" ++ "Meta +" ++ "Mayús +" ++ "Espacio" ++ "Sym +" ++ "Menú +" ++ "Buscar…" ++ "Borrar consulta" ++ "Consulta de búsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "Búsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Ocultar" ++ Alerta ++ Cuadro combinado ++ Encabezado ++ Imagen ++ Botón, imagen ++ Enlace ++ Menú ++ Barra de menús ++ Elemento de menú ++ Barra de progreso ++ Grupo de botones de opción ++ Pestaña ++ Barra de desplazamiento ++ "Buscar" ++ Botón de número ++ ocupado ++ contraído ++ expandido ++ mixto ++ desactivado ++ activado ++ no seleccionado ++ "999+" ++ Resumen ++ Lista de pestañas ++ Temporizador ++ Barra de herramientas ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml +new file mode 100644 +index 0000000..03b652e +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml +@@ -0,0 +1,56 @@ ++ ++ ++ "Liigu avalehele" ++ "Liigu üles" ++ "Rohkem valikuid" ++ "Valmis" ++ "Kuva kõik" ++ "Valige rakendus" ++ "VÄLJAS" ++ "SEES" ++ "Alt +" ++ "Ctrl +" ++ "kustuta" ++ "sisestusklahv" ++ "Funktsiooniklahv +" ++ "Meta +" ++ "Tõstuklahv +" ++ "tühik" ++ "Sym +" ++ "Menüü +" ++ "Otsige …" ++ "Päringu tühistamine" ++ "Otsingupäring" ++ "Otsing" ++ "Päringu esitamine" ++ "Häälotsing" ++ "Jaga:" ++ "Jagamine rakendusega %s" ++ "Ahendamine" ++ Hoiatus ++ Liitboks ++ Pealkiri ++ Pilt ++ Nupp, pilt ++ Menüü ++ Menüüriba ++ Menüü-üksus ++ Edenemisriba ++ Raadionuppude grupp ++ Vahekaart ++ Kerimisriba ++ "Otsing" ++ Pööramisnupp ++ hõivatud ++ ahendatud ++ laiendatud ++ miksitud ++ väljas ++ sees ++ valimata ++ "999+" ++ Kokkuvõte ++ Vahekaartide loend ++ Taimer ++ Tööriistariba ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml +new file mode 100644 +index 0000000..1015ba8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Joan orri nagusira" ++ "Joan gora" ++ "Aukera gehiago" ++ "Eginda" ++ "Ikusi guztiak" ++ "Aukeratu aplikazio bat" ++ "DESAKTIBATU" ++ "AKTIBATU" ++ "Alt +" ++ "Ktrl +" ++ "ezabatu" ++ "sartu" ++ "Funtzioa +" ++ "Meta +" ++ "Maius +" ++ "zuriunea" ++ "Sym +" ++ "Menua +" ++ "Bilatu…" ++ "Garbitu kontsulta" ++ "Bilaketa-kontsulta" ++ "Bilatu" ++ "Bidali kontsulta" ++ "Ahozko bilaketa" ++ "Partekatu honekin" ++ "Partekatu %s aplikazioarekin" ++ "Tolestu" ++ "Bilatu" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml +new file mode 100644 +index 0000000..4b79c2b +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "پیمایش به صفحه اصلی" ++ "رفتن به بالا" ++ "گزینه‌های بیشتر" ++ "تمام" ++ "دیدن همه" ++ "انتخاب برنامه" ++ "خاموش" ++ "روشن" ++ "‎Alt+‎" ++ "‎Ctrl+‎" ++ "حذف" ++ "enter" ++ "‎Function+‎" ++ "‎Meta+‎" ++ "‎Shift+‎" ++ "فاصله" ++ "‎Sym+‎" ++ "منو+" ++ "جستجو…‏" ++ "پاک کردن پُرسمان" ++ "درخواست جستجو" ++ "جستجو" ++ "ارسال پُرسمان" ++ "جستجوی گفتاری" ++ "هم‌رسانی با" ++ "هم‌رسانی با %s" ++ "کوچک کردن" ++ هشدار ++ جعبه گفتگو ++ سر‌صفحه ++ تصویر ++ دکمه، تصویر ++ پیوند ++ منو ++ نوار منو ++ مورد منو ++ نوار پیشرفت ++ گروه رادیویی ++ برگه ++ نوار پیمایش ++ "جستجو" ++ دکمه چرخش ++ مشغول ++ کوچک‌شده ++ بزرگ‌شده ++ ترکیب‌شده ++ خاموش ++ روشن ++ لغو انتخاب شد ++ "999+" ++ خلاصه ++ فهرست برگه ++ زمان‌سنج ++ نوار ابزار ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml +new file mode 100644 +index 0000000..7554fd3 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "Siirry etusivulle" ++ "Siirry ylös" ++ "Lisäasetukset" ++ "Valmis" ++ "Näytä kaikki" ++ "Valitse sovellus" ++ "POIS PÄÄLTÄ" ++ "PÄÄLLÄ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Vaihto+" ++ "välilyönti" ++ "Sym+" ++ "Valikko+" ++ "Haku…" ++ "Tyhjennä kysely" ++ "Hakukysely" ++ "Haku" ++ "Lähetä kysely" ++ "Puhehaku" ++ "Jaa…" ++ "Jaa: %s" ++ "Tiivistä" ++ Hälytys ++ Yhdistelmäruutu ++ Otsikko ++ Kuva ++ Painike, kuva ++ Linkki ++ Valikko ++ Valikkopalkki ++ Valikkokohde ++ Edistymispalkki ++ Valintanappiryhmä ++ Välilehti ++ Vierityspalkki ++ "Haku" ++ Pyörityspainike ++ varattu ++ pienennetty ++ laajennettu ++ yhdistetty ++ ei käytössä ++ käytössä ++ ei valittu ++ "999+" ++ Yhteenveto ++ Välilehtilista ++ Ajastin ++ Työkalupalkki ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +new file mode 100644 +index 0000000..e051a9e +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +@@ -0,0 +1,55 @@ ++ ++ ++ "Revenir à l\'accueil" ++ "Revenir en arrière" ++ "Autres options" ++ "Terminé" ++ "Tout afficher" ++ "Sélectionner une application" ++ "DÉSACTIVER" ++ "ACTIVER" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrée" ++ "Fonction+" ++ "Méta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercher…" ++ "Effacer la requête" ++ "Requête de recherche" ++ "Rechercher" ++ "Envoyer la requête" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "Réduire" ++ Alerte ++ Zone combinée ++ Titre ++ Bouton, image ++ Lien ++ Barre de menu ++ Option de menu ++ Barre de progression ++ Groupe de boutons radio ++ Onglet ++ Barre de déroulement ++ "Rechercher" ++ Bouton compteur circulaire ++ en cours de traitement ++ réduit ++ agrandi ++ à double état ++ désactivé ++ activé ++ désélectionné ++ "999+" ++ Résumé ++ Liste des onglets ++ Minuterie ++ Barre d’outils ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml +new file mode 100644 +index 0000000..f2ffb95 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml +@@ -0,0 +1,55 @@ ++ ++ ++ "Revenir à l\'accueil" ++ "Revenir en haut de la page" ++ "Autres options" ++ "OK" ++ "Tout afficher" ++ "Sélectionner une application" ++ "NON" ++ "OUI" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrée" ++ "Fonction+" ++ "Méta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercher…" ++ "Effacer la requête" ++ "Requête de recherche" ++ "Rechercher" ++ "Envoyer la requête" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "Réduire" ++ Alerte ++ Liste déroulante ++ Titre ++ Bouton, image ++ Lien ++ Barre de menu ++ Élément du menu ++ Barre de progression ++ Groupe de boutons radio ++ Onglet ++ Barre de défilement ++ "Rechercher" ++ Toupie ++ opération en cours ++ réduit ++ agrandi ++ mixte ++ désactivé ++ activé ++ désélectionné(s) ++ "999+" ++ Récapitulatif ++ Liste d’onglets ++ Minuteur ++ Barre d’outils ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml +new file mode 100644 +index 0000000..12cb980 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Vai ao inicio" ++ "Vai cara arriba" ++ "Máis opcións" ++ "Feito" ++ "Ver todo" ++ "Selecciona unha aplicación" ++ "DESACTIVADO" ++ "ACTIVADO" ++ "Alt +" ++ "Ctrl +" ++ "eliminar" ++ "intro" ++ "Función +" ++ "Meta +" ++ "Maiús +" ++ "espazo" ++ "Sym +" ++ "Menú +" ++ "Busca…" ++ "Borra a consulta" ++ "Busca a consulta" ++ "Realiza buscas" ++ "Envía a consulta" ++ "Busca por voz" ++ "Comparte contido con" ++ "Comparte contido coa aplicación %s" ++ "Contrae" ++ "Buscar" ++ ">999" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml +new file mode 100644 +index 0000000..88546f3 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "ઘરનો રસ્તો બતાવો" ++ "ઉપર નૅવિગેટ કરો" ++ "વધુ વિકલ્પો" ++ "થઈ ગયું" ++ "બધી જુઓ" ++ "ઍપ્લિકેશન પસંદ કરો" ++ "બંધ" ++ "ચાલુ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "શોધો…" ++ "ક્વેરી સાફ કરો" ++ "શોધ ક્વેરી" ++ "શોધો" ++ "ક્વેરી સબમિટ કરો" ++ "વૉઇસ શોધ" ++ "આની સાથે શેર કરો" ++ "%sની સાથે શેર કરો" ++ "સંકુચિત કરો" ++ એલર્ટ ++ કોમ્બો બોક્સ ++ શીર્ષક ++ ફોટો ++ બટન, ફોટો ++ લિંક ++ મેનૂ ++ મેનૂ બાર ++ મેનૂ આઇટમ ++ પ્રગતિ બાર ++ રેડિયો ગ્રૂપ ++ ટેબ ++ સ્ક્રોલ બાર ++ "શોધો" ++ સ્પિન બટન ++ વ્યસ્ત ++ નાનું ++ વિસ્તૃત ++ મિક્સ કરેલ ++ બંધ ++ ચાલુ ++ પસંદગીમાંથી કાઢી નાખ્યું ++ "999+" ++ સારાંશ ++ ટેબ લિસ્ટ ++ ટાઇમર ++ ટૂલ બાર ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +new file mode 100644 +index 0000000..e38bb90 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 54dip ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +new file mode 100644 +index 0000000..d5a138e +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +@@ -0,0 +1,8 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml +new file mode 100644 +index 0000000..9fa010f +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "होम पेज पर जाएं" ++ "वापस जाएं" ++ "ज़्यादा विकल्प" ++ "हो गया" ++ "सभी देखें" ++ "कोई ऐप्लिकेशन चुनें" ++ "बंद" ++ "चालू" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "खोजें…" ++ "क्‍वेरी हटाएं" ++ "सर्च क्वेरी" ++ "खोजें" ++ "क्वेरी सबमिट करें" ++ "बोलकर खोजें" ++ "इससे शेयर करें:" ++ "%s से शेयर करें" ++ "छोटा करें" ++ अलर्ट ++ कॉम्बो बॉक्स ++ शीर्षक ++ फ़ोटो ++ बटन, फ़ोटो ++ लिंक ++ मेनू ++ मेनू बार ++ मेनू आइटम ++ प्रोग्रेस बार ++ रेडियो ग्रुप ++ टैब ++ स्क्रॉल बार ++ "खोजें" ++ स्पिन बटन ++ व्यस्त ++ छोटा किया गया ++ बड़ा किया गया ++ मिक्स ++ बंद है ++ चालू है ++ नहीं चुने गए ++ "999+" ++ सारांश ++ टैब लिस्ट ++ टाइमर ++ टूल बार ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml +new file mode 100644 +index 0000000..b422fa9 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "Idi na početnu" ++ "Natrag" ++ "Više opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Odabir aplikacije" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "svemir" ++ "Sym+" ++ "Menu+" ++ "Pretražite…" ++ "Izbriši upit" ++ "Upit za pretraživanje" ++ "Pretraži" ++ "Pošalji upit" ++ "Glasovno pretraživanje" ++ "Dijeli s" ++ "Dijeli putem aplikacije %s" ++ "Sažmi" ++ Upozorenje ++ Kombinirani okvir ++ Zaglavlje ++ Slika ++ Gumb, slika ++ Veza ++ Izbornik ++ Traka izbornika ++ Stavka izbornika ++ Traka napretka ++ Grupa izbornih gumba ++ Kartica ++ Traka za pomicanje ++ "Pretraži" ++ Gumb za vrtnju ++ zauzeto ++ sažeto ++ prošireno ++ mješovito ++ isključeno ++ uključeno ++ poništen odabir ++ "999+" ++ Sažetak ++ Popis kartica ++ Mjerač vremena ++ Traka s alatima ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml +new file mode 100644 +index 0000000..83a31a5 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "Ugrás a főoldalra" ++ "Fel" ++ "További lehetőségek" ++ "Kész" ++ "Az összes megtekintése" ++ "Válasszon alkalmazást" ++ "KI" ++ "BE" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Szóköz" ++ "Sym+" ++ "Menu+" ++ "Keresés…" ++ "Lekérdezés törlése" ++ "Keresési lekérdezés" ++ "Keresés" ++ "Lekérdezés küldése" ++ "Hangalapú keresés" ++ "Megosztás a következővel:" ++ "Megosztás a következő alkalmazással: %s" ++ "Összecsukás" ++ Figyelmeztetés ++ Kombinált lista ++ Címsor ++ Kép ++ Gomb, kép ++ Hivatkozás ++ Menü ++ Menüsor ++ Menüelem ++ Folyamatjelző ++ Választógomb-csoport ++ Lapfül ++ Görgetősáv ++ "Keresés" ++ Forgó gomb ++ elfoglalt ++ összecsukva ++ kibontva ++ vegyes ++ ki ++ be ++ nincs kiválasztva ++ "999+" ++ Összegzés ++ Lapfülek listája ++ Időmérő ++ Eszköztár ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml +new file mode 100644 +index 0000000..5ff975a +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml +@@ -0,0 +1,39 @@ ++ ++ ++ "Անցնել գլխավոր էջ" ++ "Անցնել վերև" ++ "Այլ ընտրանքներ" ++ "Պատրաստ է" ++ "Տեսնել բոլորը" ++ "Ընտրել հավելված" ++ "ԱՆՋԱՏԵԼ" ++ "ՄԻԱՑՆԵԼ" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "բացատ" ++ "Sym+" ++ "Menu+" ++ "Որոնում…" ++ "Ջնջել հարցումը" ++ "Որոնման հարցում" ++ "Որոնել" ++ "Ուղարկել հարցումը" ++ "Ձայնային որոնում" ++ "Կիսվել…" ++ "Կիսվել %s հավելվածի միջոցով" ++ "Ծալել" ++ Կոմբո արկղ ++ Նկար ++ Կոճակ, նկար ++ Հղում ++ Ընտրացանկ ++ "Որոնել" ++ անջատած ++ միացրած ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml +new file mode 100644 +index 0000000..29513d2 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Tunjukkan jalan ke rumah" ++ "Kembali ke atas" ++ "Opsi lain" ++ "Selesai" ++ "Lihat semua" ++ "Pilih aplikasi" ++ "NONAKTIF" ++ "AKTIF" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "spasi" ++ "Sym+" ++ "Menu+" ++ "Telusuri..." ++ "Hapus kueri" ++ "Telusuri kueri" ++ "Telusuri" ++ "Kirim kueri" ++ "Penelusuran suara" ++ "Bagikan dengan" ++ "Bagikan dengan %s" ++ "Ciutkan" ++ "Telusuri" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml +new file mode 100644 +index 0000000..1d7b8aa +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Fara heim" ++ "Fara upp" ++ "Fleiri valkostir" ++ "Lokið" ++ "Sjá allt" ++ "Veldu forrit" ++ "SLÖKKT" ++ "KVEIKT" ++ "Alt+" ++ "Ctrl+" ++ "eyða" ++ "enter" ++ "Aðgerðarlykill+" ++ "Meta+" ++ "Shift+" ++ "bilslá" ++ "Sym+" ++ "Valmynd+" ++ "Leita…" ++ "Hreinsa fyrirspurn" ++ "Leitarfyrirspurn" ++ "Leit" ++ "Senda fyrirspurn" ++ "Raddleit" ++ "Deila með" ++ "Deila með %s" ++ "Minnka" ++ "Leit" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml +new file mode 100644 +index 0000000..5933591 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml +@@ -0,0 +1,53 @@ ++ ++ ++ "Portami a casa" ++ "Torna indietro" ++ "Altre opzioni" ++ "Fine" ++ "Mostra tutto" ++ "Scelta di un\'app" ++ "OFF" ++ "ON" ++ "ALT +" ++ "CTRL +" ++ "CANC" ++ "INVIO" ++ "FUNZIONE +" ++ "META +" ++ "MAIUSC +" ++ "SPAZIO" ++ "SYM +" ++ "MENU +" ++ "Cerca…" ++ "Cancella query" ++ "Query di ricerca" ++ "Cerca" ++ "Invia query" ++ "Ricerca vocale" ++ "Condividi con" ++ "Condividi tramite %s" ++ "Comprimi" ++ Avviso ++ Casella combinata ++ Titolo ++ Immagine ++ Pulsante, Immagine ++ Barra dei menu ++ Elemento del menu ++ Barra di avanzamento ++ Gruppo radio ++ Barra di scorrimento ++ "Cerca" ++ Pulsante girevole ++ occupato ++ chiuso ++ aperto ++ misto ++ no ++ ++ non selezionato ++ "999+" ++ Riepilogo ++ Lista delle tab ++ Barra degli strumenti ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml +new file mode 100644 +index 0000000..af249d8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "ניווט לדף הבית" ++ "ניווט למעלה" ++ "עוד אפשרויות" ++ "סיום" ++ "הצגת הכול" ++ "בחירת אפליקציה" ++ "כבוי" ++ "מופעל" ++ "Alt+" ++ "Ctrl+‎" ++ "מחיקה" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "רווח" ++ "Sym+" ++ "תפריט+" ++ "חיפוש…" ++ "מחיקת השאילתה" ++ "שאילתת חיפוש" ++ "חיפוש" ++ "שליחת שאילתה" ++ "חיפוש קולי" ++ "שיתוף עם" ++ "שיתוף עם %s" ++ "כיווץ" ++ התראה ++ תיבה משולבת ++ כותרת ++ תמונה ++ לחצן, תמונה ++ קישור ++ תפריט ++ סרגל תפריטים ++ פריט בתפריט ++ סרגל התקדמות ++ קבוצת רדיו ++ לשונית ++ סרגל גלילה ++ "חיפוש" ++ לחצן מסתובב ++ תפוס ++ מצומצם ++ מורחב ++ משולב ++ כבוי ++ מופעל ++ הבחירה בוטלה ++ "999+" ++ סיכום ++ רשימת לשוניות ++ טיימר ++ סרגל כלים ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml +new file mode 100644 +index 0000000..1a7b28c +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "ホームに戻る" ++ "前に戻る" ++ "その他のオプション" ++ "完了" ++ "すべて表示" ++ "アプリの選択" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Space" ++ "Sym+" ++ "Menu+" ++ "検索…" ++ "検索キーワードを削除" ++ "検索キーワード" ++ "検索" ++ "検索キーワードを送信" ++ "音声検索" ++ "共有" ++ "%sと共有" ++ "折りたたむ" ++ アラート ++ コンボボックス ++ 見出し ++ 画像 ++ ボタン、画像 ++ リンク ++ メニュー ++ メニューバー ++ メニューアイテム ++ 進行状況バー ++ ラジオグループ ++ タブ ++ スクロールバー ++ "検索" ++ スピンボタン ++ 作業中 ++ 縮小中 ++ 展開中 ++ 混合 ++ オフ ++ オン ++ 未選択 ++ "999+" ++ 概要 ++ タブリスト ++ タイマー ++ ツールバー ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml +new file mode 100644 +index 0000000..75e4da1 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml +@@ -0,0 +1,56 @@ ++ ++ ++ "მთავარზე გადასვლა" ++ "ზემოთ გადასვლა" ++ "სხვა ვარიანტები" ++ "მზადაა" ++ "ყველას ნახვა" ++ "აირჩიეთ აპი" ++ "გამორთვა" ++ "ჩართვა" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "შორისი" ++ "Sym+" ++ "Menu+" ++ "ძიება…" ++ "მოთხოვნის გასუფთავება" ++ "მოთხოვნის ძიება" ++ "ძიება" ++ "მოთხოვნის გადაგზავნა" ++ "ხმოვანი ძიება" ++ "გაზიარება:" ++ "%s-ით გაზიარება" ++ "ჩაკეცვა" ++ გაფრთხილება ++ სათაური ++ გამოსახულება ++ ღილაკი, გამოსახულება ++ ბმული ++ მენიუ ++ მენიუს ზოლი ++ მენიუს ერთეული ++ პროგრესის ზოლი ++ რადიო ჯგუფი ++ ჩანართი ++ გადაადგილების პანელი ++ "ძიება" ++ დატრიალების ღილაკი ++ დაკავებული ++ აკეცილი ++ გაშლილი ++ შერეული ++ გამორთულია ++ ჩართული ++ აურჩეველი ++ "999+" ++ შეჯამება ++ ჩანართების სია ++ ტაიმერი ++ ხელსაწყოების ზოლი ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml +new file mode 100644 +index 0000000..458440d +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml +@@ -0,0 +1,39 @@ ++ ++ ++ "Негізгі бетке өту" ++ "Жоғары қарай өту" ++ "Басқа опциялар" ++ "Дайын" ++ "Барлығын көру" ++ "Қолданбаны таңдау" ++ "ӨШІРУ" ++ "ҚОСУ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "бос орын" ++ "Sym+" ++ "Menu+" ++ "Іздеу…" ++ "Сұрауды өшіру" ++ "Іздеу сұрауы" ++ "Іздеу" ++ "Сұрауды жіберу" ++ "Дауыспен іздеу" ++ "Бөлісу" ++ "%s қолданбасымен бөлісу" ++ "Жию" ++ Біріктірілген тізім ++ Кескін ++ Түйме, кескін ++ Сілтеме ++ Мәзір ++ "Іздеу" ++ өшірулі ++ қосулы ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml +new file mode 100644 +index 0000000..740dfc0 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "​ទៅទំព័រដើម" ++ "រំកិលឡើងលើ" ++ "ជម្រើសច្រើនទៀត" ++ "រួចរាល់" ++ "មើលទាំងអស់" ++ "ជ្រើសរើស​កម្មវិធី​​" ++ "បិទ" ++ "បើក" ++ "Alt+" ++ "Ctrl+" ++ "លុប" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ស្វែងរក…" ++ "សម្អាត​សំណួរ" ++ "ស្វែងរកសំណួរ​" ++ "ស្វែងរក" ++ "ដាក់បញ្ជូន​សំណួរ" ++ "ស្វែងរក​តាម​សំឡេង" ++ "ចែករំលែក​ជា​មួយ" ++ "ចែក​រំលែក​ជា​មួយ %s" ++ "បង្រួម" ++ ជូន​ដំណឹង ++ ប្រអប់បញ្ចូលគ្នា ++ ចំណងជើង ++ រូបភាព ++ ប៊ូតុង, រូបភាព ++ តំណ ++ ម៉ឺនុយ ++ របារម៉ឺនុយ ++ ធាតុម៉ឺនុយ ++ របារ​ដំណើរការ ++ ក្រុមវិទ្យុ ++ ផ្ទាំង ++ របាររំកិល ++ "ស្វែងរក" ++ ប៊ូតុង​បង្វិល ++ ជាប់រវល់ ++ បានបង្រួម ++ បានពង្រីក ++ បានលាយ ++ បិទ ++ បើក ++ បាបនដោះការជ្រើសរើស ++ "999+" ++ សេចក្ដីសង្ខេប ++ បញ្ជីថេប ++ មុខងារកំណត់ម៉ោង ++ របារ​ឧបករណ៍ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml +new file mode 100644 +index 0000000..7b7425b +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "ಹೋಮ್‌ಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" ++ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" ++ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" ++ "ಮುಗಿದಿದೆ" ++ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" ++ "ಆ್ಯಪ್‌ವೊಂದನ್ನು ಆಯ್ಕೆಮಾಡಿ" ++ "ಆಫ್" ++ "ಆನ್" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ಹುಡುಕಿ…" ++ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ" ++ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" ++ "ಹುಡುಕಿ" ++ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸಿ" ++ "ಧ್ವನಿ ಹುಡುಕಾಟ" ++ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" ++ "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" ++ "ಕುಗ್ಗಿಸಿ" ++ ಎಚ್ಚರಿಕೆ ++ ಕೊಂಬೊ ಬಾಕ್ಸ್ ++ ಶಿರೋಲೇಖ ++ ಚಿತ್ರ ++ ಬಟನ್, ಚಿತ್ರ ++ ಲಿಂಕ್ ++ ಮೆನು ++ ಮೆನು ಬಾರ್ ++ ಮೆನು ಐಟಂ ++ ಪ್ರೋಗ್ರೆಸ್ ಬಾರ್ ++ ರೇಡಿಯೋ ಗುಂಪು ++ ಟ್ಯಾಬ್ ++ ಸ್ಕ್ರಾಲ್ ಬಾರ್ ++ "ಹುಡುಕಿ" ++ ಸ್ಪಿನ್ ಬಟನ್ ++ ಕಾರ್ಯನಿರತ ++ ಮುಚ್ಚಿದೆ ++ ವಿಸ್ತರಿಸಲಾಗಿದೆ ++ ಬಗೆಬಗೆಯ ++ ಆಫ್ ++ ಆನ್ ++ ಆಯ್ಕೆ ರದ್ದುಮಾಡಲಾಗಿದೆ ++ "999+" ++ ಸಾರಾಂಶ ++ ಟ್ಯಾಬ್ ಪಟ್ಟಿ ++ ಟೈಮರ್ ++ ಟೂಲ್ ಬಾರ್ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml +new file mode 100644 +index 0000000..868e8a7 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "홈으로 이동" ++ "위로 이동" ++ "추가 옵션" ++ "완료" ++ "전체 보기" ++ "앱 선택" ++ "사용 중지" ++ "사용" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "스페이스바" ++ "Sym+" ++ "Menu+" ++ "검색..." ++ "검색어 삭제" ++ "검색어" ++ "검색" ++ "검색어 보내기" ++ "음성 검색" ++ "공유 대상:" ++ "%s과(와) 공유" ++ "접기" ++ 알림 ++ 콤보 상자 ++ 제목 ++ 이미지 ++ 버튼, 이미지 ++ 링크 ++ 메뉴 ++ 메뉴 표시줄 ++ 메뉴 항목 ++ 진행률 표시줄 ++ 라디오 그룹 ++ ++ 스크롤 바 ++ "검색" ++ 회전 버튼 ++ 처리 중 ++ 숨겨짐 ++ 확대됨 ++ 혼합 ++ 해제 ++ 설정 ++ 선택되지 않음 ++ "999+" ++ 요약 ++ 탭 리스트 ++ 타이머 ++ 도구 표시줄 ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml +new file mode 100644 +index 0000000..3a267b0 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml +@@ -0,0 +1,39 @@ ++ ++ ++ "Башкы бетке чабыттоо" ++ "Мурунку экранга өтүү" ++ "Дагы параметрлер" ++ "Бүттү" ++ "Баарын көрүү" ++ "Колдонмо тандоо" ++ "ӨЧҮК" ++ "КҮЙҮК" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "боштук" ++ "Sym+" ++ "Menu+" ++ "Издөө…" ++ "Сурамды өчүрүү" ++ "Изделген сурам" ++ "Издөө" ++ "Сурам тапшыруу" ++ "Айтып издөө" ++ "Төмөнкү менен бөлүшүү" ++ "%s аркылуу бөлүшүү" ++ "Жыйыштыруу" ++ Айкалыштырылган тизме ++ Сүрөт ++ Баскыч, сүрөт ++ Шилтеме ++ Меню ++ "Издөө" ++ өчүк ++ күйүк ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml +new file mode 100644 +index 0000000..a12899f +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml +@@ -0,0 +1,6 @@ ++ ++ ++ 48dp ++ 12dp ++ 14dp ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml +new file mode 100644 +index 0000000..cc236eb +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml +@@ -0,0 +1,12 @@ ++ ++ ++ 440dp ++ 60% ++ 90% ++ 60% ++ 90% ++ 55% ++ 80% ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml +new file mode 100644 +index 0000000..f85a197 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml +@@ -0,0 +1,62 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml +new file mode 100644 +index 0000000..7dad77f +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 0px ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml +new file mode 100644 +index 0000000..9ee03e1 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml +@@ -0,0 +1,277 @@ ++ ++ ++ @color/androidx_core_secondary_text_default_material_light ++ 0dp ++ 0dp ++ 12dp ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml +new file mode 100644 +index 0000000..1ad118e +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml +new file mode 100644 +index 0000000..edb25cd +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml +@@ -0,0 +1,51 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml +new file mode 100644 +index 0000000..f9b3c08 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml +@@ -0,0 +1,5 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml +new file mode 100644 +index 0000000..4c30667 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml +new file mode 100644 +index 0000000..6c28067 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml +@@ -0,0 +1,55 @@ ++ ++ ++ "Chỉ đường về nhà" ++ "Di chuyển lên" ++ "Tùy chọn khác" ++ "Xong" ++ "Xem tất cả" ++ "Chọn một ứng dụng" ++ "TẮT" ++ "BẬT" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Tìm kiếm…" ++ "Xóa truy vấn" ++ "Truy vấn tìm kiếm" ++ "Tìm kiếm" ++ "Gửi truy vấn" ++ "Tìm kiếm bằng giọng nói" ++ "Chia sẻ với" ++ "Chia sẻ với %s" ++ "Thu gọn" ++ Thông báo ++ Ô lựa chọn ++ Tiêu đề ++ Hình ảnh ++ Nút, Hình ảnh ++ Liên kết ++ Thanh menu ++ Mục trong menu ++ Thanh tiến độ ++ Nhóm nút radio ++ Thanh cuộn ++ "Tìm kiếm" ++ Nút quay ++ bận ++ đã thu gọn ++ đã mở rộng ++ kết hợp ++ đang tắt ++ đang bật ++ không được chọn ++ "999+" ++ Tóm tắt ++ Danh sách tab ++ Bộ hẹn giờ ++ Thanh công cụ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml +new file mode 100644 +index 0000000..2d85812 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml +@@ -0,0 +1,12 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml +new file mode 100644 +index 0000000..deecc9e +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +new file mode 100644 +index 0000000..b499d2c +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +@@ -0,0 +1,9 @@ ++ ++ ++ 60% ++ 90% ++ 50% ++ 70% ++ 45% ++ 72% ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +new file mode 100644 +index 0000000..e47b455 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "转到首页" ++ "转到上一层级" ++ "更多选项" ++ "完成" ++ "查看全部" ++ "选择应用" ++ "关闭" ++ "开启" ++ "Alt+" ++ "Ctrl+" ++ "Delete 键" ++ "Enter 键" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "空格键" ++ "Sym+" ++ "Menu+" ++ "搜索…" ++ "清除查询" ++ "搜索查询" ++ "搜索" ++ "提交查询" ++ "语音搜索" ++ "分享对象" ++ "与%s分享" ++ "收起" ++ 提醒 ++ 组合框 ++ 标题 ++ 图片 ++ 按钮,图片 ++ 链接 ++ 菜单 ++ 菜单栏 ++ 菜单项目 ++ 进度条 ++ 单选组 ++ 选项卡 ++ 滚动条 ++ "搜索" ++ 旋转按钮 ++ 忙碌中 ++ 已收起 ++ 已展开 ++ 混合 ++ 关闭 ++ 开启 ++ 未选中 ++ "999+" ++ 摘要 ++ 选项卡列表 ++ 倒计时 ++ 工具栏 ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +new file mode 100644 +index 0000000..ee624b1 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "瀏覽主頁" ++ "向上瀏覽" ++ "更多選項" ++ "完成" ++ "查看全部" ++ "選擇應用程式" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "刪除" ++ "Enter 鍵" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "空白鍵" ++ "Sym +" ++ "Menu +" ++ "搜尋…" ++ "清除查詢" ++ "搜尋查詢" ++ "搜尋" ++ "提交查詢" ++ "語音搜尋" ++ "分享對象" ++ "使用「%s」分享" ++ "收合" ++ 提醒 ++ 下拉式方塊 ++ 標題 ++ 圖像 ++ 圖像,按鈕 ++ 連結 ++ 選單 ++ 選單列 ++ 選單項目 ++ 進度列 ++ 選項按鈕群組 ++ 分頁 ++ 捲軸 ++ "搜尋" ++ 微調按鈕 ++ 忙碌中 ++ 已收合 ++ 已展開 ++ 混合 ++ 關閉 ++ 開啟 ++ 已取消選取 ++ "999+" ++ 摘要 ++ 分頁清單 ++ 計時器 ++ 工具列 ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +new file mode 100644 +index 0000000..dc11b61 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +@@ -0,0 +1,57 @@ ++ ++ ++ "瀏覽首頁" ++ "向上瀏覽" ++ "更多選項" ++ "完成" ++ "查看全部" ++ "選擇應用程式" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "Delete 鍵" ++ "Enter 鍵" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "空格鍵" ++ "Sym +" ++ "Menu +" ++ "搜尋…" ++ "清除查詢" ++ "搜尋查詢" ++ "搜尋" ++ "提交查詢" ++ "語音搜尋" ++ "分享對象" ++ "與「%s」分享" ++ "收合" ++ 提醒 ++ 下拉式方塊 ++ 標題 ++ 圖像 ++ 圖像,按鈕 ++ 連結 ++ 功能表 ++ 功能表列 ++ 功能表項目 ++ 進度列 ++ 選項按鈕群組 ++ 頁籤 ++ 捲軸 ++ "搜尋" ++ 微調按鈕 ++ 忙碌中 ++ 已收合 ++ 已展開 ++ 混合 ++ 關閉 ++ 開啟 ++ 已取消選取 ++ "999+" ++ 摘要 ++ 頁籤清單 ++ 計時器 ++ 工具列 ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml +new file mode 100644 +index 0000000..d04e556 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Zulazulela ekhaya" ++ "Zulazulela phezulu" ++ "Ezinye izinketho" ++ "Kwenziwe" ++ "Buka konke" ++ "Khetha insiza" ++ "VALA" ++ "VULA" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Imenyu+" ++ "Sesha…" ++ "Sula inkinga" ++ "Sesha umbuzo" ++ "Sesha" ++ "Thumela umbuzo" ++ "Ukusesha ngezwi" ++ "Yabelana no" ++ "Yabelana ne-%s" ++ "Goqa" ++ "Sesha" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values/values.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..f9dccc8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values/values.xml +@@ -0,0 +1,3569 @@ ++ ++ ++ ++ ++ ++ ++ ++ true ++ true ++ #ff000000 ++ #ffffffff ++ #7fa87f ++ @android:color/black ++ @android:color/black ++ @color/material_deep_teal_200 ++ @color/material_deep_teal_500 ++ #1f000000 ++ #8a000000 ++ @color/material_grey_800 ++ @android:color/white ++ @color/material_grey_850 ++ @color/material_grey_50 ++ #80ffffff ++ #80000000 ++ @color/bright_foreground_material_light ++ @color/bright_foreground_material_dark ++ @android:color/white ++ @android:color/black ++ #ff5a595b ++ #ffd6d7d7 ++ #ffffffff ++ #eecc0000 ++ #80bebebe ++ #80323232 ++ #ffbebebe ++ #ff323232 ++ #ff7043 ++ #ff5722 ++ @android:color/white ++ @android:color/black ++ #6680cbc4 ++ #66009688 ++ #ff37474f ++ #ff263238 ++ #ff21272b ++ #ff80cbc4 ++ #ff008577 ++ #fff5f5f5 ++ #ffe0e0e0 ++ #fffafafa ++ #ff757575 ++ #ff424242 ++ #ff303030 ++ #ff212121 ++ #ffffffff ++ #ff9e9e9e ++ @android:color/black ++ @color/material_grey_600 ++ @color/material_grey_900 ++ @color/material_grey_100 ++ #ffffffff ++ #de000000 ++ #4Dffffff ++ #39000000 ++ #33ffffff ++ #1f000000 ++ #b3ffffff ++ #8a000000 ++ #36ffffff ++ #24000000 ++ #ff616161 ++ #ffbdbdbd ++ #ffbdbdbd ++ #fff1f1f1 ++ #e6616161 ++ #e6FFFFFF ++ 16dp ++ 72dp ++ 56dp ++ 0dp ++ 0dp ++ 4dp ++ 16dp ++ 10dp ++ 6dp ++ 48dp ++ 180dp ++ 5dp ++ -3dp ++ 48dp ++ 48dp ++ 36dp ++ 48dp ++ 48dp ++ @dimen/abc_control_inset_material ++ 6dp ++ 8dp ++ @dimen/abc_control_padding_material ++ 720dp ++ 320dp ++ 2dp ++ 4dp ++ 4dp ++ 2dp ++ 80% ++ 100% ++ 320dp ++ 320dp ++ 8dp ++ 8dp ++ 65% ++ 95% ++ 24dp ++ 18dp ++ 8dp ++ 0.30 ++ 0.26 ++ 32dip ++ 8dip ++ 8dip ++ 7dp ++ 4dp ++ 10dp ++ 16dp ++ 80dp ++ 64dp ++ 48dp ++ @dimen/abc_action_bar_content_inset_material ++ 296dp ++ 4dp ++ 48dip ++ 320dip ++ 2dp ++ 2dp ++ 20dp ++ 48dp ++ 36dp ++ 16dp ++ 3dp ++ 14sp ++ 14sp ++ 14sp ++ 12sp ++ 34sp ++ 45sp ++ 56sp ++ 112sp ++ 24sp ++ 22sp ++ 18sp ++ 14sp ++ 16sp ++ 14sp ++ 16sp ++ 16dp ++ 20sp ++ 20dp ++ 20dp ++ 4dp ++ 6dp ++ 8dp ++ 4dp ++ 2dp ++ 320dp ++ 320dp ++ 0.30 ++ 0.26 ++ 0.26 ++ 0.20 ++ 0.12 ++ 0.50 ++ 0.38 ++ 0.70 ++ 0.54 ++ 32dp ++ 13sp ++ 12dp ++ 8dp ++ 64dp ++ 64dp ++ 10dp ++ @dimen/notification_content_margin_start ++ 16dp ++ 2dp ++ 3dp ++ 24dp ++ 13sp ++ 10dp ++ 5dp ++ 2dp ++ 16dp ++ 8dp ++ 8dp ++ 96dp ++ 6.5dp ++ 0dp ++ 16dp ++ #3333B5E5 ++ #0cffffff ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 220 ++ 150 ++ 127 ++ 150 ++ 8081 ++ 999 ++ Navigate home ++ Navigate up ++ More options ++ Done ++ See all ++ Choose an app ++ OFF ++ ON ++ Alt+ ++ Ctrl+ ++ delete ++ enter ++ Function+ ++ Meta+ ++ Shift+ ++ space ++ Sym+ ++ Menu+ ++ Search… ++ Clear query ++ Search query ++ Search ++ Submit query ++ Voice search ++ Share with ++ Share with %s ++ Collapse ++ Alert ++ androidx.startup ++ Change Bundle Location ++ Copy\n ++ Connecting to debugger... ++ Failed to connect to debugger! ++ Open DevTools ++ Connect to the bundler to debug JavaScript ++ React Native Dev Menu (%1$s) ++ Running %1$s ++ Dismiss\n(ESC) ++ Capture Heap ++ Enable Fast Refresh ++ Disabling Fast Refresh because it requires a development bundle. ++ Switching to development bundle in order to enable Fast Refresh. ++ Disable Fast Refresh ++ Toggle Element Inspector ++ Loading from %1$s… ++ Failed to open DevTools. Please check that the dev server is running and reload the app. ++ Show Perf Monitor ++ Hide Perf Monitor ++ Reload ++ Reload\n(R,\u00A0R) ++ Failed to load bundle. Try restarting the bundler or reconnecting your device. ++ Report ++ Toggle Sampling Profiler ++ Settings ++ Debug Settings ++ Combo Box ++ Heading ++ Image ++ Button, Image ++ Link ++ Menu ++ Menu Bar ++ Menu Item ++ Progress Bar ++ Radio Group ++ Tab ++ Scroll Bar ++ Search ++ Spin Button ++ busy ++ collapsed ++ expanded ++ mixed ++ off ++ on ++ unselected ++ 999+ ++ Summary ++ Tab List ++ Timer ++ Tool Bar ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml +new file mode 100644 +index 0000000..d15e92c +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml +@@ -0,0 +1,4447 @@ ++ ++@color/androidx_core_secondary_text_default_material_light0dp0dp12dp"999+""999+"">999""999+"4dp"999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""९९९+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+"#1f000000#8a000000#ffffffff#ff9e9e9e4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 24dp80dp64dp8dp8dp580dp16dp20dp"Navigați la ecranul de pornire""Navigați în sus""Mai multe opțiuni""Gata""Afișați tot""Alegeți o aplicație""DEZACTIVAT""ACTIVAT""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Meniu+""Căutați…""Ștergeți interogarea""Termen de căutare""Căutați""Trimiteți interogarea""Căutare vocală""Trimiteți la""Trimiteți folosind %s""Restrângeți""Căutați""హోమ్‌కు నావిగేట్ చేస్తుంది""పైకి నావిగేట్ చేస్తుంది""మరిన్ని ఆప్షన్‌లు""పూర్తయింది""అన్నీ చూడండి""యాప్‌ను ఎంచుకోండి""ఆఫ్""ఆన్""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""స్పేస్""Sym+""Menu+""సెర్చ్ చేయండి…""ప్రశ్నను తీసివేస్తుంది""సెర్చ్ క్వెరీ""సెర్చ్""ప్రశ్నని సమర్పిస్తుంది""వాయిస్ సెర్చ్""వీరితో షేర్ చేస్తుంది""%sతో షేర్ చేస్తుంది""కుదిస్తుంది""సెర్చ్"0px"Перейти на главный экран""Перейти вверх""Ещё""Готово""Показать все""Выберите приложение""ВЫКЛ""ВКЛ""Alt +""Ctrl +""Delete""Ввод""Fn +""Meta +""Shift +""Пробел""Sym +""Меню +""Введите запрос""Удалить запрос""Поисковый запрос""Поиск""Отправить запрос""Голосовой поиск""Поделиться с помощью""Поделиться с помощью %s""Свернуть""Поиск""Mag-navigate sa home""Mag-navigate pataas""Higit pang opsyon""Tapos na""Tingnan lahat""Pumili ng app""I-OFF""I-ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Maghanap…""I-clear ang query""Query sa paghahanap""Maghanap""Isumite ang query""Paghahanap gamit ang boses""Ibahagi sa/kay""Ibahagi gamit ang %s""I-collapse""Maghanap""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""Delete 鍵""Enter 鍵""Fn +""Meta +""Shift +""空格鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""與「%s」分享""收合""搜尋""Portami a casa""Torna indietro""Altre opzioni""Fine""Mostra tutto""Scelta di un\'app""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""SPAZIO""SYM +""MENU +""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Cerca""Navega fins a la pàgina d\'inici""Navega cap amunt""Més opcions""Fet""Mostra-ho tot""Selecciona una aplicació""DESACTIVA""ACTIVA""Alt+""Ctrl+""Supr""Retorn""Funció+""Meta+""Maj+""Espai""Sym+""Menú+""Cerca…""Esborra la consulta""Consulta de cerca""Cerca""Envia la consulta""Cerca per veu""Comparteix amb""Comparteix amb %s""Replega""Cerca""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""eyða""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leit""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leit""Přejít na plochu""Přejít nahoru""Další možnosti""Hotovo""Zobrazit vše""Vybrat aplikaci""VYP""ZAP""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Shift+""mezerník""Sym+""Menu+""Vyhledat…""Smazat dotaz""Dotaz pro vyhledávání""Hledat""Odeslat dotaz""Hlasové vyhledávání""Sdílet s""Sdílet s aplikací %s""Sbalit""Hledat""转到首页""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享对象""与%s分享""收起""搜索""Tunjukkan jalan ke rumah""Kembali ke atas""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Telusuri kueri""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Ciutkan""Telusuri""ホームに戻る""前に戻る""その他のオプション""完了""すべて表示""アプリの選択""OFF""ON""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""Menu+""検索…""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""折りたたむ""検索""Πλοήγηση στην αρχική σελίδα""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Εμφάνιση όλων""Επιλέξτε μια εφαρμογή""ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ""ΕΝΕΡΓΟΠΟΙΗΣΗ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""διάστημα""Sym+""Menu+""Αναζήτηση…""Διαγραφή ερωτήματος""Ερώτημα αναζήτησης""Αναζήτηση""Υποβολή ερωτήματος""Φωνητική αναζήτηση""Κοινοποίηση σε""Κοινοποίηση στην εφαρμογή %s""Σύμπτυξη""Αναζήτηση""นำทางไปหน้าแรก""กลับ""ตัวเลือกอื่น""เสร็จ""ดูทั้งหมด""เลือกแอป""ปิด""เปิด""Alt+""Ctrl+""ลบ""Enter""Function+""Meta+""Shift+""Space""Sym+""เมนู+""ค้นหา…""ล้างคำค้นหา""คำค้นหา""ค้นหา""ส่งคำค้นหา""ค้นหาด้วยเสียง""แชร์กับ""แชร์ทาง %s""ยุบ""ค้นหา""پیمایش به صفحه اصلی""رفتن به بالا""گزینه‌های بیشتر""تمام""دیدن همه""انتخاب برنامه""خاموش""روشن""‎Alt+‎""‎Ctrl+‎""حذف""enter""‎Function+‎""‎Meta+‎""‎Shift+‎""فاصله""‎Sym+‎""منو+""جستجو…‏""پاک کردن پُرسمان""درخواست جستجو""جستجو""ارسال پُرسمان""جستجوی گفتاری""هم‌رسانی با""هم‌رسانی با %s""کوچک کردن""جستجو""Eiti į pagrindinį puslapį""Naršyti aukštyn""Daugiau parinkčių""Atlikta""Žr. viską""Pasirinkite programą""IŠJUNGTI""ĮJUNGTI""„Alt“ +""„Ctrl“ +""„delete“""„enter“""„Function“ +""„Meta“ +""„Shift“ +""„space“""„Sym“ +""„Menu“ +""Ieškoti…""Išvalyti užklausą""Paieškos užklausa""Ieškoti""Pateikti užklausą""Paieška balsu""Bendrinti su""Bendrinti naudojant programą „%s“""Sutraukti""Ieškoti""ହୋମ୍ ପେଜ୍‌କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଅଧିକ ବିକଳ୍ପ""ହୋଇଗଲା""ସବୁ ଦେଖନ୍ତୁ""ଗୋଟିଏ ଆପ୍‍ ବାଛନ୍ତୁ""ବନ୍ଦ""ଚାଲୁ ଅଛି""Alt+""Ctrl+""ଡିଲିଟ୍‌ କରନ୍ତୁ""ଏଣ୍ଟର୍""Function+""Meta+""Shift+""ସ୍ପେସ୍‍""Sym+""ମେନୁ""ସର୍ଚ୍ଚ କରନ୍ତୁ…""କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ""ସର୍ଚ୍ଚ କ୍ୱେରୀ""ସନ୍ଧାନ କରନ୍ତୁ""କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ""ଭଏସ୍‌ ସର୍ଚ୍ଚ""ଏହାଙ୍କ ସହ ସେୟାର୍‌ କରନ୍ତୁ""%s ସହ ସେୟାର୍‍ କରନ୍ତୁ""ସଂକୁଚିତ କରନ୍ତୁ""ସନ୍ଧାନ କରନ୍ତୁ""Joan orri nagusira""Joan gora""Aukera gehiago""Eginda""Ikusi guztiak""Aukeratu aplikazio bat""DESAKTIBATU""AKTIBATU""Alt +""Ktrl +""ezabatu""sartu""Funtzioa +""Meta +""Maius +""zuriunea""Sym +""Menua +""Bilatu…""Garbitu kontsulta""Bilaketa-kontsulta""Bilatu""Bidali kontsulta""Ahozko bilaketa""Partekatu honekin""Partekatu %s aplikazioarekin""Tolestu""Bilatu""ກັບໄປໜ້າຫຼັກ""ເລື່ອນຂຶ້ນເທິງ""ຕົວເລືອກເພີ່ມເຕີມ""ແລ້ວໆ""ເບິ່ງທັງໝົດ""ເລືອກແອັບ""ປິດ""ເປີດ""Alt+""Ctrl+""ລຶບ""enter""Function+""Meta+""Shift+""ຍະຫວ່າງ""Sym+""Menu+""ຊອກຫາ…""ລຶບຂໍ້ຄວາມຊອກຫາ""ຄຳສຳລັບຄົ້ນຫາ""ຊອກຫາ""ສົ່ງຂໍ້ມູນ""ຊອກຫາດ້ວຍສຽງ""ແບ່ງປັນກັບ""ແບ່ງປັນດ້ວຍ %s""ຫຍໍ້ລົງ""ຊອກຫາ""ניווט לדף הבית""ניווט למעלה""עוד אפשרויות""סיום""הצגת הכול""בחירת אפליקציה""כבוי""מופעל""Alt+""Ctrl+‎""מחיקה""Enter""Function+""Meta+""Shift+""רווח""Sym+""תפריט+""חיפוש…""מחיקת השאילתה""שאילתת חיפוש""חיפוש""שליחת שאילתה""חיפוש קולי""שיתוף עם""שיתוף עם %s""כיווץ""חיפוש""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Siirry etusivulle""Siirry ylös""Lisäasetukset""Valmis""Näytä kaikki""Valitse sovellus""POIS PÄÄLTÄ""PÄÄLLÄ""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Vaihto+""välilyönti""Sym+""Valikko+""Haku…""Tyhjennä kysely""Hakukysely""Haku""Lähetä kysely""Puhehaku""Jaa…""Jaa: %s""Tiivistä""Haku"AlerteZone combinéeTitreBouton, imageLienBarre de menuOption de menuBarre de progressionGroupe de boutons radioOngletBarre de déroulementBouton compteur circulaireen cours de traitementréduitagrandià double étatdésactivéactivédésélectionnéRésuméListe des ongletsMinuterieBarre d’outilsPole kombiNagłówekObrazPrzycisk, obrazPasek menuPozycja menuPasek postępuGrupa przycisków radiowychKartaPasek przewijaniaPrzycisk kręceniazajętezwinięterozwiniętemieszanewył.wł.nie wybranoPodsumowanieLista kartCzasomierzPasek narzędziThông báoÔ lựa chọnTiêu đềHình ảnhNút, Hình ảnhLiên kếtThanh menuMục trong menuThanh tiến độNhóm nút radioThanh cuộnNút quaybậnđã thu gọnđã mở rộngkết hợpđang tắtđang bậtkhông được chọnTóm tắtDanh sách tabBộ hẹn giờThanh công cụSinjalizimKuti kombinimiTitullImazhButon, imazhLidhjaMenyShiriti i menysëArtikull i menysëShiriti i ProgresitGrupi i RadiosSkedëShiriti i lëvizjesButoni i rrotullimitI zënëpalosurzgjeruarpërzierjoaktivaktivei pazgjedhurPërmbledhjaLista e skedaveKohëmatësiShiriti i mjeteveAviseringKombinationsrutaRubrikBildKnapp, bildLänkMenyMenyfältMenyobjektFörloppsfältRadiogruppFlikBläddringslistRotationsknappupptagenminimeradutökadblandadavavmarkeradSammanfattningFliklistaVerktygsfältOpozoriloKombinirano poljeNaslovSlikaGumb, slikaPovezavaMeniMeniElement v menijuČrta napredkaRadio skupinaZavihekDrsnikVrtljivi gumbzasedenostrnjenorazširjenmešanoizključenovklopljenoneizbranoPovzetekSeznam z zavihkiČasovnikVrstica z orodjiUpozornenieKombinované poleNadpisObrázokTlačidlo, obrázokOdkazPonukaLišta s ponukouPoložka ponukyIndikátor postupuSkupina tlačidiel na výberTabulátorLišta na posúvanieOtočné tlačidloobsadenézbalenérozbalenézmiešanévypnutézapnuténevybranéSúhrnZoznam karietČasovačPanel s nástrojmiالرٹکومبو باکسسرخیتصویربٹن، تصویرلنکمینیومینیو بارمینیو آئٹمپیشرفت کی بارریڈیو گروپٹیبسکرول بارگھمانے کا بٹنمصروفسکیڑا گیاتوسیع کیا گیاامتزاجآف ہےآن ہےغیر منتخب کردہخلاصہٹیب کی لسٹٹائمرٹول بارArifaKisanduku cha ComboKichwaPichaKitufe, PichaKiungoMenyuUpau wa MenyuKipengee cha MenyuUpau wa HatuaKundi la RedioKichupoMwambaa wa KubiringizaKitufe cha KuzungushashughuliniimekunjwaimepanuliwamchanganyikoimezimwaimewashwahaijateuliwaMuhtasariOrodha ya KichupoKipima mudaUpau wa ZanaAvisoCaixa de combinaçãoTítuloImagemBotão, ImagemLigaçãoBarra do menuItem do menuBarra de progressoGrupo de opçõesSeparadorBarra de deslocamentoBotão giratórioocupadofechadoexpandidomistodesativadoativadonão selecionadoResumoLista de separadoresTemporizadorBarra de ferramentasUyarıKarma KutuBaşlıkGörselDüğme, GörselBağlantıMenüMenü ÇubuğuMenü Seçeneğiİlerleme ÇubuğuRadyo GrubuSekmeKaydırma ÇubuğuDöndürme Düğmesimeşguldaraltılmışgenişletilmişkarışıkkapalıaçıkseçili değilÖzetSekme ListesiZamanlayıcıAraç Çubuğuநினைவூட்டல்காம்போ பெட்டிதலைப்புபடம்பொத்தான், படம்இணைப்புமெனுமெனு பட்டிமெனு பொருள்போக்கு பட்டிரேடியோ குழுபிரிவுஉருட்டுப்பட்டிஸ்பின் பட்டன்பணிமிகுதிசுருக்கப்பட்டதுவிரிவாக்கப்பட்டதுகலந்துள்ளதுஆஃப்ஆன்தேர்வுநீக்கப்பட்டதுசுருக்கம்பிரிவுப் பட்டியல்டைமர்கருவிப்பட்டிการแจ้งเตือนกล่องคอมโบส่วนหัวรูปภาพปุ่ม, รูปภาพลิงก์เมนูแถบเมนูรายการในเมนูแถบความคืบหน้ากลุ่มปุ่มตัวเลือกแท็บแถบเลื่อนปุ่มเพิ่ม/ลดไม่ว่างยุบแล้วขยายแล้วผสมกันปิดอยู่เปิดอยู่ไม่ได้เลือกสรุปรายการแท็บตัวจับเวลาแถบเครื่องมือهشدارجعبه گفتگوسر‌صفحهتصویردکمه، تصویرپیوندمنونوار منومورد منونوار پیشرفتگروه رادیوییبرگهنوار پیمایشدکمه چرخشمشغولکوچک‌شدهبزرگ‌شدهترکیب‌شدهخاموشروشنلغو انتخاب شدخلاصهفهرست برگهزمان‌سنجنوار ابزارĮspėjimasSudėtinis laukelisAntraštėVaizdasMygtukas, vaizdasNuorodaMeniuMeniu juostaMeniu elementasEigos juostaAkučių grupėSkirtukasSlinkimo juostaSukimo mygtukasnaudojamasutrauktaišskleistamišrusišjungtaįjungtapasirinkimas atšauktasSuvestinėSkirtukų sąrašasLaikmatisĮrankių juostaກ່ອງຄອມໂບຮູບພາບປຸ່ມ, ຮູບພາບລິ້ງເມນູປິດເປີດהתראהתיבה משולבתכותרתתמונהלחצן, תמונהקישורתפריטסרגל תפריטיםפריט בתפריטסרגל התקדמותקבוצת רדיולשוניתסרגל גלילהלחצן מסתובבתפוסמצומצםמורחבמשולבכבוימופעלהבחירה בוטלהסיכוםרשימת לשוניותטיימרסרגל כליםCombo boxButton, imageMenu barMenu itemProgress barRadio groupScroll barSpin buttonTab listTool barHälytysYhdistelmäruutuOtsikkoKuvaPainike, kuvaLinkkiValikkoValikkopalkkiValikkokohdeEdistymispalkkiValintanappiryhmäVälilehtiVierityspalkkiPyörityspainikevarattupienennettylaajennettuyhdistettyei käytössäkäytössäei valittuYhteenvetoVälilehtilistaAjastinTyökalupalkkiAlerteListe déroulanteTitreBouton, imageLienBarre de menuÉlément du menuBarre de progressionGroupe de boutons radioOngletBarre de défilementToupieopération en coursréduitagrandimixtedésactivéactivédésélectionné(s)RécapitulatifListe d’ongletsMinuteurBarre d’outilsAlertaCuadro combinadoEncabezadoImagenBotón, imagenEnlaceMenúBarra de menúsElemento de menúBarra de progresoGrupo de botones de opciónPestañaBarra de desplazamientoBotón de númeroocupadocontraídoexpandidomixtodesactivadoactivadono seleccionadoResumenLista de pestañasTemporizadorBarra de herramientasHoiatusLiitboksPealkiriPiltNupp, piltMenüüMenüüribaMenüü-üksusEdenemisribaRaadionuppude gruppVahekaartKerimisribaPööramisnupphõivatudahendatudlaiendatudmiksitudväljasseesvalimataKokkuvõteVahekaartide loendTaimerTööriistaribaUpozorenjeKombinirani okvirZaglavljeSlikaGumb, slikaVezaIzbornikTraka izbornikaStavka izbornikaTraka napretkaGrupa izbornih gumbaKarticaTraka za pomicanjeGumb za vrtnjuzauzetosažetoproširenomješovitoisključenouključenoponišten odabirSažetakPopis karticaMjerač vremenaTraka s alatimaFigyelmeztetésKombinált listaCímsorKépGomb, képHivatkozásMenüMenüsorMenüelemFolyamatjelzőVálasztógomb-csoportLapfülGörgetősávForgó gombelfoglaltösszecsukvakibontvavegyeskibenincs kiválasztvaÖsszegzésLapfülek listájaIdőmérőEszköztárWaarschuwingCombivakKopAfbeeldingKnop, afbeeldingMenubalkMenu-itemVoortgangsbalkKeuzegroepTabbladScrollbalkDraaiknopbezigsamengevouwenuitgevouwengemengduitaangedeselecteerdSamenvattingLijst met tabbladenWerkbalkСигналКомбинирана кутияЗаглавиеИзображениеБутон, изображениеВръзкаМенюЛента с менютаЕлемент от менюЛента за напредъкРадио групаРазделЛента за превъртанеБутон за завъртанезаетосвиторазширеносмесеноизключеновключенонеизбраноОбобщениеСписък с разделиТаймерЛента с инструментиঅ্যালার্টকম্বো বক্সশিরোনামইমেজবোতাম, ছবিলিঙ্কমেনুমেনু বারমেনু আইটেমপ্রোগ্রেস বাররেডিও গ্রুপট্যাবস্ক্রোল বারস্পিন বোতামব্যস্তছোট করা হয়েছেবাড়ানো হয়েছেমিশ্রবন্ধ আছেচালু আছেআনসিলেক্ট করা হয়েছেসারসংক্ষেপট্যাব লিস্টটাইমারটুল বারकम्बो बक्सफोटोबटन, फोटोलिङ्कमेनुअफअनOpletnotaKombinasiekassieOpskrifPrentKnoppie, prentSkakelKieslysKieslysbalkKieslysitemVorderingbalkRadiogroepOortjieRolleesbalkTolknoppiebesigis ingevouis uitgevouis gemengafaanontkiesOpsommingOortjielysAftellerNutsbalkअलर्टकॉम्बो बॉक्सशीर्षकफ़ोटोबटन, फ़ोटोलिंकमेनूमेनू बारमेनू आइटमप्रोग्रेस बाररेडियो ग्रुपटैबस्क्रॉल बारस्पिन बटनव्यस्तछोटा किया गयाबड़ा किया गयामिक्सबंद हैचालू हैनहीं चुने गएसारांशटैब लिस्टटाइमरटूल बारგაფრთხილებასათაურიგამოსახულებაღილაკი, გამოსახულებაბმულიმენიუმენიუს ზოლიმენიუს ერთეულიპროგრესის ზოლირადიო ჯგუფიჩანართიგადაადგილების პანელიდატრიალების ღილაკიდაკავებულიაკეცილიგაშლილიშერეულიგამორთულიაჩართულიაურჩეველიშეჯამებაჩანართების სიატაიმერიხელსაწყოების ზოლიWarnhinweisKombinationsfeldÜberschriftBildButton, BildMenüMenüleisteMenüpunktStatusanzeigeGruppe von ButtonsScroll-LeisteAuswahl-Buttonin Gebrauchausgeblendeteingeblendetgemischtauseinnicht ausgewähltÜbersichtTab-ListeSymbolleisteKombo siyahısıŞəkilDüymə, şəkilKeçidMenyudeaktivaktivdir알림콤보 상자제목이미지버튼, 이미지링크메뉴메뉴 표시줄메뉴 항목진행률 표시줄라디오 그룹스크롤 바회전 버튼처리 중숨겨짐확대됨혼합해제설정선택되지 않음요약탭 리스트타이머도구 표시줄അലേർട്ട്കോംബോ ബോക്‌സ്തലക്കെട്ട്ചിത്രംബട്ടൺ, ചിത്രംലിങ്ക്മെനുമെനു ബാർമെനു ഇനംപുരോഗതി ബാർറേഡിയോ ഗ്രൂപ്പ്ടാബ്സ്‌ക്രോൾ ബാർകറക്കുക ബട്ടൺതിരക്കിലാണ്ചുരുക്കിവിപുലീകരിച്ചുമിശ്രിതംഓഫാണ്ഓണാണ്തിരഞ്ഞെടുത്തത് മാറ്റിസംഗ്രഹംടാബ് ലിസ്‌റ്റ്ടൈമർടൂൾ ബാർПредупредувањеКомбинирано полеЗаглавиеСликаКопче, сликаВрскаМениМени лентаПроизвод на мениЛента за напредокРадио групаКартичкаЛента за лизгањеКопче за вртењезафатенособранопроширеномешаноисклученовклученоизборот е поништенРезимеСписок со картичкиТајмерЛента со алаткиಎಚ್ಚರಿಕೆಕೊಂಬೊ ಬಾಕ್ಸ್ಶಿರೋಲೇಖಚಿತ್ರಬಟನ್, ಚಿತ್ರಲಿಂಕ್ಮೆನುಮೆನು ಬಾರ್ಮೆನು ಐಟಂಪ್ರೋಗ್ರೆಸ್ ಬಾರ್ರೇಡಿಯೋ ಗುಂಪುಟ್ಯಾಬ್ಸ್ಕ್ರಾಲ್ ಬಾರ್ಸ್ಪಿನ್ ಬಟನ್ಕಾರ್ಯನಿರತಮುಚ್ಚಿದೆವಿಸ್ತರಿಸಲಾಗಿದೆಬಗೆಬಗೆಯಆಫ್ಆನ್ಆಯ್ಕೆ ರದ್ದುಮಾಡಲಾಗಿದೆಸಾರಾಂಶಟ್ಯಾಬ್ ಪಟ್ಟಿಟೈಮರ್ಟೂಲ್ ಬಾರ್သတိပေးချက်ရွေးရန်အကွက်ခေါင်းစီးဓာတ်ပုံခလုတ်၊ ဓာတ်ပုံလင့်ခ်မီနူးမီနူး ဘားတန်းမီနူး အကြောင်းအရာပြီးစီးမှုပြ ဘားတန်းရေဒီယိုအုပ်စုတက်ဘ်ရွှေ့ဆွဲကြည့်ရန် ဘားတန်းလှည့်ရန် ခလုတ်လုပ်ဆောင်နေဆဲခေါက်သိမ်းထားပါတယ်ချဲ့ထားပြီးရောစပ်ထားပြီးပိတ်ဖွင့်ရွေးမထားပါအနှစ်ချုပ်တက်ဘ်စာရင်းအချိန်တိုင်းစက်ကိရိယာ ဘားတန်းتنبيهمربع تحرير وسردالعنوانصورةزر، صورةرابطالقائمةشريط القائمةعنصر القائمةشريط التقدممجموعة أزرار اختيارعلامة التبويبشريط التمريرزر زيادة ونقصانمشغولمطويموسعمختلطإيقاف تشغيلتشغيلغير محدَدملخصقائمة علامات التبويبمؤقِتشريط الأدواتAlertaCaixa de combinaçãoTítuloImagemBotão, imagemLinkMenuBarra do menuItem do menuBarra de progressoBotão de grupo de opçõesAbaBarra de rolamentoBotão de rotaçãoocupadorecolhidoexpandidomistodesativadoativadodesmarcadosResumoLista de abasTemporizadorBarra de ferramentasСповіщенняКомбінований списокЗаголовокЗображенняКнопка, зображенняПосиланняМенюРядок менюОб\'єкт менюІндикатор прогресуГрупа перемикачівВкладкаПрокручуванняКнопка обертаннязайнятозгорнуторозгорнутозмішаноВимк.Увімк.не вибраноЗведенняСписок вкладокТаймерПанель інструментівОбавештењеКомбиновано пољеЗаглављеСликаДугме, сликаВезаМениТрака са менијемСтавка из менијаТрака са напреткомГрупа за радиоКартицаТрака за померањеДугме за окретањезаузетоскупљенопроширеномешаноискљученоукљученоизбор опозванРезимеЛиста картицаТајмерТрака са алаткамаਸੁਚੇਤਨਾਕੋਂਬੋ ਬਾਕਸਸਿਰਲੇਖਚਿੱਤਰਬਟਨ, ਚਿੱਤਰਲਿੰਕਮੀਨੂਮੀਨੂ ਬਾਰਮੀਨੂ ਆਈਟਮਪ੍ਰੋਗਰੈੱਸ ਬਾਰਰਡੀਓ ਗਰੁੱਪਟੈਬਸਕ੍ਰੋਲ ਬਾਰ\'ਘੁੰਮਾਓ\' ਬਟਨਵਿਅਸਤਸਮੇਟਿਆ ਗਿਆਵਿਸਤਾਰ ਕੀਤਾ ਗਿਆਮਿਕਸਡਬੰਦਚਾਲੂਚੋਣ ਹਟਾਈ ਗਈਸਾਰਟੈਬ ਸੂਚੀਟਾਈਮਰਟੂਲ ਬਾਰඇඟවීමසංයුක්ත පෙට්ටියසිරස්තලයරූපය‍බොත්තම, රූපයසබැඳියමෙනුවමෙනු තීරුව‍මෙනු අයිතමයප්‍රගති තීරුවගුවන්විදුලි සමූහයටැබයඅනුචලන තීරුවවේගයෙන් කරකවන බොත්තමකාර්යබහුලයිහකුළන ලදීවිහිදුවන ලදිමිශ්‍ර කළඅක්‍රියයික්‍රියාත්මකයිතේරීම ඉවත් කරන ලදසාරාංශයටැබ ලැයිස්තුවකාල ගණකයමෙවලම් තීරුව ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/debug-artifact-dependencies.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/debug-artifact-dependencies.xml +new file mode 100644 +index 0000000..3d0ab9b +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/debug-artifact-dependencies.xml +@@ -0,0 +1,413 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/debug-artifact-libraries.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/debug-artifact-libraries.xml +new file mode 100644 +index 0000000..1bb9578 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/debug-artifact-libraries.xml +@@ -0,0 +1,722 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/debug.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/debug.xml +new file mode 100644 +index 0000000..51988a1 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/debug.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/module.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/module.xml +new file mode 100644 +index 0000000..634a447 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebug/module.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/debug-artifact-dependencies.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/debug-artifact-dependencies.xml +new file mode 100644 +index 0000000..c3f5077 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/debug-artifact-dependencies.xml +@@ -0,0 +1,419 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/debug-artifact-libraries.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/debug-artifact-libraries.xml +new file mode 100644 +index 0000000..4a62618 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/debug-artifact-libraries.xml +@@ -0,0 +1,735 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/debug.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/debug.xml +new file mode 100644 +index 0000000..33c3fc7 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/debug.xml +@@ -0,0 +1,30 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/module.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/module.xml +new file mode 100644 +index 0000000..634a447 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugAndroidTest/module.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/debug-artifact-dependencies.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/debug-artifact-dependencies.xml +new file mode 100644 +index 0000000..c3f5077 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/debug-artifact-dependencies.xml +@@ -0,0 +1,419 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/debug-artifact-libraries.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/debug-artifact-libraries.xml +new file mode 100644 +index 0000000..4a62618 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/debug-artifact-libraries.xml +@@ -0,0 +1,735 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/debug.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/debug.xml +new file mode 100644 +index 0000000..483f429 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/debug.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/module.xml b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/module.xml +new file mode 100644 +index 0000000..634a447 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/lintAnalyzeDebugUnitTest/module.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml b/node_modules/jet/android/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml +new file mode 100644 +index 0000000..ff6c2b9 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml b/node_modules/jet/android/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml +new file mode 100644 +index 0000000..3389724 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml b/node_modules/jet/android/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml +new file mode 100644 +index 0000000..9f8e2e8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/jet/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..b394287 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/jet/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..fe9b3d1 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt b/node_modules/jet/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt +new file mode 100644 +index 0000000..0327dfc +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt +@@ -0,0 +1,13 @@ ++#Mon Dec 30 08:12:22 ECT 2024 ++path.3=4/classes.dex ++path.2=0/classes.dex ++path.1=1/classes.dex ++path.0=classes.dex ++base.3=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/4/classes.dex ++base.2=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex ++base.1=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/1/classes.dex ++base.0=/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex ++renamed.3=classes4.dex ++renamed.2=classes3.dex ++renamed.1=classes2.dex ++renamed.0=classes.dex +diff --git a/node_modules/jet/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources b/node_modules/jet/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources +new file mode 100644 +index 0000000..9995a33 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 b/node_modules/jet/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 +new file mode 100644 +index 0000000..813ffe8 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 differ +diff --git a/node_modules/jet/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/jet/android/build/intermediates/incremental/packageDebugAssets/merger.xml +new file mode 100644 +index 0000000..c2e33d2 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/incremental/packageDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/BuildConfig.class b/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/BuildConfig.class +new file mode 100644 +index 0000000..f94b872 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/BuildConfig.class differ +diff --git a/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/Jet$1.class b/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/Jet$1.class +new file mode 100644 +index 0000000..a88bb9b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/Jet$1.class differ +diff --git a/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/Jet.class b/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/Jet.class +new file mode 100644 +index 0000000..f9aaf06 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/Jet.class differ +diff --git a/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/JetPackage.class b/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/JetPackage.class +new file mode 100644 +index 0000000..f920d36 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/jet/JetPackage.class differ +diff --git a/node_modules/jet/android/build/intermediates/javac/debugAndroidTest/compileDebugAndroidTestJavaWithJavac/classes/io/invertase/jet/test/BuildConfig.class b/node_modules/jet/android/build/intermediates/javac/debugAndroidTest/compileDebugAndroidTestJavaWithJavac/classes/io/invertase/jet/test/BuildConfig.class +new file mode 100644 +index 0000000..b474bbc +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/javac/debugAndroidTest/compileDebugAndroidTestJavaWithJavac/classes/io/invertase/jet/test/BuildConfig.class differ +diff --git a/node_modules/jet/android/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/linked-resources-binary-format.ap_ b/node_modules/jet/android/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/linked-resources-binary-format.ap_ +new file mode 100644 +index 0000000..50c0df1 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/linked-resources-binary-format.ap_ differ +diff --git a/node_modules/jet/android/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/output-metadata.json b/node_modules/jet/android/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/output-metadata.json +new file mode 100644 +index 0000000..c045a01 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/linked_resources_binary_format/debugAndroidTest/processDebugAndroidTestResources/output-metadata.json +@@ -0,0 +1,20 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "LINKED_RESOURCES_BINARY_FORMAT", ++ "kind": "Directory" ++ }, ++ "applicationId": "io.invertase.jet.test", ++ "variantName": "debugAndroidTest", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "versionCode": 0, ++ "versionName": "", ++ "outputFile": "linked-resources-binary-format.ap_" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/lint-cache-version.txt b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/lint-cache-version.txt +new file mode 100644 +index 0000000..0053ef9 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/lint-cache-version.txt +@@ -0,0 +1 @@ ++Cache for Android Lint31.6.0 +diff --git a/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/maven.google/com/android/tools/build/group-index.xml b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/maven.google/com/android/tools/build/group-index.xml +new file mode 100644 +index 0000000..4b39bf8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/maven.google/com/android/tools/build/group-index.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/maven.google/master-index.xml b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/maven.google/master-index.xml +new file mode 100644 +index 0000000..9a39723 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/maven.google/master-index.xml +@@ -0,0 +1,299 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/sdk_index/snapshot.gz b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/sdk_index/snapshot.gz +new file mode 100644 +index 0000000..99ebf13 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebug/sdk_index/snapshot.gz differ +diff --git a/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebugAndroidTest/lint-cache-version.txt b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebugAndroidTest/lint-cache-version.txt +new file mode 100644 +index 0000000..0053ef9 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebugAndroidTest/lint-cache-version.txt +@@ -0,0 +1 @@ ++Cache for Android Lint31.6.0 +diff --git a/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebugUnitTest/lint-cache-version.txt b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebugUnitTest/lint-cache-version.txt +new file mode 100644 +index 0000000..0053ef9 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint-cache/lintAnalyzeDebugUnitTest/lint-cache-version.txt +@@ -0,0 +1 @@ ++Cache for Android Lint31.6.0 +diff --git a/node_modules/jet/android/build/intermediates/lint-cache/lintReportDebug/lint-cache-version.txt b/node_modules/jet/android/build/intermediates/lint-cache/lintReportDebug/lint-cache-version.txt +new file mode 100644 +index 0000000..0053ef9 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint-cache/lintReportDebug/lint-cache-version.txt +@@ -0,0 +1 @@ ++Cache for Android Lint31.6.0 +diff --git a/node_modules/jet/android/build/intermediates/lint_intermediate_text_report/debug/lintReportDebug/lint-results-debug.txt b/node_modules/jet/android/build/intermediates/lint_intermediate_text_report/debug/lintReportDebug/lint-results-debug.txt +new file mode 100644 +index 0000000..57cc0d6 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_intermediate_text_report/debug/lintReportDebug/lint-results-debug.txt +@@ -0,0 +1,24 @@ ++/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build.gradle:8: Warning: A newer version of com.android.tools.build:gradle than 7.0.3 is available: 8.7.3. (There is also a newer version of 7.0.𝑥 available, if upgrading to 8.7.3 is difficult: 7.0.4) [AndroidGradlePluginVersion] ++ classpath 'com.android.tools.build:gradle:7.0.3' ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ++ ++ Explanation for issues of type "AndroidGradlePluginVersion": ++ This detector looks for usage of the Android Gradle Plugin where the ++ version you are using is not the current stable release. Using older ++ versions is fine, and there are cases where you deliberately want to stick ++ with an older version. However, you may simply not be aware that a more ++ recent version is available, and that is what this lint check helps find. ++ ++/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build.gradle:49: Warning: Avoid using + in version numbers; can lead to unpredictable and unrepeatable builds (com.facebook.react:react-native:+) [GradleDynamicVersion] ++ api 'com.facebook.react:react-native:+' ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ++ ++ Explanation for issues of type "GradleDynamicVersion": ++ Using + in dependencies lets you automatically pick up the latest available ++ version rather than a specific, named version. However, this is not ++ recommended; your builds are not repeatable; you may have tested with a ++ slightly different version than what the build server used. (Using a ++ dynamic version as the major version number is more problematic than using ++ it in the minor version position.) ++ ++0 errors, 2 warnings +diff --git a/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/debug-artifact-dependencies.xml b/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/debug-artifact-dependencies.xml +new file mode 100644 +index 0000000..3d0ab9b +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/debug-artifact-dependencies.xml +@@ -0,0 +1,413 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/debug-artifact-libraries.xml b/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/debug-artifact-libraries.xml +new file mode 100644 +index 0000000..1bb9578 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/debug-artifact-libraries.xml +@@ -0,0 +1,722 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/debug.xml b/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/debug.xml +new file mode 100644 +index 0000000..187eaf9 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/debug.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/module.xml b/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/module.xml +new file mode 100644 +index 0000000..634a447 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_model/debug/generateDebugLintModel/module.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint_model_metadata/debug/writeDebugLintModelMetadata/lint-model-metadata.properties b/node_modules/jet/android/build/intermediates/lint_model_metadata/debug/writeDebugLintModelMetadata/lint-model-metadata.properties +new file mode 100644 +index 0000000..f2d8d70 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_model_metadata/debug/writeDebugLintModelMetadata/lint-model-metadata.properties +@@ -0,0 +1,3 @@ ++mavenArtifactId=jet ++mavenGroupId=RNGoogleMobileAdsExample ++mavenVersion=unspecified +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/lint_partial_results/debug/lintAnalyzeDebug/out/lint-definite.xml b/node_modules/jet/android/build/intermediates/lint_partial_results/debug/lintAnalyzeDebug/out/lint-definite.xml +new file mode 100644 +index 0000000..c104328 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_partial_results/debug/lintAnalyzeDebug/out/lint-definite.xml +@@ -0,0 +1,49 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint_partial_results/debug/lintAnalyzeDebug/out/lint-partial.xml b/node_modules/jet/android/build/intermediates/lint_partial_results/debug/lintAnalyzeDebug/out/lint-partial.xml +new file mode 100644 +index 0000000..e7731fd +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_partial_results/debug/lintAnalyzeDebug/out/lint-partial.xml +@@ -0,0 +1,9 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint_partial_results/debug/lintAnalyzeDebug/out/lint-resources.xml b/node_modules/jet/android/build/intermediates/lint_partial_results/debug/lintAnalyzeDebug/out/lint-resources.xml +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/debug-artifact-dependencies.xml b/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/debug-artifact-dependencies.xml +new file mode 100644 +index 0000000..3d0ab9b +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/debug-artifact-dependencies.xml +@@ -0,0 +1,413 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/debug-artifact-libraries.xml b/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/debug-artifact-libraries.xml +new file mode 100644 +index 0000000..1bb9578 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/debug-artifact-libraries.xml +@@ -0,0 +1,722 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/debug.xml b/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/debug.xml +new file mode 100644 +index 0000000..187eaf9 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/debug.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/module.xml b/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/module.xml +new file mode 100644 +index 0000000..634a447 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_report_lint_model/debug/generateDebugLintReportModel/module.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/lint_return_value/debug/lintReportDebug/return-value-debug.txt b/node_modules/jet/android/build/intermediates/lint_return_value/debug/lintReportDebug/return-value-debug.txt +new file mode 100644 +index 0000000..c227083 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/lint_return_value/debug/lintReportDebug/return-value-debug.txt +@@ -0,0 +1 @@ ++0 +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/local_aar_for_lint/debug/out.aar b/node_modules/jet/android/build/intermediates/local_aar_for_lint/debug/out.aar +new file mode 100644 +index 0000000..1237d1d +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/local_aar_for_lint/debug/out.aar differ +diff --git a/node_modules/jet/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/jet/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +new file mode 100644 +index 0000000..78ac5b8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +@@ -0,0 +1,2 @@ ++R_DEF: Internal format may change without notice ++local +diff --git a/node_modules/jet/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/jet/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..3b7f30f +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +@@ -0,0 +1,7 @@ ++1 ++2 ++4 ++5 ++6 ++7 +diff --git a/node_modules/jet/android/build/intermediates/manifest_merge_blame_file/debugAndroidTest/processDebugAndroidTestManifest/manifest-merger-blame-debug-androidTest-report.txt b/node_modules/jet/android/build/intermediates/manifest_merge_blame_file/debugAndroidTest/processDebugAndroidTestManifest/manifest-merger-blame-debug-androidTest-report.txt +new file mode 100644 +index 0000000..a768c5d +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/manifest_merge_blame_file/debugAndroidTest/processDebugAndroidTestManifest/manifest-merger-blame-debug-androidTest-report.txt +@@ -0,0 +1,90 @@ ++1 ++2 ++4 ++5 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:5:5-74 ++6 android:minSdkVersion="24" ++6-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:5:15-41 ++7 android:targetSdkVersion="34" /> ++7-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:5:42-71 ++8 ++9 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:11:5-15:71 ++10 android:name="android.test.InstrumentationTestRunner" ++10-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:11:22-75 ++11 android:functionalTest="false" ++11-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:14:22-52 ++12 android:handleProfiling="false" ++12-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:13:22-53 ++13 android:label="Tests for io.invertase.jet.test" ++13-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:15:22-69 ++14 android:targetPackage="io.invertase.jet.test" /> ++14-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:12:22-67 ++15 ++19 ++19-->[com.facebook.react:react-android:0.76.2] /Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/AndroidManifest.xml:16:5-78 ++19-->[com.facebook.react:react-android:0.76.2] /Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/AndroidManifest.xml:16:22-75 ++20 ++21 [androidx.core:core:1.9.0] /Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/AndroidManifest.xml:22:5-24:47 ++22 android:name="io.invertase.jet.test.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" ++22-->[androidx.core:core:1.9.0] /Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/AndroidManifest.xml:23:9-81 ++23 android:protectionLevel="signature" /> ++23-->[androidx.core:core:1.9.0] /Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/AndroidManifest.xml:24:9-44 ++24 ++25 ++25-->[androidx.core:core:1.9.0] /Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/AndroidManifest.xml:26:5-97 ++25-->[androidx.core:core:1.9.0] /Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/AndroidManifest.xml:26:22-94 ++26 ++27 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:7:5-9:19 ++28 android:appComponentFactory="androidx.core.app.CoreComponentFactory" ++28-->[androidx.core:core:1.9.0] /Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/AndroidManifest.xml:28:18-86 ++29 android:debuggable="true" ++30 android:extractNativeLibs="false" > ++31 ++31-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:8:9-60 ++31-->/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest4537373184546789101.xml:8:23-57 ++32 ++33 [com.facebook.react:react-android:0.76.2] /Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/AndroidManifest.xml:19:9-21:40 ++34 android:name="com.facebook.react.devsupport.DevSettingsActivity" ++34-->[com.facebook.react:react-android:0.76.2] /Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/AndroidManifest.xml:20:13-77 ++35 android:exported="false" /> ++35-->[com.facebook.react:react-android:0.76.2] /Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/AndroidManifest.xml:21:13-37 ++36 ++37 [androidx.emoji2:emoji2:1.2.0] /Users/mike/.gradle/caches/8.10.2/transforms/1f8cd4c9c69e3f3dde095d0ab0d83963/transformed/emoji2-1.2.0/AndroidManifest.xml:24:9-32:20 ++38 android:name="androidx.startup.InitializationProvider" ++38-->[androidx.emoji2:emoji2:1.2.0] /Users/mike/.gradle/caches/8.10.2/transforms/1f8cd4c9c69e3f3dde095d0ab0d83963/transformed/emoji2-1.2.0/AndroidManifest.xml:25:13-67 ++39 android:authorities="io.invertase.jet.test.androidx-startup" ++39-->[androidx.emoji2:emoji2:1.2.0] /Users/mike/.gradle/caches/8.10.2/transforms/1f8cd4c9c69e3f3dde095d0ab0d83963/transformed/emoji2-1.2.0/AndroidManifest.xml:26:13-68 ++40 android:exported="false" > ++40-->[androidx.emoji2:emoji2:1.2.0] /Users/mike/.gradle/caches/8.10.2/transforms/1f8cd4c9c69e3f3dde095d0ab0d83963/transformed/emoji2-1.2.0/AndroidManifest.xml:27:13-37 ++41 [androidx.emoji2:emoji2:1.2.0] /Users/mike/.gradle/caches/8.10.2/transforms/1f8cd4c9c69e3f3dde095d0ab0d83963/transformed/emoji2-1.2.0/AndroidManifest.xml:29:13-31:52 ++42 android:name="androidx.emoji2.text.EmojiCompatInitializer" ++42-->[androidx.emoji2:emoji2:1.2.0] /Users/mike/.gradle/caches/8.10.2/transforms/1f8cd4c9c69e3f3dde095d0ab0d83963/transformed/emoji2-1.2.0/AndroidManifest.xml:30:17-75 ++43 android:value="androidx.startup" /> ++43-->[androidx.emoji2:emoji2:1.2.0] /Users/mike/.gradle/caches/8.10.2/transforms/1f8cd4c9c69e3f3dde095d0ab0d83963/transformed/emoji2-1.2.0/AndroidManifest.xml:31:17-49 ++44 [androidx.lifecycle:lifecycle-process:2.4.1] /Users/mike/.gradle/caches/8.10.2/transforms/ee2183567378c854597213307fc2ce1e/transformed/lifecycle-process-2.4.1/AndroidManifest.xml:31:13-33:52 ++45 android:name="androidx.lifecycle.ProcessLifecycleInitializer" ++45-->[androidx.lifecycle:lifecycle-process:2.4.1] /Users/mike/.gradle/caches/8.10.2/transforms/ee2183567378c854597213307fc2ce1e/transformed/lifecycle-process-2.4.1/AndroidManifest.xml:32:17-78 ++46 android:value="androidx.startup" /> ++46-->[androidx.lifecycle:lifecycle-process:2.4.1] /Users/mike/.gradle/caches/8.10.2/transforms/ee2183567378c854597213307fc2ce1e/transformed/lifecycle-process-2.4.1/AndroidManifest.xml:33:17-49 ++47 ++48 ++49 [com.facebook.soloader:soloader:0.12.1] /Users/mike/.gradle/caches/8.10.2/transforms/3dded9a1d202184d38d95ad803dd4ee6/transformed/soloader-0.12.1/AndroidManifest.xml:12:9-14:37 ++50 android:name="com.facebook.soloader.enabled" ++50-->[com.facebook.soloader:soloader:0.12.1] /Users/mike/.gradle/caches/8.10.2/transforms/3dded9a1d202184d38d95ad803dd4ee6/transformed/soloader-0.12.1/AndroidManifest.xml:13:13-57 ++51 android:value="false" /> ++51-->[com.facebook.soloader:soloader:0.12.1] /Users/mike/.gradle/caches/8.10.2/transforms/3dded9a1d202184d38d95ad803dd4ee6/transformed/soloader-0.12.1/AndroidManifest.xml:14:13-34 ++52 ++53 ++54 +diff --git a/node_modules/jet/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-jet.jar b/node_modules/jet/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-jet.jar +new file mode 100644 +index 0000000..15cb0ec +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-jet.jar differ +diff --git a/node_modules/jet/android/build/intermediates/merged_java_res/debugAndroidTest/mergeDebugAndroidTestJavaResource/feature-jet.jar b/node_modules/jet/android/build/intermediates/merged_java_res/debugAndroidTest/mergeDebugAndroidTestJavaResource/feature-jet.jar +new file mode 100644 +index 0000000..e1e3729 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_java_res/debugAndroidTest/mergeDebugAndroidTestJavaResource/feature-jet.jar differ +diff --git a/node_modules/jet/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/jet/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..f10f258 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libc++_shared.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libc++_shared.so +new file mode 100644 +index 0000000..d4f974d +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libfbjni.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libfbjni.so +new file mode 100644 +index 0000000..3ab6aad +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libfbjni.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libhermestooling.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libhermestooling.so +new file mode 100644 +index 0000000..06db0aa +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libhermestooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libimagepipeline.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libimagepipeline.so +new file mode 100644 +index 0000000..af73476 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libimagepipeline.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libjsctooling.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libjsctooling.so +new file mode 100644 +index 0000000..f4ff628 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libjsctooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libjsi.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libjsi.so +new file mode 100644 +index 0000000..4482cf8 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libjsi.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libnative-filters.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libnative-filters.so +new file mode 100644 +index 0000000..fd23417 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libnative-filters.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libnative-imagetranscoder.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..e89d094 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libnative-imagetranscoder.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libreactnative.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libreactnative.so +new file mode 100644 +index 0000000..5f1c649 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/arm64-v8a/libreactnative.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libc++_shared.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libc++_shared.so +new file mode 100644 +index 0000000..2d2477b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libc++_shared.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libfbjni.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libfbjni.so +new file mode 100644 +index 0000000..32f9b70 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libfbjni.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libhermestooling.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libhermestooling.so +new file mode 100644 +index 0000000..f71cb69 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libhermestooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libimagepipeline.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libimagepipeline.so +new file mode 100644 +index 0000000..c1a4997 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libimagepipeline.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libjsctooling.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libjsctooling.so +new file mode 100644 +index 0000000..796fb20 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libjsctooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libjsi.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libjsi.so +new file mode 100644 +index 0000000..ba86253 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libjsi.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libnative-filters.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libnative-filters.so +new file mode 100644 +index 0000000..ed5e381 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libnative-filters.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libnative-imagetranscoder.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..b02dba3 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libnative-imagetranscoder.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libreactnative.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libreactnative.so +new file mode 100644 +index 0000000..fdad9e5 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/armeabi-v7a/libreactnative.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libc++_shared.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libc++_shared.so +new file mode 100644 +index 0000000..42c6a51 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libc++_shared.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libfbjni.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libfbjni.so +new file mode 100644 +index 0000000..fa807af +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libfbjni.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libhermestooling.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libhermestooling.so +new file mode 100644 +index 0000000..12e9c67 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libhermestooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libimagepipeline.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libimagepipeline.so +new file mode 100644 +index 0000000..39e4158 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libimagepipeline.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libjsctooling.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libjsctooling.so +new file mode 100644 +index 0000000..c4e0561 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libjsctooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libjsi.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libjsi.so +new file mode 100644 +index 0000000..a755357 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libjsi.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libnative-filters.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libnative-filters.so +new file mode 100644 +index 0000000..5d7d278 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libnative-filters.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libnative-imagetranscoder.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..a04c3b3 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libnative-imagetranscoder.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libreactnative.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libreactnative.so +new file mode 100644 +index 0000000..1d4d860 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86/libreactnative.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libc++_shared.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libc++_shared.so +new file mode 100644 +index 0000000..304a80a +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libc++_shared.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libfbjni.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libfbjni.so +new file mode 100644 +index 0000000..1c4eb01 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libfbjni.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libhermestooling.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libhermestooling.so +new file mode 100644 +index 0000000..65ae208 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libhermestooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libimagepipeline.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libimagepipeline.so +new file mode 100644 +index 0000000..8545143 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libimagepipeline.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libjsctooling.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libjsctooling.so +new file mode 100644 +index 0000000..104b477 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libjsctooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libjsi.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libjsi.so +new file mode 100644 +index 0000000..e8af881 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libjsi.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libnative-filters.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libnative-filters.so +new file mode 100644 +index 0000000..26c9af1 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libnative-filters.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libnative-imagetranscoder.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..7b03cfb +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libnative-imagetranscoder.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libreactnative.so b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libreactnative.so +new file mode 100644 +index 0000000..4119469 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_native_libs/debugAndroidTest/mergeDebugAndroidTestNativeLibs/out/lib/x86_64/libreactnative.so differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-af_values-af.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-af_values-af.arsc.flat +new file mode 100644 +index 0000000..ccbebec +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-af_values-af.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-am_values-am.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-am_values-am.arsc.flat +new file mode 100644 +index 0000000..c3cde86 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-am_values-am.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ar_values-ar.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ar_values-ar.arsc.flat +new file mode 100644 +index 0000000..49aeae8 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ar_values-ar.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-as_values-as.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-as_values-as.arsc.flat +new file mode 100644 +index 0000000..4ac7a85 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-as_values-as.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-az_values-az.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-az_values-az.arsc.flat +new file mode 100644 +index 0000000..63eb9f8 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-az_values-az.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat +new file mode 100644 +index 0000000..5928dbc +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-be_values-be.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-be_values-be.arsc.flat +new file mode 100644 +index 0000000..842bd60 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-be_values-be.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-bg_values-bg.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-bg_values-bg.arsc.flat +new file mode 100644 +index 0000000..607736b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-bg_values-bg.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-bn_values-bn.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-bn_values-bn.arsc.flat +new file mode 100644 +index 0000000..41534e5 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-bn_values-bn.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-bs_values-bs.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-bs_values-bs.arsc.flat +new file mode 100644 +index 0000000..bf12e10 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-bs_values-bs.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ca_values-ca.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ca_values-ca.arsc.flat +new file mode 100644 +index 0000000..dab04f8 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ca_values-ca.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-cs_values-cs.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-cs_values-cs.arsc.flat +new file mode 100644 +index 0000000..7d3bce6 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-cs_values-cs.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-da_values-da.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-da_values-da.arsc.flat +new file mode 100644 +index 0000000..4989069 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-da_values-da.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-de_values-de.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-de_values-de.arsc.flat +new file mode 100644 +index 0000000..a9add71 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-de_values-de.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-el_values-el.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-el_values-el.arsc.flat +new file mode 100644 +index 0000000..0b7e923 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-el_values-el.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rAU_values-en-rAU.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rAU_values-en-rAU.arsc.flat +new file mode 100644 +index 0000000..2562528 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rAU_values-en-rAU.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rCA_values-en-rCA.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rCA_values-en-rCA.arsc.flat +new file mode 100644 +index 0000000..ad629c4 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rCA_values-en-rCA.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rGB_values-en-rGB.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rGB_values-en-rGB.arsc.flat +new file mode 100644 +index 0000000..967e1a3 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rGB_values-en-rGB.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rIN_values-en-rIN.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rIN_values-en-rIN.arsc.flat +new file mode 100644 +index 0000000..15908cf +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rIN_values-en-rIN.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rXC_values-en-rXC.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rXC_values-en-rXC.arsc.flat +new file mode 100644 +index 0000000..022ea72 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-en-rXC_values-en-rXC.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-es-rES_values-es-rES.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-es-rES_values-es-rES.arsc.flat +new file mode 100644 +index 0000000..cb9ffe1 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-es-rES_values-es-rES.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-es-rUS_values-es-rUS.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-es-rUS_values-es-rUS.arsc.flat +new file mode 100644 +index 0000000..52d215f +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-es-rUS_values-es-rUS.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-es_values-es.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-es_values-es.arsc.flat +new file mode 100644 +index 0000000..c600087 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-es_values-es.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-et_values-et.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-et_values-et.arsc.flat +new file mode 100644 +index 0000000..f13ffba +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-et_values-et.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-eu_values-eu.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-eu_values-eu.arsc.flat +new file mode 100644 +index 0000000..9651c8c +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-eu_values-eu.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fa_values-fa.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fa_values-fa.arsc.flat +new file mode 100644 +index 0000000..6eb2415 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fa_values-fa.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fi_values-fi.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fi_values-fi.arsc.flat +new file mode 100644 +index 0000000..0a30b9e +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fi_values-fi.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fr-rCA_values-fr-rCA.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fr-rCA_values-fr-rCA.arsc.flat +new file mode 100644 +index 0000000..436bc64 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fr-rCA_values-fr-rCA.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fr_values-fr.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fr_values-fr.arsc.flat +new file mode 100644 +index 0000000..3ec52de +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-fr_values-fr.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-gl_values-gl.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-gl_values-gl.arsc.flat +new file mode 100644 +index 0000000..12a9d70 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-gl_values-gl.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-gu_values-gu.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-gu_values-gu.arsc.flat +new file mode 100644 +index 0000000..5b67d30 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-gu_values-gu.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-h720dp-v13_values-h720dp-v13.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-h720dp-v13_values-h720dp-v13.arsc.flat +new file mode 100644 +index 0000000..64b4709 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-h720dp-v13_values-h720dp-v13.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hdpi-v4_values-hdpi-v4.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hdpi-v4_values-hdpi-v4.arsc.flat +new file mode 100644 +index 0000000..6788d5a +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hdpi-v4_values-hdpi-v4.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hi_values-hi.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hi_values-hi.arsc.flat +new file mode 100644 +index 0000000..b28fec3 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hi_values-hi.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hr_values-hr.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hr_values-hr.arsc.flat +new file mode 100644 +index 0000000..06ef1f1 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hr_values-hr.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hu_values-hu.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hu_values-hu.arsc.flat +new file mode 100644 +index 0000000..185aa46 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hu_values-hu.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hy_values-hy.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hy_values-hy.arsc.flat +new file mode 100644 +index 0000000..ab72a2c +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-hy_values-hy.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-in_values-in.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-in_values-in.arsc.flat +new file mode 100644 +index 0000000..b98bbab +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-in_values-in.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-is_values-is.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-is_values-is.arsc.flat +new file mode 100644 +index 0000000..5a4af48 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-is_values-is.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-it_values-it.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-it_values-it.arsc.flat +new file mode 100644 +index 0000000..e5bca1a +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-it_values-it.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-iw_values-iw.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-iw_values-iw.arsc.flat +new file mode 100644 +index 0000000..162535c +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-iw_values-iw.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ja_values-ja.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ja_values-ja.arsc.flat +new file mode 100644 +index 0000000..775c011 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ja_values-ja.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ka_values-ka.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ka_values-ka.arsc.flat +new file mode 100644 +index 0000000..7525f84 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ka_values-ka.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-kk_values-kk.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-kk_values-kk.arsc.flat +new file mode 100644 +index 0000000..59e558b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-kk_values-kk.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-km_values-km.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-km_values-km.arsc.flat +new file mode 100644 +index 0000000..610cebe +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-km_values-km.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-kn_values-kn.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-kn_values-kn.arsc.flat +new file mode 100644 +index 0000000..0a9d653 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-kn_values-kn.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ko_values-ko.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ko_values-ko.arsc.flat +new file mode 100644 +index 0000000..3d73362 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ko_values-ko.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ky_values-ky.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ky_values-ky.arsc.flat +new file mode 100644 +index 0000000..3d910d1 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ky_values-ky.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-land_values-land.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-land_values-land.arsc.flat +new file mode 100644 +index 0000000..ec564fa +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-land_values-land.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-large-v4_values-large-v4.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-large-v4_values-large-v4.arsc.flat +new file mode 100644 +index 0000000..e16d69f +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-large-v4_values-large-v4.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ldltr-v21_values-ldltr-v21.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ldltr-v21_values-ldltr-v21.arsc.flat +new file mode 100644 +index 0000000..490b84d +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ldltr-v21_values-ldltr-v21.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-lo_values-lo.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-lo_values-lo.arsc.flat +new file mode 100644 +index 0000000..9aacdea +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-lo_values-lo.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-lt_values-lt.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-lt_values-lt.arsc.flat +new file mode 100644 +index 0000000..bd68bca +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-lt_values-lt.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-lv_values-lv.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-lv_values-lv.arsc.flat +new file mode 100644 +index 0000000..4ab9d96 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-lv_values-lv.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-mk_values-mk.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-mk_values-mk.arsc.flat +new file mode 100644 +index 0000000..d247609 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-mk_values-mk.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ml_values-ml.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ml_values-ml.arsc.flat +new file mode 100644 +index 0000000..774e72b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ml_values-ml.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-mn_values-mn.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-mn_values-mn.arsc.flat +new file mode 100644 +index 0000000..623a982 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-mn_values-mn.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-mr_values-mr.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-mr_values-mr.arsc.flat +new file mode 100644 +index 0000000..2532744 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-mr_values-mr.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ms_values-ms.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ms_values-ms.arsc.flat +new file mode 100644 +index 0000000..cbb1682 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ms_values-ms.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-my_values-my.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-my_values-my.arsc.flat +new file mode 100644 +index 0000000..106a1f6 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-my_values-my.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-nb_values-nb.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-nb_values-nb.arsc.flat +new file mode 100644 +index 0000000..5bf2319 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-nb_values-nb.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ne_values-ne.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ne_values-ne.arsc.flat +new file mode 100644 +index 0000000..e166206 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ne_values-ne.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-night-v8_values-night-v8.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-night-v8_values-night-v8.arsc.flat +new file mode 100644 +index 0000000..7293599 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-night-v8_values-night-v8.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-nl_values-nl.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-nl_values-nl.arsc.flat +new file mode 100644 +index 0000000..9170f91 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-nl_values-nl.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-or_values-or.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-or_values-or.arsc.flat +new file mode 100644 +index 0000000..c3abce2 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-or_values-or.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pa_values-pa.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pa_values-pa.arsc.flat +new file mode 100644 +index 0000000..2a2b941 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pa_values-pa.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pl_values-pl.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pl_values-pl.arsc.flat +new file mode 100644 +index 0000000..6c3babd +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pl_values-pl.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-port_values-port.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-port_values-port.arsc.flat +new file mode 100644 +index 0000000..2117b7e +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-port_values-port.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pt-rBR_values-pt-rBR.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pt-rBR_values-pt-rBR.arsc.flat +new file mode 100644 +index 0000000..47d99bf +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pt-rBR_values-pt-rBR.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pt-rPT_values-pt-rPT.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pt-rPT_values-pt-rPT.arsc.flat +new file mode 100644 +index 0000000..81f91cb +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pt-rPT_values-pt-rPT.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pt_values-pt.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pt_values-pt.arsc.flat +new file mode 100644 +index 0000000..911a267 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-pt_values-pt.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ro_values-ro.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ro_values-ro.arsc.flat +new file mode 100644 +index 0000000..55ce128 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ro_values-ro.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ru_values-ru.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ru_values-ru.arsc.flat +new file mode 100644 +index 0000000..668c125 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ru_values-ru.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-si_values-si.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-si_values-si.arsc.flat +new file mode 100644 +index 0000000..817c881 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-si_values-si.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sk_values-sk.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sk_values-sk.arsc.flat +new file mode 100644 +index 0000000..0828cb8 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sk_values-sk.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sl_values-sl.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sl_values-sl.arsc.flat +new file mode 100644 +index 0000000..886c674 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sl_values-sl.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sq_values-sq.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sq_values-sq.arsc.flat +new file mode 100644 +index 0000000..d0c595b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sq_values-sq.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sr_values-sr.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sr_values-sr.arsc.flat +new file mode 100644 +index 0000000..4189a3b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sr_values-sr.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sv_values-sv.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sv_values-sv.arsc.flat +new file mode 100644 +index 0000000..8843655 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sv_values-sv.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sw600dp-v13_values-sw600dp-v13.arsc.flat +new file mode 100644 +index 0000000..6265b5d +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sw_values-sw.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sw_values-sw.arsc.flat +new file mode 100644 +index 0000000..9d8a0e2 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-sw_values-sw.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ta_values-ta.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ta_values-ta.arsc.flat +new file mode 100644 +index 0000000..0f622af +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ta_values-ta.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-te_values-te.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-te_values-te.arsc.flat +new file mode 100644 +index 0000000..f3c9253 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-te_values-te.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-th_values-th.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-th_values-th.arsc.flat +new file mode 100644 +index 0000000..8fc1e28 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-th_values-th.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-tl_values-tl.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-tl_values-tl.arsc.flat +new file mode 100644 +index 0000000..e0fb241 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-tl_values-tl.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-tr_values-tr.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-tr_values-tr.arsc.flat +new file mode 100644 +index 0000000..2173288 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-tr_values-tr.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-uk_values-uk.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-uk_values-uk.arsc.flat +new file mode 100644 +index 0000000..9c8c6ae +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-uk_values-uk.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ur_values-ur.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ur_values-ur.arsc.flat +new file mode 100644 +index 0000000..33c19dc +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-ur_values-ur.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-uz_values-uz.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-uz_values-uz.arsc.flat +new file mode 100644 +index 0000000..50ca039 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-uz_values-uz.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v16_values-v16.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v16_values-v16.arsc.flat +new file mode 100644 +index 0000000..8dd27e9 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v16_values-v16.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v17_values-v17.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v17_values-v17.arsc.flat +new file mode 100644 +index 0000000..3185f39 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v17_values-v17.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v18_values-v18.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v18_values-v18.arsc.flat +new file mode 100644 +index 0000000..cbad1b7 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v18_values-v18.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v21_values-v21.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v21_values-v21.arsc.flat +new file mode 100644 +index 0000000..2bd9f33 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v21_values-v21.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v22_values-v22.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v22_values-v22.arsc.flat +new file mode 100644 +index 0000000..a42f2e8 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v22_values-v22.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v23_values-v23.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v23_values-v23.arsc.flat +new file mode 100644 +index 0000000..1a8d2f0 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v23_values-v23.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v24_values-v24.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v24_values-v24.arsc.flat +new file mode 100644 +index 0000000..9b343a8 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v24_values-v24.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v25_values-v25.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v25_values-v25.arsc.flat +new file mode 100644 +index 0000000..410feab +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v25_values-v25.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v26_values-v26.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v26_values-v26.arsc.flat +new file mode 100644 +index 0000000..2254d2b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v26_values-v26.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v28_values-v28.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v28_values-v28.arsc.flat +new file mode 100644 +index 0000000..b5a15dd +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-v28_values-v28.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-vi_values-vi.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-vi_values-vi.arsc.flat +new file mode 100644 +index 0000000..49eb456 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-vi_values-vi.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-watch-v20_values-watch-v20.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-watch-v20_values-watch-v20.arsc.flat +new file mode 100644 +index 0000000..c7e929e +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-watch-v20_values-watch-v20.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-watch-v21_values-watch-v21.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-watch-v21_values-watch-v21.arsc.flat +new file mode 100644 +index 0000000..c7ad815 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-watch-v21_values-watch-v21.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-xlarge-v4_values-xlarge-v4.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-xlarge-v4_values-xlarge-v4.arsc.flat +new file mode 100644 +index 0000000..e7700de +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-xlarge-v4_values-xlarge-v4.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zh-rCN_values-zh-rCN.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zh-rCN_values-zh-rCN.arsc.flat +new file mode 100644 +index 0000000..73c5837 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zh-rCN_values-zh-rCN.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zh-rHK_values-zh-rHK.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zh-rHK_values-zh-rHK.arsc.flat +new file mode 100644 +index 0000000..78e461d +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zh-rHK_values-zh-rHK.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zh-rTW_values-zh-rTW.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zh-rTW_values-zh-rTW.arsc.flat +new file mode 100644 +index 0000000..601a416 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zh-rTW_values-zh-rTW.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zu_values-zu.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zu_values-zu.arsc.flat +new file mode 100644 +index 0000000..5bac82b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values-zu_values-zu.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values_values.arsc.flat b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values_values.arsc.flat +new file mode 100644 +index 0000000..1919f58 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources/values_values.arsc.flat differ +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/mergeDebugAndroidTestResources.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/mergeDebugAndroidTestResources.json +new file mode 100644 +index 0000000..6bb3e58 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/mergeDebugAndroidTestResources.json +@@ -0,0 +1,4912 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-b+sr+Latn_values-b+sr+Latn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2923", ++ "endColumns": "100", ++ "endOffsets": "3019" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,816,898,989,1082,1177,1271,1371,1464,1559,1664,1755,1846,1932,2037,2143,2246,2353,2462,2569,2739,2836", ++ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,811,893,984,1077,1172,1266,1366,1459,1554,1659,1750,1841,1927,2032,2138,2241,2348,2457,2564,2734,2831,2918" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-en-rCA_values-en-rCA.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ka_values-ka.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,2808", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,2885" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,41", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,3739", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,3816" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,202,278,368,436,504,581,662,746,826,898,986,1073,1152,1233,1313,1390,1468,1542,1626,1700,1780,1851", ++ "endColumns": "74,71,75,89,67,67,76,80,83,79,71,87,86,78,80,79,76,77,73,83,73,79,70,82", ++ "endOffsets": "125,197,273,363,431,499,576,657,741,821,893,981,1068,1147,1228,1308,1385,1463,1537,1621,1695,1775,1846,1929" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,51,52,53,54", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2808,2883,2955,3031,3121,3189,3257,3334,3415,3499,3579,3651,3821,3908,3987,4068,4148,4225,4303,4377,4562,4636,4716,4787", ++ "endColumns": "74,71,75,89,67,67,76,80,83,79,71,87,86,78,80,79,76,77,73,83,73,79,70,82", ++ "endOffsets": "2878,2950,3026,3116,3184,3252,3329,3410,3494,3574,3646,3734,3903,3982,4063,4143,4220,4298,4372,4456,4631,4711,4782,4865" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "4461", ++ "endColumns": "100", ++ "endOffsets": "4557" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-v17_values-v17.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v17/values-v17.xml", ++ "from": { ++ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", ++ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", ++ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", ++ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-tl_values-tl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2930", ++ "endColumns": "100", ++ "endOffsets": "3026" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,324,437,525,631,746,826,903,994,1087,1182,1276,1376,1469,1564,1658,1749,1840,1924,2033,2143,2244,2354,2472,2580,2743,2845", ++ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", ++ "endOffsets": "211,319,432,520,626,741,821,898,989,1082,1177,1271,1371,1464,1559,1653,1744,1835,1919,2028,2138,2239,2349,2467,2575,2738,2840,2925" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-iw_values-iw.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4429", ++ "endColumns": "100", ++ "endOffsets": "4525" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,2761", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,2838" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,3730", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,3807" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,202,272,341,422,490,558,636,714,796,875,946,1024,1104,1177,1257,1335,1410,1482,1554,1641,1712,1791,1860", ++ "endColumns": "68,77,69,68,80,67,67,77,77,81,78,70,77,79,72,79,77,74,71,71,86,70,78,68,74", ++ "endOffsets": "119,197,267,336,417,485,553,631,709,791,870,941,1019,1099,1172,1252,1330,1405,1477,1549,1636,1707,1786,1855,1930" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2761,2830,2908,2978,3047,3128,3196,3264,3342,3420,3502,3581,3652,3812,3892,3965,4045,4123,4198,4270,4342,4530,4601,4680,4749", ++ "endColumns": "68,77,69,68,80,67,67,77,77,81,78,70,77,79,72,79,77,74,71,71,86,70,78,68,74", ++ "endOffsets": "2825,2903,2973,3042,3123,3191,3259,3337,3415,3497,3576,3647,3725,3887,3960,4040,4118,4193,4265,4337,4424,4596,4675,4744,4819" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-en-rIN_values-en-rIN.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-fi_values-fi.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,2775", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,2851" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,3775", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,3851" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,126,208,280,348,431,500,570,649,728,813,899,973,1055,1139,1215,1300,1384,1464,1543,1618,1703,1779,1859,1930", ++ "endColumns": "70,81,71,67,82,68,69,78,78,84,85,73,81,83,75,84,83,79,78,74,84,75,79,70,78", ++ "endOffsets": "121,203,275,343,426,495,565,644,723,808,894,968,1050,1134,1210,1295,1379,1459,1538,1613,1698,1774,1854,1925,2004" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2775,2846,2928,3000,3068,3151,3220,3290,3369,3448,3533,3619,3693,3856,3940,4016,4101,4185,4265,4344,4419,4605,4681,4761,4832", ++ "endColumns": "70,81,71,67,82,68,69,78,78,84,85,73,81,83,75,84,83,79,78,74,84,75,79,70,78", ++ "endOffsets": "2841,2923,2995,3063,3146,3215,3285,3364,3443,3528,3614,3688,3770,3935,4011,4096,4180,4260,4339,4414,4499,4676,4756,4827,4906" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4504", ++ "endColumns": "100", ++ "endOffsets": "4600" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-watch-v21_values-watch-v21.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-watch-v21/values-watch-v21.xml", ++ "from": { ++ "startLines": "2,6,10", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,271,499", ++ "endLines": "5,9,13", ++ "endColumns": "12,12,12", ++ "endOffsets": "266,494,724" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ms_values-ms.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4356", ++ "endColumns": "100", ++ "endOffsets": "4452" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,126,204,274,342,424,493,567,643,725,808,885,968,1042,1127,1212,1290,1367,1444,1530,1605,1682,1752", ++ "endColumns": "70,77,69,67,81,68,73,75,81,82,76,82,73,84,84,77,76,76,85,74,76,69,73", ++ "endOffsets": "121,199,269,337,419,488,562,638,720,803,880,963,1037,1122,1207,1285,1362,1439,1525,1600,1677,1747,1821" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2800,2871,2949,3019,3087,3169,3238,3312,3388,3470,3553,3711,3794,3868,3953,4038,4116,4193,4270,4457,4532,4609,4679", ++ "endColumns": "70,77,69,67,81,68,73,75,81,82,76,82,73,84,84,77,76,76,85,74,76,69,73", ++ "endOffsets": "2866,2944,3014,3082,3164,3233,3307,3383,3465,3548,3625,3789,3863,3948,4033,4111,4188,4265,4351,4527,4604,4674,4748" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,2800", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,2876" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,3630", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,3706" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-zh-rTW_values-zh-rTW.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,2671", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,2745" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,3575", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,3649" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,121,193,260,326,401,466,532,602,674,747,822,889,959,1032,1104,1181,1257,1329,1399,1468,1548,1616,1686,1753", ++ "endColumns": "65,71,66,65,74,64,65,69,71,72,74,66,69,72,71,76,75,71,69,68,79,67,69,66,68", ++ "endOffsets": "116,188,255,321,396,461,527,597,669,742,817,884,954,1027,1099,1176,1252,1324,1394,1463,1543,1611,1681,1748,1817" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2671,2737,2809,2876,2942,3017,3082,3148,3218,3290,3363,3438,3505,3654,3727,3799,3876,3952,4024,4094,4163,4344,4412,4482,4549", ++ "endColumns": "65,71,66,65,74,64,65,69,71,72,74,66,69,72,71,76,75,71,69,68,79,67,69,66,68", ++ "endOffsets": "2732,2804,2871,2937,3012,3077,3143,3213,3285,3358,3433,3500,3570,3722,3794,3871,3947,4019,4089,4158,4238,4407,4477,4544,4613" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4243", ++ "endColumns": "100", ++ "endOffsets": "4339" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-lo_values-lo.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3358", ++ "endColumns": "100", ++ "endOffsets": "3454" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,2772", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,2849" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,3134", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,3211" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,131,201,283,350,417,488", ++ "endColumns": "75,69,81,66,66,70,70", ++ "endOffsets": "126,196,278,345,412,483,554" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2772,2848,2918,3000,3067,3216,3287", ++ "endColumns": "75,69,81,66,66,70,70", ++ "endOffsets": "2843,2913,2995,3062,3129,3282,3353" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-hr_values-hr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4560", ++ "endColumns": "100", ++ "endOffsets": "4656" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,2816", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,2896" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,3831", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,3911" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,213,287,356,437,504,575,656,739,823,912,984,1070,1153,1229,1309,1391,1470,1548,1624,1714,1787,1866,1944", ++ "endColumns": "73,83,73,68,80,66,70,80,82,83,88,71,85,82,75,79,81,78,77,75,89,72,78,77,80", ++ "endOffsets": "124,208,282,351,432,499,570,651,734,818,907,979,1065,1148,1224,1304,1386,1465,1543,1619,1709,1782,1861,1939,2020" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2816,2890,2974,3048,3117,3198,3265,3336,3417,3500,3584,3673,3745,3916,3999,4075,4155,4237,4316,4394,4470,4661,4734,4813,4891", ++ "endColumns": "73,83,73,68,80,66,70,80,82,83,88,71,85,82,75,79,81,78,77,75,89,72,78,77,80", ++ "endOffsets": "2885,2969,3043,3112,3193,3260,3331,3412,3495,3579,3668,3740,3826,3994,4070,4150,4232,4311,4389,4465,4555,4729,4808,4886,4967" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-night-v8_values-night-v8.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-night-v8/values-night-v8.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,293,389,491,593,687", ++ "endColumns": "69,83,83,95,101,101,93,88", ++ "endOffsets": "120,204,288,384,486,588,682,771" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-v26_values-v26.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v26/values-v26.xml", ++ "from": { ++ "startLines": "2,3,4,8,12,16", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,130,217,381,557,796", ++ "endLines": "2,3,7,11,15,16", ++ "endColumns": "74,86,12,12,12,92", ++ "endOffsets": "125,212,376,552,791,884" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-fr_values-fr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4446", ++ "endColumns": "100", ++ "endOffsets": "4542" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,208,278,361,428,507,589,679,771,842,929,1004,1091,1171,1251,1326,1403,1476,1567,1646,1727,1799", ++ "endColumns": "69,82,69,82,66,78,81,89,91,70,86,74,86,79,79,74,76,72,90,78,80,71,79", ++ "endOffsets": "120,203,273,356,423,502,584,674,766,837,924,999,1086,1166,1246,1321,1398,1471,1562,1641,1722,1794,1874" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2847,2917,3000,3070,3153,3220,3299,3381,3471,3563,3634,3808,3883,3970,4050,4130,4205,4282,4355,4547,4626,4707,4779", ++ "endColumns": "69,82,69,82,66,78,81,89,91,70,86,74,86,79,79,74,76,72,90,78,80,71,79", ++ "endOffsets": "2912,2995,3065,3148,3215,3294,3376,3466,3558,3629,3716,3878,3965,4045,4125,4200,4277,4350,4441,4621,4702,4774,4854" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,2847", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,2929" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,3721", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,3803" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-is_values-is.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,302,414,499,600,714,795,874,965,1058,1151,1245,1351,1444,1539,1634,1725,1819,1900,2010,2117,2214,2323,2423,2526,2681,2779", ++ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", ++ "endOffsets": "200,297,409,494,595,709,790,869,960,1053,1146,1240,1346,1439,1534,1629,1720,1814,1895,2005,2112,2209,2318,2418,2521,2676,2774,2855" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2860", ++ "endColumns": "100", ++ "endOffsets": "2956" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-uz_values-uz.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,405,487,587,704,789,867,958,1051,1146,1240,1334,1427,1522,1617,1708,1800,1884,1994,2100,2200,2308,2414,2516,2677,2776", ++ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", ++ "endOffsets": "205,300,400,482,582,699,784,862,953,1046,1141,1235,1329,1422,1517,1612,1703,1795,1879,1989,2095,2195,2303,2409,2511,2672,2771,2855" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2860", ++ "endColumns": "100", ++ "endOffsets": "2956" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-kn_values-kn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,2859", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,2937" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,3835", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,3913" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,127,206,278,347,428,496,563,638,713,798,879,950,1031,1111,1189,1271,1358,1435,1506,1576,1671,1743,1821,1890", ++ "endColumns": "71,78,71,68,80,67,66,74,74,84,80,70,80,79,77,81,86,76,70,69,94,71,77,68,74", ++ "endOffsets": "122,201,273,342,423,491,558,633,708,793,874,945,1026,1106,1184,1266,1353,1430,1501,1571,1666,1738,1816,1885,1960" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2859,2931,3010,3082,3151,3232,3300,3367,3442,3517,3602,3683,3754,3918,3998,4076,4158,4245,4322,4393,4463,4659,4731,4809,4878", ++ "endColumns": "71,78,71,68,80,67,66,74,74,84,80,70,80,79,77,81,86,76,70,69,94,71,77,68,74", ++ "endOffsets": "2926,3005,3077,3146,3227,3295,3362,3437,3512,3597,3678,3749,3830,3993,4071,4153,4240,4317,4388,4458,4553,4726,4804,4873,4948" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4558", ++ "endColumns": "100", ++ "endOffsets": "4654" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-v23_values-v23.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,190,325,400,487,1225,1975,2094,2221,2443,2667,2782,2889,3002", ++ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", ++ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", ++ "endOffsets": "185,320,395,482,1220,1970,2089,2216,2438,2662,2777,2884,2997,3227" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-v22_values-v22.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v22/values-v22.xml", ++ "from": { ++ "startLines": "2,3,4,9", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,487", ++ "endLines": "2,3,8,13", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,482,764" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-watch-v20_values-watch-v20.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-watch-v20/values-watch-v20.xml", ++ "from": { ++ "startLines": "2,5,8", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,214,385", ++ "endLines": "4,7,10", ++ "endColumns": "12,12,12", ++ "endOffsets": "209,380,553" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-hi_values-hi.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,2787", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,2864" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,3750", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,3827" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4468", ++ "endColumns": "100", ++ "endOffsets": "4564" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,203,274,343,423,490,557,631,707,790,871,939,1018,1096,1171,1258,1344,1419,1493,1567,1654,1726,1801,1870", ++ "endColumns": "68,78,70,68,79,66,66,73,75,82,80,67,78,77,74,86,85,74,73,73,86,71,74,68,72", ++ "endOffsets": "119,198,269,338,418,485,552,626,702,785,866,934,1013,1091,1166,1253,1339,1414,1488,1562,1649,1721,1796,1865,1938" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2787,2856,2935,3006,3075,3155,3222,3289,3363,3439,3522,3603,3671,3832,3910,3985,4072,4158,4233,4307,4381,4569,4641,4716,4785", ++ "endColumns": "68,78,70,68,79,66,66,73,75,82,80,67,78,77,74,86,85,74,73,73,86,71,74,68,72", ++ "endOffsets": "2851,2930,3001,3070,3150,3217,3284,3358,3434,3517,3598,3666,3745,3905,3980,4067,4153,4228,4302,4376,4463,4636,4711,4780,4853" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-sk_values-sk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,213,284,355,442,510,579,660,741,828,923,997,1083,1167,1244,1325,1407,1485,1560,1634,1718,1789,1868,1939", ++ "endColumns": "74,82,70,70,86,67,68,80,80,86,94,73,85,83,76,80,81,77,74,73,83,70,78,70,82", ++ "endOffsets": "125,208,279,350,437,505,574,655,736,823,918,992,1078,1162,1239,1320,1402,1480,1555,1629,1713,1784,1863,1934,2017" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2817,2892,2975,3046,3117,3204,3272,3341,3422,3503,3590,3685,3759,3928,4012,4089,4170,4252,4330,4405,4479,4664,4735,4814,4885", ++ "endColumns": "74,82,70,70,86,67,68,80,80,86,94,73,85,83,76,80,81,77,74,73,83,70,78,70,82", ++ "endOffsets": "2887,2970,3041,3112,3199,3267,3336,3417,3498,3585,3680,3754,3840,4007,4084,4165,4247,4325,4400,4474,4558,4730,4809,4880,4963" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4563", ++ "endColumns": "100", ++ "endOffsets": "4659" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,2817", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,2895" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,3845", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,3923" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-in_values-in.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,324,429,516,620,736,819,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1920,2023,2128,2229,2333,2442,2550,2710,2809", ++ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", ++ "endOffsets": "215,319,424,511,615,731,814,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1915,2018,2123,2224,2328,2437,2545,2705,2804,2889" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2894", ++ "endColumns": "100", ++ "endOffsets": "2990" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-pt_values-pt.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,3850", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,3931" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4575", ++ "endColumns": "100", ++ "endOffsets": "4671" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,211,282,352,435,502,569,648,727,815,908,976,1062,1147,1223,1306,1388,1463,1541,1615,1701,1773,1852,1928", ++ "endColumns": "69,85,70,69,82,66,66,78,78,87,92,67,85,84,75,82,81,74,77,73,85,71,78,75,85", ++ "endOffsets": "120,206,277,347,430,497,564,643,722,810,903,971,1057,1142,1218,1301,1383,1458,1536,1610,1696,1768,1847,1923,2009" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2843,2913,2999,3070,3140,3223,3290,3357,3436,3515,3603,3696,3764,3936,4021,4097,4180,4262,4337,4415,4489,4676,4748,4827,4903", ++ "endColumns": "69,85,70,69,82,66,66,78,78,87,92,67,85,84,75,82,81,74,77,73,85,71,78,75,85", ++ "endOffsets": "2908,2994,3065,3135,3218,3285,3352,3431,3510,3598,3691,3759,3845,4016,4092,4175,4257,4332,4410,4484,4570,4743,4822,4898,4984" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-vi_values-vi.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,2798", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,2878" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,3647", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,3727" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,205,277,349,432,503,579,660,743,826,904,981,1053,1137,1220,1297,1373,1448,1538,1611,1690,1764", ++ "endColumns": "72,76,71,71,82,70,75,80,82,82,77,76,71,83,82,76,75,74,89,72,78,73,78", ++ "endOffsets": "123,200,272,344,427,498,574,655,738,821,899,976,1048,1132,1215,1292,1368,1443,1533,1606,1685,1759,1838" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2798,2871,2948,3020,3092,3175,3246,3322,3403,3486,3569,3732,3809,3881,3965,4048,4125,4201,4276,4467,4540,4619,4693", ++ "endColumns": "72,76,71,71,82,70,75,80,82,82,77,76,71,83,82,76,75,74,89,72,78,73,78", ++ "endOffsets": "2866,2943,3015,3087,3170,3241,3317,3398,3481,3564,3642,3804,3876,3960,4043,4120,4196,4271,4361,4535,4614,4688,4767" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4366", ++ "endColumns": "100", ++ "endOffsets": "4462" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-zh-rCN_values-zh-rCN.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4226", ++ "endColumns": "100", ++ "endOffsets": "4322" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,121,191,258,324,399,464,529,598,669,742,814,882,953,1026,1098,1175,1251,1323,1393,1462,1540,1608,1679,1746", ++ "endColumns": "65,69,66,65,74,64,64,68,70,72,71,67,70,72,71,76,75,71,69,68,77,67,70,66,68", ++ "endOffsets": "116,186,253,319,394,459,524,593,664,737,809,877,948,1021,1093,1170,1246,1318,1388,1457,1535,1603,1674,1741,1810" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2662,2728,2798,2865,2931,3006,3071,3136,3205,3276,3349,3421,3489,3639,3712,3784,3861,3937,4009,4079,4148,4327,4395,4466,4533", ++ "endColumns": "65,69,66,65,74,64,64,68,70,72,71,67,70,72,71,76,75,71,69,68,77,67,70,66,68", ++ "endOffsets": "2723,2793,2860,2926,3001,3066,3131,3200,3271,3344,3416,3484,3555,3707,3779,3856,3932,4004,4074,4143,4221,4390,4461,4528,4597" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,2662", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,2736" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,3560", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,3634" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ne_values-ne.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,325,433,524,631,751,835,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1937,2050,2151,2247,2360,2470,2587,2754,2865", ++ "endColumns": "108,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "209,320,428,519,626,746,830,909,1000,1093,1188,1282,1382,1475,1570,1664,1755,1846,1932,2045,2146,2242,2355,2465,2582,2749,2860,2940" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,325,433,524,631,751,835,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1937,2050,2151,2247,2360,2470,2587,2754,3224", ++ "endColumns": "108,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "209,320,428,519,626,746,830,909,1000,1093,1188,1282,1382,1475,1570,1664,1755,1846,1932,2045,2146,2242,2355,2465,2582,2749,2860,3299" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,132,200,279,347,414,484", ++ "endColumns": "76,67,78,67,66,69,68", ++ "endOffsets": "127,195,274,342,409,479,548" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2865,2942,3010,3089,3157,3304,3374", ++ "endColumns": "76,67,78,67,66,69,68", ++ "endOffsets": "2937,3005,3084,3152,3219,3369,3438" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3443", ++ "endColumns": "100", ++ "endOffsets": "3539" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-am_values-am.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,203,301,407,493,596,713,791,867,958,1051,1143,1237,1337,1430,1525,1618,1709,1800,1880,1980,2080,2176,2278,2378,2477,2627,2723", ++ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", ++ "endOffsets": "198,296,402,488,591,708,786,862,953,1046,1138,1232,1332,1425,1520,1613,1704,1795,1875,1975,2075,2171,2273,2373,2472,2622,2718,2798" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2803", ++ "endColumns": "100", ++ "endOffsets": "2899" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-port_values-port.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-port/values-port.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "55", ++ "endOffsets": "106" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-kk_values-kk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,141,211,294,364,432,507", ++ "endColumns": "85,69,82,69,67,74,72", ++ "endOffsets": "136,206,289,359,427,502,575" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2796,2882,2952,3035,3105,3255,3330", ++ "endColumns": "85,69,82,69,67,74,72", ++ "endOffsets": "2877,2947,3030,3100,3168,3325,3398" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3403", ++ "endColumns": "100", ++ "endOffsets": "3499" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,2796", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,2873" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,3173", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,3250" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-sv_values-sv.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4454", ++ "endColumns": "100", ++ "endOffsets": "4550" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,2778", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,2853" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,3751", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,3826" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,211,282,350,431,498,565,639,716,798,877,946,1028,1111,1188,1271,1350,1427,1497,1566,1651,1731,1806", ++ "endColumns": "72,82,70,67,80,66,66,73,76,81,78,68,81,82,76,82,78,76,69,68,84,79,74,77", ++ "endOffsets": "123,206,277,345,426,493,560,634,711,793,872,941,1023,1106,1183,1266,1345,1422,1492,1561,1646,1726,1801,1879" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2778,2851,2934,3005,3073,3154,3221,3288,3362,3439,3521,3600,3669,3831,3914,3991,4074,4153,4230,4300,4369,4555,4635,4710", ++ "endColumns": "72,82,70,67,80,66,66,73,76,81,78,68,81,82,76,82,78,76,69,68,84,79,74,77", ++ "endOffsets": "2846,2929,3000,3068,3149,3216,3283,3357,3434,3516,3595,3664,3746,3909,3986,4069,4148,4225,4295,4364,4449,4630,4705,4783" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-my_values-my.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4621", ++ "endColumns": "100", ++ "endOffsets": "4717" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,325,441,528,637,760,839,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1854,1939,2054,2163,2262,2388,2495,2603,2763,2866", ++ "endColumns": "112,106,115,86,108,122,78,77,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "213,320,436,523,632,755,834,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1849,1934,2049,2158,2257,2383,2490,2598,2758,2861,2947" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,325,441,528,637,760,839,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1854,1939,2054,2163,2262,2388,2495,2603,2763,3882", ++ "endColumns": "112,106,115,86,108,122,78,77,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "213,320,436,523,632,755,834,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1849,1934,2049,2158,2257,2383,2490,2598,2758,2861,3963" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,208,282,353,437,506,574,653,737,827,909,979,1071,1154,1236,1328,1412,1495,1567,1639,1724,1800,1877,1956", ++ "endColumns": "73,78,73,70,83,68,67,78,83,89,81,69,91,82,81,91,83,82,71,71,84,75,76,78,79", ++ "endOffsets": "124,203,277,348,432,501,569,648,732,822,904,974,1066,1149,1231,1323,1407,1490,1562,1634,1719,1795,1872,1951,2031" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2866,2940,3019,3093,3164,3248,3317,3385,3464,3548,3638,3720,3790,3968,4051,4133,4225,4309,4392,4464,4536,4722,4798,4875,4954", ++ "endColumns": "73,78,73,70,83,68,67,78,83,89,81,69,91,82,81,91,83,82,71,71,84,75,76,78,79", ++ "endOffsets": "2935,3014,3088,3159,3243,3312,3380,3459,3543,3633,3715,3785,3877,4046,4128,4220,4304,4387,4459,4531,4616,4793,4870,4949,5029" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-es-rES_values-es-rES.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-es-rES/values-es-rES.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,208,283,353,436,505,572,651,735,822,916,988,1079,1166,1242,1325,1406,1484,1563,1638,1728,1801,1884,1960", ++ "endColumns": "69,82,74,69,82,68,66,78,83,86,93,71,90,86,75,82,80,77,78,74,89,72,82,75,86", ++ "endOffsets": "120,203,278,348,431,500,567,646,730,817,911,983,1074,1161,1237,1320,1401,1479,1558,1633,1723,1796,1879,1955,2042" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ur_values-ur.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4509", ++ "endColumns": "100", ++ "endOffsets": "4605" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,2832", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,2913" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,3788", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,3869" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,123,200,269,338,418,484,552,627,704,787,866,934,1011,1093,1167,1250,1336,1412,1485,1557,1646,1717,1793,1862", ++ "endColumns": "67,76,68,68,79,65,67,74,76,82,78,67,76,81,73,82,85,75,72,71,88,70,75,68,72", ++ "endOffsets": "118,195,264,333,413,479,547,622,699,782,861,929,1006,1088,1162,1245,1331,1407,1480,1552,1641,1712,1788,1857,1930" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2832,2900,2977,3046,3115,3195,3261,3329,3404,3481,3564,3643,3711,3874,3956,4030,4113,4199,4275,4348,4420,4610,4681,4757,4826", ++ "endColumns": "67,76,68,68,79,65,67,74,76,82,78,67,76,81,73,82,85,75,72,71,88,70,75,68,72", ++ "endOffsets": "2895,2972,3041,3110,3190,3256,3324,3399,3476,3559,3638,3706,3783,3951,4025,4108,4194,4270,4343,4415,4504,4676,4752,4821,4894" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-zu_values-zu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,320,432,520,623,738,817,894,985,1078,1173,1267,1367,1460,1555,1649,1740,1833,1914,2018,2121,2219,2326,2433,2538,2695,2791", ++ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", ++ "endOffsets": "208,315,427,515,618,733,812,889,980,1073,1168,1262,1362,1455,1550,1644,1735,1828,1909,2013,2116,2214,2321,2428,2533,2690,2786,2868" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2873", ++ "endColumns": "100", ++ "endOffsets": "2969" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ko_values-ko.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4271", ++ "endColumns": "100", ++ "endOffsets": "4367" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,2685", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,2759" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,3599", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,3673" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,121,193,260,327,404,469,534,606,678,755,830,896,969,1043,1116,1193,1269,1341,1411,1480,1562,1630,1701,1768", ++ "endColumns": "65,71,66,66,76,64,64,71,71,76,74,65,72,73,72,76,75,71,69,68,81,67,70,66,71", ++ "endOffsets": "116,188,255,322,399,464,529,601,673,750,825,891,964,1038,1111,1188,1264,1336,1406,1475,1557,1625,1696,1763,1835" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2685,2751,2823,2890,2957,3034,3099,3164,3236,3308,3385,3460,3526,3678,3752,3825,3902,3978,4050,4120,4189,4372,4440,4511,4578", ++ "endColumns": "65,71,66,66,76,64,64,71,71,76,74,65,72,73,72,76,75,71,69,68,81,67,70,66,71", ++ "endOffsets": "2746,2818,2885,2952,3029,3094,3159,3231,3303,3380,3455,3521,3594,3747,3820,3897,3973,4045,4115,4184,4266,4435,4506,4573,4645" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ar_values-ar.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,206,278,346,424,491,561,639,718,799,887,965,1045,1129,1203,1281,1358,1433,1512,1584,1668,1738,1824,1893", ++ "endColumns": "68,81,71,67,77,66,69,77,78,80,87,77,79,83,73,77,76,74,78,71,83,69,85,68,77", ++ "endOffsets": "119,201,273,341,419,486,556,634,713,794,882,960,1040,1124,1198,1276,1353,1428,1507,1579,1663,1733,1819,1888,1966" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2759,2828,2910,2982,3050,3128,3195,3265,3343,3422,3503,3591,3669,3831,3915,3989,4067,4144,4219,4298,4370,4555,4625,4711,4780", ++ "endColumns": "68,81,71,67,77,66,69,77,78,80,87,77,79,83,73,77,76,74,78,71,83,69,85,68,77", ++ "endOffsets": "2823,2905,2977,3045,3123,3190,3260,3338,3417,3498,3586,3664,3744,3910,3984,4062,4139,4214,4293,4365,4449,4620,4706,4775,4853" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,424,506,607,721,801,880,971,1064,1156,1250,1350,1443,1538,1631,1722,1816,1895,2000,2098,2196,2304,2404,2507,2662,2759", ++ "endColumns": "107,103,106,81,100,113,79,78,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "208,312,419,501,602,716,796,875,966,1059,1151,1245,1345,1438,1533,1626,1717,1811,1890,1995,2093,2191,2299,2399,2502,2657,2754,2836" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,424,506,607,721,801,880,971,1064,1156,1250,1350,1443,1538,1631,1722,1816,1895,2000,2098,2196,2304,2404,2507,2662,3749", ++ "endColumns": "107,103,106,81,100,113,79,78,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "208,312,419,501,602,716,796,875,966,1059,1151,1245,1345,1438,1533,1626,1717,1811,1890,1995,2093,2191,2299,2399,2502,2657,2754,3826" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4454", ++ "endColumns": "100", ++ "endOffsets": "4550" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ro_values-ro.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,2851", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,2930" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,41", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,3781", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,3860" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "4506", ++ "endColumns": "100", ++ "endOffsets": "4602" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,204,274,345,429,497,573,657,742,832,901,985,1075,1150,1232,1311,1389,1467,1541,1626,1699,1775", ++ "endColumns": "69,78,69,70,83,67,75,83,84,89,68,83,89,74,81,78,77,77,73,84,72,75,84", ++ "endOffsets": "120,199,269,340,424,492,568,652,737,827,896,980,1070,1145,1227,1306,1384,1462,1536,1621,1694,1770,1855" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,51,52,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2851,2921,3000,3070,3141,3225,3293,3369,3453,3538,3628,3697,3865,3955,4030,4112,4191,4269,4347,4421,4607,4680,4756", ++ "endColumns": "69,78,69,70,83,67,75,83,84,89,68,83,89,74,81,78,77,77,73,84,72,75,84", ++ "endOffsets": "2916,2995,3065,3136,3220,3288,3364,3448,3533,3623,3692,3776,3950,4025,4107,4186,4264,4342,4416,4501,4675,4751,4836" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-en-rAU_values-en-rAU.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-large-v4_values-large-v4.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-large-v4/values-large-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,185,256,326,396,464,532,636", ++ "endColumns": "58,70,70,69,69,67,67,103,115", ++ "endOffsets": "109,180,251,321,391,459,527,631,747" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-it_values-it.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "48", ++ "startColumns": "4", ++ "startOffsets": "4315", ++ "endColumns": "100", ++ "endOffsets": "4411" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,2799", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,2876" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,39", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,3607", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,3684" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,280,352,440,520,604,694,775,863,949,1026,1106,1185,1260,1330,1399,1489,1564,1645", ++ "endColumns": "69,83,70,71,87,79,83,89,80,87,85,76,79,78,74,69,68,89,74,80,86", ++ "endOffsets": "120,204,275,347,435,515,599,689,770,858,944,1021,1101,1180,1255,1325,1394,1484,1559,1640,1727" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,40,41,42,43,44,45,46,47,49,50,51", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2799,2869,2953,3024,3096,3184,3264,3348,3438,3519,3689,3775,3852,3932,4011,4086,4156,4225,4416,4491,4572", ++ "endColumns": "69,83,70,71,87,79,83,89,80,87,85,76,79,78,74,69,68,89,74,80,86", ++ "endOffsets": "2864,2948,3019,3091,3179,3259,3343,3433,3514,3602,3770,3847,3927,4006,4081,4151,4220,4310,4486,4567,4654" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-es_values-es.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,208,283,353,436,505,572,652,735,822,917,989,1080,1164,1240,1323,1405,1480,1559,1634,1724,1797,1880,1956", ++ "endColumns": "69,82,74,69,82,68,66,79,82,86,94,71,90,83,75,82,81,74,78,74,89,72,82,75,86", ++ "endOffsets": "120,203,278,348,431,500,567,647,730,817,912,984,1075,1159,1235,1318,1400,1475,1554,1629,1719,1792,1875,1951,2038" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2836,2906,2989,3064,3134,3217,3286,3353,3433,3516,3603,3698,3770,3944,4028,4104,4187,4269,4344,4423,4498,4689,4762,4845,4921", ++ "endColumns": "69,82,74,69,82,68,66,79,82,86,94,71,90,83,75,82,81,74,78,74,89,72,82,75,86", ++ "endOffsets": "2901,2984,3059,3129,3212,3281,3348,3428,3511,3598,3693,3765,3856,4023,4099,4182,4264,4339,4418,4493,4583,4757,4840,4916,5003" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4588", ++ "endColumns": "100", ++ "endOffsets": "4684" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,2836", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,2914" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,3861", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,3939" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-pt-rPT_values-pt-rPT.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,2836", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,2917" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,41", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,3778", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,3859" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,210,281,351,434,504,583,662,750,834,908,997,1081,1157,1238,1320,1395,1473,1547,1637,1709,1795,1871", ++ "endColumns": "68,85,70,69,82,69,78,78,87,83,73,88,83,75,80,81,74,77,73,89,71,85,75,85", ++ "endOffsets": "119,205,276,346,429,499,578,657,745,829,903,992,1076,1152,1233,1315,1390,1468,1542,1632,1704,1790,1866,1952" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,51,52,53,54", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2836,2905,2991,3062,3132,3215,3285,3364,3443,3531,3615,3689,3864,3948,4024,4105,4187,4262,4340,4414,4605,4677,4763,4839", ++ "endColumns": "68,85,70,69,82,69,78,78,87,83,73,88,83,75,80,81,74,77,73,89,71,85,75,85", ++ "endOffsets": "2900,2986,3057,3127,3210,3280,3359,3438,3526,3610,3684,3773,3943,4019,4100,4182,4257,4335,4409,4499,4672,4758,4834,4920" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "4504", ++ "endColumns": "100", ++ "endOffsets": "4600" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-sw600dp-v13_values-sw600dp-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,193,263,337,413,472,543", ++ "endColumns": "68,68,69,73,75,58,70,67", ++ "endOffsets": "119,188,258,332,408,467,538,606" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-bg_values-bg.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,282,357,445,514,581,661,743,830,910,981,1068,1155,1229,1308,1390,1467,1544,1619,1703,1778,1860,1930", ++ "endColumns": "69,83,72,74,87,68,66,79,81,86,79,70,86,86,73,78,81,76,76,74,83,74,81,69,84", ++ "endOffsets": "120,204,277,352,440,509,576,656,738,825,905,976,1063,1150,1224,1303,1385,1462,1539,1614,1698,1773,1855,1925,2010" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2854,2924,3008,3081,3156,3244,3313,3380,3460,3542,3629,3709,3780,3951,4038,4112,4191,4273,4350,4427,4502,4687,4762,4844,4914", ++ "endColumns": "69,83,72,74,87,68,66,79,81,86,79,70,86,86,73,78,81,76,76,74,83,74,81,69,84", ++ "endOffsets": "2919,3003,3076,3151,3239,3308,3375,3455,3537,3624,3704,3775,3862,4033,4107,4186,4268,4345,4422,4497,4581,4757,4839,4909,4994" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,2854", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,2933" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,3867", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,3946" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4586", ++ "endColumns": "100", ++ "endOffsets": "4682" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-sq_values-sq.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,2801", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,2878" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,3808", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,3885" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,210,281,350,432,501,568,650,734,823,906,976,1062,1151,1226,1307,1388,1465,1540,1613,1700,1777,1858,1932", ++ "endColumns": "73,80,70,68,81,68,66,81,83,88,82,69,85,88,74,80,80,76,74,72,86,76,80,73,82", ++ "endOffsets": "124,205,276,345,427,496,563,645,729,818,901,971,1057,1146,1221,1302,1383,1460,1535,1608,1695,1772,1853,1927,2010" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2801,2875,2956,3027,3096,3178,3247,3314,3396,3480,3569,3652,3722,3890,3979,4054,4135,4216,4293,4368,4441,4629,4706,4787,4861", ++ "endColumns": "73,80,70,68,81,68,66,81,83,88,82,69,85,88,74,80,80,76,74,72,86,76,80,73,82", ++ "endOffsets": "2870,2951,3022,3091,3173,3242,3309,3391,3475,3564,3647,3717,3803,3974,4049,4130,4211,4288,4363,4436,4523,4701,4782,4856,4939" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4528", ++ "endColumns": "100", ++ "endOffsets": "4624" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-sl_values-sl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4547", ++ "endColumns": "100", ++ "endOffsets": "4643" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2565,2745,2845", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,104,179,99,83", ++ "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2560,2740,2840,2924" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2565,2745,3825", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,104,179,99,83", ++ "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2560,2740,2840,3904" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,212,283,352,433,504,571,641,724,807,889,961,1035,1117,1194,1276,1358,1434,1512,1589,1673,1747,1829,1901", ++ "endColumns": "72,83,70,68,80,70,66,69,82,82,81,71,73,81,76,81,81,75,77,76,83,73,81,71,81", ++ "endOffsets": "123,207,278,347,428,499,566,636,719,802,884,956,1030,1112,1189,1271,1353,1429,1507,1584,1668,1742,1824,1896,1978" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2845,2918,3002,3073,3142,3223,3294,3361,3431,3514,3597,3679,3751,3909,3991,4068,4150,4232,4308,4386,4463,4648,4722,4804,4876", ++ "endColumns": "72,83,70,68,80,70,66,69,82,82,81,71,73,81,76,81,81,75,77,76,83,73,81,71,81", ++ "endOffsets": "2913,2997,3068,3137,3218,3289,3356,3426,3509,3592,3674,3746,3820,3986,4063,4145,4227,4303,4381,4458,4542,4717,4799,4871,4953" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-te_values-te.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4579", ++ "endColumns": "100", ++ "endOffsets": "4675" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,127,206,278,348,430,498,565,640,716,801,883,954,1035,1115,1198,1284,1372,1450,1526,1601,1692,1764,1843,1912", ++ "endColumns": "71,78,71,69,81,67,66,74,75,84,81,70,80,79,82,85,87,77,75,74,90,71,78,68,74", ++ "endOffsets": "122,201,273,343,425,493,560,635,711,796,878,949,1030,1110,1193,1279,1367,1445,1521,1596,1687,1759,1838,1907,1982" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2859,2931,3010,3082,3152,3234,3302,3369,3444,3520,3605,3687,3758,3922,4002,4085,4171,4259,4337,4413,4488,4680,4752,4831,4900", ++ "endColumns": "71,78,71,69,81,67,66,74,75,84,81,70,80,79,82,85,87,77,75,74,90,71,78,68,74", ++ "endOffsets": "2926,3005,3077,3147,3229,3297,3364,3439,3515,3600,3682,3753,3834,3997,4080,4166,4254,4332,4408,4483,4574,4747,4826,4895,4970" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,222,334,447,537,642,761,839,915,1006,1099,1194,1288,1388,1481,1576,1671,1762,1853,1942,2056,2160,2259,2374,2479,2594,2756,2859", ++ "endColumns": "116,111,112,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,88,113,103,98,114,104,114,161,102,82", ++ "endOffsets": "217,329,442,532,637,756,834,910,1001,1094,1189,1283,1383,1476,1571,1666,1757,1848,1937,2051,2155,2254,2369,2474,2589,2751,2854,2937" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,222,334,447,537,642,761,839,915,1006,1099,1194,1288,1388,1481,1576,1671,1762,1853,1942,2056,2160,2259,2374,2479,2594,2756,3839", ++ "endColumns": "116,111,112,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,88,113,103,98,114,104,114,161,102,82", ++ "endOffsets": "217,329,442,532,637,756,834,910,1001,1094,1189,1283,1383,1476,1571,1666,1757,1848,1937,2051,2155,2254,2369,2474,2589,2751,2854,3917" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-en-rGB_values-en-rGB.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,36", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,3311", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,3389" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,131,214,288,364,446,526,604,684,758", ++ "endColumns": "75,82,73,75,81,79,77,79,73,73", ++ "endOffsets": "126,209,283,359,441,521,599,679,753,827" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,37,39,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2762,2838,2921,2995,3071,3153,3233,3394,3575,3649", ++ "endColumns": "75,82,73,75,81,79,77,79,73,73", ++ "endOffsets": "2833,2916,2990,3066,3148,3228,3306,3469,3644,3718" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "38", ++ "startColumns": "4", ++ "startOffsets": "3474", ++ "endColumns": "100", ++ "endOffsets": "3570" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-mk_values-mk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4553", ++ "endColumns": "100", ++ "endOffsets": "4649" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,2820", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,2900" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,3823", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,3903" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,133,216,289,358,440,508,575,651,734,821,901,974,1058,1142,1219,1300,1382,1458,1535,1610,1703,1775,1859,1929", ++ "endColumns": "77,82,72,68,81,67,66,75,82,86,79,72,83,83,76,80,81,75,76,74,92,71,83,69,80", ++ "endOffsets": "128,211,284,353,435,503,570,646,729,816,896,969,1053,1137,1214,1295,1377,1453,1530,1605,1698,1770,1854,1924,2005" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2820,2898,2981,3054,3123,3205,3273,3340,3416,3499,3586,3666,3739,3908,3992,4069,4150,4232,4308,4385,4460,4654,4726,4810,4880", ++ "endColumns": "77,82,72,68,81,67,66,75,82,86,79,72,83,83,76,80,81,75,76,74,92,71,83,69,80", ++ "endOffsets": "2893,2976,3049,3118,3200,3268,3335,3411,3494,3581,3661,3734,3818,3987,4064,4145,4227,4303,4380,4455,4548,4721,4805,4875,4956" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-cs_values-cs.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,2799", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,2877" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,3800", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,3878" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4505", ++ "endColumns": "100", ++ "endOffsets": "4601" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,127,210,281,352,439,507,577,656,738,824,910,980,1056,1133,1215,1296,1378,1453,1524,1594,1678,1751,1829,1900", ++ "endColumns": "71,82,70,70,86,67,69,78,81,85,85,69,75,76,81,80,81,74,70,69,83,72,77,70,79", ++ "endOffsets": "122,205,276,347,434,502,572,651,733,819,905,975,1051,1128,1210,1291,1373,1448,1519,1589,1673,1746,1824,1895,1975" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2799,2871,2954,3025,3096,3183,3251,3321,3400,3482,3568,3654,3724,3883,3960,4042,4123,4205,4280,4351,4421,4606,4679,4757,4828", ++ "endColumns": "71,82,70,70,86,67,69,78,81,85,85,69,75,76,81,80,81,74,70,69,83,72,77,70,79", ++ "endOffsets": "2866,2949,3020,3091,3178,3246,3316,3395,3477,3563,3649,3719,3795,3955,4037,4118,4200,4275,4346,4416,4500,4674,4752,4823,4903" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ky_values-ky.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,2817", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,2894" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,3194", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,3271" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3420", ++ "endColumns": "100", ++ "endOffsets": "3516" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,143,212,295,365,432,504", ++ "endColumns": "87,68,82,69,66,71,71", ++ "endOffsets": "138,207,290,360,427,499,571" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2817,2905,2974,3057,3127,3276,3348", ++ "endColumns": "87,68,82,69,66,71,71", ++ "endOffsets": "2900,2969,3052,3122,3189,3343,3415" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-land_values-land.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-land/values-land.xml", ++ "from": { ++ "startLines": "2,3,4", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,125,196", ++ "endColumns": "69,70,67", ++ "endOffsets": "120,191,259" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-hdpi-v4_values-hdpi-v4.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-hdpi-v4/values-hdpi-v4.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "6", ++ "endColumns": "13", ++ "endOffsets": "327" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-xlarge-v4_values-xlarge-v4.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-xlarge-v4/values-xlarge-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,126,197,267,337,405", ++ "endColumns": "70,70,69,69,67,67", ++ "endOffsets": "121,192,262,332,400,468" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-bs_values-bs.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,323,430,516,620,742,827,909,1000,1093,1188,1282,1382,1475,1570,1665,1756,1847,1935,2038,2142,2243,2348,2462,2565,2734,2830", ++ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", ++ "endOffsets": "221,318,425,511,615,737,822,904,995,1088,1183,1277,1377,1470,1565,1660,1751,1842,1930,2033,2137,2238,2343,2457,2560,2729,2825,2912" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2917", ++ "endColumns": "100", ++ "endOffsets": "3013" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-zh-rHK_values-zh-rHK.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,2666", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,2740" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,3567", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,3641" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4235", ++ "endColumns": "100", ++ "endOffsets": "4331" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,121,193,260,326,401,466,531,600,671,744,819,886,956,1029,1101,1178,1254,1326,1396,1465,1545,1613,1683,1750", ++ "endColumns": "65,71,66,65,74,64,64,68,70,72,74,66,69,72,71,76,75,71,69,68,79,67,69,66,68", ++ "endOffsets": "116,188,255,321,396,461,526,595,666,739,814,881,951,1024,1096,1173,1249,1321,1391,1460,1540,1608,1678,1745,1814" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2666,2732,2804,2871,2937,3012,3077,3142,3211,3282,3355,3430,3497,3646,3719,3791,3868,3944,4016,4086,4155,4336,4404,4474,4541", ++ "endColumns": "65,71,66,65,74,64,64,68,70,72,74,66,69,72,71,76,75,71,69,68,79,67,69,66,68", ++ "endOffsets": "2727,2799,2866,2932,3007,3072,3137,3206,3277,3350,3425,3492,3562,3714,3786,3863,3939,4011,4081,4150,4230,4399,4469,4536,4605" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-as_values-as.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,312,419,510,615,735,812,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1910,2023,2131,2234,2343,2459,2579,2746,2848", ++ "endColumns": "107,98,106,90,104,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,102,108,115,119,166,101,82", ++ "endOffsets": "208,307,414,505,610,730,807,882,973,1066,1161,1255,1355,1448,1543,1637,1728,1819,1905,2018,2126,2229,2338,2454,2574,2741,2843,2926" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2931", ++ "endColumns": "100", ++ "endOffsets": "3027" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ta_values-ta.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,2871", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,2948" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,3856", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,3933" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4594", ++ "endColumns": "100", ++ "endOffsets": "4690" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,210,282,350,434,504,571,647,725,807,887,958,1040,1122,1200,1289,1379,1460,1532,1602,1696,1771,1854,1923", ++ "endColumns": "74,79,71,67,83,69,66,75,77,81,79,70,81,81,77,88,89,80,71,69,93,74,82,68,77", ++ "endOffsets": "125,205,277,345,429,499,566,642,720,802,882,953,1035,1117,1195,1284,1374,1455,1527,1597,1691,1766,1849,1918,1996" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2871,2946,3026,3098,3166,3250,3320,3387,3463,3541,3623,3703,3774,3938,4020,4098,4187,4277,4358,4430,4500,4695,4770,4853,4922", ++ "endColumns": "74,79,71,67,83,69,66,75,77,81,79,70,81,81,77,88,89,80,71,69,93,74,82,68,77", ++ "endOffsets": "2941,3021,3093,3161,3245,3315,3382,3458,3536,3618,3698,3769,3851,4015,4093,4182,4272,4353,4425,4495,4589,4765,4848,4917,4995" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-hy_values-hy.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,132,200,281,349,421,496", ++ "endColumns": "76,67,80,67,71,74,73", ++ "endOffsets": "127,195,276,344,416,491,565" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2814,2891,2959,3040,3108,3263,3338", ++ "endColumns": "76,67,80,67,71,74,73", ++ "endOffsets": "2886,2954,3035,3103,3175,3333,3407" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,2814", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,2892" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,3180", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,3258" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3412", ++ "endColumns": "100", ++ "endOffsets": "3508" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-or_values-or.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,224,334,441,527,631,751,830,911,1002,1095,1198,1293,1393,1486,1581,1677,1768,1858,1947,2057,2161,2267,2378,2482,2600,2763,2869", ++ "endColumns": "118,109,106,85,103,119,78,80,90,92,102,94,99,92,94,95,90,89,88,109,103,105,110,103,117,162,105,89", ++ "endOffsets": "219,329,436,522,626,746,825,906,997,1090,1193,1288,1388,1481,1576,1672,1763,1853,1942,2052,2156,2262,2373,2477,2595,2758,2864,2954" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2959", ++ "endColumns": "100", ++ "endOffsets": "3055" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-v28_values-v28.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v28/values-v28.xml", ++ "from": { ++ "startLines": "2,3,4,8", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,397", ++ "endLines": "2,3,7,11", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,392,584" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ml_values-ml.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,2854", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,2932" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,3833", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,3911" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4565", ++ "endColumns": "100", ++ "endOffsets": "4661" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,127,207,282,352,435,504,571,645,720,801,885,954,1034,1116,1196,1278,1364,1442,1515,1587,1683,1756,1836,1904", ++ "endColumns": "71,79,74,69,82,68,66,73,74,80,83,68,79,81,79,81,85,77,72,71,95,72,79,67,72", ++ "endOffsets": "122,202,277,347,430,499,566,640,715,796,880,949,1029,1111,1191,1273,1359,1437,1510,1582,1678,1751,1831,1899,1972" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2854,2926,3006,3081,3151,3234,3303,3370,3444,3519,3600,3684,3753,3916,3998,4078,4160,4246,4324,4397,4469,4666,4739,4819,4887", ++ "endColumns": "71,79,74,69,82,68,66,73,74,80,83,68,79,81,79,81,85,77,72,71,95,72,79,67,72", ++ "endOffsets": "2921,3001,3076,3146,3229,3298,3365,3439,3514,3595,3679,3748,3828,3993,4073,4155,4241,4319,4392,4464,4560,4734,4814,4882,4955" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-be_values-be.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,3,4,5,6", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,138,209,294,365", ++ "endColumns": "82,70,84,70,66", ++ "endOffsets": "133,204,289,360,427" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "2835,2918,2989,3074,3145", ++ "endColumns": "82,70,84,70,66", ++ "endOffsets": "2913,2984,3069,3140,3207" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,2835", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,2912" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,3212", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,3289" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "35", ++ "startColumns": "4", ++ "startOffsets": "3294", ++ "endColumns": "100", ++ "endOffsets": "3390" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-da_values-da.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,2757", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,2832" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,3604", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,3679" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4300", ++ "endColumns": "100", ++ "endOffsets": "4396" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,131,214,289,360,443,518,594,675,755,824,902,981,1057,1137,1217,1294,1365,1435,1518,1592,1674", ++ "endColumns": "75,82,74,70,82,74,75,80,79,68,77,78,75,79,79,76,70,69,82,73,81,78", ++ "endOffsets": "126,209,284,355,438,513,589,670,750,819,897,976,1052,1132,1212,1289,1360,1430,1513,1587,1669,1748" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2757,2833,2916,2991,3062,3145,3220,3296,3377,3457,3526,3684,3763,3839,3919,3999,4076,4147,4217,4401,4475,4557", ++ "endColumns": "75,82,74,70,82,74,75,80,79,68,77,78,75,79,79,76,70,69,82,73,81,78", ++ "endOffsets": "2828,2911,2986,3057,3140,3215,3291,3372,3452,3521,3599,3758,3834,3914,3994,4071,4142,4212,4295,4470,4552,4631" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-si_values-si.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,206,279,347,430,499,567,643,722,805,891,960,1040,1129,1209,1292,1377,1456,1533,1613,1705,1778,1857,1929", ++ "endColumns": "68,81,72,67,82,68,67,75,78,82,85,68,79,88,79,82,84,78,76,79,91,72,78,71,77", ++ "endOffsets": "119,201,274,342,425,494,562,638,717,800,886,955,1035,1124,1204,1287,1372,1451,1528,1608,1700,1773,1852,1924,2002" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2821,2890,2972,3045,3113,3196,3265,3333,3409,3488,3571,3657,3726,3888,3977,4057,4140,4225,4304,4381,4461,4654,4727,4806,4878", ++ "endColumns": "68,81,72,67,82,68,67,75,78,82,85,68,79,88,79,82,84,78,76,79,91,72,78,71,77", ++ "endOffsets": "2885,2967,3040,3108,3191,3260,3328,3404,3483,3566,3652,3721,3801,3972,4052,4135,4220,4299,4376,4456,4548,4722,4801,4873,4951" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4553", ++ "endColumns": "100", ++ "endOffsets": "4649" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,2821", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,2898" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,3806", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,3883" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-et_values-et.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,2827", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,2905" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,41", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,3738", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,3816" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,126,201,274,342,422,490,565,643,725,813,887,966,1047,1124,1207,1290,1368,1442,1513,1596,1671,1755,1825", ++ "endColumns": "70,74,72,67,79,67,74,77,81,87,73,78,80,76,82,82,77,73,70,82,74,83,69,78", ++ "endOffsets": "121,196,269,337,417,485,560,638,720,808,882,961,1042,1119,1202,1285,1363,1437,1508,1591,1666,1750,1820,1899" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,51,52,53,54", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2827,2898,2973,3046,3114,3194,3262,3337,3415,3497,3585,3659,3821,3902,3979,4062,4145,4223,4297,4368,4552,4627,4711,4781", ++ "endColumns": "70,74,72,67,79,67,74,77,81,87,73,78,80,76,82,82,77,73,70,82,74,83,69,78", ++ "endOffsets": "2893,2968,3041,3109,3189,3257,3332,3410,3492,3580,3654,3733,3897,3974,4057,4140,4218,4292,4363,4446,4622,4706,4776,4855" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "4451", ++ "endColumns": "100", ++ "endOffsets": "4547" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-v25_values-v25.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v25/values-v25.xml", ++ "from": { ++ "startLines": "2,3,4,6", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,126,209,308", ++ "endLines": "2,3,5,7", ++ "endColumns": "70,82,12,12", ++ "endOffsets": "121,204,303,414" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-v24_values-v24.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v24/values-v24.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,212", ++ "endColumns": "156,134", ++ "endOffsets": "207,342" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-tr_values-tr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4500", ++ "endColumns": "100", ++ "endOffsets": "4596" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,2797", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,2872" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,3780", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,3855" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,201,272,342,425,496,563,640,720,805,885,955,1038,1123,1198,1283,1369,1446,1520,1591,1678,1748,1827,1902", ++ "endColumns": "68,76,70,69,82,70,66,76,79,84,79,69,82,84,74,84,85,76,73,70,86,69,78,74,76", ++ "endOffsets": "119,196,267,337,420,491,558,635,715,800,880,950,1033,1118,1193,1278,1364,1441,1515,1586,1673,1743,1822,1897,1974" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2797,2866,2943,3014,3084,3167,3238,3305,3382,3462,3547,3627,3697,3860,3945,4020,4105,4191,4268,4342,4413,4601,4671,4750,4825", ++ "endColumns": "68,76,70,69,82,70,66,76,79,84,79,69,82,84,74,84,85,76,73,70,86,69,78,74,76", ++ "endOffsets": "2861,2938,3009,3079,3162,3233,3300,3377,3457,3542,3622,3692,3775,3940,4015,4100,4186,4263,4337,4408,4495,4666,4745,4820,4897" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-lv_values-lv.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4715", ++ "endColumns": "100", ++ "endOffsets": "4811" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,2989", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,3067" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,3997", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,4075" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,215,290,360,442,510,580,659,741,825,908,978,1063,1144,1221,1303,1384,1460,1536,1611,1698,1776,1856,1928", ++ "endColumns": "73,85,74,69,81,67,69,78,81,83,82,69,84,80,76,81,80,75,75,74,86,77,79,71,73", ++ "endOffsets": "124,210,285,355,437,505,575,654,736,820,903,973,1058,1139,1216,1298,1379,1455,1531,1606,1693,1771,1851,1923,1997" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2989,3063,3149,3224,3294,3376,3444,3514,3593,3675,3759,3842,3912,4080,4161,4238,4320,4401,4477,4553,4628,4816,4894,4974,5046", ++ "endColumns": "73,85,74,69,81,67,69,78,81,83,82,69,84,80,76,81,80,75,75,74,86,77,79,71,73", ++ "endOffsets": "3058,3144,3219,3289,3371,3439,3509,3588,3670,3754,3837,3907,3992,4156,4233,4315,4396,4472,4548,4623,4710,4889,4969,5041,5115" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-h720dp-v13_values-h720dp-v13.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-h720dp-v13/values-h720dp-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "66", ++ "endOffsets": "117" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ca_values-ca.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,228,333,440,523,629,755,839,918,1009,1102,1195,1290,1388,1481,1574,1668,1759,1850,1931,2042,2150,2248,2358,2463,2571,2731,2830", ++ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", ++ "endOffsets": "223,328,435,518,624,750,834,913,1004,1097,1190,1285,1383,1476,1569,1663,1754,1845,1926,2037,2145,2243,2353,2458,2566,2726,2825,2907" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2912", ++ "endColumns": "100", ++ "endOffsets": "3008" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values_values.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/1cfc69a90cd3b3a0d2dab9b52d03cdee/transformed/lifecycle-viewmodel-2.5.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "49", ++ "endOffsets": "100" ++ }, ++ "to": { ++ "startLines": "286", ++ "startColumns": "4", ++ "startOffsets": "18160", ++ "endColumns": "49", ++ "endOffsets": "18205" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/aab319f82c96efbdcc73962788b25c1d/transformed/fragment-1.3.6/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,10", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,112,177,241,411", ++ "endLines": "2,3,4,9,13", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "107,172,236,406,555" ++ }, ++ "to": { ++ "startLines": "247,259,287,2829,2834", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "16253,16766,18210,165371,165541", ++ "endLines": "247,259,287,2833,2837", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "16305,16826,18269,165536,165685" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,221,222,226,230,234,239,245,252,256,260,265,269,273,277,281,285,289,295,299,305,309,315,319,324,328,331,335,341,345,351,355,361,364,368,372,376,380,384,385,386,387,390,393,396,399,403,404,405,406,407,410,412,414,416,421,422,426,432,436,437,439,451,452,456,462,466,467,468,472,499,503,504,508,536,708,734,905,931,962,970,976,992,1014,1019,1024,1034,1043,1052,1056,1063,1082,1089,1090,1099,1102,1105,1109,1113,1117,1120,1121,1126,1131,1141,1146,1153,1159,1160,1163,1167,1172,1174,1176,1179,1182,1184,1188,1191,1198,1201,1204,1208,1210,1214,1216,1218,1220,1224,1232,1240,1252,1258,1267,1270,1281,1284,1285,1290,1291,1296,1365,1435,1436,1446,1455,1456,1458,1462,1465,1468,1471,1474,1477,1480,1483,1487,1490,1493,1496,1500,1503,1507,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1533,1535,1536,1537,1538,1539,1540,1541,1542,1544,1545,1547,1548,1550,1552,1553,1555,1556,1557,1558,1559,1560,1562,1563,1564,1565,1566,1567,1569,1571,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1587,1588,1589,1590,1591,1592,1593,1595,1599,1603,1604,1605,1606,1607,1608,1612,1613,1614,1615,1617,1619,1621,1623,1625,1626,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1648,1649,1650,1651,1653,1655,1656,1658,1659,1661,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1678,1679,1680,1681,1683,1684,1685,1686,1687,1689,1691,1693,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1785,1788,1791,1794,1808,1814,1824,1827,1856,1883,1892,1956,2319,2323,2351,2379,2397,2421,2427,2433,2454,2578,2598,2604,2608,2614,2649,2661,2727,2747,2802,2814,2840", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,160,205,254,295,350,412,476,546,607,682,758,835,913,998,1080,1156,1232,1309,1387,1493,1599,1678,1758,1815,1873,1947,2022,2087,2153,2213,2274,2346,2419,2486,2554,2613,2672,2731,2790,2849,2903,2957,3010,3064,3118,3172,3226,3300,3379,3452,3526,3597,3669,3741,3814,3871,3929,4002,4076,4150,4225,4297,4370,4440,4511,4571,4632,4701,4770,4840,4914,4990,5054,5131,5207,5284,5349,5418,5495,5570,5639,5707,5784,5850,5911,6008,6073,6142,6241,6312,6371,6429,6486,6545,6609,6680,6752,6824,6896,6968,7035,7103,7171,7230,7293,7357,7447,7538,7598,7664,7731,7797,7867,7931,7984,8051,8112,8179,8292,8350,8413,8478,8543,8618,8691,8763,8807,8854,8900,8949,9010,9071,9132,9194,9258,9322,9386,9451,9514,9574,9635,9701,9760,9820,9882,9953,10013,10081,10167,10254,10344,10431,10519,10601,10684,10774,10865,10917,10975,11020,11086,11150,11207,11264,11318,11375,11423,11472,11523,11557,11604,11653,11699,11731,11795,11857,11917,11974,12048,12118,12196,12250,12320,12405,12453,12499,12560,12623,12689,12753,12824,12887,12952,13016,13077,13138,13190,13263,13337,13406,13481,13555,13629,13770,13840,13893,13971,14061,14149,14245,14335,14917,15006,15253,15534,15786,16071,16464,16941,17163,17385,17661,17888,18118,18348,18578,18808,19035,19454,19680,20105,20335,20763,20982,21265,21473,21604,21831,22257,22482,22909,23130,23555,23675,23951,24252,24576,24867,25181,25318,25449,25554,25796,25963,26167,26375,26646,26758,26870,26975,27092,27306,27452,27592,27678,28026,28114,28360,28778,29027,29109,29207,29864,29964,30216,30640,30895,30989,31078,31315,33339,33581,33683,33936,36092,46773,48289,58984,60512,62269,62895,63315,64576,65841,66097,66333,66880,67374,67979,68177,68757,70125,70500,70618,71156,71313,71509,71782,72038,72208,72349,72413,72778,73145,73821,74085,74423,74776,74870,75056,75362,75624,75749,75876,76115,76326,76445,76638,76815,77270,77451,77573,77832,77945,78132,78234,78341,78470,78745,79253,79749,80626,80920,81490,81639,82371,82543,82627,82963,83055,83333,88564,93935,93997,94575,95159,95250,95363,95592,95752,95904,96075,96241,96410,96577,96740,96983,97153,97326,97497,97771,97970,98175,98505,98589,98685,98781,98879,98979,99081,99183,99285,99387,99489,99589,99685,99797,99926,100049,100180,100311,100409,100523,100617,100757,100891,100987,101099,101199,101315,101411,101523,101623,101763,101899,102063,102193,102351,102501,102642,102786,102921,103033,103183,103311,103439,103575,103707,103837,103967,104079,104219,104365,104509,104647,104713,104803,104879,104983,105073,105175,105283,105391,105491,105571,105663,105761,105871,105923,106001,106107,106199,106303,106413,106535,106698,106855,106935,107035,107125,107235,107325,107566,107660,107766,107858,107958,108070,108184,108300,108416,108510,108624,108736,108838,108958,109080,109162,109266,109386,109512,109610,109704,109792,109904,110020,110142,110254,110429,110545,110631,110723,110835,110959,111026,111152,111220,111348,111492,111620,111689,111784,111899,112012,112111,112220,112331,112442,112543,112648,112748,112878,112969,113092,113186,113298,113384,113488,113584,113672,113790,113894,113998,114124,114212,114320,114420,114510,114620,114704,114806,114890,114944,115008,115114,115200,115310,115394,115514,118130,118248,118363,118443,118804,119037,119554,119632,120976,122337,122725,125568,135621,135756,137126,138483,139055,139806,140068,140268,140647,144925,145531,145760,145911,146126,147209,147521,150547,151291,153422,153762,155073", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,220,221,225,229,233,238,244,251,255,259,264,268,272,276,280,284,288,294,298,304,308,314,318,323,327,330,334,340,344,350,354,360,363,367,371,375,379,383,384,385,386,389,392,395,398,402,403,404,405,406,409,411,413,415,420,421,425,431,435,436,438,450,451,455,461,465,466,467,471,498,502,503,507,535,707,733,904,930,961,969,975,991,1013,1018,1023,1033,1042,1051,1055,1062,1081,1088,1089,1098,1101,1104,1108,1112,1116,1119,1120,1125,1130,1140,1145,1152,1158,1159,1162,1166,1171,1173,1175,1178,1181,1183,1187,1190,1197,1200,1203,1207,1209,1213,1215,1217,1219,1223,1231,1239,1251,1257,1266,1269,1280,1283,1284,1289,1290,1295,1364,1434,1435,1445,1454,1455,1457,1461,1464,1467,1470,1473,1476,1479,1482,1486,1489,1492,1495,1499,1502,1506,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1532,1534,1535,1536,1537,1538,1539,1540,1541,1543,1544,1546,1547,1549,1551,1552,1554,1555,1556,1557,1558,1559,1561,1562,1563,1564,1565,1566,1568,1570,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1586,1587,1588,1589,1590,1591,1592,1594,1598,1602,1603,1604,1605,1606,1607,1611,1612,1613,1614,1616,1618,1620,1622,1624,1625,1626,1627,1629,1631,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1647,1648,1649,1650,1652,1654,1655,1657,1658,1660,1662,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1677,1678,1679,1680,1682,1683,1684,1685,1686,1688,1690,1692,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1784,1787,1790,1793,1807,1813,1823,1826,1855,1882,1891,1955,2318,2322,2350,2378,2396,2420,2426,2432,2453,2577,2597,2603,2607,2613,2648,2660,2726,2746,2801,2813,2839,2846", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "155,200,249,290,345,407,471,541,602,677,753,830,908,993,1075,1151,1227,1304,1382,1488,1594,1673,1753,1810,1868,1942,2017,2082,2148,2208,2269,2341,2414,2481,2549,2608,2667,2726,2785,2844,2898,2952,3005,3059,3113,3167,3221,3295,3374,3447,3521,3592,3664,3736,3809,3866,3924,3997,4071,4145,4220,4292,4365,4435,4506,4566,4627,4696,4765,4835,4909,4985,5049,5126,5202,5279,5344,5413,5490,5565,5634,5702,5779,5845,5906,6003,6068,6137,6236,6307,6366,6424,6481,6540,6604,6675,6747,6819,6891,6963,7030,7098,7166,7225,7288,7352,7442,7533,7593,7659,7726,7792,7862,7926,7979,8046,8107,8174,8287,8345,8408,8473,8538,8613,8686,8758,8802,8849,8895,8944,9005,9066,9127,9189,9253,9317,9381,9446,9509,9569,9630,9696,9755,9815,9877,9948,10008,10076,10162,10249,10339,10426,10514,10596,10679,10769,10860,10912,10970,11015,11081,11145,11202,11259,11313,11370,11418,11467,11518,11552,11599,11648,11694,11726,11790,11852,11912,11969,12043,12113,12191,12245,12315,12400,12448,12494,12555,12618,12684,12748,12819,12882,12947,13011,13072,13133,13185,13258,13332,13401,13476,13550,13624,13765,13835,13888,13966,14056,14144,14240,14330,14912,15001,15248,15529,15781,16066,16459,16936,17158,17380,17656,17883,18113,18343,18573,18803,19030,19449,19675,20100,20330,20758,20977,21260,21468,21599,21826,22252,22477,22904,23125,23550,23670,23946,24247,24571,24862,25176,25313,25444,25549,25791,25958,26162,26370,26641,26753,26865,26970,27087,27301,27447,27587,27673,28021,28109,28355,28773,29022,29104,29202,29859,29959,30211,30635,30890,30984,31073,31310,33334,33576,33678,33931,36087,46768,48284,58979,60507,62264,62890,63310,64571,65836,66092,66328,66875,67369,67974,68172,68752,70120,70495,70613,71151,71308,71504,71777,72033,72203,72344,72408,72773,73140,73816,74080,74418,74771,74865,75051,75357,75619,75744,75871,76110,76321,76440,76633,76810,77265,77446,77568,77827,77940,78127,78229,78336,78465,78740,79248,79744,80621,80915,81485,81634,82366,82538,82622,82958,83050,83328,88559,93930,93992,94570,95154,95245,95358,95587,95747,95899,96070,96236,96405,96572,96735,96978,97148,97321,97492,97766,97965,98170,98500,98584,98680,98776,98874,98974,99076,99178,99280,99382,99484,99584,99680,99792,99921,100044,100175,100306,100404,100518,100612,100752,100886,100982,101094,101194,101310,101406,101518,101618,101758,101894,102058,102188,102346,102496,102637,102781,102916,103028,103178,103306,103434,103570,103702,103832,103962,104074,104214,104360,104504,104642,104708,104798,104874,104978,105068,105170,105278,105386,105486,105566,105658,105756,105866,105918,105996,106102,106194,106298,106408,106530,106693,106850,106930,107030,107120,107230,107320,107561,107655,107761,107853,107953,108065,108179,108295,108411,108505,108619,108731,108833,108953,109075,109157,109261,109381,109507,109605,109699,109787,109899,110015,110137,110249,110424,110540,110626,110718,110830,110954,111021,111147,111215,111343,111487,111615,111684,111779,111894,112007,112106,112215,112326,112437,112538,112643,112743,112873,112964,113087,113181,113293,113379,113483,113579,113667,113785,113889,113993,114119,114207,114315,114415,114505,114615,114699,114801,114885,114939,115003,115109,115195,115305,115389,115509,118125,118243,118358,118438,118799,119032,119549,119627,120971,122332,122720,125563,135616,135751,137121,138478,139050,139801,140063,140263,140642,144920,145526,145755,145906,146121,147204,147516,150542,151286,153417,153757,155068,155271" ++ }, ++ "to": { ++ "startLines": "2,3,4,6,7,8,9,10,11,12,13,14,15,18,19,20,21,22,23,24,25,26,27,28,29,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,165,166,167,168,169,170,171,172,173,189,190,191,192,193,194,195,196,242,243,244,245,248,255,256,260,279,288,289,290,291,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,319,320,361,375,376,377,378,379,388,396,397,401,405,409,414,420,427,431,435,440,444,448,452,456,460,464,470,474,480,484,490,494,499,503,506,510,516,520,526,530,536,539,543,547,551,555,559,560,561,562,565,568,571,574,578,579,580,581,582,585,587,589,591,596,597,601,607,611,612,614,626,627,631,637,641,642,643,647,674,678,679,683,711,883,909,1080,1106,1137,1145,1151,1167,1189,1194,1199,1209,1218,1227,1231,1238,1257,1264,1265,1274,1277,1280,1284,1288,1292,1295,1296,1301,1306,1316,1321,1328,1334,1335,1338,1342,1347,1349,1351,1354,1357,1359,1363,1366,1373,1376,1379,1383,1385,1389,1391,1393,1395,1399,1407,1415,1427,1433,1442,1445,1456,1459,1460,1465,1466,1490,1559,1629,1630,1640,1649,1650,1652,1656,1659,1662,1665,1668,1671,1674,1677,1681,1684,1687,1690,1694,1697,1701,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1733,1735,1736,1737,1738,1739,1740,1741,1742,1744,1745,1747,1748,1750,1752,1753,1755,1756,1757,1758,1759,1760,1762,1763,1764,1765,1766,1778,1780,1782,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1799,1800,1801,1802,1803,1804,1805,1807,1811,1873,1874,1875,1876,1877,1878,1882,1883,1884,1885,1887,1889,1891,1893,1895,1896,1897,1898,1900,1902,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1918,1919,1920,1921,1923,1925,1926,1928,1929,1931,1933,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1948,1949,1950,1951,1953,1954,1955,1956,1957,1959,1961,1963,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,2026,2101,2104,2107,2110,2124,2130,2172,2175,2204,2231,2240,2304,2681,2691,2729,2757,3011,3035,3041,3047,3068,3192,3212,3218,3222,3228,3346,3382,3448,3468,3523,3535,3561", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "150,205,250,359,400,455,517,581,651,712,787,863,940,1178,1263,1345,1421,1497,1574,1652,1758,1864,1943,2023,2080,2264,2338,2413,2478,2544,2604,2665,2737,2810,2877,2945,3004,3063,3122,3181,3240,3294,3348,3401,3455,3509,3563,3749,3823,3902,3975,4049,4120,4192,4264,4337,4394,4452,4525,4599,4673,4748,4820,4893,4963,5034,5094,5155,5224,5293,5363,5437,5513,5577,5654,5730,5807,5872,5941,6018,6093,6162,6230,6307,6373,6434,6531,6596,6665,6764,6835,6894,6952,7009,7068,7132,7203,7275,7347,7419,7491,7558,7626,7694,7753,7816,7880,7970,8061,8121,8187,8254,8320,8390,8454,8507,8574,8635,8702,8815,8873,8936,9001,9066,9141,9214,9286,9330,9377,9423,9472,9533,9594,9655,9717,9781,9845,9909,9974,10037,10097,10158,10224,10283,10343,10405,10476,10536,11160,11246,11333,11423,11510,11598,11680,11763,11853,12922,12974,13032,13077,13143,13207,13264,13321,16012,16069,16117,16166,16310,16593,16640,16831,17821,18274,18338,18400,18460,18651,18725,18795,18873,18927,18997,19082,19130,19176,19237,19300,19366,19430,19501,19564,19629,19693,19754,19815,19867,19940,20014,20083,20158,20232,20306,20447,25468,27345,27423,27513,27601,27697,28283,28865,28954,29201,29482,29734,30019,30412,30889,31111,31333,31609,31836,32066,32296,32526,32756,32983,33402,33628,34053,34283,34711,34930,35213,35421,35552,35779,36205,36430,36857,37078,37503,37623,37899,38200,38524,38815,39129,39266,39397,39502,39744,39911,40115,40323,40594,40706,40818,40923,41040,41254,41400,41540,41626,41974,42062,42308,42726,42975,43057,43155,43812,43912,44164,44588,44843,44937,45026,45263,47287,47529,47631,47884,50040,60721,62237,72932,74460,76217,76843,77263,78524,79789,80045,80281,80828,81322,81927,82125,82705,84073,84448,84566,85104,85261,85457,85730,85986,86156,86297,86361,86726,87093,87769,88033,88371,88724,88818,89004,89310,89572,89697,89824,90063,90274,90393,90586,90763,91218,91399,91521,91780,91893,92080,92182,92289,92418,92693,93201,93697,94574,94868,95438,95587,96319,96491,96575,96911,97003,98339,103570,108941,109003,109581,110165,110256,110369,110598,110758,110910,111081,111247,111416,111583,111746,111989,112159,112332,112503,112777,112976,113181,113901,113985,114081,114177,114275,114375,114477,114579,114681,114783,114885,114985,115081,115193,115322,115445,115576,115707,115805,115919,116013,116153,116287,116383,116495,116595,116711,116807,116919,117019,117159,117295,117459,117589,117747,117897,118038,118182,118317,118429,118579,118707,118835,118971,119103,119233,119363,119475,120373,120519,120663,120827,120893,120983,121059,121163,121253,121355,121463,121571,121671,121751,121843,121941,122051,122103,122181,122287,122379,122483,122593,122715,122878,126316,126396,126496,126586,126696,126786,127027,127121,127227,127319,127419,127531,127645,127761,127877,127971,128085,128197,128299,128419,128541,128623,128727,128847,128973,129071,129165,129253,129365,129481,129603,129715,129890,130006,130092,130184,130296,130420,130487,130613,130681,130809,130953,131081,131150,131245,131360,131473,131572,131681,131792,131903,132004,132109,132209,132339,132430,132553,132647,132759,132845,132949,133045,133133,133251,133355,133459,133585,133673,133781,133881,133971,134081,134165,134267,134351,134405,134469,134575,134661,134771,134855,137441,140057,140175,140290,140370,140731,140964,142368,142446,143790,145151,145539,148382,159021,159359,161030,162387,170390,171141,171403,171603,171982,176260,176866,177095,177246,177461,179989,181010,184036,184780,186911,187251,188562", ++ "endLines": "2,3,4,6,7,8,9,10,11,12,13,14,15,18,19,20,21,22,23,24,25,26,27,28,29,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,165,166,167,168,169,170,171,172,173,189,190,191,192,193,194,195,196,242,243,244,245,248,255,256,260,279,288,289,290,291,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,319,320,361,375,376,377,378,379,395,396,400,404,408,413,419,426,430,434,439,443,447,451,455,459,463,469,473,479,483,489,493,498,502,505,509,515,519,525,529,535,538,542,546,550,554,558,559,560,561,564,567,570,573,577,578,579,580,581,584,586,588,590,595,596,600,606,610,611,613,625,626,630,636,640,641,642,646,673,677,678,682,710,882,908,1079,1105,1136,1144,1150,1166,1188,1193,1198,1208,1217,1226,1230,1237,1256,1263,1264,1273,1276,1279,1283,1287,1291,1294,1295,1300,1305,1315,1320,1327,1333,1334,1337,1341,1346,1348,1350,1353,1356,1358,1362,1365,1372,1375,1378,1382,1384,1388,1390,1392,1394,1398,1406,1414,1426,1432,1441,1444,1455,1458,1459,1464,1465,1470,1558,1628,1629,1639,1648,1649,1651,1655,1658,1661,1664,1667,1670,1673,1676,1680,1683,1686,1689,1693,1696,1700,1704,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1732,1734,1735,1736,1737,1738,1739,1740,1741,1743,1744,1746,1747,1749,1751,1752,1754,1755,1756,1757,1758,1759,1761,1762,1763,1764,1765,1766,1779,1781,1783,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1798,1799,1800,1801,1802,1803,1804,1806,1810,1814,1873,1874,1875,1876,1877,1881,1882,1883,1884,1886,1888,1890,1892,1894,1895,1896,1897,1899,1901,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1917,1918,1919,1920,1922,1924,1925,1927,1928,1930,1932,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1947,1948,1949,1950,1952,1953,1954,1955,1956,1958,1960,1962,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,2100,2103,2106,2109,2123,2129,2139,2174,2203,2230,2239,2303,2666,2684,2718,2756,2774,3034,3040,3046,3067,3191,3211,3217,3221,3227,3262,3357,3447,3467,3522,3534,3560,3567", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "200,245,294,395,450,512,576,646,707,782,858,935,1013,1258,1340,1416,1492,1569,1647,1753,1859,1938,2018,2075,2133,2333,2408,2473,2539,2599,2660,2732,2805,2872,2940,2999,3058,3117,3176,3235,3289,3343,3396,3450,3504,3558,3612,3818,3897,3970,4044,4115,4187,4259,4332,4389,4447,4520,4594,4668,4743,4815,4888,4958,5029,5089,5150,5219,5288,5358,5432,5508,5572,5649,5725,5802,5867,5936,6013,6088,6157,6225,6302,6368,6429,6526,6591,6660,6759,6830,6889,6947,7004,7063,7127,7198,7270,7342,7414,7486,7553,7621,7689,7748,7811,7875,7965,8056,8116,8182,8249,8315,8385,8449,8502,8569,8630,8697,8810,8868,8931,8996,9061,9136,9209,9281,9325,9372,9418,9467,9528,9589,9650,9712,9776,9840,9904,9969,10032,10092,10153,10219,10278,10338,10400,10471,10531,10599,11241,11328,11418,11505,11593,11675,11758,11848,11939,12969,13027,13072,13138,13202,13259,13316,13370,16064,16112,16161,16212,16339,16635,16684,16872,17848,18333,18395,18455,18512,18720,18790,18868,18922,18992,19077,19125,19171,19232,19295,19361,19425,19496,19559,19624,19688,19749,19810,19862,19935,20009,20078,20153,20227,20301,20442,20512,25516,27418,27508,27596,27692,27782,28860,28949,29196,29477,29729,30014,30407,30884,31106,31328,31604,31831,32061,32291,32521,32751,32978,33397,33623,34048,34278,34706,34925,35208,35416,35547,35774,36200,36425,36852,37073,37498,37618,37894,38195,38519,38810,39124,39261,39392,39497,39739,39906,40110,40318,40589,40701,40813,40918,41035,41249,41395,41535,41621,41969,42057,42303,42721,42970,43052,43150,43807,43907,44159,44583,44838,44932,45021,45258,47282,47524,47626,47879,50035,60716,62232,72927,74455,76212,76838,77258,78519,79784,80040,80276,80823,81317,81922,82120,82700,84068,84443,84561,85099,85256,85452,85725,85981,86151,86292,86356,86721,87088,87764,88028,88366,88719,88813,88999,89305,89567,89692,89819,90058,90269,90388,90581,90758,91213,91394,91516,91775,91888,92075,92177,92284,92413,92688,93196,93692,94569,94863,95433,95582,96314,96486,96570,96906,96998,97276,103565,108936,108998,109576,110160,110251,110364,110593,110753,110905,111076,111242,111411,111578,111741,111984,112154,112327,112498,112772,112971,113176,113506,113980,114076,114172,114270,114370,114472,114574,114676,114778,114880,114980,115076,115188,115317,115440,115571,115702,115800,115914,116008,116148,116282,116378,116490,116590,116706,116802,116914,117014,117154,117290,117454,117584,117742,117892,118033,118177,118312,118424,118574,118702,118830,118966,119098,119228,119358,119470,119610,120514,120658,120796,120888,120978,121054,121158,121248,121350,121458,121566,121666,121746,121838,121936,122046,122098,122176,122282,122374,122478,122588,122710,122873,123030,126391,126491,126581,126691,126781,127022,127116,127222,127314,127414,127526,127640,127756,127872,127966,128080,128192,128294,128414,128536,128618,128722,128842,128968,129066,129160,129248,129360,129476,129598,129710,129885,130001,130087,130179,130291,130415,130482,130608,130676,130804,130948,131076,131145,131240,131355,131468,131567,131676,131787,131898,131999,132104,132204,132334,132425,132548,132642,132754,132840,132944,133040,133128,133246,133350,133454,133580,133668,133776,133876,133966,134076,134160,134262,134346,134400,134464,134570,134656,134766,134850,134970,140052,140170,140285,140365,140726,140959,141476,142441,143785,145146,145534,148377,158430,159151,160724,162382,162954,171136,171398,171598,171977,176255,176861,177090,177241,177456,178539,180296,184031,184775,186906,187246,188557,188760" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,82,86,90,93,97,101,105,108,111,112,113,122,129,136,139,142,145,151,154", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "100,163,226,277,331,390,438,487,536,584,633,691,740,776,826,867,911,955,998,1032,1071,1117,1165,1219,1267,1331,1448,1571,1667,1787,1907,2009,2149,2271,2381,2488,2591,2702,2871,3039,3156,3275,3388,3574,3682,3795,3886,3997,4166,4264,4389,4484,4591,4761,4859,5042,5215,5327,5428,5587,5721,5861,5963,6068,6199,6368,6485,6633,6778,6928,7027,7123,7319,7502,7601,7785,7952,8200,8448,8716,8901,9103,9309,9506,9707,9896,9922,9957,10495,10913,11291,11468,11647,11830,12195,12392", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,81,85,89,92,96,100,104,107,110,111,112,121,128,135,138,141,144,150,153,163", ++ "endColumns": "62,62,50,53,58,47,48,48,47,48,57,48,35,49,40,43,43,42,33,38,45,47,53,47,63,116,122,95,119,119,101,139,121,109,106,102,110,168,167,116,118,112,185,107,112,90,110,168,97,124,94,106,169,97,182,172,111,100,158,133,139,101,104,130,168,116,147,144,149,98,95,195,182,98,183,166,10,10,12,12,10,10,10,12,12,25,34,10,10,10,10,10,12,12,12,10", ++ "endOffsets": "158,221,272,326,385,433,482,531,579,628,686,735,771,821,862,906,950,993,1027,1066,1112,1160,1214,1262,1326,1443,1566,1662,1782,1902,2004,2144,2266,2376,2483,2586,2697,2866,3034,3151,3270,3383,3569,3677,3790,3881,3992,4161,4259,4384,4479,4586,4756,4854,5037,5210,5322,5423,5582,5716,5856,5958,6063,6194,6363,6480,6628,6773,6923,7022,7118,7314,7497,7596,7780,7947,8195,8443,8711,8896,9098,9304,9501,9702,9891,9917,9952,10490,10908,11286,11463,11642,11825,12190,12387,12828" ++ }, ++ "to": { ++ "startLines": "30,31,200,201,202,235,236,237,238,239,240,241,246,249,250,253,254,257,258,277,278,280,281,282,292,321,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,363,364,365,366,367,368,369,371,372,373,374,380,384,1471,1475,1478,1482,1486,1705,1708,1784,1831,1832,1841,1848,1855,1858,1861,1864,1870,2016", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2138,2201,13588,13639,13693,15662,15710,15759,15808,15856,15905,15963,16217,16344,16394,16505,16549,16689,16732,17736,17775,17853,17901,17955,18517,20517,20717,20840,20936,21056,21176,21278,21418,21540,21650,21757,21860,21971,22140,22308,22425,22544,22657,22843,22951,23064,23155,23266,23435,23533,23658,23753,23860,24030,24128,24311,24484,24596,24697,24856,24990,25130,25232,25337,25521,25690,25807,25955,26100,26250,26349,26445,26712,26895,26994,27178,27787,28035,97281,97549,97734,97936,98142,113511,113712,120801,123846,123881,124419,124837,125215,125392,125571,125754,126119,137000", ++ "endLines": "30,31,200,201,202,235,236,237,238,239,240,241,246,249,250,253,254,257,258,277,278,280,281,282,292,321,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,363,364,365,366,367,368,369,371,372,373,374,383,387,1474,1477,1481,1485,1489,1707,1710,1784,1831,1840,1847,1854,1857,1860,1863,1869,1872,2025", ++ "endColumns": "62,62,50,53,58,47,48,48,47,48,57,48,35,49,40,43,43,42,33,38,45,47,53,47,63,116,122,95,119,119,101,139,121,109,106,102,110,168,167,116,118,112,185,107,112,90,110,168,97,124,94,106,169,97,182,172,111,100,158,133,139,101,104,130,168,116,147,144,149,98,95,195,182,98,183,166,10,10,12,12,10,10,10,12,12,25,34,10,10,10,10,10,12,12,12,10", ++ "endOffsets": "2196,2259,13634,13688,13747,15705,15754,15803,15851,15900,15958,16007,16248,16389,16430,16544,16588,16727,16761,17770,17816,17896,17950,17998,18576,20629,20835,20931,21051,21171,21273,21413,21535,21645,21752,21855,21966,22135,22303,22420,22539,22652,22838,22946,23059,23150,23261,23430,23528,23653,23748,23855,24025,24123,24306,24479,24591,24692,24851,24985,25125,25227,25332,25463,25685,25802,25950,26095,26245,26344,26440,26636,26890,26989,27173,27340,28030,28278,97544,97729,97931,98137,98334,113707,113896,120822,123876,124414,124832,125210,125387,125566,125749,126114,126311,137436" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/2459e462f7434c5f1e3571dd2698a418/transformed/lifecycle-runtime-2.5.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "42", ++ "endOffsets": "93" ++ }, ++ "to": { ++ "startLines": "283", ++ "startColumns": "4", ++ "startOffsets": "18003", ++ "endColumns": "42", ++ "endOffsets": "18041" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/20038f428f7192ca73c13e5db60982fd/transformed/startup-runtime-1.1.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "82", ++ "endOffsets": "133" ++ }, ++ "to": { ++ "startLines": "322", ++ "startColumns": "4", ++ "startOffsets": "20634", ++ "endColumns": "82", ++ "endOffsets": "20712" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/817de9ea2c7d94bb13ea8c8df33455f0/transformed/drawee-3.2.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,136", ++ "startColumns": "4,4", ++ "startOffsets": "55,3906", ++ "endLines": "135,218", ++ "endColumns": "22,22", ++ "endOffsets": "3901,5346" ++ }, ++ "to": { ++ "startLines": "2838,3263", ++ "startColumns": "4,4", ++ "startOffsets": "165690,178544", ++ "endLines": "2971,3345", ++ "endColumns": "22,22", ++ "endOffsets": "169536,179984" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/26f63bb91982d11bfb8d5e7702276faf/transformed/activity-1.6.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "59", ++ "endOffsets": "110" ++ }, ++ "to": { ++ "startLines": "284", ++ "startColumns": "4", ++ "startOffsets": "18046", ++ "endColumns": "59", ++ "endOffsets": "18101" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/b90e7b89f761281c15180b86eb3c9233/transformed/appcompat-resources-1.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,18,24,34,50", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,480,658,942,1353", ++ "endLines": "17,23,33,49,53", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "475,653,937,1348,1475" ++ }, ++ "to": { ++ "startLines": "2140,2156,2162,3358,3374", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "141481,141906,142084,180301,180712", ++ "endLines": "2155,2161,2171,3373,3377", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "141901,142079,142363,180707,180834" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/215fa374b0823e679a9dfabc7ca00667/transformed/savedstate-1.2.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "53", ++ "endOffsets": "104" ++ }, ++ "to": { ++ "startLines": "285", ++ "startColumns": "4", ++ "startOffsets": "18106", ++ "endColumns": "53", ++ "endOffsets": "18155" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,89,90,94,95,96,97,103,113,146,167,200", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,115,187,275,344,407,477,545,617,687,748,822,895,956,1017,1079,1143,1205,1266,1334,1434,1494,1560,1633,1702,1759,1811,1873,1945,2021,2086,2145,2204,2264,2324,2384,2444,2504,2564,2624,2684,2744,2804,2863,2923,2983,3043,3103,3163,3223,3283,3343,3403,3463,3522,3582,3642,3701,3760,3819,3878,3937,3996,4031,4066,4121,4184,4239,4297,4355,4416,4479,4536,4587,4637,4698,4755,4821,4855,4890,4925,4995,5066,5183,5384,5494,5695,5824,5896,5963,6166,6467,8198,8879,9561", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,88,89,93,94,95,96,102,112,145,166,199,205", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "110,182,270,339,402,472,540,612,682,743,817,890,951,1012,1074,1138,1200,1261,1329,1429,1489,1555,1628,1697,1754,1806,1868,1940,2016,2081,2140,2199,2259,2319,2379,2439,2499,2559,2619,2679,2739,2799,2858,2918,2978,3038,3098,3158,3218,3278,3338,3398,3458,3517,3577,3637,3696,3755,3814,3873,3932,3991,4026,4061,4116,4179,4234,4292,4350,4411,4474,4531,4582,4632,4693,4750,4816,4850,4885,4920,4990,5061,5178,5379,5489,5690,5819,5891,5958,6161,6462,8193,8874,9556,9723" ++ }, ++ "to": { ++ "startLines": "5,16,17,54,55,158,159,160,161,162,163,164,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,197,198,199,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,251,252,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,293,370,1767,1768,1772,1773,1777,2014,2015,2685,2719,2775,2808,2972,3005", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "299,1018,1090,3617,3686,10672,10742,10810,10882,10952,11013,11087,11944,12005,12066,12128,12192,12254,12315,12383,12483,12543,12609,12682,12751,12808,12860,13375,13447,13523,13752,13811,13870,13930,13990,14050,14110,14170,14230,14290,14350,14410,14470,14529,14589,14649,14709,14769,14829,14889,14949,15009,15069,15129,15188,15248,15308,15367,15426,15485,15544,15603,16435,16470,16877,16932,16995,17050,17108,17166,17227,17290,17347,17398,17448,17509,17566,17632,17666,17701,18581,26641,119615,119732,119933,120043,120244,136861,136933,159156,160729,162959,164690,169541,170223", ++ "endLines": "5,16,17,54,55,158,159,160,161,162,163,164,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,197,198,199,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,251,252,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,293,370,1767,1771,1772,1776,1777,2014,2015,2690,2728,2807,2828,3004,3010", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "354,1085,1173,3681,3744,10737,10805,10877,10947,11008,11082,11155,12000,12061,12123,12187,12249,12310,12378,12478,12538,12604,12677,12746,12803,12855,12917,13442,13518,13583,13806,13865,13925,13985,14045,14105,14165,14225,14285,14345,14405,14465,14524,14584,14644,14704,14764,14824,14884,14944,15004,15064,15124,15183,15243,15303,15362,15421,15480,15539,15598,15657,16465,16500,16927,16990,17045,17103,17161,17222,17285,17342,17393,17443,17504,17561,17627,17661,17696,17731,18646,26707,119727,119928,120038,120239,120368,136928,136995,159354,161025,164685,165366,170218,170385" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/e853aea443e5379bb5d1607f216211be/transformed/autofill-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,19,20,27,32,37,44,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,123,934,994,1376,1656,1938,2322,2820", ++ "endLines": "2,18,19,26,31,36,43,52,66", ++ "endColumns": "67,12,59,12,12,12,12,12,24", ++ "endOffsets": "118,929,989,1371,1651,1933,2317,2815,3867" ++ }, ++ "to": { ++ "startLines": "157,1815,1980,1981,1988,1993,1998,2005,2667", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "10604,123035,134975,135035,135417,135697,135979,136363,158435", ++ "endLines": "157,1830,1980,1987,1992,1997,2004,2013,2680", ++ "endColumns": "67,12,59,12,12,12,12,12,24", ++ "endOffsets": "10667,123841,135030,135412,135692,135974,136358,136856,159016" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9d2824bbcb0decd97862b20a14707515/transformed/swiperefreshlayout-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "5", ++ "endColumns": "24", ++ "endOffsets": "287" ++ }, ++ "to": { ++ "startLines": "3378", ++ "startColumns": "4", ++ "startOffsets": "180839", ++ "endLines": "3381", ++ "endColumns": "24", ++ "endOffsets": "181005" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-v21_values-v21.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,106,109,152,155,158,160,162,164,167,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,220,222,223,224,234,235,236,248", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4213,4362,4511,4623,4770,4923,5070,5145,5234,5321,5422,5525,8283,8468,11238,11435,11634,11757,11880,11993,12176,12431,12632,12721,12832,13065,13166,13261,13384,13513,13630,13807,13906,14041,14184,14319,14438,14639,14758,14851,14962,15018,15125,15320,15431,15564,15659,15750,15841,15934,16051,16190,16261,16344,16967,17024,17082,17706", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,105,108,151,154,157,159,161,163,166,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,219,221,222,223,233,234,235,247,259", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4208,4357,4506,4618,4765,4918,5065,5140,5229,5316,5417,5520,8278,8463,11233,11430,11629,11752,11875,11988,12171,12426,12627,12716,12827,13060,13161,13256,13379,13508,13625,13802,13901,14036,14179,14314,14433,14634,14753,14846,14957,15013,15120,15315,15426,15559,15654,15745,15836,15929,16046,16185,16256,16339,16962,17019,17077,17701,18337" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,110,113,156,159,162,164,166,168,171,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,224,226,227,228,238,239,240,252", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "368,459,562,665,770,877,986,1095,1204,1313,1422,1529,1632,1751,1906,2061,2166,2287,2388,2535,2676,2779,2898,3005,3108,3263,3434,3583,3748,3905,4056,4175,4526,4675,4824,4936,5083,5236,5383,5458,5547,5634,5735,5838,8596,8781,11551,11748,11947,12070,12193,12306,12489,12744,12945,13034,13145,13378,13479,13574,13697,13826,13943,14120,14219,14354,14497,14632,14751,14952,15071,15164,15275,15331,15438,15633,15744,15877,15972,16063,16154,16247,16364,16503,16574,16657,17280,17337,17395,18019", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,109,112,155,158,161,163,165,167,170,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,223,225,226,227,237,238,239,251,263", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "454,557,660,765,872,981,1090,1199,1308,1417,1524,1627,1746,1901,2056,2161,2282,2383,2530,2671,2774,2893,3000,3103,3258,3429,3578,3743,3900,4051,4170,4521,4670,4819,4931,5078,5231,5378,5453,5542,5629,5730,5833,8591,8776,11546,11743,11942,12065,12188,12301,12484,12739,12940,13029,13140,13373,13474,13569,13692,13821,13938,14115,14214,14349,14492,14627,14746,14947,15066,15159,15270,15326,15433,15628,15739,15872,15967,16058,16149,16242,16359,16498,16569,16652,17275,17332,17390,18014,18650" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,13", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,173,237,304,368,484,610,736,864,1036", ++ "endLines": "2,3,4,5,6,7,8,9,12,17", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,264,265,266,267,268,271", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,173,237,304,18655,18771,18897,19023,19151,19323", ++ "endLines": "2,3,4,5,264,265,266,267,270,275", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,232,299,363,18766,18892,19018,19146,19318,19670" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-hu_values-hu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,133,215,286,353,432,505,572,645,720,803,892,963,1041,1120,1198,1283,1364,1440,1510,1579,1671,1746,1828,1899", ++ "endColumns": "77,81,70,66,78,72,66,72,74,82,88,70,77,78,77,84,80,75,69,68,91,74,81,70,74", ++ "endOffsets": "128,210,281,348,427,500,567,640,715,798,887,958,1036,1115,1193,1278,1359,1435,1505,1574,1666,1741,1823,1894,1969" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2859,2937,3019,3090,3157,3236,3309,3376,3449,3524,3607,3696,3767,3929,4008,4086,4171,4252,4328,4398,4467,4660,4735,4817,4888", ++ "endColumns": "77,81,70,66,78,72,66,72,74,82,88,70,77,78,77,84,80,75,69,68,91,74,81,70,74", ++ "endOffsets": "2932,3014,3085,3152,3231,3304,3371,3444,3519,3602,3691,3762,3840,4003,4081,4166,4247,4323,4393,4462,4554,4730,4812,4883,4958" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,2859", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,2938" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,3845", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,3924" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4559", ++ "endColumns": "100", ++ "endOffsets": "4655" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-sw_values-sw.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,210,281,350,433,502,570,649,734,817,900,972,1062,1152,1231,1314,1398,1480,1556,1632,1719,1794,1877,1952", ++ "endColumns": "68,85,70,68,82,68,67,78,84,82,82,71,89,89,78,82,83,81,75,75,86,74,82,74,77", ++ "endOffsets": "119,205,276,345,428,497,565,644,729,812,895,967,1057,1147,1226,1309,1393,1475,1551,1627,1714,1789,1872,1947,2025" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2801,2870,2956,3027,3096,3179,3248,3316,3395,3480,3563,3646,3718,3891,3981,4060,4143,4227,4309,4385,4461,4649,4724,4807,4882", ++ "endColumns": "68,85,70,68,82,68,67,78,84,82,82,71,89,89,78,82,83,81,75,75,86,74,82,74,77", ++ "endOffsets": "2865,2951,3022,3091,3174,3243,3311,3390,3475,3558,3641,3713,3803,3976,4055,4138,4222,4304,4380,4456,4543,4719,4802,4877,4955" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4548", ++ "endColumns": "100", ++ "endOffsets": "4644" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,2801", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,2879" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,3808", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,3886" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-sr_values-sr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,212,285,354,436,503,570,652,735,823,906,978,1063,1149,1225,1307,1389,1465,1542,1617,1705,1777,1856,1926", ++ "endColumns": "73,82,72,68,81,66,66,81,82,87,82,71,84,85,75,81,81,75,76,74,87,71,78,69,82", ++ "endOffsets": "124,207,280,349,431,498,565,647,730,818,901,973,1058,1144,1220,1302,1384,1460,1537,1612,1700,1772,1851,1921,2004" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2833,2907,2990,3063,3132,3214,3281,3348,3430,3513,3601,3684,3756,3928,4014,4090,4172,4254,4330,4407,4482,4671,4743,4822,4892", ++ "endColumns": "73,82,72,68,81,66,66,81,82,87,82,71,84,85,75,81,81,75,76,74,87,71,78,69,82", ++ "endOffsets": "2902,2985,3058,3127,3209,3276,3343,3425,3508,3596,3679,3751,3836,4009,4085,4167,4249,4325,4402,4477,4565,4738,4817,4887,4970" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4570", ++ "endColumns": "100", ++ "endOffsets": "4666" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,2833", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,2915" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,3841", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,3923" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-pt-rBR_values-pt-rBR.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2929", ++ "endColumns": "100", ++ "endOffsets": "3025" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-pa_values-pa.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,126,203,274,343,423,490,557,631,707,790,869,937,1015,1098,1172,1256,1344,1419,1490,1561,1647,1716,1790,1859", ++ "endColumns": "70,76,70,68,79,66,66,73,75,82,78,67,77,82,73,83,87,74,70,70,85,68,73,68,72", ++ "endOffsets": "121,198,269,338,418,485,552,626,702,785,864,932,1010,1093,1167,1251,1339,1414,1485,1556,1642,1711,1785,1854,1927" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2767,2838,2915,2986,3055,3135,3202,3269,3343,3419,3502,3581,3649,3807,3890,3964,4048,4136,4211,4282,4353,4540,4609,4683,4752", ++ "endColumns": "70,76,70,68,79,66,66,73,75,82,78,67,77,82,73,83,87,74,70,70,85,68,73,68,72", ++ "endOffsets": "2833,2910,2981,3050,3130,3197,3264,3338,3414,3497,3576,3644,3722,3885,3959,4043,4131,4206,4277,4348,4434,4604,4678,4747,4820" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,2767", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,2842" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,3727", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,3802" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4439", ++ "endColumns": "100", ++ "endOffsets": "4535" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-v18_values-v18.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v18/values-v18.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "48", ++ "endOffsets": "99" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-lt_values-lt.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,213,286,357,444,514,582,660,742,824,905,979,1062,1146,1224,1307,1390,1466,1542,1616,1713,1788,1870,1943", ++ "endColumns": "72,84,72,70,86,69,67,77,81,81,80,73,82,83,77,82,82,75,75,73,96,74,81,72,79", ++ "endOffsets": "123,208,281,352,439,509,577,655,737,819,900,974,1057,1141,1219,1302,1385,1461,1537,1611,1708,1783,1865,1938,2018" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2874,2947,3032,3105,3176,3263,3333,3401,3479,3561,3643,3724,3798,3965,4049,4127,4210,4293,4369,4445,4519,4717,4792,4874,4947", ++ "endColumns": "72,84,72,70,86,69,67,77,81,81,80,73,82,83,77,82,82,75,75,73,96,74,81,72,79", ++ "endOffsets": "2942,3027,3100,3171,3258,3328,3396,3474,3556,3638,3719,3793,3876,4044,4122,4205,4288,4364,4440,4514,4611,4787,4869,4942,5022" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,2874", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,2953" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,3881", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,3960" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4616", ++ "endColumns": "100", ++ "endOffsets": "4712" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-pl_values-pl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,132,205,274,359,435,514,597,692,762,847,933,1008,1090,1173,1251,1323,1393,1479,1557,1633,1707", ++ "endColumns": "76,72,68,84,75,78,82,94,69,84,85,74,81,82,77,71,69,85,77,75,73,79", ++ "endOffsets": "127,200,269,354,430,509,592,687,757,842,928,1003,1085,1168,1246,1318,1388,1474,1552,1628,1702,1782" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,40,41,42,43,44,45,46,47,49,50,51,52", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2817,2894,2967,3036,3121,3197,3276,3359,3454,3524,3692,3778,3853,3935,4018,4096,4168,4238,4425,4503,4579,4653", ++ "endColumns": "76,72,68,84,75,78,82,94,69,84,85,74,81,82,77,71,69,85,77,75,73,79", ++ "endOffsets": "2889,2962,3031,3116,3192,3271,3354,3449,3519,3604,3773,3848,3930,4013,4091,4163,4233,4319,4498,4574,4648,4728" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,2817", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,2895" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,39", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,3609", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,3687" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "48", ++ "startColumns": "4", ++ "startOffsets": "4324", ++ "endColumns": "100", ++ "endOffsets": "4420" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-de_values-de.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4412", ++ "endColumns": "100", ++ "endOffsets": "4508" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,2832", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,2909" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,3686", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,3763" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,213,289,357,439,506,582,658,741,828,909,992,1072,1158,1243,1321,1392,1462,1553,1628,1703", ++ "endColumns": "74,82,75,67,81,66,75,75,82,86,80,82,79,85,84,77,70,69,90,74,74,77", ++ "endOffsets": "125,208,284,352,434,501,577,653,736,823,904,987,1067,1153,1238,1316,1387,1457,1548,1623,1698,1776" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2832,2907,2990,3066,3134,3216,3283,3359,3435,3518,3605,3768,3851,3931,4017,4102,4180,4251,4321,4513,4588,4663", ++ "endColumns": "74,82,75,67,81,66,75,75,82,86,80,82,79,85,84,77,70,69,90,74,74,77", ++ "endOffsets": "2902,2985,3061,3129,3211,3278,3354,3430,3513,3600,3681,3846,3926,4012,4097,4175,4246,4316,4407,4583,4658,4736" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-fa_values-fa.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4464", ++ "endColumns": "100", ++ "endOffsets": "4560" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,201,273,342,423,491,557,631,706,787,868,937,1016,1094,1168,1250,1331,1410,1483,1554,1642,1713,1789,1861", ++ "endColumns": "68,76,71,68,80,67,65,73,74,80,80,68,78,77,73,81,80,78,72,70,87,70,75,71,75", ++ "endOffsets": "119,196,268,337,418,486,552,626,701,782,863,932,1011,1089,1163,1245,1326,1405,1478,1549,1637,1708,1784,1856,1932" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2795,2864,2941,3013,3082,3163,3231,3297,3371,3446,3527,3608,3677,3838,3916,3990,4072,4153,4232,4305,4376,4565,4636,4712,4784", ++ "endColumns": "68,76,71,68,80,67,65,73,74,80,80,68,78,77,73,81,80,78,72,70,87,70,75,71,75", ++ "endOffsets": "2859,2936,3008,3077,3158,3226,3292,3366,3441,3522,3603,3672,3751,3911,3985,4067,4148,4227,4300,4371,4459,4631,4707,4779,4855" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,2795", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,2872" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,3756", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,3833" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-v16_values-v16.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "65", ++ "endOffsets": "116" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "5", ++ "endColumns": "12", ++ "endOffsets": "223" ++ }, ++ "to": { ++ "startLines": "3", ++ "startColumns": "4", ++ "startOffsets": "121", ++ "endLines": "6", ++ "endColumns": "12", ++ "endOffsets": "289" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-mr_values-mr.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4478", ++ "endColumns": "100", ++ "endOffsets": "4574" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,322,429,519,620,732,810,887,978,1071,1164,1261,1361,1454,1549,1643,1734,1825,1905,2012,2113,2210,2319,2421,2535,2692,2795", ++ "endColumns": "110,105,106,89,100,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,96,108,101,113,156,102,79", ++ "endOffsets": "211,317,424,514,615,727,805,882,973,1066,1159,1256,1356,1449,1544,1638,1729,1820,1900,2007,2108,2205,2314,2416,2530,2687,2790,2870" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,322,429,519,620,732,810,887,978,1071,1164,1261,1361,1454,1549,1643,1734,1825,1905,2012,2113,2210,2319,2421,2535,2692,3760", ++ "endColumns": "110,105,106,89,100,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,96,108,101,113,156,102,79", ++ "endOffsets": "211,317,424,514,615,727,805,882,973,1066,1159,1256,1356,1449,1544,1638,1729,1820,1900,2007,2108,2205,2314,2416,2530,2687,2790,3835" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,203,272,343,425,492,559,633,709,789,869,937,1020,1102,1177,1263,1350,1425,1496,1567,1658,1730,1805,1874", ++ "endColumns": "68,78,68,70,81,66,66,73,75,79,79,67,82,81,74,85,86,74,70,70,90,71,74,68,72", ++ "endOffsets": "119,198,267,338,420,487,554,628,704,784,864,932,1015,1097,1172,1258,1345,1420,1491,1562,1653,1725,1800,1869,1942" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2795,2864,2943,3012,3083,3165,3232,3299,3373,3449,3529,3609,3677,3840,3922,3997,4083,4170,4245,4316,4387,4579,4651,4726,4795", ++ "endColumns": "68,78,68,70,81,66,66,73,75,79,79,67,82,81,74,85,86,74,70,70,90,71,74,68,72", ++ "endOffsets": "2859,2938,3007,3078,3160,3227,3294,3368,3444,3524,3604,3672,3755,3917,3992,4078,4165,4240,4311,4382,4473,4646,4721,4790,4863" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-gu_values-gu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,203,274,342,421,488,555,629,705,785,866,934,1013,1091,1166,1245,1325,1405,1476,1547,1646,1718,1793,1862", ++ "endColumns": "68,78,70,67,78,66,66,73,75,79,80,67,78,77,74,78,79,79,70,70,98,71,74,68,72", ++ "endOffsets": "119,198,269,337,416,483,550,624,700,780,861,929,1008,1086,1161,1240,1320,1400,1471,1542,1641,1713,1788,1857,1930" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2788,2857,2936,3007,3075,3154,3221,3288,3362,3438,3518,3599,3667,3827,3905,3980,4059,4139,4219,4290,4361,4561,4633,4708,4777", ++ "endColumns": "68,78,70,67,78,66,66,73,75,79,80,67,78,77,74,78,79,79,70,70,98,71,74,68,72", ++ "endOffsets": "2852,2931,3002,3070,3149,3216,3283,3357,3433,3513,3594,3662,3741,3900,3975,4054,4134,4214,4285,4356,4455,4628,4703,4772,4845" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4460", ++ "endColumns": "100", ++ "endOffsets": "4556" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,2788", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,2864" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,3746", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,3822" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-uk_values-uk.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4562", ++ "endColumns": "100", ++ "endOffsets": "4658" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,2829", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,2906" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,3846", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,3923" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,215,289,363,451,523,590,666,745,833,919,991,1072,1157,1233,1315,1398,1475,1548,1621,1706,1780,1860,1930", ++ "endColumns": "73,85,73,73,87,71,66,75,78,87,85,71,80,84,75,81,82,76,72,72,84,73,79,69,84", ++ "endOffsets": "124,210,284,358,446,518,585,661,740,828,914,986,1067,1152,1228,1310,1393,1470,1543,1616,1701,1775,1855,1925,2010" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2829,2903,2989,3063,3137,3225,3297,3364,3440,3519,3607,3693,3765,3928,4013,4089,4171,4254,4331,4404,4477,4663,4737,4817,4887", ++ "endColumns": "73,85,73,73,87,71,66,75,78,87,85,71,80,84,75,81,82,76,72,72,84,73,79,69,84", ++ "endOffsets": "2898,2984,3058,3132,3220,3292,3359,3435,3514,3602,3688,3760,3841,4008,4084,4166,4249,4326,4399,4472,4557,4732,4812,4882,4967" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-fr-rCA_values-fr-rCA.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4480", ++ "endColumns": "100", ++ "endOffsets": "4576" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,205,275,358,425,504,585,675,767,838,926,1021,1112,1192,1272,1355,1432,1505,1593,1665,1748,1821", ++ "endColumns": "69,79,69,82,66,78,80,89,91,70,87,94,90,79,79,82,76,72,87,71,82,72,79", ++ "endOffsets": "120,200,270,353,420,499,580,670,762,833,921,1016,1107,1187,1267,1350,1427,1500,1588,1660,1743,1816,1896" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2855,2925,3005,3075,3158,3225,3304,3385,3475,3567,3638,3813,3908,3999,4079,4159,4242,4319,4392,4581,4653,4736,4809", ++ "endColumns": "69,79,69,82,66,78,80,89,91,70,87,94,90,79,79,82,76,72,87,71,82,72,79", ++ "endOffsets": "2920,3000,3070,3153,3220,3299,3380,3470,3562,3633,3721,3903,3994,4074,4154,4237,4314,4387,4475,4648,4731,4804,4884" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,2855", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,2937" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,3726", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,3808" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-eu_values-eu.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2933", ++ "endColumns": "100", ++ "endOffsets": "3029" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,312,422,508,614,738,824,905,997,1091,1187,1281,1382,1476,1572,1669,1761,1854,1936,2045,2154,2253,2362,2469,2580,2751,2850", ++ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", ++ "endOffsets": "209,307,417,503,609,733,819,900,992,1086,1182,1276,1377,1471,1567,1664,1756,1849,1931,2040,2149,2248,2357,2464,2575,2746,2845,2928" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-gl_values-gl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,313,421,506,607,735,821,902,994,1088,1185,1279,1379,1473,1569,1664,1756,1848,1929,2037,2144,2251,2360,2465,2579,2756,2855", ++ "endColumns": "103,103,107,84,100,127,85,80,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", ++ "endOffsets": "204,308,416,501,602,730,816,897,989,1083,1180,1274,1374,1468,1564,1659,1751,1843,1924,2032,2139,2246,2355,2460,2574,2751,2850,2933" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2938", ++ "endColumns": "100", ++ "endOffsets": "3034" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-nl_values-nl.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4382", ++ "endColumns": "100", ++ "endOffsets": "4478" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,328,435,520,624,744,822,898,990,1084,1179,1273,1373,1467,1563,1658,1750,1842,1924,2035,2138,2237,2352,2466,2569,2724,2827", ++ "endColumns": "117,104,106,84,103,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "218,323,430,515,619,739,817,893,985,1079,1174,1268,1368,1462,1558,1653,1745,1837,1919,2030,2133,2232,2347,2461,2564,2719,2822,2905" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,328,435,520,624,744,822,898,990,1084,1179,1273,1373,1467,1563,1658,1750,1842,1924,2035,2138,2237,2352,2466,2569,2724,3669", ++ "endColumns": "117,104,106,84,103,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "218,323,430,515,619,739,817,893,985,1079,1174,1268,1368,1462,1558,1653,1745,1837,1919,2030,2133,2232,2347,2461,2564,2719,2822,3747" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,131,206,274,348,434,508,584,668,747,819,897,975,1049,1136,1220,1297,1368,1438,1527,1605,1690", ++ "endColumns": "75,74,67,73,85,73,75,83,78,71,77,77,73,86,83,76,70,69,88,77,84,73", ++ "endOffsets": "126,201,269,343,429,503,579,663,742,814,892,970,1044,1131,1215,1292,1363,1433,1522,1600,1685,1759" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2827,2903,2978,3046,3120,3206,3280,3356,3440,3519,3591,3752,3830,3904,3991,4075,4152,4223,4293,4483,4561,4646", ++ "endColumns": "75,74,67,73,85,73,75,83,78,71,77,77,73,86,83,76,70,69,88,77,84,73", ++ "endOffsets": "2898,2973,3041,3115,3201,3275,3351,3435,3514,3586,3664,3825,3899,3986,4070,4147,4218,4288,4377,4556,4641,4715" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-af_values-af.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,2777", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,2853" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,3765", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,3841" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4468", ++ "endColumns": "100", ++ "endOffsets": "4564" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,211,283,352,436,505,575,652,730,813,892,964,1043,1122,1196,1280,1364,1443,1513,1583,1665,1740,1816,1888", ++ "endColumns": "72,82,71,68,83,68,69,76,77,82,78,71,78,78,73,83,83,78,69,69,81,74,75,71,73", ++ "endOffsets": "123,206,278,347,431,500,570,647,725,808,887,959,1038,1117,1191,1275,1359,1438,1508,1578,1660,1735,1811,1883,1957" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2777,2850,2933,3005,3074,3158,3227,3297,3374,3452,3535,3614,3686,3846,3925,3999,4083,4167,4246,4316,4386,4569,4644,4720,4792", ++ "endColumns": "72,82,71,68,83,68,69,76,77,82,78,71,78,78,73,83,83,78,69,69,81,74,75,71,73", ++ "endOffsets": "2845,2928,3000,3069,3153,3222,3292,3369,3447,3530,3609,3681,3760,3920,3994,4078,4162,4241,4311,4381,4463,4639,4715,4787,4861" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-mn_values-mn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,2797", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,2873" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,3163", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,3239" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3395", ++ "endColumns": "100", ++ "endOffsets": "3491" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,135,204,285,355,421,497", ++ "endColumns": "79,68,80,69,65,75,74", ++ "endOffsets": "130,199,280,350,416,492,567" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2797,2877,2946,3027,3097,3244,3320", ++ "endColumns": "79,68,80,69,65,75,74", ++ "endOffsets": "2872,2941,3022,3092,3158,3315,3390" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ru_values-ru.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,2822", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,2899" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,3857", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,3934" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,218,292,367,456,525,592,669,748,837,934,1006,1090,1183,1258,1340,1423,1500,1572,1647,1732,1804,1884,1954", ++ "endColumns": "73,88,73,74,88,68,66,76,78,88,96,71,83,92,74,81,82,76,71,74,84,71,79,69,84", ++ "endOffsets": "124,213,287,362,451,520,587,664,743,832,929,1001,1085,1178,1253,1335,1418,1495,1567,1642,1727,1799,1879,1949,2034" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2822,2896,2985,3059,3134,3223,3292,3359,3436,3515,3604,3701,3773,3939,4032,4107,4189,4272,4349,4421,4496,4682,4754,4834,4904", ++ "endColumns": "73,88,73,74,88,68,66,76,78,88,96,71,83,92,74,81,82,76,71,74,84,71,79,69,84", ++ "endOffsets": "2891,2980,3054,3129,3218,3287,3354,3431,3510,3599,3696,3768,3852,4027,4102,4184,4267,4344,4416,4491,4576,4749,4829,4899,4984" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4581", ++ "endColumns": "100", ++ "endOffsets": "4677" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-th_values-th.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,2734", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,2811" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,3714", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,3791" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4427", ++ "endColumns": "100", ++ "endOffsets": "4523" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,131,208,280,350,432,500,567,640,719,803,889,958,1035,1116,1192,1273,1354,1430,1505,1580,1666,1736,1812,1886", ++ "endColumns": "75,76,71,69,81,67,66,72,78,83,85,68,76,80,75,80,80,75,74,74,85,69,75,73,78", ++ "endOffsets": "126,203,275,345,427,495,562,635,714,798,884,953,1030,1111,1187,1268,1349,1425,1500,1575,1661,1731,1807,1881,1960" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2734,2810,2887,2959,3029,3111,3179,3246,3319,3398,3482,3568,3637,3796,3877,3953,4034,4115,4191,4266,4341,4528,4598,4674,4748", ++ "endColumns": "75,76,71,69,81,67,66,72,78,83,85,68,76,80,75,80,80,75,74,74,85,69,75,73,78", ++ "endOffsets": "2805,2882,2954,3024,3106,3174,3241,3314,3393,3477,3563,3632,3709,3872,3948,4029,4110,4186,4261,4336,4422,4593,4669,4743,4822" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-nb_values-nb.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,303,417,503,603,716,793,868,959,1052,1146,1240,1340,1433,1528,1626,1717,1808,1886,1989,2087,2183,2287,2386,2487,2640,2737", ++ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", ++ "endOffsets": "203,298,412,498,598,711,788,863,954,1047,1141,1235,1335,1428,1523,1621,1712,1803,1881,1984,2082,2178,2282,2381,2482,2635,2732,2812" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2817", ++ "endColumns": "100", ++ "endOffsets": "2913" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-az_values-az.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,2813", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,2892" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,3181", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,3260" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3415", ++ "endColumns": "100", ++ "endOffsets": "3511" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,136,205,287,355,423,498", ++ "endColumns": "80,68,81,67,67,74,74", ++ "endOffsets": "131,200,282,350,418,493,568" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2813,2894,2963,3045,3113,3265,3340", ++ "endColumns": "80,68,81,67,67,74,74", ++ "endOffsets": "2889,2958,3040,3108,3176,3335,3410" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ja_values-ja.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,123,197,265,331,407,473,540,612,687,763,839,906,981,1056,1128,1205,1281,1353,1423,1492,1570,1638,1709,1777", ++ "endColumns": "67,73,67,65,75,65,66,71,74,75,75,66,74,74,71,76,75,71,69,68,77,67,70,67,70", ++ "endOffsets": "118,192,260,326,402,468,535,607,682,758,834,901,976,1051,1123,1200,1276,1348,1418,1487,1565,1633,1704,1772,1843" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2691,2759,2833,2901,2967,3043,3109,3176,3248,3323,3399,3475,3542,3696,3771,3843,3920,3996,4068,4138,4207,4386,4454,4525,4593", ++ "endColumns": "67,73,67,65,75,65,66,71,74,75,75,66,74,74,71,76,75,71,69,68,77,67,70,67,70", ++ "endOffsets": "2754,2828,2896,2962,3038,3104,3171,3243,3318,3394,3470,3537,3612,3766,3838,3915,3991,4063,4133,4202,4280,4449,4520,4588,4659" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,2691", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,2765" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,3617", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,3691" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4285", ++ "endColumns": "100", ++ "endOffsets": "4381" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-ldltr-v21_values-ldltr-v21.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ldltr-v21/values-ldltr-v21.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "112", ++ "endOffsets": "163" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-es-rUS_values-es-rUS.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2904", ++ "endColumns": "100", ++ "endOffsets": "3000" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,334,442,527,629,745,830,910,1001,1094,1189,1283,1382,1475,1574,1670,1761,1852,1934,2041,2140,2239,2347,2455,2562,2721,2821", ++ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", ++ "endOffsets": "220,329,437,522,624,740,825,905,996,1089,1184,1278,1377,1470,1569,1665,1756,1847,1929,2036,2135,2234,2342,2450,2557,2716,2816,2899" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-bn_values-bn.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,205,277,345,425,493,560,634,711,794,874,944,1023,1103,1178,1266,1353,1428,1504,1579,1674,1750,1827,1897", ++ "endColumns": "72,76,71,67,79,67,66,73,76,82,79,69,78,79,74,87,86,74,75,74,94,75,76,69,72", ++ "endOffsets": "123,200,272,340,420,488,555,629,706,789,869,939,1018,1098,1173,1261,1348,1423,1499,1574,1669,1745,1822,1892,1965" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2835,2908,2985,3057,3125,3205,3273,3340,3414,3491,3574,3654,3724,3890,3970,4045,4133,4220,4295,4371,4446,4642,4718,4795,4865", ++ "endColumns": "72,76,71,67,79,67,66,73,76,82,79,69,78,79,74,87,86,74,75,74,94,75,76,69,72", ++ "endOffsets": "2903,2980,3052,3120,3200,3268,3335,3409,3486,3569,3649,3719,3798,3965,4040,4128,4215,4290,4366,4441,4536,4713,4790,4860,4933" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4541", ++ "endColumns": "100", ++ "endOffsets": "4637" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,2835", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,2917" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,3803", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,3885" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-km_values-km.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,211,283,353,437,503,572,648,725,808,888,959,1036,1118,1195,1278,1360,1436,1507,1577,1670,1749,1823,1902", ++ "endColumns": "72,82,71,69,83,65,68,75,76,82,79,70,76,81,76,82,81,75,70,69,92,78,73,78,76", ++ "endOffsets": "123,206,278,348,432,498,567,643,720,803,883,954,1031,1113,1190,1273,1355,1431,1502,1572,1665,1744,1818,1897,1974" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2793,2866,2949,3021,3091,3175,3241,3310,3386,3463,3546,3626,3697,3858,3940,4017,4100,4182,4258,4329,4399,4593,4672,4746,4825", ++ "endColumns": "72,82,71,69,83,65,68,75,76,82,79,70,76,81,76,82,81,75,70,69,92,78,73,78,76", ++ "endOffsets": "2861,2944,3016,3086,3170,3236,3305,3381,3458,3541,3621,3692,3769,3935,4012,4095,4177,4253,4324,4394,4487,4667,4741,4820,4897" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4492", ++ "endColumns": "100", ++ "endOffsets": "4588" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,2793", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,2872" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,3774", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,3853" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-en-rXC_values-en-rXC.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "203", ++ "endOffsets": "254" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "5714", ++ "endColumns": "203", ++ "endOffsets": "5913" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,5528", ++ "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185", ++ "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,5709" ++ } ++ } ++ ] ++ }, ++ { ++ "outputFile": "io.invertase.jet.test.jet-debugAndroidTest-24:/values-el_values-el.arsc.flat", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,2886", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,2967" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,3905", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,3986" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4639", ++ "endColumns": "100", ++ "endOffsets": "4735" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,215,291,361,445,517,585,663,744,828,920,992,1074,1161,1245,1330,1413,1493,1564,1634,1722,1794,1874,1948", ++ "endColumns": "73,85,75,69,83,71,67,77,80,83,91,71,81,86,83,84,82,79,70,69,87,71,79,73,81", ++ "endOffsets": "124,210,286,356,440,512,580,658,739,823,915,987,1069,1156,1240,1325,1408,1488,1559,1629,1717,1789,1869,1943,2025" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2886,2960,3046,3122,3192,3276,3348,3416,3494,3575,3659,3751,3823,3991,4078,4162,4247,4330,4410,4481,4551,4740,4812,4892,4966", ++ "endColumns": "73,85,75,69,83,71,67,77,80,83,91,71,81,86,83,84,82,79,70,69,87,71,79,73,81", ++ "endOffsets": "2955,3041,3117,3187,3271,3343,3411,3489,3570,3654,3746,3818,3900,4073,4157,4242,4325,4405,4476,4546,4634,4807,4887,4961,5043" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-af.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-af.json +new file mode 100644 +index 0000000..82b0c64 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-af.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-af/values-af.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,2777", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,2853" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,3765", ++ "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", ++ "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,3841" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4468", ++ "endColumns": "100", ++ "endOffsets": "4564" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-af/values-af.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,211,283,352,436,505,575,652,730,813,892,964,1043,1122,1196,1280,1364,1443,1513,1583,1665,1740,1816,1888", ++ "endColumns": "72,82,71,68,83,68,69,76,77,82,78,71,78,78,73,83,83,78,69,69,81,74,75,71,73", ++ "endOffsets": "123,206,278,347,431,500,570,647,725,808,887,959,1038,1117,1191,1275,1359,1438,1508,1578,1660,1735,1811,1883,1957" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2777,2850,2933,3005,3074,3158,3227,3297,3374,3452,3535,3614,3686,3846,3925,3999,4083,4167,4246,4316,4386,4569,4644,4720,4792", ++ "endColumns": "72,82,71,68,83,68,69,76,77,82,78,71,78,78,73,83,83,78,69,69,81,74,75,71,73", ++ "endOffsets": "2845,2928,3000,3069,3153,3222,3292,3369,3447,3530,3609,3681,3760,3920,3994,4078,4162,4241,4311,4381,4463,4639,4715,4787,4861" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-am.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-am.json +new file mode 100644 +index 0000000..4d237ea +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-am.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-am/values-am.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,203,301,407,493,596,713,791,867,958,1051,1143,1237,1337,1430,1525,1618,1709,1800,1880,1980,2080,2176,2278,2378,2477,2627,2723", ++ "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", ++ "endOffsets": "198,296,402,488,591,708,786,862,953,1046,1138,1232,1332,1425,1520,1613,1704,1795,1875,1975,2075,2171,2273,2373,2472,2622,2718,2798" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-am/values-am.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2803", ++ "endColumns": "100", ++ "endOffsets": "2899" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ar.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ar.json +new file mode 100644 +index 0000000..c8c4587 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ar.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ar/values-ar.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,206,278,346,424,491,561,639,718,799,887,965,1045,1129,1203,1281,1358,1433,1512,1584,1668,1738,1824,1893", ++ "endColumns": "68,81,71,67,77,66,69,77,78,80,87,77,79,83,73,77,76,74,78,71,83,69,85,68,77", ++ "endOffsets": "119,201,273,341,419,486,556,634,713,794,882,960,1040,1124,1198,1276,1353,1428,1507,1579,1663,1733,1819,1888,1966" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2759,2828,2910,2982,3050,3128,3195,3265,3343,3422,3503,3591,3669,3831,3915,3989,4067,4144,4219,4298,4370,4555,4625,4711,4780", ++ "endColumns": "68,81,71,67,77,66,69,77,78,80,87,77,79,83,73,77,76,74,78,71,83,69,85,68,77", ++ "endOffsets": "2823,2905,2977,3045,3123,3190,3260,3338,3417,3498,3586,3664,3744,3910,3984,4062,4139,4214,4293,4365,4449,4620,4706,4775,4853" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,424,506,607,721,801,880,971,1064,1156,1250,1350,1443,1538,1631,1722,1816,1895,2000,2098,2196,2304,2404,2507,2662,2759", ++ "endColumns": "107,103,106,81,100,113,79,78,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "208,312,419,501,602,716,796,875,966,1059,1151,1245,1345,1438,1533,1626,1717,1811,1890,1995,2093,2191,2299,2399,2502,2657,2754,2836" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,424,506,607,721,801,880,971,1064,1156,1250,1350,1443,1538,1631,1722,1816,1895,2000,2098,2196,2304,2404,2507,2662,3749", ++ "endColumns": "107,103,106,81,100,113,79,78,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", ++ "endOffsets": "208,312,419,501,602,716,796,875,966,1059,1151,1245,1345,1438,1533,1626,1717,1811,1890,1995,2093,2191,2299,2399,2502,2657,2754,3826" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ar/values-ar.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4454", ++ "endColumns": "100", ++ "endOffsets": "4550" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-as.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-as.json +new file mode 100644 +index 0000000..a5a9eb2 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-as.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-as/values-as.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,312,419,510,615,735,812,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1910,2023,2131,2234,2343,2459,2579,2746,2848", ++ "endColumns": "107,98,106,90,104,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,102,108,115,119,166,101,82", ++ "endOffsets": "208,307,414,505,610,730,807,882,973,1066,1161,1255,1355,1448,1543,1637,1728,1819,1905,2018,2126,2229,2338,2454,2574,2741,2843,2926" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-as/values-as.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2931", ++ "endColumns": "100", ++ "endOffsets": "3027" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-az.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-az.json +new file mode 100644 +index 0000000..e936682 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-az.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-az/values-az.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,2813", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,2892" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,3181", ++ "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", ++ "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,3260" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3415", ++ "endColumns": "100", ++ "endOffsets": "3511" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-az/values-az.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,136,205,287,355,423,498", ++ "endColumns": "80,68,81,67,67,74,74", ++ "endOffsets": "131,200,282,350,418,493,568" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2813,2894,2963,3045,3113,3265,3340", ++ "endColumns": "80,68,81,67,67,74,74", ++ "endOffsets": "2889,2958,3040,3108,3176,3335,3410" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-b+sr+Latn.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-b+sr+Latn.json +new file mode 100644 +index 0000000..71edda3 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-b+sr+Latn.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2923", ++ "endColumns": "100", ++ "endOffsets": "3019" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,816,898,989,1082,1177,1271,1371,1464,1559,1664,1755,1846,1932,2037,2143,2246,2353,2462,2569,2739,2836", ++ "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,811,893,984,1077,1172,1266,1366,1459,1554,1659,1750,1841,1927,2032,2138,2241,2348,2457,2564,2734,2831,2918" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-be.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-be.json +new file mode 100644 +index 0000000..49f46c3 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-be.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-be/values-be.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,3,4,5,6", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,138,209,294,365", ++ "endColumns": "82,70,84,70,66", ++ "endOffsets": "133,204,289,360,427" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "2835,2918,2989,3074,3145", ++ "endColumns": "82,70,84,70,66", ++ "endOffsets": "2913,2984,3069,3140,3207" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,2835", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,2912" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,3212", ++ "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", ++ "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,3289" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-be/values-be.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "35", ++ "startColumns": "4", ++ "startOffsets": "3294", ++ "endColumns": "100", ++ "endOffsets": "3390" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-bg.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-bg.json +new file mode 100644 +index 0000000..73e50fb +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-bg.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-bg/values-bg.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,282,357,445,514,581,661,743,830,910,981,1068,1155,1229,1308,1390,1467,1544,1619,1703,1778,1860,1930", ++ "endColumns": "69,83,72,74,87,68,66,79,81,86,79,70,86,86,73,78,81,76,76,74,83,74,81,69,84", ++ "endOffsets": "120,204,277,352,440,509,576,656,738,825,905,976,1063,1150,1224,1303,1385,1462,1539,1614,1698,1773,1855,1925,2010" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2854,2924,3008,3081,3156,3244,3313,3380,3460,3542,3629,3709,3780,3951,4038,4112,4191,4273,4350,4427,4502,4687,4762,4844,4914", ++ "endColumns": "69,83,72,74,87,68,66,79,81,86,79,70,86,86,73,78,81,76,76,74,83,74,81,69,84", ++ "endOffsets": "2919,3003,3076,3151,3239,3308,3375,3455,3537,3624,3704,3775,3862,4033,4107,4186,4268,4345,4422,4497,4581,4757,4839,4909,4994" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,2854", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,2933" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,3867", ++ "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", ++ "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,3946" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-bg/values-bg.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4586", ++ "endColumns": "100", ++ "endOffsets": "4682" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-bn.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-bn.json +new file mode 100644 +index 0000000..6e0b3a8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-bn.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-bn/values-bn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,205,277,345,425,493,560,634,711,794,874,944,1023,1103,1178,1266,1353,1428,1504,1579,1674,1750,1827,1897", ++ "endColumns": "72,76,71,67,79,67,66,73,76,82,79,69,78,79,74,87,86,74,75,74,94,75,76,69,72", ++ "endOffsets": "123,200,272,340,420,488,555,629,706,789,869,939,1018,1098,1173,1261,1348,1423,1499,1574,1669,1745,1822,1892,1965" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2835,2908,2985,3057,3125,3205,3273,3340,3414,3491,3574,3654,3724,3890,3970,4045,4133,4220,4295,4371,4446,4642,4718,4795,4865", ++ "endColumns": "72,76,71,67,79,67,66,73,76,82,79,69,78,79,74,87,86,74,75,74,94,75,76,69,72", ++ "endOffsets": "2903,2980,3052,3120,3200,3268,3335,3409,3486,3569,3649,3719,3798,3965,4040,4128,4215,4290,4366,4441,4536,4713,4790,4860,4933" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4541", ++ "endColumns": "100", ++ "endOffsets": "4637" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-bn/values-bn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,2835", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,2917" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,3803", ++ "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", ++ "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,3885" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-bs.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-bs.json +new file mode 100644 +index 0000000..baa5318 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-bs.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-bs/values-bs.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,323,430,516,620,742,827,909,1000,1093,1188,1282,1382,1475,1570,1665,1756,1847,1935,2038,2142,2243,2348,2462,2565,2734,2830", ++ "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", ++ "endOffsets": "221,318,425,511,615,737,822,904,995,1088,1183,1277,1377,1470,1565,1660,1751,1842,1930,2033,2137,2238,2343,2457,2560,2729,2825,2912" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-bs/values-bs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2917", ++ "endColumns": "100", ++ "endOffsets": "3013" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ca.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ca.json +new file mode 100644 +index 0000000..5ef213f +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ca.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ca/values-ca.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,228,333,440,523,629,755,839,918,1009,1102,1195,1290,1388,1481,1574,1668,1759,1850,1931,2042,2150,2248,2358,2463,2571,2731,2830", ++ "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", ++ "endOffsets": "223,328,435,518,624,750,834,913,1004,1097,1190,1285,1383,1476,1569,1663,1754,1845,1926,2037,2145,2243,2353,2458,2566,2726,2825,2907" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ca/values-ca.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2912", ++ "endColumns": "100", ++ "endOffsets": "3008" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-cs.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-cs.json +new file mode 100644 +index 0000000..358d25a +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-cs.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-cs/values-cs.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,2799", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,2877" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,3800", ++ "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", ++ "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,3878" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4505", ++ "endColumns": "100", ++ "endOffsets": "4601" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-cs/values-cs.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,127,210,281,352,439,507,577,656,738,824,910,980,1056,1133,1215,1296,1378,1453,1524,1594,1678,1751,1829,1900", ++ "endColumns": "71,82,70,70,86,67,69,78,81,85,85,69,75,76,81,80,81,74,70,69,83,72,77,70,79", ++ "endOffsets": "122,205,276,347,434,502,572,651,733,819,905,975,1051,1128,1210,1291,1373,1448,1519,1589,1673,1746,1824,1895,1975" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2799,2871,2954,3025,3096,3183,3251,3321,3400,3482,3568,3654,3724,3883,3960,4042,4123,4205,4280,4351,4421,4606,4679,4757,4828", ++ "endColumns": "71,82,70,70,86,67,69,78,81,85,85,69,75,76,81,80,81,74,70,69,83,72,77,70,79", ++ "endOffsets": "2866,2949,3020,3091,3178,3246,3316,3395,3477,3563,3649,3719,3795,3955,4037,4118,4200,4275,4346,4416,4500,4674,4752,4823,4903" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-da.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-da.json +new file mode 100644 +index 0000000..534a5f2 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-da.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-da/values-da.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,2757", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,2832" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,3604", ++ "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", ++ "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,3679" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4300", ++ "endColumns": "100", ++ "endOffsets": "4396" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-da/values-da.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,131,214,289,360,443,518,594,675,755,824,902,981,1057,1137,1217,1294,1365,1435,1518,1592,1674", ++ "endColumns": "75,82,74,70,82,74,75,80,79,68,77,78,75,79,79,76,70,69,82,73,81,78", ++ "endOffsets": "126,209,284,355,438,513,589,670,750,819,897,976,1052,1132,1212,1289,1360,1430,1513,1587,1669,1748" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2757,2833,2916,2991,3062,3145,3220,3296,3377,3457,3526,3684,3763,3839,3919,3999,4076,4147,4217,4401,4475,4557", ++ "endColumns": "75,82,74,70,82,74,75,80,79,68,77,78,75,79,79,76,70,69,82,73,81,78", ++ "endOffsets": "2828,2911,2986,3057,3140,3215,3291,3372,3452,3521,3599,3758,3834,3914,3994,4071,4142,4212,4295,4470,4552,4631" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-de.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-de.json +new file mode 100644 +index 0000000..fb0d761 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-de.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-de/values-de.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4412", ++ "endColumns": "100", ++ "endOffsets": "4508" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,2832", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,2909" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,3686", ++ "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", ++ "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,3763" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-de/values-de.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,213,289,357,439,506,582,658,741,828,909,992,1072,1158,1243,1321,1392,1462,1553,1628,1703", ++ "endColumns": "74,82,75,67,81,66,75,75,82,86,80,82,79,85,84,77,70,69,90,74,74,77", ++ "endOffsets": "125,208,284,352,434,501,577,653,736,823,904,987,1067,1153,1238,1316,1387,1457,1548,1623,1698,1776" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2832,2907,2990,3066,3134,3216,3283,3359,3435,3518,3605,3768,3851,3931,4017,4102,4180,4251,4321,4513,4588,4663", ++ "endColumns": "74,82,75,67,81,66,75,75,82,86,80,82,79,85,84,77,70,69,90,74,74,77", ++ "endOffsets": "2902,2985,3061,3129,3211,3278,3354,3430,3513,3600,3681,3846,3926,4012,4097,4175,4246,4316,4407,4583,4658,4736" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-el.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-el.json +new file mode 100644 +index 0000000..a689907 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-el.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-el/values-el.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,2886", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,2967" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,3905", ++ "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", ++ "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,3986" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4639", ++ "endColumns": "100", ++ "endOffsets": "4735" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-el/values-el.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,215,291,361,445,517,585,663,744,828,920,992,1074,1161,1245,1330,1413,1493,1564,1634,1722,1794,1874,1948", ++ "endColumns": "73,85,75,69,83,71,67,77,80,83,91,71,81,86,83,84,82,79,70,69,87,71,79,73,81", ++ "endOffsets": "124,210,286,356,440,512,580,658,739,823,915,987,1069,1156,1240,1325,1408,1488,1559,1629,1717,1789,1869,1943,2025" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2886,2960,3046,3122,3192,3276,3348,3416,3494,3575,3659,3751,3823,3991,4078,4162,4247,4330,4410,4481,4551,4740,4812,4892,4966", ++ "endColumns": "73,85,75,69,83,71,67,77,80,83,91,71,81,86,83,84,82,79,70,69,87,71,79,73,81", ++ "endOffsets": "2955,3041,3117,3187,3271,3343,3411,3489,3570,3654,3746,3818,3900,4073,4157,4242,4325,4405,4476,4546,4634,4807,4887,4961,5043" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rAU.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rAU.json +new file mode 100644 +index 0000000..c510af1 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rAU.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-en-rAU/values-en-rAU.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-en-rAU/values-en-rAU.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rCA.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rCA.json +new file mode 100644 +index 0000000..ba9e81d +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rCA.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-en-rCA/values-en-rCA.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-en-rCA/values-en-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rGB.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rGB.json +new file mode 100644 +index 0000000..1c5a151 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rGB.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-en-rGB/values-en-rGB.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,36", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,3311", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,3389" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,131,214,288,364,446,526,604,684,758", ++ "endColumns": "75,82,73,75,81,79,77,79,73,73", ++ "endOffsets": "126,209,283,359,441,521,599,679,753,827" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,37,39,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2762,2838,2921,2995,3071,3153,3233,3394,3575,3649", ++ "endColumns": "75,82,73,75,81,79,77,79,73,73", ++ "endOffsets": "2833,2916,2990,3066,3148,3228,3306,3469,3644,3718" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-en-rGB/values-en-rGB.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "38", ++ "startColumns": "4", ++ "startOffsets": "3474", ++ "endColumns": "100", ++ "endOffsets": "3570" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rIN.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rIN.json +new file mode 100644 +index 0000000..2d7469d +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rIN.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-en-rIN/values-en-rIN.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", ++ "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", ++ "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-en-rIN/values-en-rIN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2845", ++ "endColumns": "100", ++ "endOffsets": "2941" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rXC.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rXC.json +new file mode 100644 +index 0000000..61a1b38 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-en-rXC.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-en-rXC/values-en-rXC.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "203", ++ "endOffsets": "254" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "5714", ++ "endColumns": "203", ++ "endOffsets": "5913" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-en-rXC/values-en-rXC.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,5528", ++ "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185", ++ "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,5709" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-es-rES.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-es-rES.json +new file mode 100644 +index 0000000..3aafa3d +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-es-rES.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-es-rES/values-es-rES.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-es-rES/values-es-rES.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,208,283,353,436,505,572,651,735,822,916,988,1079,1166,1242,1325,1406,1484,1563,1638,1728,1801,1884,1960", ++ "endColumns": "69,82,74,69,82,68,66,78,83,86,93,71,90,86,75,82,80,77,78,74,89,72,82,75,86", ++ "endOffsets": "120,203,278,348,431,500,567,646,730,817,911,983,1074,1161,1237,1320,1401,1479,1558,1633,1723,1796,1879,1955,2042" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-es-rUS.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-es-rUS.json +new file mode 100644 +index 0000000..d7e11a6 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-es-rUS.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-es-rUS/values-es-rUS.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2904", ++ "endColumns": "100", ++ "endOffsets": "3000" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-es-rUS/values-es-rUS.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,334,442,527,629,745,830,910,1001,1094,1189,1283,1382,1475,1574,1670,1761,1852,1934,2041,2140,2239,2347,2455,2562,2721,2821", ++ "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", ++ "endOffsets": "220,329,437,522,624,740,825,905,996,1089,1184,1278,1377,1470,1569,1665,1756,1847,1929,2036,2135,2234,2342,2450,2557,2716,2816,2899" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-es.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-es.json +new file mode 100644 +index 0000000..40196a4 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-es.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-es/values-es.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,208,283,353,436,505,572,652,735,822,917,989,1080,1164,1240,1323,1405,1480,1559,1634,1724,1797,1880,1956", ++ "endColumns": "69,82,74,69,82,68,66,79,82,86,94,71,90,83,75,82,81,74,78,74,89,72,82,75,86", ++ "endOffsets": "120,203,278,348,431,500,567,647,730,817,912,984,1075,1159,1235,1318,1400,1475,1554,1629,1719,1792,1875,1951,2038" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2836,2906,2989,3064,3134,3217,3286,3353,3433,3516,3603,3698,3770,3944,4028,4104,4187,4269,4344,4423,4498,4689,4762,4845,4921", ++ "endColumns": "69,82,74,69,82,68,66,79,82,86,94,71,90,83,75,82,81,74,78,74,89,72,82,75,86", ++ "endOffsets": "2901,2984,3059,3129,3212,3281,3348,3428,3511,3598,3693,3765,3856,4023,4099,4182,4264,4339,4418,4493,4583,4757,4840,4916,5003" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4588", ++ "endColumns": "100", ++ "endOffsets": "4684" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-es/values-es.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,2836", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,2914" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,3861", ++ "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", ++ "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,3939" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-et.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-et.json +new file mode 100644 +index 0000000..4af7f53 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-et.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-et/values-et.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,2827", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,2905" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,41", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,3738", ++ "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", ++ "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,3816" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,126,201,274,342,422,490,565,643,725,813,887,966,1047,1124,1207,1290,1368,1442,1513,1596,1671,1755,1825", ++ "endColumns": "70,74,72,67,79,67,74,77,81,87,73,78,80,76,82,82,77,73,70,82,74,83,69,78", ++ "endOffsets": "121,196,269,337,417,485,560,638,720,808,882,961,1042,1119,1202,1285,1363,1437,1508,1591,1666,1750,1820,1899" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,51,52,53,54", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2827,2898,2973,3046,3114,3194,3262,3337,3415,3497,3585,3659,3821,3902,3979,4062,4145,4223,4297,4368,4552,4627,4711,4781", ++ "endColumns": "70,74,72,67,79,67,74,77,81,87,73,78,80,76,82,82,77,73,70,82,74,83,69,78", ++ "endOffsets": "2893,2968,3041,3109,3189,3257,3332,3410,3492,3580,3654,3733,3897,3974,4057,4140,4218,4292,4363,4446,4622,4706,4776,4855" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-et/values-et.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "4451", ++ "endColumns": "100", ++ "endOffsets": "4547" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-eu.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-eu.json +new file mode 100644 +index 0000000..e5247c5 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-eu.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-eu/values-eu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2933", ++ "endColumns": "100", ++ "endOffsets": "3029" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-eu/values-eu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,312,422,508,614,738,824,905,997,1091,1187,1281,1382,1476,1572,1669,1761,1854,1936,2045,2154,2253,2362,2469,2580,2751,2850", ++ "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", ++ "endOffsets": "209,307,417,503,609,733,819,900,992,1086,1182,1276,1377,1471,1567,1664,1756,1849,1931,2040,2149,2248,2357,2464,2575,2746,2845,2928" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fa.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fa.json +new file mode 100644 +index 0000000..8004f21 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fa.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-fa/values-fa.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4464", ++ "endColumns": "100", ++ "endOffsets": "4560" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,201,273,342,423,491,557,631,706,787,868,937,1016,1094,1168,1250,1331,1410,1483,1554,1642,1713,1789,1861", ++ "endColumns": "68,76,71,68,80,67,65,73,74,80,80,68,78,77,73,81,80,78,72,70,87,70,75,71,75", ++ "endOffsets": "119,196,268,337,418,486,552,626,701,782,863,932,1011,1089,1163,1245,1326,1405,1478,1549,1637,1708,1784,1856,1932" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2795,2864,2941,3013,3082,3163,3231,3297,3371,3446,3527,3608,3677,3838,3916,3990,4072,4153,4232,4305,4376,4565,4636,4712,4784", ++ "endColumns": "68,76,71,68,80,67,65,73,74,80,80,68,78,77,73,81,80,78,72,70,87,70,75,71,75", ++ "endOffsets": "2859,2936,3008,3077,3158,3226,3292,3366,3441,3522,3603,3672,3751,3911,3985,4067,4148,4227,4300,4371,4459,4631,4707,4779,4855" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-fa/values-fa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,2795", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,2872" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,3756", ++ "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", ++ "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,3833" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fi.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fi.json +new file mode 100644 +index 0000000..ede1cc3 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fi.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-fi/values-fi.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,2775", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,2851" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,3775", ++ "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", ++ "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,3851" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,126,208,280,348,431,500,570,649,728,813,899,973,1055,1139,1215,1300,1384,1464,1543,1618,1703,1779,1859,1930", ++ "endColumns": "70,81,71,67,82,68,69,78,78,84,85,73,81,83,75,84,83,79,78,74,84,75,79,70,78", ++ "endOffsets": "121,203,275,343,426,495,565,644,723,808,894,968,1050,1134,1210,1295,1379,1459,1538,1613,1698,1774,1854,1925,2004" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2775,2846,2928,3000,3068,3151,3220,3290,3369,3448,3533,3619,3693,3856,3940,4016,4101,4185,4265,4344,4419,4605,4681,4761,4832", ++ "endColumns": "70,81,71,67,82,68,69,78,78,84,85,73,81,83,75,84,83,79,78,74,84,75,79,70,78", ++ "endOffsets": "2841,2923,2995,3063,3146,3215,3285,3364,3443,3528,3614,3688,3770,3935,4011,4096,4180,4260,4339,4414,4499,4676,4756,4827,4906" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-fi/values-fi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4504", ++ "endColumns": "100", ++ "endOffsets": "4600" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fr-rCA.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fr-rCA.json +new file mode 100644 +index 0000000..2ac97aa +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fr-rCA.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-fr-rCA/values-fr-rCA.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4480", ++ "endColumns": "100", ++ "endOffsets": "4576" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,205,275,358,425,504,585,675,767,838,926,1021,1112,1192,1272,1355,1432,1505,1593,1665,1748,1821", ++ "endColumns": "69,79,69,82,66,78,80,89,91,70,87,94,90,79,79,82,76,72,87,71,82,72,79", ++ "endOffsets": "120,200,270,353,420,499,580,670,762,833,921,1016,1107,1187,1267,1350,1427,1500,1588,1660,1743,1816,1896" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2855,2925,3005,3075,3158,3225,3304,3385,3475,3567,3638,3813,3908,3999,4079,4159,4242,4319,4392,4581,4653,4736,4809", ++ "endColumns": "69,79,69,82,66,78,80,89,91,70,87,94,90,79,79,82,76,72,87,71,82,72,79", ++ "endOffsets": "2920,3000,3070,3153,3220,3299,3380,3470,3562,3633,3721,3903,3994,4074,4154,4237,4314,4387,4475,4648,4731,4804,4884" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-fr-rCA/values-fr-rCA.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,2855", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,2937" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,3726", ++ "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,3808" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fr.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fr.json +new file mode 100644 +index 0000000..71cd07d +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-fr.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-fr/values-fr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4446", ++ "endColumns": "100", ++ "endOffsets": "4542" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,208,278,361,428,507,589,679,771,842,929,1004,1091,1171,1251,1326,1403,1476,1567,1646,1727,1799", ++ "endColumns": "69,82,69,82,66,78,81,89,91,70,86,74,86,79,79,74,76,72,90,78,80,71,79", ++ "endOffsets": "120,203,273,356,423,502,584,674,766,837,924,999,1086,1166,1246,1321,1398,1471,1562,1641,1722,1794,1874" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2847,2917,3000,3070,3153,3220,3299,3381,3471,3563,3634,3808,3883,3970,4050,4130,4205,4282,4355,4547,4626,4707,4779", ++ "endColumns": "69,82,69,82,66,78,81,89,91,70,86,74,86,79,79,74,76,72,90,78,80,71,79", ++ "endOffsets": "2912,2995,3065,3148,3215,3294,3376,3466,3558,3629,3716,3878,3965,4045,4125,4200,4277,4350,4441,4621,4702,4774,4854" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-fr/values-fr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,2847", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,2929" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,3721", ++ "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", ++ "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,3803" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-gl.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-gl.json +new file mode 100644 +index 0000000..f1e063e +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-gl.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-gl/values-gl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,209,313,421,506,607,735,821,902,994,1088,1185,1279,1379,1473,1569,1664,1756,1848,1929,2037,2144,2251,2360,2465,2579,2756,2855", ++ "endColumns": "103,103,107,84,100,127,85,80,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", ++ "endOffsets": "204,308,416,501,602,730,816,897,989,1083,1180,1274,1374,1468,1564,1659,1751,1843,1924,2032,2139,2246,2355,2460,2574,2751,2850,2933" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-gl/values-gl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2938", ++ "endColumns": "100", ++ "endOffsets": "3034" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-gu.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-gu.json +new file mode 100644 +index 0000000..b5204be +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-gu.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-gu/values-gu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,203,274,342,421,488,555,629,705,785,866,934,1013,1091,1166,1245,1325,1405,1476,1547,1646,1718,1793,1862", ++ "endColumns": "68,78,70,67,78,66,66,73,75,79,80,67,78,77,74,78,79,79,70,70,98,71,74,68,72", ++ "endOffsets": "119,198,269,337,416,483,550,624,700,780,861,929,1008,1086,1161,1240,1320,1400,1471,1542,1641,1713,1788,1857,1930" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2788,2857,2936,3007,3075,3154,3221,3288,3362,3438,3518,3599,3667,3827,3905,3980,4059,4139,4219,4290,4361,4561,4633,4708,4777", ++ "endColumns": "68,78,70,67,78,66,66,73,75,79,80,67,78,77,74,78,79,79,70,70,98,71,74,68,72", ++ "endOffsets": "2852,2931,3002,3070,3149,3216,3283,3357,3433,3513,3594,3662,3741,3900,3975,4054,4134,4214,4285,4356,4455,4628,4703,4772,4845" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4460", ++ "endColumns": "100", ++ "endOffsets": "4556" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-gu/values-gu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,2788", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,2864" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,3746", ++ "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", ++ "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,3822" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-h720dp-v13.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-h720dp-v13.json +new file mode 100644 +index 0000000..da4461f +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-h720dp-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-h720dp-v13/values-h720dp-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-h720dp-v13/values-h720dp-v13.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "66", ++ "endOffsets": "117" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hdpi-v4.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hdpi-v4.json +new file mode 100644 +index 0000000..7bfd1da +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hdpi-v4.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-hdpi-v4/values-hdpi-v4.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-hdpi-v4/values-hdpi-v4.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "6", ++ "endColumns": "13", ++ "endOffsets": "327" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hi.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hi.json +new file mode 100644 +index 0000000..9bc7642 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hi.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-hi/values-hi.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,2787", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,2864" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,3750", ++ "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", ++ "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,3827" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4468", ++ "endColumns": "100", ++ "endOffsets": "4564" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-hi/values-hi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,203,274,343,423,490,557,631,707,790,871,939,1018,1096,1171,1258,1344,1419,1493,1567,1654,1726,1801,1870", ++ "endColumns": "68,78,70,68,79,66,66,73,75,82,80,67,78,77,74,86,85,74,73,73,86,71,74,68,72", ++ "endOffsets": "119,198,269,338,418,485,552,626,702,785,866,934,1013,1091,1166,1253,1339,1414,1488,1562,1649,1721,1796,1865,1938" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2787,2856,2935,3006,3075,3155,3222,3289,3363,3439,3522,3603,3671,3832,3910,3985,4072,4158,4233,4307,4381,4569,4641,4716,4785", ++ "endColumns": "68,78,70,68,79,66,66,73,75,82,80,67,78,77,74,86,85,74,73,73,86,71,74,68,72", ++ "endOffsets": "2851,2930,3001,3070,3150,3217,3284,3358,3434,3517,3598,3666,3745,3905,3980,4067,4153,4228,4302,4376,4463,4636,4711,4780,4853" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hr.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hr.json +new file mode 100644 +index 0000000..bbd747a +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hr.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-hr/values-hr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4560", ++ "endColumns": "100", ++ "endOffsets": "4656" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,2816", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,2896" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,3831", ++ "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", ++ "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,3911" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-hr/values-hr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,213,287,356,437,504,575,656,739,823,912,984,1070,1153,1229,1309,1391,1470,1548,1624,1714,1787,1866,1944", ++ "endColumns": "73,83,73,68,80,66,70,80,82,83,88,71,85,82,75,79,81,78,77,75,89,72,78,77,80", ++ "endOffsets": "124,208,282,351,432,499,570,651,734,818,907,979,1065,1148,1224,1304,1386,1465,1543,1619,1709,1782,1861,1939,2020" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2816,2890,2974,3048,3117,3198,3265,3336,3417,3500,3584,3673,3745,3916,3999,4075,4155,4237,4316,4394,4470,4661,4734,4813,4891", ++ "endColumns": "73,83,73,68,80,66,70,80,82,83,88,71,85,82,75,79,81,78,77,75,89,72,78,77,80", ++ "endOffsets": "2885,2969,3043,3112,3193,3260,3331,3412,3495,3579,3668,3740,3826,3994,4070,4150,4232,4311,4389,4465,4555,4729,4808,4886,4967" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hu.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hu.json +new file mode 100644 +index 0000000..ec0a78a +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hu.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-hu/values-hu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,133,215,286,353,432,505,572,645,720,803,892,963,1041,1120,1198,1283,1364,1440,1510,1579,1671,1746,1828,1899", ++ "endColumns": "77,81,70,66,78,72,66,72,74,82,88,70,77,78,77,84,80,75,69,68,91,74,81,70,74", ++ "endOffsets": "128,210,281,348,427,500,567,640,715,798,887,958,1036,1115,1193,1278,1359,1435,1505,1574,1666,1741,1823,1894,1969" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2859,2937,3019,3090,3157,3236,3309,3376,3449,3524,3607,3696,3767,3929,4008,4086,4171,4252,4328,4398,4467,4660,4735,4817,4888", ++ "endColumns": "77,81,70,66,78,72,66,72,74,82,88,70,77,78,77,84,80,75,69,68,91,74,81,70,74", ++ "endOffsets": "2932,3014,3085,3152,3231,3304,3371,3444,3519,3602,3691,3762,3840,4003,4081,4166,4247,4323,4393,4462,4554,4730,4812,4883,4958" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,2859", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,2938" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,3845", ++ "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", ++ "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,3924" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-hu/values-hu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4559", ++ "endColumns": "100", ++ "endOffsets": "4655" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hy.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hy.json +new file mode 100644 +index 0000000..c404772 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-hy.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-hy/values-hy.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,132,200,281,349,421,496", ++ "endColumns": "76,67,80,67,71,74,73", ++ "endOffsets": "127,195,276,344,416,491,565" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2814,2891,2959,3040,3108,3263,3338", ++ "endColumns": "76,67,80,67,71,74,73", ++ "endOffsets": "2886,2954,3035,3103,3175,3333,3407" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,2814", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,2892" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,3180", ++ "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", ++ "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,3258" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-hy/values-hy.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3412", ++ "endColumns": "100", ++ "endOffsets": "3508" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-in.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-in.json +new file mode 100644 +index 0000000..b30499b +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-in.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-in/values-in.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,324,429,516,620,736,819,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1920,2023,2128,2229,2333,2442,2550,2710,2809", ++ "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", ++ "endOffsets": "215,319,424,511,615,731,814,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1915,2018,2123,2224,2328,2437,2545,2705,2804,2889" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-in/values-in.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2894", ++ "endColumns": "100", ++ "endOffsets": "2990" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-is.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-is.json +new file mode 100644 +index 0000000..ab3325b +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-is.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-is/values-is.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,205,302,414,499,600,714,795,874,965,1058,1151,1245,1351,1444,1539,1634,1725,1819,1900,2010,2117,2214,2323,2423,2526,2681,2779", ++ "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", ++ "endOffsets": "200,297,409,494,595,709,790,869,960,1053,1146,1240,1346,1439,1534,1629,1720,1814,1895,2005,2112,2209,2318,2418,2521,2676,2774,2855" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-is/values-is.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2860", ++ "endColumns": "100", ++ "endOffsets": "2956" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-it.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-it.json +new file mode 100644 +index 0000000..2c27f9c +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-it.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-it/values-it.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "48", ++ "startColumns": "4", ++ "startOffsets": "4315", ++ "endColumns": "100", ++ "endOffsets": "4411" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,2799", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,2876" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,39", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,3607", ++ "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", ++ "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,3684" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-it/values-it.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,280,352,440,520,604,694,775,863,949,1026,1106,1185,1260,1330,1399,1489,1564,1645", ++ "endColumns": "69,83,70,71,87,79,83,89,80,87,85,76,79,78,74,69,68,89,74,80,86", ++ "endOffsets": "120,204,275,347,435,515,599,689,770,858,944,1021,1101,1180,1255,1325,1394,1484,1559,1640,1727" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,40,41,42,43,44,45,46,47,49,50,51", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2799,2869,2953,3024,3096,3184,3264,3348,3438,3519,3689,3775,3852,3932,4011,4086,4156,4225,4416,4491,4572", ++ "endColumns": "69,83,70,71,87,79,83,89,80,87,85,76,79,78,74,69,68,89,74,80,86", ++ "endOffsets": "2864,2948,3019,3091,3179,3259,3343,3433,3514,3602,3770,3847,3927,4006,4081,4151,4220,4310,4486,4567,4654" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-iw.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-iw.json +new file mode 100644 +index 0000000..906a447 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-iw.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-iw/values-iw.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4429", ++ "endColumns": "100", ++ "endOffsets": "4525" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,2761", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,2838" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,3730", ++ "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", ++ "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,3807" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-iw/values-iw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,202,272,341,422,490,558,636,714,796,875,946,1024,1104,1177,1257,1335,1410,1482,1554,1641,1712,1791,1860", ++ "endColumns": "68,77,69,68,80,67,67,77,77,81,78,70,77,79,72,79,77,74,71,71,86,70,78,68,74", ++ "endOffsets": "119,197,267,336,417,485,553,631,709,791,870,941,1019,1099,1172,1252,1330,1405,1477,1549,1636,1707,1786,1855,1930" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2761,2830,2908,2978,3047,3128,3196,3264,3342,3420,3502,3581,3652,3812,3892,3965,4045,4123,4198,4270,4342,4530,4601,4680,4749", ++ "endColumns": "68,77,69,68,80,67,67,77,77,81,78,70,77,79,72,79,77,74,71,71,86,70,78,68,74", ++ "endOffsets": "2825,2903,2973,3042,3123,3191,3259,3337,3415,3497,3576,3647,3725,3887,3960,4040,4118,4193,4265,4337,4424,4596,4675,4744,4819" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ja.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ja.json +new file mode 100644 +index 0000000..30a81e7 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ja.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ja/values-ja.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,123,197,265,331,407,473,540,612,687,763,839,906,981,1056,1128,1205,1281,1353,1423,1492,1570,1638,1709,1777", ++ "endColumns": "67,73,67,65,75,65,66,71,74,75,75,66,74,74,71,76,75,71,69,68,77,67,70,67,70", ++ "endOffsets": "118,192,260,326,402,468,535,607,682,758,834,901,976,1051,1123,1200,1276,1348,1418,1487,1565,1633,1704,1772,1843" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2691,2759,2833,2901,2967,3043,3109,3176,3248,3323,3399,3475,3542,3696,3771,3843,3920,3996,4068,4138,4207,4386,4454,4525,4593", ++ "endColumns": "67,73,67,65,75,65,66,71,74,75,75,66,74,74,71,76,75,71,69,68,77,67,70,67,70", ++ "endOffsets": "2754,2828,2896,2962,3038,3104,3171,3243,3318,3394,3470,3537,3612,3766,3838,3915,3991,4063,4133,4202,4280,4449,4520,4588,4659" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,2691", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,2765" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,3617", ++ "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", ++ "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,3691" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ja/values-ja.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4285", ++ "endColumns": "100", ++ "endOffsets": "4381" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ka.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ka.json +new file mode 100644 +index 0000000..c56bd11 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ka.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ka/values-ka.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,2808", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,2885" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,41", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,3739", ++ "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", ++ "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,3816" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,202,278,368,436,504,581,662,746,826,898,986,1073,1152,1233,1313,1390,1468,1542,1626,1700,1780,1851", ++ "endColumns": "74,71,75,89,67,67,76,80,83,79,71,87,86,78,80,79,76,77,73,83,73,79,70,82", ++ "endOffsets": "125,197,273,363,431,499,576,657,741,821,893,981,1068,1147,1228,1308,1385,1463,1537,1621,1695,1775,1846,1929" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,51,52,53,54", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2808,2883,2955,3031,3121,3189,3257,3334,3415,3499,3579,3651,3821,3908,3987,4068,4148,4225,4303,4377,4562,4636,4716,4787", ++ "endColumns": "74,71,75,89,67,67,76,80,83,79,71,87,86,78,80,79,76,77,73,83,73,79,70,82", ++ "endOffsets": "2878,2950,3026,3116,3184,3252,3329,3410,3494,3574,3646,3734,3903,3982,4063,4143,4220,4298,4372,4456,4631,4711,4782,4865" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ka/values-ka.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "4461", ++ "endColumns": "100", ++ "endOffsets": "4557" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-kk.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-kk.json +new file mode 100644 +index 0000000..dd2f668 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-kk.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-kk/values-kk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,141,211,294,364,432,507", ++ "endColumns": "85,69,82,69,67,74,72", ++ "endOffsets": "136,206,289,359,427,502,575" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2796,2882,2952,3035,3105,3255,3330", ++ "endColumns": "85,69,82,69,67,74,72", ++ "endOffsets": "2877,2947,3030,3100,3168,3325,3398" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3403", ++ "endColumns": "100", ++ "endOffsets": "3499" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-kk/values-kk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,2796", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,2873" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,3173", ++ "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", ++ "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,3250" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-km.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-km.json +new file mode 100644 +index 0000000..8d72f73 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-km.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-km/values-km.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,211,283,353,437,503,572,648,725,808,888,959,1036,1118,1195,1278,1360,1436,1507,1577,1670,1749,1823,1902", ++ "endColumns": "72,82,71,69,83,65,68,75,76,82,79,70,76,81,76,82,81,75,70,69,92,78,73,78,76", ++ "endOffsets": "123,206,278,348,432,498,567,643,720,803,883,954,1031,1113,1190,1273,1355,1431,1502,1572,1665,1744,1818,1897,1974" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2793,2866,2949,3021,3091,3175,3241,3310,3386,3463,3546,3626,3697,3858,3940,4017,4100,4182,4258,4329,4399,4593,4672,4746,4825", ++ "endColumns": "72,82,71,69,83,65,68,75,76,82,79,70,76,81,76,82,81,75,70,69,92,78,73,78,76", ++ "endOffsets": "2861,2944,3016,3086,3170,3236,3305,3381,3458,3541,3621,3692,3769,3935,4012,4095,4177,4253,4324,4394,4487,4667,4741,4820,4897" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4492", ++ "endColumns": "100", ++ "endOffsets": "4588" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-km/values-km.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,2793", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,2872" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,3774", ++ "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", ++ "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,3853" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-kn.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-kn.json +new file mode 100644 +index 0000000..00d87be +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-kn.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-kn/values-kn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,2859", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,2937" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,3835", ++ "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", ++ "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,3913" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,127,206,278,347,428,496,563,638,713,798,879,950,1031,1111,1189,1271,1358,1435,1506,1576,1671,1743,1821,1890", ++ "endColumns": "71,78,71,68,80,67,66,74,74,84,80,70,80,79,77,81,86,76,70,69,94,71,77,68,74", ++ "endOffsets": "122,201,273,342,423,491,558,633,708,793,874,945,1026,1106,1184,1266,1353,1430,1501,1571,1666,1738,1816,1885,1960" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2859,2931,3010,3082,3151,3232,3300,3367,3442,3517,3602,3683,3754,3918,3998,4076,4158,4245,4322,4393,4463,4659,4731,4809,4878", ++ "endColumns": "71,78,71,68,80,67,66,74,74,84,80,70,80,79,77,81,86,76,70,69,94,71,77,68,74", ++ "endOffsets": "2926,3005,3077,3146,3227,3295,3362,3437,3512,3597,3678,3749,3830,3993,4071,4153,4240,4317,4388,4458,4553,4726,4804,4873,4948" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-kn/values-kn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4558", ++ "endColumns": "100", ++ "endOffsets": "4654" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ko.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ko.json +new file mode 100644 +index 0000000..dd4e030 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ko.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ko/values-ko.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4271", ++ "endColumns": "100", ++ "endOffsets": "4367" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,2685", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,2759" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,3599", ++ "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", ++ "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,3673" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ko/values-ko.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,121,193,260,327,404,469,534,606,678,755,830,896,969,1043,1116,1193,1269,1341,1411,1480,1562,1630,1701,1768", ++ "endColumns": "65,71,66,66,76,64,64,71,71,76,74,65,72,73,72,76,75,71,69,68,81,67,70,66,71", ++ "endOffsets": "116,188,255,322,399,464,529,601,673,750,825,891,964,1038,1111,1188,1264,1336,1406,1475,1557,1625,1696,1763,1835" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2685,2751,2823,2890,2957,3034,3099,3164,3236,3308,3385,3460,3526,3678,3752,3825,3902,3978,4050,4120,4189,4372,4440,4511,4578", ++ "endColumns": "65,71,66,66,76,64,64,71,71,76,74,65,72,73,72,76,75,71,69,68,81,67,70,66,71", ++ "endOffsets": "2746,2818,2885,2952,3029,3094,3159,3231,3303,3380,3455,3521,3594,3747,3820,3897,3973,4045,4115,4184,4266,4435,4506,4573,4645" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ky.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ky.json +new file mode 100644 +index 0000000..6ba29cc +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ky.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ky/values-ky.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,2817", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,2894" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,3194", ++ "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", ++ "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,3271" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3420", ++ "endColumns": "100", ++ "endOffsets": "3516" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ky/values-ky.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,143,212,295,365,432,504", ++ "endColumns": "87,68,82,69,66,71,71", ++ "endOffsets": "138,207,290,360,427,499,571" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2817,2905,2974,3057,3127,3276,3348", ++ "endColumns": "87,68,82,69,66,71,71", ++ "endOffsets": "2900,2969,3052,3122,3189,3343,3415" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-land.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-land.json +new file mode 100644 +index 0000000..a537393 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-land.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-land/values-land.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-land/values-land.xml", ++ "from": { ++ "startLines": "2,3,4", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,125,196", ++ "endColumns": "69,70,67", ++ "endOffsets": "120,191,259" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-large-v4.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-large-v4.json +new file mode 100644 +index 0000000..2223c2d +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-large-v4.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-large-v4/values-large-v4.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-large-v4/values-large-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,114,185,256,326,396,464,532,636", ++ "endColumns": "58,70,70,69,69,67,67,103,115", ++ "endOffsets": "109,180,251,321,391,459,527,631,747" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ldltr-v21.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ldltr-v21.json +new file mode 100644 +index 0000000..8e72361 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ldltr-v21.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ldltr-v21/values-ldltr-v21.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ldltr-v21/values-ldltr-v21.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "112", ++ "endOffsets": "163" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-lo.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-lo.json +new file mode 100644 +index 0000000..89c97db +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-lo.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-lo/values-lo.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3358", ++ "endColumns": "100", ++ "endOffsets": "3454" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,2772", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,2849" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,3134", ++ "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", ++ "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,3211" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-lo/values-lo.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,131,201,283,350,417,488", ++ "endColumns": "75,69,81,66,66,70,70", ++ "endOffsets": "126,196,278,345,412,483,554" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2772,2848,2918,3000,3067,3216,3287", ++ "endColumns": "75,69,81,66,66,70,70", ++ "endOffsets": "2843,2913,2995,3062,3129,3282,3353" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-lt.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-lt.json +new file mode 100644 +index 0000000..c36bcae +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-lt.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-lt/values-lt.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,213,286,357,444,514,582,660,742,824,905,979,1062,1146,1224,1307,1390,1466,1542,1616,1713,1788,1870,1943", ++ "endColumns": "72,84,72,70,86,69,67,77,81,81,80,73,82,83,77,82,82,75,75,73,96,74,81,72,79", ++ "endOffsets": "123,208,281,352,439,509,577,655,737,819,900,974,1057,1141,1219,1302,1385,1461,1537,1611,1708,1783,1865,1938,2018" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2874,2947,3032,3105,3176,3263,3333,3401,3479,3561,3643,3724,3798,3965,4049,4127,4210,4293,4369,4445,4519,4717,4792,4874,4947", ++ "endColumns": "72,84,72,70,86,69,67,77,81,81,80,73,82,83,77,82,82,75,75,73,96,74,81,72,79", ++ "endOffsets": "2942,3027,3100,3171,3258,3328,3396,3474,3556,3638,3719,3793,3876,4044,4122,4205,4288,4364,4440,4514,4611,4787,4869,4942,5022" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,2874", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,2953" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,3881", ++ "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", ++ "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,3960" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-lt/values-lt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4616", ++ "endColumns": "100", ++ "endOffsets": "4712" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-lv.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-lv.json +new file mode 100644 +index 0000000..6f6bae1 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-lv.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-lv/values-lv.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4715", ++ "endColumns": "100", ++ "endOffsets": "4811" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,2989", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,3067" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,3997", ++ "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", ++ "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,4075" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-lv/values-lv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,215,290,360,442,510,580,659,741,825,908,978,1063,1144,1221,1303,1384,1460,1536,1611,1698,1776,1856,1928", ++ "endColumns": "73,85,74,69,81,67,69,78,81,83,82,69,84,80,76,81,80,75,75,74,86,77,79,71,73", ++ "endOffsets": "124,210,285,355,437,505,575,654,736,820,903,973,1058,1139,1216,1298,1379,1455,1531,1606,1693,1771,1851,1923,1997" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2989,3063,3149,3224,3294,3376,3444,3514,3593,3675,3759,3842,3912,4080,4161,4238,4320,4401,4477,4553,4628,4816,4894,4974,5046", ++ "endColumns": "73,85,74,69,81,67,69,78,81,83,82,69,84,80,76,81,80,75,75,74,86,77,79,71,73", ++ "endOffsets": "3058,3144,3219,3289,3371,3439,3509,3588,3670,3754,3837,3907,3992,4156,4233,4315,4396,4472,4548,4623,4710,4889,4969,5041,5115" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-mk.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-mk.json +new file mode 100644 +index 0000000..a362b1a +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-mk.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-mk/values-mk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4553", ++ "endColumns": "100", ++ "endOffsets": "4649" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,2820", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,2900" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,3823", ++ "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", ++ "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,3903" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-mk/values-mk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,133,216,289,358,440,508,575,651,734,821,901,974,1058,1142,1219,1300,1382,1458,1535,1610,1703,1775,1859,1929", ++ "endColumns": "77,82,72,68,81,67,66,75,82,86,79,72,83,83,76,80,81,75,76,74,92,71,83,69,80", ++ "endOffsets": "128,211,284,353,435,503,570,646,729,816,896,969,1053,1137,1214,1295,1377,1453,1530,1605,1698,1770,1854,1924,2005" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2820,2898,2981,3054,3123,3205,3273,3340,3416,3499,3586,3666,3739,3908,3992,4069,4150,4232,4308,4385,4460,4654,4726,4810,4880", ++ "endColumns": "77,82,72,68,81,67,66,75,82,86,79,72,83,83,76,80,81,75,76,74,92,71,83,69,80", ++ "endOffsets": "2893,2976,3049,3118,3200,3268,3335,3411,3494,3581,3661,3734,3818,3987,4064,4145,4227,4303,4380,4455,4548,4721,4805,4875,4956" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ml.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ml.json +new file mode 100644 +index 0000000..7ad76e8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ml.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ml/values-ml.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,2854", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,2932" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,3833", ++ "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", ++ "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,3911" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4565", ++ "endColumns": "100", ++ "endOffsets": "4661" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ml/values-ml.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,127,207,282,352,435,504,571,645,720,801,885,954,1034,1116,1196,1278,1364,1442,1515,1587,1683,1756,1836,1904", ++ "endColumns": "71,79,74,69,82,68,66,73,74,80,83,68,79,81,79,81,85,77,72,71,95,72,79,67,72", ++ "endOffsets": "122,202,277,347,430,499,566,640,715,796,880,949,1029,1111,1191,1273,1359,1437,1510,1582,1678,1751,1831,1899,1972" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2854,2926,3006,3081,3151,3234,3303,3370,3444,3519,3600,3684,3753,3916,3998,4078,4160,4246,4324,4397,4469,4666,4739,4819,4887", ++ "endColumns": "71,79,74,69,82,68,66,73,74,80,83,68,79,81,79,81,85,77,72,71,95,72,79,67,72", ++ "endOffsets": "2921,3001,3076,3146,3229,3298,3365,3439,3514,3595,3679,3748,3828,3993,4073,4155,4241,4319,4392,4464,4560,4734,4814,4882,4955" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-mn.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-mn.json +new file mode 100644 +index 0000000..d6dc4c8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-mn.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-mn/values-mn.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,2797", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,2873" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,3163", ++ "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", ++ "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,3239" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3395", ++ "endColumns": "100", ++ "endOffsets": "3491" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-mn/values-mn.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,135,204,285,355,421,497", ++ "endColumns": "79,68,80,69,65,75,74", ++ "endOffsets": "130,199,280,350,416,492,567" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2797,2877,2946,3027,3097,3244,3320", ++ "endColumns": "79,68,80,69,65,75,74", ++ "endOffsets": "2872,2941,3022,3092,3158,3315,3390" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-mr.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-mr.json +new file mode 100644 +index 0000000..e24dc99 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-mr.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-mr/values-mr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4478", ++ "endColumns": "100", ++ "endOffsets": "4574" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,322,429,519,620,732,810,887,978,1071,1164,1261,1361,1454,1549,1643,1734,1825,1905,2012,2113,2210,2319,2421,2535,2692,2795", ++ "endColumns": "110,105,106,89,100,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,96,108,101,113,156,102,79", ++ "endOffsets": "211,317,424,514,615,727,805,882,973,1066,1159,1256,1356,1449,1544,1638,1729,1820,1900,2007,2108,2205,2314,2416,2530,2687,2790,2870" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,322,429,519,620,732,810,887,978,1071,1164,1261,1361,1454,1549,1643,1734,1825,1905,2012,2113,2210,2319,2421,2535,2692,3760", ++ "endColumns": "110,105,106,89,100,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,96,108,101,113,156,102,79", ++ "endOffsets": "211,317,424,514,615,727,805,882,973,1066,1159,1256,1356,1449,1544,1638,1729,1820,1900,2007,2108,2205,2314,2416,2530,2687,2790,3835" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-mr/values-mr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,203,272,343,425,492,559,633,709,789,869,937,1020,1102,1177,1263,1350,1425,1496,1567,1658,1730,1805,1874", ++ "endColumns": "68,78,68,70,81,66,66,73,75,79,79,67,82,81,74,85,86,74,70,70,90,71,74,68,72", ++ "endOffsets": "119,198,267,338,420,487,554,628,704,784,864,932,1015,1097,1172,1258,1345,1420,1491,1562,1653,1725,1800,1869,1942" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2795,2864,2943,3012,3083,3165,3232,3299,3373,3449,3529,3609,3677,3840,3922,3997,4083,4170,4245,4316,4387,4579,4651,4726,4795", ++ "endColumns": "68,78,68,70,81,66,66,73,75,79,79,67,82,81,74,85,86,74,70,70,90,71,74,68,72", ++ "endOffsets": "2859,2938,3007,3078,3160,3227,3294,3368,3444,3524,3604,3672,3755,3917,3992,4078,4165,4240,4311,4382,4473,4646,4721,4790,4863" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ms.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ms.json +new file mode 100644 +index 0000000..01dcebd +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ms.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ms/values-ms.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4356", ++ "endColumns": "100", ++ "endOffsets": "4452" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,126,204,274,342,424,493,567,643,725,808,885,968,1042,1127,1212,1290,1367,1444,1530,1605,1682,1752", ++ "endColumns": "70,77,69,67,81,68,73,75,81,82,76,82,73,84,84,77,76,76,85,74,76,69,73", ++ "endOffsets": "121,199,269,337,419,488,562,638,720,803,880,963,1037,1122,1207,1285,1362,1439,1525,1600,1677,1747,1821" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2800,2871,2949,3019,3087,3169,3238,3312,3388,3470,3553,3711,3794,3868,3953,4038,4116,4193,4270,4457,4532,4609,4679", ++ "endColumns": "70,77,69,67,81,68,73,75,81,82,76,82,73,84,84,77,76,76,85,74,76,69,73", ++ "endOffsets": "2866,2944,3014,3082,3164,3233,3307,3383,3465,3548,3625,3789,3863,3948,4033,4111,4188,4265,4351,4527,4604,4674,4748" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ms/values-ms.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,2800", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,2876" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,3630", ++ "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", ++ "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,3706" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-my.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-my.json +new file mode 100644 +index 0000000..d169056 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-my.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-my/values-my.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4621", ++ "endColumns": "100", ++ "endOffsets": "4717" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,325,441,528,637,760,839,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1854,1939,2054,2163,2262,2388,2495,2603,2763,2866", ++ "endColumns": "112,106,115,86,108,122,78,77,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "213,320,436,523,632,755,834,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1849,1934,2049,2158,2257,2383,2490,2598,2758,2861,2947" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,325,441,528,637,760,839,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1854,1939,2054,2163,2262,2388,2495,2603,2763,3882", ++ "endColumns": "112,106,115,86,108,122,78,77,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", ++ "endOffsets": "213,320,436,523,632,755,834,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1849,1934,2049,2158,2257,2383,2490,2598,2758,2861,3963" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-my/values-my.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,208,282,353,437,506,574,653,737,827,909,979,1071,1154,1236,1328,1412,1495,1567,1639,1724,1800,1877,1956", ++ "endColumns": "73,78,73,70,83,68,67,78,83,89,81,69,91,82,81,91,83,82,71,71,84,75,76,78,79", ++ "endOffsets": "124,203,277,348,432,501,569,648,732,822,904,974,1066,1149,1231,1323,1407,1490,1562,1634,1719,1795,1872,1951,2031" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2866,2940,3019,3093,3164,3248,3317,3385,3464,3548,3638,3720,3790,3968,4051,4133,4225,4309,4392,4464,4536,4722,4798,4875,4954", ++ "endColumns": "73,78,73,70,83,68,67,78,83,89,81,69,91,82,81,91,83,82,71,71,84,75,76,78,79", ++ "endOffsets": "2935,3014,3088,3159,3243,3312,3380,3459,3543,3633,3715,3785,3877,4046,4128,4220,4304,4387,4459,4531,4616,4793,4870,4949,5029" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-nb.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-nb.json +new file mode 100644 +index 0000000..77d952b +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-nb.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-nb/values-nb.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,303,417,503,603,716,793,868,959,1052,1146,1240,1340,1433,1528,1626,1717,1808,1886,1989,2087,2183,2287,2386,2487,2640,2737", ++ "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", ++ "endOffsets": "203,298,412,498,598,711,788,863,954,1047,1141,1235,1335,1428,1523,1621,1712,1803,1881,1984,2082,2178,2282,2381,2482,2635,2732,2812" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-nb/values-nb.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2817", ++ "endColumns": "100", ++ "endOffsets": "2913" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ne.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ne.json +new file mode 100644 +index 0000000..34cf079 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ne.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ne/values-ne.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,325,433,524,631,751,835,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1937,2050,2151,2247,2360,2470,2587,2754,2865", ++ "endColumns": "108,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "209,320,428,519,626,746,830,909,1000,1093,1188,1282,1382,1475,1570,1664,1755,1846,1932,2045,2146,2242,2355,2465,2582,2749,2860,2940" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,34", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,325,433,524,631,751,835,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1937,2050,2151,2247,2360,2470,2587,2754,3224", ++ "endColumns": "108,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", ++ "endOffsets": "209,320,428,519,626,746,830,909,1000,1093,1188,1282,1382,1475,1570,1664,1755,1846,1932,2045,2146,2242,2355,2465,2582,2749,2860,3299" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "55,132,200,279,347,414,484", ++ "endColumns": "76,67,78,67,66,69,68", ++ "endOffsets": "127,195,274,342,409,479,548" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,35,36", ++ "startColumns": "4,4,4,4,4,4,4", ++ "startOffsets": "2865,2942,3010,3089,3157,3304,3374", ++ "endColumns": "76,67,78,67,66,69,68", ++ "endOffsets": "2937,3005,3084,3152,3219,3369,3438" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ne/values-ne.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "37", ++ "startColumns": "4", ++ "startOffsets": "3443", ++ "endColumns": "100", ++ "endOffsets": "3539" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-night-v8.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-night-v8.json +new file mode 100644 +index 0000000..6491b4f +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-night-v8.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-night-v8/values-night-v8.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-night-v8/values-night-v8.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,209,293,389,491,593,687", ++ "endColumns": "69,83,83,95,101,101,93,88", ++ "endOffsets": "120,204,288,384,486,588,682,771" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-nl.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-nl.json +new file mode 100644 +index 0000000..0214619 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-nl.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-nl/values-nl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4382", ++ "endColumns": "100", ++ "endOffsets": "4478" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,328,435,520,624,744,822,898,990,1084,1179,1273,1373,1467,1563,1658,1750,1842,1924,2035,2138,2237,2352,2466,2569,2724,2827", ++ "endColumns": "117,104,106,84,103,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "218,323,430,515,619,739,817,893,985,1079,1174,1268,1368,1462,1558,1653,1745,1837,1919,2030,2133,2232,2347,2461,2564,2719,2822,2905" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,223,328,435,520,624,744,822,898,990,1084,1179,1273,1373,1467,1563,1658,1750,1842,1924,2035,2138,2237,2352,2466,2569,2724,3669", ++ "endColumns": "117,104,106,84,103,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", ++ "endOffsets": "218,323,430,515,619,739,817,893,985,1079,1174,1268,1368,1462,1558,1653,1745,1837,1919,2030,2133,2232,2347,2461,2564,2719,2822,3747" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-nl/values-nl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,131,206,274,348,434,508,584,668,747,819,897,975,1049,1136,1220,1297,1368,1438,1527,1605,1690", ++ "endColumns": "75,74,67,73,85,73,75,83,78,71,77,77,73,86,83,76,70,69,88,77,84,73", ++ "endOffsets": "126,201,269,343,429,503,579,663,742,814,892,970,1044,1131,1215,1292,1363,1433,1522,1600,1685,1759" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2827,2903,2978,3046,3120,3206,3280,3356,3440,3519,3591,3752,3830,3904,3991,4075,4152,4223,4293,4483,4561,4646", ++ "endColumns": "75,74,67,73,85,73,75,83,78,71,77,77,73,86,83,76,70,69,88,77,84,73", ++ "endOffsets": "2898,2973,3041,3115,3201,3275,3351,3435,3514,3586,3664,3825,3899,3986,4070,4147,4218,4288,4377,4556,4641,4715" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-or.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-or.json +new file mode 100644 +index 0000000..b307517 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-or.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-or/values-or.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,224,334,441,527,631,751,830,911,1002,1095,1198,1293,1393,1486,1581,1677,1768,1858,1947,2057,2161,2267,2378,2482,2600,2763,2869", ++ "endColumns": "118,109,106,85,103,119,78,80,90,92,102,94,99,92,94,95,90,89,88,109,103,105,110,103,117,162,105,89", ++ "endOffsets": "219,329,436,522,626,746,825,906,997,1090,1193,1288,1388,1481,1576,1672,1763,1853,1942,2052,2156,2262,2373,2477,2595,2758,2864,2954" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-or/values-or.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2959", ++ "endColumns": "100", ++ "endOffsets": "3055" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pa.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pa.json +new file mode 100644 +index 0000000..9b8907e +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pa.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-pa/values-pa.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,126,203,274,343,423,490,557,631,707,790,869,937,1015,1098,1172,1256,1344,1419,1490,1561,1647,1716,1790,1859", ++ "endColumns": "70,76,70,68,79,66,66,73,75,82,78,67,77,82,73,83,87,74,70,70,85,68,73,68,72", ++ "endOffsets": "121,198,269,338,418,485,552,626,702,785,864,932,1010,1093,1167,1251,1339,1414,1485,1556,1642,1711,1785,1854,1927" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2767,2838,2915,2986,3055,3135,3202,3269,3343,3419,3502,3581,3649,3807,3890,3964,4048,4136,4211,4282,4353,4540,4609,4683,4752", ++ "endColumns": "70,76,70,68,79,66,66,73,75,82,78,67,77,82,73,83,87,74,70,70,85,68,73,68,72", ++ "endOffsets": "2833,2910,2981,3050,3130,3197,3264,3338,3414,3497,3576,3644,3722,3885,3959,4043,4131,4206,4277,4348,4434,4604,4678,4747,4820" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,2767", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,2842" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,3727", ++ "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", ++ "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,3802" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-pa/values-pa.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4439", ++ "endColumns": "100", ++ "endOffsets": "4535" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pl.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pl.json +new file mode 100644 +index 0000000..362f99d +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pl.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-pl/values-pl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,132,205,274,359,435,514,597,692,762,847,933,1008,1090,1173,1251,1323,1393,1479,1557,1633,1707", ++ "endColumns": "76,72,68,84,75,78,82,94,69,84,85,74,81,82,77,71,69,85,77,75,73,79", ++ "endOffsets": "127,200,269,354,430,509,592,687,757,842,928,1003,1085,1168,1246,1318,1388,1474,1552,1628,1702,1782" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,40,41,42,43,44,45,46,47,49,50,51,52", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2817,2894,2967,3036,3121,3197,3276,3359,3454,3524,3692,3778,3853,3935,4018,4096,4168,4238,4425,4503,4579,4653", ++ "endColumns": "76,72,68,84,75,78,82,94,69,84,85,74,81,82,77,71,69,85,77,75,73,79", ++ "endOffsets": "2889,2962,3031,3116,3192,3271,3354,3449,3519,3604,3773,3848,3930,4013,4091,4163,4233,4319,4498,4574,4648,4728" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,2817", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,2895" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,39", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,3609", ++ "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", ++ "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,3687" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-pl/values-pl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "48", ++ "startColumns": "4", ++ "startOffsets": "4324", ++ "endColumns": "100", ++ "endOffsets": "4420" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-port.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-port.json +new file mode 100644 +index 0000000..9855580 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-port.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-port/values-port.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-port/values-port.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "55", ++ "endOffsets": "106" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pt-rBR.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pt-rBR.json +new file mode 100644 +index 0000000..f1a29f5 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pt-rBR.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-pt-rBR/values-pt-rBR.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-pt-rBR/values-pt-rBR.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2929", ++ "endColumns": "100", ++ "endOffsets": "3025" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pt-rPT.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pt-rPT.json +new file mode 100644 +index 0000000..819d56e +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pt-rPT.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-pt-rPT/values-pt-rPT.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,2836", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,2917" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,41", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,3778", ++ "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", ++ "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,3859" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,210,281,351,434,504,583,662,750,834,908,997,1081,1157,1238,1320,1395,1473,1547,1637,1709,1795,1871", ++ "endColumns": "68,85,70,69,82,69,78,78,87,83,73,88,83,75,80,81,74,77,73,89,71,85,75,85", ++ "endOffsets": "119,205,276,346,429,499,578,657,745,829,903,992,1076,1152,1233,1315,1390,1468,1542,1632,1704,1790,1866,1952" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,51,52,53,54", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2836,2905,2991,3062,3132,3215,3285,3364,3443,3531,3615,3689,3864,3948,4024,4105,4187,4262,4340,4414,4605,4677,4763,4839", ++ "endColumns": "68,85,70,69,82,69,78,78,87,83,73,88,83,75,80,81,74,77,73,89,71,85,75,85", ++ "endOffsets": "2900,2986,3057,3127,3210,3280,3359,3438,3526,3610,3684,3773,3943,4019,4100,4182,4257,4335,4409,4499,4672,4758,4834,4920" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-pt-rPT/values-pt-rPT.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "4504", ++ "endColumns": "100", ++ "endOffsets": "4600" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pt.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pt.json +new file mode 100644 +index 0000000..43534f0 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-pt.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-pt/values-pt.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,3850", ++ "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", ++ "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,3931" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4575", ++ "endColumns": "100", ++ "endOffsets": "4671" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-pt/values-pt.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,211,282,352,435,502,569,648,727,815,908,976,1062,1147,1223,1306,1388,1463,1541,1615,1701,1773,1852,1928", ++ "endColumns": "69,85,70,69,82,66,66,78,78,87,92,67,85,84,75,82,81,74,77,73,85,71,78,75,85", ++ "endOffsets": "120,206,277,347,430,497,564,643,722,810,903,971,1057,1142,1218,1301,1383,1458,1536,1610,1696,1768,1847,1923,2009" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2843,2913,2999,3070,3140,3223,3290,3357,3436,3515,3603,3696,3764,3936,4021,4097,4180,4262,4337,4415,4489,4676,4748,4827,4903", ++ "endColumns": "69,85,70,69,82,66,66,78,78,87,92,67,85,84,75,82,81,74,77,73,85,71,78,75,85", ++ "endOffsets": "2908,2994,3065,3135,3218,3285,3352,3431,3510,3598,3691,3759,3845,4016,4092,4175,4257,4332,4410,4484,4570,4743,4822,4898,4984" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ro.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ro.json +new file mode 100644 +index 0000000..9d65bb7 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ro.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ro/values-ro.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,2851", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,2930" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,41", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,3781", ++ "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", ++ "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,3860" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "50", ++ "startColumns": "4", ++ "startOffsets": "4506", ++ "endColumns": "100", ++ "endOffsets": "4602" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ro/values-ro.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,125,204,274,345,429,497,573,657,742,832,901,985,1075,1150,1232,1311,1389,1467,1541,1626,1699,1775", ++ "endColumns": "69,78,69,70,83,67,75,83,84,89,68,83,89,74,81,78,77,77,73,84,72,75,84", ++ "endOffsets": "120,199,269,340,424,492,568,652,737,827,896,980,1070,1145,1227,1306,1384,1462,1536,1621,1694,1770,1855" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,51,52,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2851,2921,3000,3070,3141,3225,3293,3369,3453,3538,3628,3697,3865,3955,4030,4112,4191,4269,4347,4421,4607,4680,4756", ++ "endColumns": "69,78,69,70,83,67,75,83,84,89,68,83,89,74,81,78,77,77,73,84,72,75,84", ++ "endOffsets": "2916,2995,3065,3136,3220,3288,3364,3448,3533,3623,3692,3776,3950,4025,4107,4186,4264,4342,4416,4501,4675,4751,4836" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ru.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ru.json +new file mode 100644 +index 0000000..8680503 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ru.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ru/values-ru.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,2822", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,2899" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,3857", ++ "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", ++ "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,3934" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,218,292,367,456,525,592,669,748,837,934,1006,1090,1183,1258,1340,1423,1500,1572,1647,1732,1804,1884,1954", ++ "endColumns": "73,88,73,74,88,68,66,76,78,88,96,71,83,92,74,81,82,76,71,74,84,71,79,69,84", ++ "endOffsets": "124,213,287,362,451,520,587,664,743,832,929,1001,1085,1178,1253,1335,1418,1495,1567,1642,1727,1799,1879,1949,2034" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2822,2896,2985,3059,3134,3223,3292,3359,3436,3515,3604,3701,3773,3939,4032,4107,4189,4272,4349,4421,4496,4682,4754,4834,4904", ++ "endColumns": "73,88,73,74,88,68,66,76,78,88,96,71,83,92,74,81,82,76,71,74,84,71,79,69,84", ++ "endOffsets": "2891,2980,3054,3129,3218,3287,3354,3431,3510,3599,3696,3768,3852,4027,4102,4184,4267,4344,4416,4491,4576,4749,4829,4899,4984" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ru/values-ru.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4581", ++ "endColumns": "100", ++ "endOffsets": "4677" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-si.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-si.json +new file mode 100644 +index 0000000..7b33a98 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-si.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-si/values-si.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,206,279,347,430,499,567,643,722,805,891,960,1040,1129,1209,1292,1377,1456,1533,1613,1705,1778,1857,1929", ++ "endColumns": "68,81,72,67,82,68,67,75,78,82,85,68,79,88,79,82,84,78,76,79,91,72,78,71,77", ++ "endOffsets": "119,201,274,342,425,494,562,638,717,800,886,955,1035,1124,1204,1287,1372,1451,1528,1608,1700,1773,1852,1924,2002" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2821,2890,2972,3045,3113,3196,3265,3333,3409,3488,3571,3657,3726,3888,3977,4057,4140,4225,4304,4381,4461,4654,4727,4806,4878", ++ "endColumns": "68,81,72,67,82,68,67,75,78,82,85,68,79,88,79,82,84,78,76,79,91,72,78,71,77", ++ "endOffsets": "2885,2967,3040,3108,3191,3260,3328,3404,3483,3566,3652,3721,3801,3972,4052,4135,4220,4299,4376,4456,4548,4722,4801,4873,4951" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4553", ++ "endColumns": "100", ++ "endOffsets": "4649" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-si/values-si.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,2821", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,2898" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,3806", ++ "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", ++ "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,3883" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sk.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sk.json +new file mode 100644 +index 0000000..2f65931 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sk.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-sk/values-sk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,213,284,355,442,510,579,660,741,828,923,997,1083,1167,1244,1325,1407,1485,1560,1634,1718,1789,1868,1939", ++ "endColumns": "74,82,70,70,86,67,68,80,80,86,94,73,85,83,76,80,81,77,74,73,83,70,78,70,82", ++ "endOffsets": "125,208,279,350,437,505,574,655,736,823,918,992,1078,1162,1239,1320,1402,1480,1555,1629,1713,1784,1863,1934,2017" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2817,2892,2975,3046,3117,3204,3272,3341,3422,3503,3590,3685,3759,3928,4012,4089,4170,4252,4330,4405,4479,4664,4735,4814,4885", ++ "endColumns": "74,82,70,70,86,67,68,80,80,86,94,73,85,83,76,80,81,77,74,73,83,70,78,70,82", ++ "endOffsets": "2887,2970,3041,3112,3199,3267,3336,3417,3498,3585,3680,3754,3840,4007,4084,4165,4247,4325,4400,4474,4558,4730,4809,4880,4963" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4563", ++ "endColumns": "100", ++ "endOffsets": "4659" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sk/values-sk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,2817", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,2895" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,3845", ++ "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", ++ "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,3923" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sl.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sl.json +new file mode 100644 +index 0000000..0a27f12 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sl.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-sl/values-sl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4547", ++ "endColumns": "100", ++ "endOffsets": "4643" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2565,2745,2845", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,104,179,99,83", ++ "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2560,2740,2840,2924" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2565,2745,3825", ++ "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,104,179,99,83", ++ "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2560,2740,2840,3904" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sl/values-sl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,212,283,352,433,504,571,641,724,807,889,961,1035,1117,1194,1276,1358,1434,1512,1589,1673,1747,1829,1901", ++ "endColumns": "72,83,70,68,80,70,66,69,82,82,81,71,73,81,76,81,81,75,77,76,83,73,81,71,81", ++ "endOffsets": "123,207,278,347,428,499,566,636,719,802,884,956,1030,1112,1189,1271,1353,1429,1507,1584,1668,1742,1824,1896,1978" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2845,2918,3002,3073,3142,3223,3294,3361,3431,3514,3597,3679,3751,3909,3991,4068,4150,4232,4308,4386,4463,4648,4722,4804,4876", ++ "endColumns": "72,83,70,68,80,70,66,69,82,82,81,71,73,81,76,81,81,75,77,76,83,73,81,71,81", ++ "endOffsets": "2913,2997,3068,3137,3218,3289,3356,3426,3509,3592,3674,3746,3820,3986,4063,4145,4227,4303,4381,4458,4542,4717,4799,4871,4953" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sq.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sq.json +new file mode 100644 +index 0000000..0454776 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sq.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-sq/values-sq.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,2801", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,2878" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,3808", ++ "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", ++ "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,3885" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,210,281,350,432,501,568,650,734,823,906,976,1062,1151,1226,1307,1388,1465,1540,1613,1700,1777,1858,1932", ++ "endColumns": "73,80,70,68,81,68,66,81,83,88,82,69,85,88,74,80,80,76,74,72,86,76,80,73,82", ++ "endOffsets": "124,205,276,345,427,496,563,645,729,818,901,971,1057,1146,1221,1302,1383,1460,1535,1608,1695,1772,1853,1927,2010" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2801,2875,2956,3027,3096,3178,3247,3314,3396,3480,3569,3652,3722,3890,3979,4054,4135,4216,4293,4368,4441,4629,4706,4787,4861", ++ "endColumns": "73,80,70,68,81,68,66,81,83,88,82,69,85,88,74,80,80,76,74,72,86,76,80,73,82", ++ "endOffsets": "2870,2951,3022,3091,3173,3242,3309,3391,3475,3564,3647,3717,3803,3974,4049,4130,4211,4288,4363,4436,4523,4701,4782,4856,4939" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sq/values-sq.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4528", ++ "endColumns": "100", ++ "endOffsets": "4624" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sr.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sr.json +new file mode 100644 +index 0000000..68fae10 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sr.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-sr/values-sr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,212,285,354,436,503,570,652,735,823,906,978,1063,1149,1225,1307,1389,1465,1542,1617,1705,1777,1856,1926", ++ "endColumns": "73,82,72,68,81,66,66,81,82,87,82,71,84,85,75,81,81,75,76,74,87,71,78,69,82", ++ "endOffsets": "124,207,280,349,431,498,565,647,730,818,901,973,1058,1144,1220,1302,1384,1460,1537,1612,1700,1772,1851,1921,2004" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2833,2907,2990,3063,3132,3214,3281,3348,3430,3513,3601,3684,3756,3928,4014,4090,4172,4254,4330,4407,4482,4671,4743,4822,4892", ++ "endColumns": "73,82,72,68,81,66,66,81,82,87,82,71,84,85,75,81,81,75,76,74,87,71,78,69,82", ++ "endOffsets": "2902,2985,3058,3127,3209,3276,3343,3425,3508,3596,3679,3751,3836,4009,4085,4167,4249,4325,4402,4477,4565,4738,4817,4887,4970" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4570", ++ "endColumns": "100", ++ "endOffsets": "4666" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sr/values-sr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,2833", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,2915" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,3841", ++ "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", ++ "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,3923" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sv.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sv.json +new file mode 100644 +index 0000000..7966278 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sv.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-sv/values-sv.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4454", ++ "endColumns": "100", ++ "endOffsets": "4550" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,2778", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,2853" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,3751", ++ "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", ++ "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,3826" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sv/values-sv.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,211,282,350,431,498,565,639,716,798,877,946,1028,1111,1188,1271,1350,1427,1497,1566,1651,1731,1806", ++ "endColumns": "72,82,70,67,80,66,66,73,76,81,78,68,81,82,76,82,78,76,69,68,84,79,74,77", ++ "endOffsets": "123,206,277,345,426,493,560,634,711,793,872,941,1023,1106,1183,1266,1345,1422,1492,1561,1646,1726,1801,1879" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2778,2851,2934,3005,3073,3154,3221,3288,3362,3439,3521,3600,3669,3831,3914,3991,4074,4153,4230,4300,4369,4555,4635,4710", ++ "endColumns": "72,82,70,67,80,66,66,73,76,81,78,68,81,82,76,82,78,76,69,68,84,79,74,77", ++ "endOffsets": "2846,2929,3000,3068,3149,3216,3283,3357,3434,3516,3595,3664,3746,3909,3986,4069,4148,4225,4295,4364,4449,4630,4705,4783" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sw.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sw.json +new file mode 100644 +index 0000000..53f5176 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sw.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-sw/values-sw.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,210,281,350,433,502,570,649,734,817,900,972,1062,1152,1231,1314,1398,1480,1556,1632,1719,1794,1877,1952", ++ "endColumns": "68,85,70,68,82,68,67,78,84,82,82,71,89,89,78,82,83,81,75,75,86,74,82,74,77", ++ "endOffsets": "119,205,276,345,428,497,565,644,729,812,895,967,1057,1147,1226,1309,1393,1475,1551,1627,1714,1789,1872,1947,2025" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2801,2870,2956,3027,3096,3179,3248,3316,3395,3480,3563,3646,3718,3891,3981,4060,4143,4227,4309,4385,4461,4649,4724,4807,4882", ++ "endColumns": "68,85,70,68,82,68,67,78,84,82,82,71,89,89,78,82,83,81,75,75,86,74,82,74,77", ++ "endOffsets": "2865,2951,3022,3091,3174,3243,3311,3390,3475,3558,3641,3713,3803,3976,4055,4138,4222,4304,4380,4456,4543,4719,4802,4877,4955" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4548", ++ "endColumns": "100", ++ "endOffsets": "4644" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sw/values-sw.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,2801", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,2879" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,3808", ++ "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", ++ "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,3886" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sw600dp-v13.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sw600dp-v13.json +new file mode 100644 +index 0000000..c98db5c +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-sw600dp-v13.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-sw600dp-v13/values-sw600dp-v13.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9", ++ "startColumns": "4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,193,263,337,413,472,543", ++ "endColumns": "68,68,69,73,75,58,70,67", ++ "endOffsets": "119,188,258,332,408,467,538,606" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ta.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ta.json +new file mode 100644 +index 0000000..9648de5 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ta.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ta/values-ta.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,2871", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,2948" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,3856", ++ "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", ++ "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,3933" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4594", ++ "endColumns": "100", ++ "endOffsets": "4690" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ta/values-ta.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,130,210,282,350,434,504,571,647,725,807,887,958,1040,1122,1200,1289,1379,1460,1532,1602,1696,1771,1854,1923", ++ "endColumns": "74,79,71,67,83,69,66,75,77,81,79,70,81,81,77,88,89,80,71,69,93,74,82,68,77", ++ "endOffsets": "125,205,277,345,429,499,566,642,720,802,882,953,1035,1117,1195,1284,1374,1455,1527,1597,1691,1766,1849,1918,1996" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2871,2946,3026,3098,3166,3250,3320,3387,3463,3541,3623,3703,3774,3938,4020,4098,4187,4277,4358,4430,4500,4695,4770,4853,4922", ++ "endColumns": "74,79,71,67,83,69,66,75,77,81,79,70,81,81,77,88,89,80,71,69,93,74,82,68,77", ++ "endOffsets": "2941,3021,3093,3161,3245,3315,3382,3458,3536,3618,3698,3769,3851,4015,4093,4182,4272,4353,4425,4495,4589,4765,4848,4917,4995" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-te.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-te.json +new file mode 100644 +index 0000000..e11f6d1 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-te.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-te/values-te.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4579", ++ "endColumns": "100", ++ "endOffsets": "4675" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,127,206,278,348,430,498,565,640,716,801,883,954,1035,1115,1198,1284,1372,1450,1526,1601,1692,1764,1843,1912", ++ "endColumns": "71,78,71,69,81,67,66,74,75,84,81,70,80,79,82,85,87,77,75,74,90,71,78,68,74", ++ "endOffsets": "122,201,273,343,425,493,560,635,711,796,878,949,1030,1110,1193,1279,1367,1445,1521,1596,1687,1759,1838,1907,1982" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2859,2931,3010,3082,3152,3234,3302,3369,3444,3520,3605,3687,3758,3922,4002,4085,4171,4259,4337,4413,4488,4680,4752,4831,4900", ++ "endColumns": "71,78,71,69,81,67,66,74,75,84,81,70,80,79,82,85,87,77,75,74,90,71,78,68,74", ++ "endOffsets": "2926,3005,3077,3147,3229,3297,3364,3439,3515,3600,3682,3753,3834,3997,4080,4166,4254,4332,4408,4483,4574,4747,4826,4895,4970" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-te/values-te.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,222,334,447,537,642,761,839,915,1006,1099,1194,1288,1388,1481,1576,1671,1762,1853,1942,2056,2160,2259,2374,2479,2594,2756,2859", ++ "endColumns": "116,111,112,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,88,113,103,98,114,104,114,161,102,82", ++ "endOffsets": "217,329,442,532,637,756,834,910,1001,1094,1189,1283,1383,1476,1571,1666,1757,1848,1937,2051,2155,2254,2369,2474,2589,2751,2854,2937" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,222,334,447,537,642,761,839,915,1006,1099,1194,1288,1388,1481,1576,1671,1762,1853,1942,2056,2160,2259,2374,2479,2594,2756,3839", ++ "endColumns": "116,111,112,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,88,113,103,98,114,104,114,161,102,82", ++ "endOffsets": "217,329,442,532,637,756,834,910,1001,1094,1189,1283,1383,1476,1571,1666,1757,1848,1937,2051,2155,2254,2369,2474,2589,2751,2854,3917" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-th.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-th.json +new file mode 100644 +index 0000000..cfd1613 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-th.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-th/values-th.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,2734", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,2811" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,3714", ++ "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", ++ "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,3791" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4427", ++ "endColumns": "100", ++ "endOffsets": "4523" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-th/values-th.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,131,208,280,350,432,500,567,640,719,803,889,958,1035,1116,1192,1273,1354,1430,1505,1580,1666,1736,1812,1886", ++ "endColumns": "75,76,71,69,81,67,66,72,78,83,85,68,76,80,75,80,80,75,74,74,85,69,75,73,78", ++ "endOffsets": "126,203,275,345,427,495,562,635,714,798,884,953,1030,1111,1187,1268,1349,1425,1500,1575,1661,1731,1807,1881,1960" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2734,2810,2887,2959,3029,3111,3179,3246,3319,3398,3482,3568,3637,3796,3877,3953,4034,4115,4191,4266,4341,4528,4598,4674,4748", ++ "endColumns": "75,76,71,69,81,67,66,72,78,83,85,68,76,80,75,80,80,75,74,74,85,69,75,73,78", ++ "endOffsets": "2805,2882,2954,3024,3106,3174,3241,3314,3393,3477,3563,3632,3709,3872,3948,4029,4110,4186,4261,4336,4422,4593,4669,4743,4822" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-tl.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-tl.json +new file mode 100644 +index 0000000..5a8acc4 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-tl.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-tl/values-tl.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2930", ++ "endColumns": "100", ++ "endOffsets": "3026" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-tl/values-tl.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,216,324,437,525,631,746,826,903,994,1087,1182,1276,1376,1469,1564,1658,1749,1840,1924,2033,2143,2244,2354,2472,2580,2743,2845", ++ "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", ++ "endOffsets": "211,319,432,520,626,741,821,898,989,1082,1177,1271,1371,1464,1559,1653,1744,1835,1919,2028,2138,2239,2349,2467,2575,2738,2840,2925" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-tr.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-tr.json +new file mode 100644 +index 0000000..95e7eec +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-tr.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-tr/values-tr.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4500", ++ "endColumns": "100", ++ "endOffsets": "4596" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,2797", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,2872" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,3780", ++ "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", ++ "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,3855" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-tr/values-tr.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,124,201,272,342,425,496,563,640,720,805,885,955,1038,1123,1198,1283,1369,1446,1520,1591,1678,1748,1827,1902", ++ "endColumns": "68,76,70,69,82,70,66,76,79,84,79,69,82,84,74,84,85,76,73,70,86,69,78,74,76", ++ "endOffsets": "119,196,267,337,420,491,558,635,715,800,880,950,1033,1118,1193,1278,1364,1441,1515,1586,1673,1743,1822,1897,1974" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2797,2866,2943,3014,3084,3167,3238,3305,3382,3462,3547,3627,3697,3860,3945,4020,4105,4191,4268,4342,4413,4601,4671,4750,4825", ++ "endColumns": "68,76,70,69,82,70,66,76,79,84,79,69,82,84,74,84,85,76,73,70,86,69,78,74,76", ++ "endOffsets": "2861,2938,3009,3079,3162,3233,3300,3377,3457,3542,3622,3692,3775,3940,4015,4100,4186,4263,4337,4408,4495,4666,4745,4820,4897" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-uk.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-uk.json +new file mode 100644 +index 0000000..de3e623 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-uk.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-uk/values-uk.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4562", ++ "endColumns": "100", ++ "endOffsets": "4658" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,2829", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,2906" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,3846", ++ "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", ++ "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,3923" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-uk/values-uk.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,129,215,289,363,451,523,590,666,745,833,919,991,1072,1157,1233,1315,1398,1475,1548,1621,1706,1780,1860,1930", ++ "endColumns": "73,85,73,73,87,71,66,75,78,87,85,71,80,84,75,81,82,76,72,72,84,73,79,69,84", ++ "endOffsets": "124,210,284,358,446,518,585,661,740,828,914,986,1067,1152,1228,1310,1393,1470,1543,1616,1701,1775,1855,1925,2010" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2829,2903,2989,3063,3137,3225,3297,3364,3440,3519,3607,3693,3765,3928,4013,4089,4171,4254,4331,4404,4477,4663,4737,4817,4887", ++ "endColumns": "73,85,73,73,87,71,66,75,78,87,85,71,80,84,75,81,82,76,72,72,84,73,79,69,84", ++ "endOffsets": "2898,2984,3058,3132,3220,3292,3359,3435,3514,3602,3688,3760,3841,4008,4084,4166,4249,4326,4399,4472,4557,4732,4812,4882,4967" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ur.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ur.json +new file mode 100644 +index 0000000..69329ba +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-ur.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-ur/values-ur.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4509", ++ "endColumns": "100", ++ "endOffsets": "4605" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,2832", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,2913" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,3788", ++ "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", ++ "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,3869" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-ur/values-ur.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,123,200,269,338,418,484,552,627,704,787,866,934,1011,1093,1167,1250,1336,1412,1485,1557,1646,1717,1793,1862", ++ "endColumns": "67,76,68,68,79,65,67,74,76,82,78,67,76,81,73,82,85,75,72,71,88,70,75,68,72", ++ "endOffsets": "118,195,264,333,413,479,547,622,699,782,861,929,1006,1088,1162,1245,1331,1407,1480,1552,1641,1712,1788,1857,1930" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2832,2900,2977,3046,3115,3195,3261,3329,3404,3481,3564,3643,3711,3874,3956,4030,4113,4199,4275,4348,4420,4610,4681,4757,4826", ++ "endColumns": "67,76,68,68,79,65,67,74,76,82,78,67,76,81,73,82,85,75,72,71,88,70,75,68,72", ++ "endOffsets": "2895,2972,3041,3110,3190,3256,3324,3399,3476,3559,3638,3706,3783,3951,4025,4108,4194,4270,4343,4415,4504,4676,4752,4821,4894" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-uz.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-uz.json +new file mode 100644 +index 0000000..c73a2c9 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-uz.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-uz/values-uz.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,210,305,405,487,587,704,789,867,958,1051,1146,1240,1334,1427,1522,1617,1708,1800,1884,1994,2100,2200,2308,2414,2516,2677,2776", ++ "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", ++ "endOffsets": "205,300,400,482,582,699,784,862,953,1046,1141,1235,1329,1422,1517,1612,1703,1795,1879,1989,2095,2195,2303,2409,2511,2672,2771,2855" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-uz/values-uz.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2860", ++ "endColumns": "100", ++ "endOffsets": "2956" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v16.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v16.json +new file mode 100644 +index 0000000..c3be0f8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v16.json +@@ -0,0 +1,38 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-v16/values-v16.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "65", ++ "endOffsets": "116" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v16/values-v16.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "5", ++ "endColumns": "12", ++ "endOffsets": "223" ++ }, ++ "to": { ++ "startLines": "3", ++ "startColumns": "4", ++ "startOffsets": "121", ++ "endLines": "6", ++ "endColumns": "12", ++ "endOffsets": "289" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v17.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v17.json +new file mode 100644 +index 0000000..a86f265 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v17.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-v17/values-v17.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v17/values-v17.xml", ++ "from": { ++ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", ++ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", ++ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", ++ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v18.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v18.json +new file mode 100644 +index 0000000..ac284dd +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v18.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-v18/values-v18.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v18/values-v18.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "48", ++ "endOffsets": "99" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v21.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v21.json +new file mode 100644 +index 0000000..389603a +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v21.json +@@ -0,0 +1,47 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-v21/values-v21.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,106,109,152,155,158,160,162,164,167,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,220,222,223,224,234,235,236,248", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4213,4362,4511,4623,4770,4923,5070,5145,5234,5321,5422,5525,8283,8468,11238,11435,11634,11757,11880,11993,12176,12431,12632,12721,12832,13065,13166,13261,13384,13513,13630,13807,13906,14041,14184,14319,14438,14639,14758,14851,14962,15018,15125,15320,15431,15564,15659,15750,15841,15934,16051,16190,16261,16344,16967,17024,17082,17706", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,105,108,151,154,157,159,161,163,166,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,219,221,222,223,233,234,235,247,259", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4208,4357,4506,4618,4765,4918,5065,5140,5229,5316,5417,5520,8278,8463,11233,11430,11629,11752,11875,11988,12171,12426,12627,12716,12827,13060,13161,13256,13379,13508,13625,13802,13901,14036,14179,14314,14433,14634,14753,14846,14957,15013,15120,15315,15426,15559,15654,15745,15836,15929,16046,16185,16256,16339,16962,17019,17077,17701,18337" ++ }, ++ "to": { ++ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,110,113,156,159,162,164,166,168,171,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,224,226,227,228,238,239,240,252", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "368,459,562,665,770,877,986,1095,1204,1313,1422,1529,1632,1751,1906,2061,2166,2287,2388,2535,2676,2779,2898,3005,3108,3263,3434,3583,3748,3905,4056,4175,4526,4675,4824,4936,5083,5236,5383,5458,5547,5634,5735,5838,8596,8781,11551,11748,11947,12070,12193,12306,12489,12744,12945,13034,13145,13378,13479,13574,13697,13826,13943,14120,14219,14354,14497,14632,14751,14952,15071,15164,15275,15331,15438,15633,15744,15877,15972,16063,16154,16247,16364,16503,16574,16657,17280,17337,17395,18019", ++ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,109,112,155,158,161,163,165,167,170,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,223,225,226,227,237,238,239,251,263", ++ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", ++ "endOffsets": "454,557,660,765,872,981,1090,1199,1308,1417,1524,1627,1746,1901,2056,2161,2282,2383,2530,2671,2774,2893,3000,3103,3258,3429,3578,3743,3900,4051,4170,4521,4670,4819,4931,5078,5231,5378,5453,5542,5629,5730,5833,8591,8776,11546,11743,11942,12065,12188,12301,12484,12739,12940,13029,13140,13373,13474,13569,13692,13821,13938,14115,14214,14349,14492,14627,14746,14947,15066,15159,15270,15326,15433,15628,15739,15872,15967,16058,16149,16242,16359,16498,16569,16652,17275,17332,17390,18014,18650" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-v21/values-v21.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,13", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,173,237,304,368,484,610,736,864,1036", ++ "endLines": "2,3,4,5,6,7,8,9,12,17", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,264,265,266,267,268,271", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,173,237,304,18655,18771,18897,19023,19151,19323", ++ "endLines": "2,3,4,5,264,265,266,267,270,275", ++ "endColumns": "117,63,66,63,115,125,125,127,12,12", ++ "endOffsets": "168,232,299,363,18766,18892,19018,19146,19318,19670" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v22.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v22.json +new file mode 100644 +index 0000000..dd0dfbb +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v22.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-v22/values-v22.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v22/values-v22.xml", ++ "from": { ++ "startLines": "2,3,4,9", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,487", ++ "endLines": "2,3,8,13", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,482,764" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v23.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v23.json +new file mode 100644 +index 0000000..766129a +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v23.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-v23/values-v23.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v23/values-v23.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,190,325,400,487,1225,1975,2094,2221,2443,2667,2782,2889,3002", ++ "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", ++ "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", ++ "endOffsets": "185,320,395,482,1220,1970,2089,2216,2438,2662,2777,2884,2997,3227" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v24.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v24.json +new file mode 100644 +index 0000000..5e9f4ef +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v24.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-v24/values-v24.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v24/values-v24.xml", ++ "from": { ++ "startLines": "2,3", ++ "startColumns": "4,4", ++ "startOffsets": "55,212", ++ "endColumns": "156,134", ++ "endOffsets": "207,342" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v25.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v25.json +new file mode 100644 +index 0000000..b19e1b5 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v25.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-v25/values-v25.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v25/values-v25.xml", ++ "from": { ++ "startLines": "2,3,4,6", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,126,209,308", ++ "endLines": "2,3,5,7", ++ "endColumns": "70,82,12,12", ++ "endOffsets": "121,204,303,414" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v26.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v26.json +new file mode 100644 +index 0000000..71401fa +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v26.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-v26/values-v26.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v26/values-v26.xml", ++ "from": { ++ "startLines": "2,3,4,8,12,16", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,130,217,381,557,796", ++ "endLines": "2,3,7,11,15,16", ++ "endColumns": "74,86,12,12,12,92", ++ "endOffsets": "125,212,376,552,791,884" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v28.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v28.json +new file mode 100644 +index 0000000..665f23d +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-v28.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-v28/values-v28.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-v28/values-v28.xml", ++ "from": { ++ "startLines": "2,3,4,8", ++ "startColumns": "4,4,4,4", ++ "startOffsets": "55,130,217,397", ++ "endLines": "2,3,7,11", ++ "endColumns": "74,86,12,12", ++ "endOffsets": "125,212,392,584" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-vi.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-vi.json +new file mode 100644 +index 0000000..e4e6c5c +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-vi.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-vi/values-vi.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,2798", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,2878" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,40", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,3647", ++ "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", ++ "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,3727" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,128,205,277,349,432,503,579,660,743,826,904,981,1053,1137,1220,1297,1373,1448,1538,1611,1690,1764", ++ "endColumns": "72,76,71,71,82,70,75,80,82,82,77,76,71,83,82,76,75,74,89,72,78,73,78", ++ "endOffsets": "123,200,272,344,427,498,574,655,738,821,899,976,1048,1132,1215,1292,1368,1443,1533,1606,1685,1759,1838" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2798,2871,2948,3020,3092,3175,3246,3322,3403,3486,3569,3732,3809,3881,3965,4048,4125,4201,4276,4467,4540,4619,4693", ++ "endColumns": "72,76,71,71,82,70,75,80,82,82,77,76,71,83,82,76,75,74,89,72,78,73,78", ++ "endOffsets": "2866,2943,3015,3087,3170,3241,3317,3398,3481,3564,3642,3804,3876,3960,4043,4120,4196,4271,4361,4535,4614,4688,4767" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-vi/values-vi.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "49", ++ "startColumns": "4", ++ "startOffsets": "4366", ++ "endColumns": "100", ++ "endOffsets": "4462" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-watch-v20.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-watch-v20.json +new file mode 100644 +index 0000000..a8c4d52 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-watch-v20.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-watch-v20/values-watch-v20.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-watch-v20/values-watch-v20.xml", ++ "from": { ++ "startLines": "2,5,8", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,214,385", ++ "endLines": "4,7,10", ++ "endColumns": "12,12,12", ++ "endOffsets": "209,380,553" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-watch-v21.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-watch-v21.json +new file mode 100644 +index 0000000..cf63337 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-watch-v21.json +@@ -0,0 +1,20 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-watch-v21/values-watch-v21.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-watch-v21/values-watch-v21.xml", ++ "from": { ++ "startLines": "2,6,10", ++ "startColumns": "4,4,4", ++ "startOffsets": "55,271,499", ++ "endLines": "5,9,13", ++ "endColumns": "12,12,12", ++ "endOffsets": "266,494,724" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-xlarge-v4.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-xlarge-v4.json +new file mode 100644 +index 0000000..40682d4 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-xlarge-v4.json +@@ -0,0 +1,19 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-xlarge-v4/values-xlarge-v4.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-xlarge-v4/values-xlarge-v4.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7", ++ "startColumns": "4,4,4,4,4,4", ++ "startOffsets": "55,126,197,267,337,405", ++ "endColumns": "70,70,69,69,67,67", ++ "endOffsets": "121,192,262,332,400,468" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zh-rCN.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zh-rCN.json +new file mode 100644 +index 0000000..835d243 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zh-rCN.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-zh-rCN/values-zh-rCN.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4226", ++ "endColumns": "100", ++ "endOffsets": "4322" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,121,191,258,324,399,464,529,598,669,742,814,882,953,1026,1098,1175,1251,1323,1393,1462,1540,1608,1679,1746", ++ "endColumns": "65,69,66,65,74,64,64,68,70,72,71,67,70,72,71,76,75,71,69,68,77,67,70,66,68", ++ "endOffsets": "116,186,253,319,394,459,524,593,664,737,809,877,948,1021,1093,1170,1246,1318,1388,1457,1535,1603,1674,1741,1810" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2662,2728,2798,2865,2931,3006,3071,3136,3205,3276,3349,3421,3489,3639,3712,3784,3861,3937,4009,4079,4148,4327,4395,4466,4533", ++ "endColumns": "65,69,66,65,74,64,64,68,70,72,71,67,70,72,71,76,75,71,69,68,77,67,70,66,68", ++ "endOffsets": "2723,2793,2860,2926,3001,3066,3131,3200,3271,3344,3416,3484,3555,3707,3779,3856,3932,4004,4074,4143,4221,4390,4461,4528,4597" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-zh-rCN/values-zh-rCN.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,2662", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,2736" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,3560", ++ "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", ++ "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,3634" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zh-rHK.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zh-rHK.json +new file mode 100644 +index 0000000..bfdd516 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zh-rHK.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-zh-rHK/values-zh-rHK.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,2666", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,2740" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,3567", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,3641" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4235", ++ "endColumns": "100", ++ "endOffsets": "4331" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-zh-rHK/values-zh-rHK.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,121,193,260,326,401,466,531,600,671,744,819,886,956,1029,1101,1178,1254,1326,1396,1465,1545,1613,1683,1750", ++ "endColumns": "65,71,66,65,74,64,64,68,70,72,74,66,69,72,71,76,75,71,69,68,79,67,69,66,68", ++ "endOffsets": "116,188,255,321,396,461,526,595,666,739,814,881,951,1024,1096,1173,1249,1321,1391,1460,1540,1608,1678,1745,1814" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2666,2732,2804,2871,2937,3012,3077,3142,3211,3282,3355,3430,3497,3646,3719,3791,3868,3944,4016,4086,4155,4336,4404,4474,4541", ++ "endColumns": "65,71,66,65,74,64,64,68,70,72,74,66,69,72,71,76,75,71,69,68,79,67,69,66,68", ++ "endOffsets": "2727,2799,2866,2932,3007,3072,3137,3206,3277,3350,3425,3492,3562,3714,3786,3863,3939,4011,4081,4150,4230,4399,4469,4536,4605" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zh-rTW.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zh-rTW.json +new file mode 100644 +index 0000000..5eae66a +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zh-rTW.json +@@ -0,0 +1,60 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-zh-rTW/values-zh-rTW.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,2671", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,2745" ++ }, ++ "to": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,42", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,3575", ++ "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", ++ "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,3649" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,121,193,260,326,401,466,532,602,674,747,822,889,959,1032,1104,1181,1257,1329,1399,1468,1548,1616,1686,1753", ++ "endColumns": "65,71,66,65,74,64,65,69,71,72,74,66,69,72,71,76,75,71,69,68,79,67,69,66,68", ++ "endOffsets": "116,188,255,321,396,461,527,597,669,742,817,884,954,1027,1099,1176,1252,1324,1394,1463,1543,1611,1681,1748,1817" ++ }, ++ "to": { ++ "startLines": "29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,52,53,54,55", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2671,2737,2809,2876,2942,3017,3082,3148,3218,3290,3363,3438,3505,3654,3727,3799,3876,3952,4024,4094,4163,4344,4412,4482,4549", ++ "endColumns": "65,71,66,65,74,64,65,69,71,72,74,66,69,72,71,76,75,71,69,68,79,67,69,66,68", ++ "endOffsets": "2732,2804,2871,2937,3012,3077,3143,3213,3285,3358,3433,3500,3570,3722,3794,3871,3947,4019,4089,4158,4238,4407,4477,4544,4613" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-zh-rTW/values-zh-rTW.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "51", ++ "startColumns": "4", ++ "startOffsets": "4243", ++ "endColumns": "100", ++ "endOffsets": "4339" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zu.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zu.json +new file mode 100644 +index 0000000..68a9a6f +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values-zu.json +@@ -0,0 +1,36 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values-zu/values-zu.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,213,320,432,520,623,738,817,894,985,1078,1173,1267,1367,1460,1555,1649,1740,1833,1914,2018,2121,2219,2326,2433,2538,2695,2791", ++ "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", ++ "endOffsets": "208,315,427,515,618,733,812,889,980,1073,1168,1262,1362,1455,1550,1644,1735,1828,1909,2013,2116,2214,2321,2428,2533,2690,2786,2868" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values-zu/values-zu.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "100", ++ "endOffsets": "151" ++ }, ++ "to": { ++ "startLines": "30", ++ "startColumns": "4", ++ "startOffsets": "2873", ++ "endColumns": "100", ++ "endOffsets": "2969" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values.json b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values.json +new file mode 100644 +index 0000000..4570e41 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/mergeDebugAndroidTestResources/out/multi-v2/values.json +@@ -0,0 +1,246 @@ ++{ ++ "logs": [ ++ { ++ "outputFile": "io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22:/values/values.xml", ++ "map": [ ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/1cfc69a90cd3b3a0d2dab9b52d03cdee/transformed/lifecycle-viewmodel-2.5.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "49", ++ "endOffsets": "100" ++ }, ++ "to": { ++ "startLines": "286", ++ "startColumns": "4", ++ "startOffsets": "18160", ++ "endColumns": "49", ++ "endOffsets": "18205" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/aab319f82c96efbdcc73962788b25c1d/transformed/fragment-1.3.6/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,10", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,112,177,241,411", ++ "endLines": "2,3,4,9,13", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "107,172,236,406,555" ++ }, ++ "to": { ++ "startLines": "247,259,287,2829,2834", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "16253,16766,18210,165371,165541", ++ "endLines": "247,259,287,2833,2837", ++ "endColumns": "56,64,63,24,24", ++ "endOffsets": "16305,16826,18269,165536,165685" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,221,222,226,230,234,239,245,252,256,260,265,269,273,277,281,285,289,295,299,305,309,315,319,324,328,331,335,341,345,351,355,361,364,368,372,376,380,384,385,386,387,390,393,396,399,403,404,405,406,407,410,412,414,416,421,422,426,432,436,437,439,451,452,456,462,466,467,468,472,499,503,504,508,536,708,734,905,931,962,970,976,992,1014,1019,1024,1034,1043,1052,1056,1063,1082,1089,1090,1099,1102,1105,1109,1113,1117,1120,1121,1126,1131,1141,1146,1153,1159,1160,1163,1167,1172,1174,1176,1179,1182,1184,1188,1191,1198,1201,1204,1208,1210,1214,1216,1218,1220,1224,1232,1240,1252,1258,1267,1270,1281,1284,1285,1290,1291,1296,1365,1435,1436,1446,1455,1456,1458,1462,1465,1468,1471,1474,1477,1480,1483,1487,1490,1493,1496,1500,1503,1507,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1533,1535,1536,1537,1538,1539,1540,1541,1542,1544,1545,1547,1548,1550,1552,1553,1555,1556,1557,1558,1559,1560,1562,1563,1564,1565,1566,1567,1569,1571,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1587,1588,1589,1590,1591,1592,1593,1595,1599,1603,1604,1605,1606,1607,1608,1612,1613,1614,1615,1617,1619,1621,1623,1625,1626,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1648,1649,1650,1651,1653,1655,1656,1658,1659,1661,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1678,1679,1680,1681,1683,1684,1685,1686,1687,1689,1691,1693,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1785,1788,1791,1794,1808,1814,1824,1827,1856,1883,1892,1956,2319,2323,2351,2379,2397,2421,2427,2433,2454,2578,2598,2604,2608,2614,2649,2661,2727,2747,2802,2814,2840", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "105,160,205,254,295,350,412,476,546,607,682,758,835,913,998,1080,1156,1232,1309,1387,1493,1599,1678,1758,1815,1873,1947,2022,2087,2153,2213,2274,2346,2419,2486,2554,2613,2672,2731,2790,2849,2903,2957,3010,3064,3118,3172,3226,3300,3379,3452,3526,3597,3669,3741,3814,3871,3929,4002,4076,4150,4225,4297,4370,4440,4511,4571,4632,4701,4770,4840,4914,4990,5054,5131,5207,5284,5349,5418,5495,5570,5639,5707,5784,5850,5911,6008,6073,6142,6241,6312,6371,6429,6486,6545,6609,6680,6752,6824,6896,6968,7035,7103,7171,7230,7293,7357,7447,7538,7598,7664,7731,7797,7867,7931,7984,8051,8112,8179,8292,8350,8413,8478,8543,8618,8691,8763,8807,8854,8900,8949,9010,9071,9132,9194,9258,9322,9386,9451,9514,9574,9635,9701,9760,9820,9882,9953,10013,10081,10167,10254,10344,10431,10519,10601,10684,10774,10865,10917,10975,11020,11086,11150,11207,11264,11318,11375,11423,11472,11523,11557,11604,11653,11699,11731,11795,11857,11917,11974,12048,12118,12196,12250,12320,12405,12453,12499,12560,12623,12689,12753,12824,12887,12952,13016,13077,13138,13190,13263,13337,13406,13481,13555,13629,13770,13840,13893,13971,14061,14149,14245,14335,14917,15006,15253,15534,15786,16071,16464,16941,17163,17385,17661,17888,18118,18348,18578,18808,19035,19454,19680,20105,20335,20763,20982,21265,21473,21604,21831,22257,22482,22909,23130,23555,23675,23951,24252,24576,24867,25181,25318,25449,25554,25796,25963,26167,26375,26646,26758,26870,26975,27092,27306,27452,27592,27678,28026,28114,28360,28778,29027,29109,29207,29864,29964,30216,30640,30895,30989,31078,31315,33339,33581,33683,33936,36092,46773,48289,58984,60512,62269,62895,63315,64576,65841,66097,66333,66880,67374,67979,68177,68757,70125,70500,70618,71156,71313,71509,71782,72038,72208,72349,72413,72778,73145,73821,74085,74423,74776,74870,75056,75362,75624,75749,75876,76115,76326,76445,76638,76815,77270,77451,77573,77832,77945,78132,78234,78341,78470,78745,79253,79749,80626,80920,81490,81639,82371,82543,82627,82963,83055,83333,88564,93935,93997,94575,95159,95250,95363,95592,95752,95904,96075,96241,96410,96577,96740,96983,97153,97326,97497,97771,97970,98175,98505,98589,98685,98781,98879,98979,99081,99183,99285,99387,99489,99589,99685,99797,99926,100049,100180,100311,100409,100523,100617,100757,100891,100987,101099,101199,101315,101411,101523,101623,101763,101899,102063,102193,102351,102501,102642,102786,102921,103033,103183,103311,103439,103575,103707,103837,103967,104079,104219,104365,104509,104647,104713,104803,104879,104983,105073,105175,105283,105391,105491,105571,105663,105761,105871,105923,106001,106107,106199,106303,106413,106535,106698,106855,106935,107035,107125,107235,107325,107566,107660,107766,107858,107958,108070,108184,108300,108416,108510,108624,108736,108838,108958,109080,109162,109266,109386,109512,109610,109704,109792,109904,110020,110142,110254,110429,110545,110631,110723,110835,110959,111026,111152,111220,111348,111492,111620,111689,111784,111899,112012,112111,112220,112331,112442,112543,112648,112748,112878,112969,113092,113186,113298,113384,113488,113584,113672,113790,113894,113998,114124,114212,114320,114420,114510,114620,114704,114806,114890,114944,115008,115114,115200,115310,115394,115514,118130,118248,118363,118443,118804,119037,119554,119632,120976,122337,122725,125568,135621,135756,137126,138483,139055,139806,140068,140268,140647,144925,145531,145760,145911,146126,147209,147521,150547,151291,153422,153762,155073", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,220,221,225,229,233,238,244,251,255,259,264,268,272,276,280,284,288,294,298,304,308,314,318,323,327,330,334,340,344,350,354,360,363,367,371,375,379,383,384,385,386,389,392,395,398,402,403,404,405,406,409,411,413,415,420,421,425,431,435,436,438,450,451,455,461,465,466,467,471,498,502,503,507,535,707,733,904,930,961,969,975,991,1013,1018,1023,1033,1042,1051,1055,1062,1081,1088,1089,1098,1101,1104,1108,1112,1116,1119,1120,1125,1130,1140,1145,1152,1158,1159,1162,1166,1171,1173,1175,1178,1181,1183,1187,1190,1197,1200,1203,1207,1209,1213,1215,1217,1219,1223,1231,1239,1251,1257,1266,1269,1280,1283,1284,1289,1290,1295,1364,1434,1435,1445,1454,1455,1457,1461,1464,1467,1470,1473,1476,1479,1482,1486,1489,1492,1495,1499,1502,1506,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1532,1534,1535,1536,1537,1538,1539,1540,1541,1543,1544,1546,1547,1549,1551,1552,1554,1555,1556,1557,1558,1559,1561,1562,1563,1564,1565,1566,1568,1570,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1586,1587,1588,1589,1590,1591,1592,1594,1598,1602,1603,1604,1605,1606,1607,1611,1612,1613,1614,1616,1618,1620,1622,1624,1625,1626,1627,1629,1631,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1647,1648,1649,1650,1652,1654,1655,1657,1658,1660,1662,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1677,1678,1679,1680,1682,1683,1684,1685,1686,1688,1690,1692,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1784,1787,1790,1793,1807,1813,1823,1826,1855,1882,1891,1955,2318,2322,2350,2378,2396,2420,2426,2432,2453,2577,2597,2603,2607,2613,2648,2660,2726,2746,2801,2813,2839,2846", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "155,200,249,290,345,407,471,541,602,677,753,830,908,993,1075,1151,1227,1304,1382,1488,1594,1673,1753,1810,1868,1942,2017,2082,2148,2208,2269,2341,2414,2481,2549,2608,2667,2726,2785,2844,2898,2952,3005,3059,3113,3167,3221,3295,3374,3447,3521,3592,3664,3736,3809,3866,3924,3997,4071,4145,4220,4292,4365,4435,4506,4566,4627,4696,4765,4835,4909,4985,5049,5126,5202,5279,5344,5413,5490,5565,5634,5702,5779,5845,5906,6003,6068,6137,6236,6307,6366,6424,6481,6540,6604,6675,6747,6819,6891,6963,7030,7098,7166,7225,7288,7352,7442,7533,7593,7659,7726,7792,7862,7926,7979,8046,8107,8174,8287,8345,8408,8473,8538,8613,8686,8758,8802,8849,8895,8944,9005,9066,9127,9189,9253,9317,9381,9446,9509,9569,9630,9696,9755,9815,9877,9948,10008,10076,10162,10249,10339,10426,10514,10596,10679,10769,10860,10912,10970,11015,11081,11145,11202,11259,11313,11370,11418,11467,11518,11552,11599,11648,11694,11726,11790,11852,11912,11969,12043,12113,12191,12245,12315,12400,12448,12494,12555,12618,12684,12748,12819,12882,12947,13011,13072,13133,13185,13258,13332,13401,13476,13550,13624,13765,13835,13888,13966,14056,14144,14240,14330,14912,15001,15248,15529,15781,16066,16459,16936,17158,17380,17656,17883,18113,18343,18573,18803,19030,19449,19675,20100,20330,20758,20977,21260,21468,21599,21826,22252,22477,22904,23125,23550,23670,23946,24247,24571,24862,25176,25313,25444,25549,25791,25958,26162,26370,26641,26753,26865,26970,27087,27301,27447,27587,27673,28021,28109,28355,28773,29022,29104,29202,29859,29959,30211,30635,30890,30984,31073,31310,33334,33576,33678,33931,36087,46768,48284,58979,60507,62264,62890,63310,64571,65836,66092,66328,66875,67369,67974,68172,68752,70120,70495,70613,71151,71308,71504,71777,72033,72203,72344,72408,72773,73140,73816,74080,74418,74771,74865,75051,75357,75619,75744,75871,76110,76321,76440,76633,76810,77265,77446,77568,77827,77940,78127,78229,78336,78465,78740,79248,79744,80621,80915,81485,81634,82366,82538,82622,82958,83050,83328,88559,93930,93992,94570,95154,95245,95358,95587,95747,95899,96070,96236,96405,96572,96735,96978,97148,97321,97492,97766,97965,98170,98500,98584,98680,98776,98874,98974,99076,99178,99280,99382,99484,99584,99680,99792,99921,100044,100175,100306,100404,100518,100612,100752,100886,100982,101094,101194,101310,101406,101518,101618,101758,101894,102058,102188,102346,102496,102637,102781,102916,103028,103178,103306,103434,103570,103702,103832,103962,104074,104214,104360,104504,104642,104708,104798,104874,104978,105068,105170,105278,105386,105486,105566,105658,105756,105866,105918,105996,106102,106194,106298,106408,106530,106693,106850,106930,107030,107120,107230,107320,107561,107655,107761,107853,107953,108065,108179,108295,108411,108505,108619,108731,108833,108953,109075,109157,109261,109381,109507,109605,109699,109787,109899,110015,110137,110249,110424,110540,110626,110718,110830,110954,111021,111147,111215,111343,111487,111615,111684,111779,111894,112007,112106,112215,112326,112437,112538,112643,112743,112873,112964,113087,113181,113293,113379,113483,113579,113667,113785,113889,113993,114119,114207,114315,114415,114505,114615,114699,114801,114885,114939,115003,115109,115195,115305,115389,115509,118125,118243,118358,118438,118799,119032,119549,119627,120971,122332,122720,125563,135616,135751,137121,138478,139050,139801,140063,140263,140642,144920,145526,145755,145906,146121,147204,147516,150542,151286,153417,153757,155068,155271" ++ }, ++ "to": { ++ "startLines": "2,3,4,6,7,8,9,10,11,12,13,14,15,18,19,20,21,22,23,24,25,26,27,28,29,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,165,166,167,168,169,170,171,172,173,189,190,191,192,193,194,195,196,242,243,244,245,248,255,256,260,279,288,289,290,291,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,319,320,361,375,376,377,378,379,388,396,397,401,405,409,414,420,427,431,435,440,444,448,452,456,460,464,470,474,480,484,490,494,499,503,506,510,516,520,526,530,536,539,543,547,551,555,559,560,561,562,565,568,571,574,578,579,580,581,582,585,587,589,591,596,597,601,607,611,612,614,626,627,631,637,641,642,643,647,674,678,679,683,711,883,909,1080,1106,1137,1145,1151,1167,1189,1194,1199,1209,1218,1227,1231,1238,1257,1264,1265,1274,1277,1280,1284,1288,1292,1295,1296,1301,1306,1316,1321,1328,1334,1335,1338,1342,1347,1349,1351,1354,1357,1359,1363,1366,1373,1376,1379,1383,1385,1389,1391,1393,1395,1399,1407,1415,1427,1433,1442,1445,1456,1459,1460,1465,1466,1490,1559,1629,1630,1640,1649,1650,1652,1656,1659,1662,1665,1668,1671,1674,1677,1681,1684,1687,1690,1694,1697,1701,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1733,1735,1736,1737,1738,1739,1740,1741,1742,1744,1745,1747,1748,1750,1752,1753,1755,1756,1757,1758,1759,1760,1762,1763,1764,1765,1766,1778,1780,1782,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1799,1800,1801,1802,1803,1804,1805,1807,1811,1873,1874,1875,1876,1877,1878,1882,1883,1884,1885,1887,1889,1891,1893,1895,1896,1897,1898,1900,1902,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1918,1919,1920,1921,1923,1925,1926,1928,1929,1931,1933,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1948,1949,1950,1951,1953,1954,1955,1956,1957,1959,1961,1963,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,2026,2101,2104,2107,2110,2124,2130,2172,2175,2204,2231,2240,2304,2681,2691,2729,2757,3011,3035,3041,3047,3068,3192,3212,3218,3222,3228,3346,3382,3448,3468,3523,3535,3561", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "150,205,250,359,400,455,517,581,651,712,787,863,940,1178,1263,1345,1421,1497,1574,1652,1758,1864,1943,2023,2080,2264,2338,2413,2478,2544,2604,2665,2737,2810,2877,2945,3004,3063,3122,3181,3240,3294,3348,3401,3455,3509,3563,3749,3823,3902,3975,4049,4120,4192,4264,4337,4394,4452,4525,4599,4673,4748,4820,4893,4963,5034,5094,5155,5224,5293,5363,5437,5513,5577,5654,5730,5807,5872,5941,6018,6093,6162,6230,6307,6373,6434,6531,6596,6665,6764,6835,6894,6952,7009,7068,7132,7203,7275,7347,7419,7491,7558,7626,7694,7753,7816,7880,7970,8061,8121,8187,8254,8320,8390,8454,8507,8574,8635,8702,8815,8873,8936,9001,9066,9141,9214,9286,9330,9377,9423,9472,9533,9594,9655,9717,9781,9845,9909,9974,10037,10097,10158,10224,10283,10343,10405,10476,10536,11160,11246,11333,11423,11510,11598,11680,11763,11853,12922,12974,13032,13077,13143,13207,13264,13321,16012,16069,16117,16166,16310,16593,16640,16831,17821,18274,18338,18400,18460,18651,18725,18795,18873,18927,18997,19082,19130,19176,19237,19300,19366,19430,19501,19564,19629,19693,19754,19815,19867,19940,20014,20083,20158,20232,20306,20447,25468,27345,27423,27513,27601,27697,28283,28865,28954,29201,29482,29734,30019,30412,30889,31111,31333,31609,31836,32066,32296,32526,32756,32983,33402,33628,34053,34283,34711,34930,35213,35421,35552,35779,36205,36430,36857,37078,37503,37623,37899,38200,38524,38815,39129,39266,39397,39502,39744,39911,40115,40323,40594,40706,40818,40923,41040,41254,41400,41540,41626,41974,42062,42308,42726,42975,43057,43155,43812,43912,44164,44588,44843,44937,45026,45263,47287,47529,47631,47884,50040,60721,62237,72932,74460,76217,76843,77263,78524,79789,80045,80281,80828,81322,81927,82125,82705,84073,84448,84566,85104,85261,85457,85730,85986,86156,86297,86361,86726,87093,87769,88033,88371,88724,88818,89004,89310,89572,89697,89824,90063,90274,90393,90586,90763,91218,91399,91521,91780,91893,92080,92182,92289,92418,92693,93201,93697,94574,94868,95438,95587,96319,96491,96575,96911,97003,98339,103570,108941,109003,109581,110165,110256,110369,110598,110758,110910,111081,111247,111416,111583,111746,111989,112159,112332,112503,112777,112976,113181,113901,113985,114081,114177,114275,114375,114477,114579,114681,114783,114885,114985,115081,115193,115322,115445,115576,115707,115805,115919,116013,116153,116287,116383,116495,116595,116711,116807,116919,117019,117159,117295,117459,117589,117747,117897,118038,118182,118317,118429,118579,118707,118835,118971,119103,119233,119363,119475,120373,120519,120663,120827,120893,120983,121059,121163,121253,121355,121463,121571,121671,121751,121843,121941,122051,122103,122181,122287,122379,122483,122593,122715,122878,126316,126396,126496,126586,126696,126786,127027,127121,127227,127319,127419,127531,127645,127761,127877,127971,128085,128197,128299,128419,128541,128623,128727,128847,128973,129071,129165,129253,129365,129481,129603,129715,129890,130006,130092,130184,130296,130420,130487,130613,130681,130809,130953,131081,131150,131245,131360,131473,131572,131681,131792,131903,132004,132109,132209,132339,132430,132553,132647,132759,132845,132949,133045,133133,133251,133355,133459,133585,133673,133781,133881,133971,134081,134165,134267,134351,134405,134469,134575,134661,134771,134855,137441,140057,140175,140290,140370,140731,140964,142368,142446,143790,145151,145539,148382,159021,159359,161030,162387,170390,171141,171403,171603,171982,176260,176866,177095,177246,177461,179989,181010,184036,184780,186911,187251,188562", ++ "endLines": "2,3,4,6,7,8,9,10,11,12,13,14,15,18,19,20,21,22,23,24,25,26,27,28,29,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,56,57,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,90,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,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,165,166,167,168,169,170,171,172,173,189,190,191,192,193,194,195,196,242,243,244,245,248,255,256,260,279,288,289,290,291,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,319,320,361,375,376,377,378,379,395,396,400,404,408,413,419,426,430,434,439,443,447,451,455,459,463,469,473,479,483,489,493,498,502,505,509,515,519,525,529,535,538,542,546,550,554,558,559,560,561,564,567,570,573,577,578,579,580,581,584,586,588,590,595,596,600,606,610,611,613,625,626,630,636,640,641,642,646,673,677,678,682,710,882,908,1079,1105,1136,1144,1150,1166,1188,1193,1198,1208,1217,1226,1230,1237,1256,1263,1264,1273,1276,1279,1283,1287,1291,1294,1295,1300,1305,1315,1320,1327,1333,1334,1337,1341,1346,1348,1350,1353,1356,1358,1362,1365,1372,1375,1378,1382,1384,1388,1390,1392,1394,1398,1406,1414,1426,1432,1441,1444,1455,1458,1459,1464,1465,1470,1558,1628,1629,1639,1648,1649,1651,1655,1658,1661,1664,1667,1670,1673,1676,1680,1683,1686,1689,1693,1696,1700,1704,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1732,1734,1735,1736,1737,1738,1739,1740,1741,1743,1744,1746,1747,1749,1751,1752,1754,1755,1756,1757,1758,1759,1761,1762,1763,1764,1765,1766,1779,1781,1783,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1798,1799,1800,1801,1802,1803,1804,1806,1810,1814,1873,1874,1875,1876,1877,1881,1882,1883,1884,1886,1888,1890,1892,1894,1895,1896,1897,1899,1901,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1917,1918,1919,1920,1922,1924,1925,1927,1928,1930,1932,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1947,1948,1949,1950,1952,1953,1954,1955,1956,1958,1960,1962,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,2100,2103,2106,2109,2123,2129,2139,2174,2203,2230,2239,2303,2666,2684,2718,2756,2774,3034,3040,3046,3067,3191,3211,3217,3221,3227,3262,3357,3447,3467,3522,3534,3560,3567", ++ "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", ++ "endOffsets": "200,245,294,395,450,512,576,646,707,782,858,935,1013,1258,1340,1416,1492,1569,1647,1753,1859,1938,2018,2075,2133,2333,2408,2473,2539,2599,2660,2732,2805,2872,2940,2999,3058,3117,3176,3235,3289,3343,3396,3450,3504,3558,3612,3818,3897,3970,4044,4115,4187,4259,4332,4389,4447,4520,4594,4668,4743,4815,4888,4958,5029,5089,5150,5219,5288,5358,5432,5508,5572,5649,5725,5802,5867,5936,6013,6088,6157,6225,6302,6368,6429,6526,6591,6660,6759,6830,6889,6947,7004,7063,7127,7198,7270,7342,7414,7486,7553,7621,7689,7748,7811,7875,7965,8056,8116,8182,8249,8315,8385,8449,8502,8569,8630,8697,8810,8868,8931,8996,9061,9136,9209,9281,9325,9372,9418,9467,9528,9589,9650,9712,9776,9840,9904,9969,10032,10092,10153,10219,10278,10338,10400,10471,10531,10599,11241,11328,11418,11505,11593,11675,11758,11848,11939,12969,13027,13072,13138,13202,13259,13316,13370,16064,16112,16161,16212,16339,16635,16684,16872,17848,18333,18395,18455,18512,18720,18790,18868,18922,18992,19077,19125,19171,19232,19295,19361,19425,19496,19559,19624,19688,19749,19810,19862,19935,20009,20078,20153,20227,20301,20442,20512,25516,27418,27508,27596,27692,27782,28860,28949,29196,29477,29729,30014,30407,30884,31106,31328,31604,31831,32061,32291,32521,32751,32978,33397,33623,34048,34278,34706,34925,35208,35416,35547,35774,36200,36425,36852,37073,37498,37618,37894,38195,38519,38810,39124,39261,39392,39497,39739,39906,40110,40318,40589,40701,40813,40918,41035,41249,41395,41535,41621,41969,42057,42303,42721,42970,43052,43150,43807,43907,44159,44583,44838,44932,45021,45258,47282,47524,47626,47879,50035,60716,62232,72927,74455,76212,76838,77258,78519,79784,80040,80276,80823,81317,81922,82120,82700,84068,84443,84561,85099,85256,85452,85725,85981,86151,86292,86356,86721,87088,87764,88028,88366,88719,88813,88999,89305,89567,89692,89819,90058,90269,90388,90581,90758,91213,91394,91516,91775,91888,92075,92177,92284,92413,92688,93196,93692,94569,94863,95433,95582,96314,96486,96570,96906,96998,97276,103565,108936,108998,109576,110160,110251,110364,110593,110753,110905,111076,111242,111411,111578,111741,111984,112154,112327,112498,112772,112971,113176,113506,113980,114076,114172,114270,114370,114472,114574,114676,114778,114880,114980,115076,115188,115317,115440,115571,115702,115800,115914,116008,116148,116282,116378,116490,116590,116706,116802,116914,117014,117154,117290,117454,117584,117742,117892,118033,118177,118312,118424,118574,118702,118830,118966,119098,119228,119358,119470,119610,120514,120658,120796,120888,120978,121054,121158,121248,121350,121458,121566,121666,121746,121838,121936,122046,122098,122176,122282,122374,122478,122588,122710,122873,123030,126391,126491,126581,126691,126781,127022,127116,127222,127314,127414,127526,127640,127756,127872,127966,128080,128192,128294,128414,128536,128618,128722,128842,128968,129066,129160,129248,129360,129476,129598,129710,129885,130001,130087,130179,130291,130415,130482,130608,130676,130804,130948,131076,131145,131240,131355,131468,131567,131676,131787,131898,131999,132104,132204,132334,132425,132548,132642,132754,132840,132944,133040,133128,133246,133350,133454,133580,133668,133776,133876,133966,134076,134160,134262,134346,134400,134464,134570,134656,134766,134850,134970,140052,140170,140285,140365,140726,140959,141476,142441,143785,145146,145534,148377,158430,159151,160724,162382,162954,171136,171398,171598,171977,176255,176861,177090,177241,177456,178539,180296,184031,184775,186906,187246,188557,188760" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,82,86,90,93,97,101,105,108,111,112,113,122,129,136,139,142,145,151,154", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "100,163,226,277,331,390,438,487,536,584,633,691,740,776,826,867,911,955,998,1032,1071,1117,1165,1219,1267,1331,1448,1571,1667,1787,1907,2009,2149,2271,2381,2488,2591,2702,2871,3039,3156,3275,3388,3574,3682,3795,3886,3997,4166,4264,4389,4484,4591,4761,4859,5042,5215,5327,5428,5587,5721,5861,5963,6068,6199,6368,6485,6633,6778,6928,7027,7123,7319,7502,7601,7785,7952,8200,8448,8716,8901,9103,9309,9506,9707,9896,9922,9957,10495,10913,11291,11468,11647,11830,12195,12392", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,81,85,89,92,96,100,104,107,110,111,112,121,128,135,138,141,144,150,153,163", ++ "endColumns": "62,62,50,53,58,47,48,48,47,48,57,48,35,49,40,43,43,42,33,38,45,47,53,47,63,116,122,95,119,119,101,139,121,109,106,102,110,168,167,116,118,112,185,107,112,90,110,168,97,124,94,106,169,97,182,172,111,100,158,133,139,101,104,130,168,116,147,144,149,98,95,195,182,98,183,166,10,10,12,12,10,10,10,12,12,25,34,10,10,10,10,10,12,12,12,10", ++ "endOffsets": "158,221,272,326,385,433,482,531,579,628,686,735,771,821,862,906,950,993,1027,1066,1112,1160,1214,1262,1326,1443,1566,1662,1782,1902,2004,2144,2266,2376,2483,2586,2697,2866,3034,3151,3270,3383,3569,3677,3790,3881,3992,4161,4259,4384,4479,4586,4756,4854,5037,5210,5322,5423,5582,5716,5856,5958,6063,6194,6363,6480,6628,6773,6923,7022,7118,7314,7497,7596,7780,7947,8195,8443,8711,8896,9098,9304,9501,9702,9891,9917,9952,10490,10908,11286,11463,11642,11825,12190,12387,12828" ++ }, ++ "to": { ++ "startLines": "30,31,200,201,202,235,236,237,238,239,240,241,246,249,250,253,254,257,258,277,278,280,281,282,292,321,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,363,364,365,366,367,368,369,371,372,373,374,380,384,1471,1475,1478,1482,1486,1705,1708,1784,1831,1832,1841,1848,1855,1858,1861,1864,1870,2016", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "2138,2201,13588,13639,13693,15662,15710,15759,15808,15856,15905,15963,16217,16344,16394,16505,16549,16689,16732,17736,17775,17853,17901,17955,18517,20517,20717,20840,20936,21056,21176,21278,21418,21540,21650,21757,21860,21971,22140,22308,22425,22544,22657,22843,22951,23064,23155,23266,23435,23533,23658,23753,23860,24030,24128,24311,24484,24596,24697,24856,24990,25130,25232,25337,25521,25690,25807,25955,26100,26250,26349,26445,26712,26895,26994,27178,27787,28035,97281,97549,97734,97936,98142,113511,113712,120801,123846,123881,124419,124837,125215,125392,125571,125754,126119,137000", ++ "endLines": "30,31,200,201,202,235,236,237,238,239,240,241,246,249,250,253,254,257,258,277,278,280,281,282,292,321,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,363,364,365,366,367,368,369,371,372,373,374,383,387,1474,1477,1481,1485,1489,1707,1710,1784,1831,1840,1847,1854,1857,1860,1863,1869,1872,2025", ++ "endColumns": "62,62,50,53,58,47,48,48,47,48,57,48,35,49,40,43,43,42,33,38,45,47,53,47,63,116,122,95,119,119,101,139,121,109,106,102,110,168,167,116,118,112,185,107,112,90,110,168,97,124,94,106,169,97,182,172,111,100,158,133,139,101,104,130,168,116,147,144,149,98,95,195,182,98,183,166,10,10,12,12,10,10,10,12,12,25,34,10,10,10,10,10,12,12,12,10", ++ "endOffsets": "2196,2259,13634,13688,13747,15705,15754,15803,15851,15900,15958,16007,16248,16389,16430,16544,16588,16727,16761,17770,17816,17896,17950,17998,18576,20629,20835,20931,21051,21171,21273,21413,21535,21645,21752,21855,21966,22135,22303,22420,22539,22652,22838,22946,23059,23150,23261,23430,23528,23653,23748,23855,24025,24123,24306,24479,24591,24692,24851,24985,25125,25227,25332,25463,25685,25802,25950,26095,26245,26344,26440,26636,26890,26989,27173,27340,28030,28278,97544,97729,97931,98137,98334,113707,113896,120822,123876,124414,124832,125210,125387,125566,125749,126114,126311,137436" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/2459e462f7434c5f1e3571dd2698a418/transformed/lifecycle-runtime-2.5.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "42", ++ "endOffsets": "93" ++ }, ++ "to": { ++ "startLines": "283", ++ "startColumns": "4", ++ "startOffsets": "18003", ++ "endColumns": "42", ++ "endOffsets": "18041" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/20038f428f7192ca73c13e5db60982fd/transformed/startup-runtime-1.1.1/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "82", ++ "endOffsets": "133" ++ }, ++ "to": { ++ "startLines": "322", ++ "startColumns": "4", ++ "startOffsets": "20634", ++ "endColumns": "82", ++ "endOffsets": "20712" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/817de9ea2c7d94bb13ea8c8df33455f0/transformed/drawee-3.2.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,136", ++ "startColumns": "4,4", ++ "startOffsets": "55,3906", ++ "endLines": "135,218", ++ "endColumns": "22,22", ++ "endOffsets": "3901,5346" ++ }, ++ "to": { ++ "startLines": "2838,3263", ++ "startColumns": "4,4", ++ "startOffsets": "165690,178544", ++ "endLines": "2971,3345", ++ "endColumns": "22,22", ++ "endOffsets": "169536,179984" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/26f63bb91982d11bfb8d5e7702276faf/transformed/activity-1.6.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "59", ++ "endOffsets": "110" ++ }, ++ "to": { ++ "startLines": "284", ++ "startColumns": "4", ++ "startOffsets": "18046", ++ "endColumns": "59", ++ "endOffsets": "18101" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/b90e7b89f761281c15180b86eb3c9233/transformed/appcompat-resources-1.6.1/res/values/values.xml", ++ "from": { ++ "startLines": "2,18,24,34,50", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "55,480,658,942,1353", ++ "endLines": "17,23,33,49,53", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "475,653,937,1348,1475" ++ }, ++ "to": { ++ "startLines": "2140,2156,2162,3358,3374", ++ "startColumns": "4,4,4,4,4", ++ "startOffsets": "141481,141906,142084,180301,180712", ++ "endLines": "2155,2161,2171,3373,3377", ++ "endColumns": "24,24,24,24,24", ++ "endOffsets": "141901,142079,142363,180707,180834" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/215fa374b0823e679a9dfabc7ca00667/transformed/savedstate-1.2.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endColumns": "53", ++ "endOffsets": "104" ++ }, ++ "to": { ++ "startLines": "285", ++ "startColumns": "4", ++ "startOffsets": "18106", ++ "endColumns": "53", ++ "endOffsets": "18155" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,89,90,94,95,96,97,103,113,146,167,200", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,115,187,275,344,407,477,545,617,687,748,822,895,956,1017,1079,1143,1205,1266,1334,1434,1494,1560,1633,1702,1759,1811,1873,1945,2021,2086,2145,2204,2264,2324,2384,2444,2504,2564,2624,2684,2744,2804,2863,2923,2983,3043,3103,3163,3223,3283,3343,3403,3463,3522,3582,3642,3701,3760,3819,3878,3937,3996,4031,4066,4121,4184,4239,4297,4355,4416,4479,4536,4587,4637,4698,4755,4821,4855,4890,4925,4995,5066,5183,5384,5494,5695,5824,5896,5963,6166,6467,8198,8879,9561", ++ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,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,46,47,48,49,50,51,52,53,54,55,56,57,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,88,89,93,94,95,96,102,112,145,166,199,205", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "110,182,270,339,402,472,540,612,682,743,817,890,951,1012,1074,1138,1200,1261,1329,1429,1489,1555,1628,1697,1754,1806,1868,1940,2016,2081,2140,2199,2259,2319,2379,2439,2499,2559,2619,2679,2739,2799,2858,2918,2978,3038,3098,3158,3218,3278,3338,3398,3458,3517,3577,3637,3696,3755,3814,3873,3932,3991,4026,4061,4116,4179,4234,4292,4350,4411,4474,4531,4582,4632,4693,4750,4816,4850,4885,4920,4990,5061,5178,5379,5489,5690,5819,5891,5958,6161,6462,8193,8874,9556,9723" ++ }, ++ "to": { ++ "startLines": "5,16,17,54,55,158,159,160,161,162,163,164,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,197,198,199,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,251,252,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,293,370,1767,1768,1772,1773,1777,2014,2015,2685,2719,2775,2808,2972,3005", ++ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", ++ "startOffsets": "299,1018,1090,3617,3686,10672,10742,10810,10882,10952,11013,11087,11944,12005,12066,12128,12192,12254,12315,12383,12483,12543,12609,12682,12751,12808,12860,13375,13447,13523,13752,13811,13870,13930,13990,14050,14110,14170,14230,14290,14350,14410,14470,14529,14589,14649,14709,14769,14829,14889,14949,15009,15069,15129,15188,15248,15308,15367,15426,15485,15544,15603,16435,16470,16877,16932,16995,17050,17108,17166,17227,17290,17347,17398,17448,17509,17566,17632,17666,17701,18581,26641,119615,119732,119933,120043,120244,136861,136933,159156,160729,162959,164690,169541,170223", ++ "endLines": "5,16,17,54,55,158,159,160,161,162,163,164,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,197,198,199,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,251,252,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,293,370,1767,1771,1772,1776,1777,2014,2015,2690,2728,2807,2828,3004,3010", ++ "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", ++ "endOffsets": "354,1085,1173,3681,3744,10737,10805,10877,10947,11008,11082,11155,12000,12061,12123,12187,12249,12310,12378,12478,12538,12604,12677,12746,12803,12855,12917,13442,13518,13583,13806,13865,13925,13985,14045,14105,14165,14225,14285,14345,14405,14465,14524,14584,14644,14704,14764,14824,14884,14944,15004,15064,15124,15183,15243,15303,15362,15421,15480,15539,15598,15657,16465,16500,16927,16990,17045,17103,17161,17222,17285,17342,17393,17443,17504,17561,17627,17661,17696,17731,18646,26707,119727,119928,120038,120239,120368,136928,136995,159354,161025,164685,165366,170218,170385" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/e853aea443e5379bb5d1607f216211be/transformed/autofill-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2,3,19,20,27,32,37,44,53", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "55,123,934,994,1376,1656,1938,2322,2820", ++ "endLines": "2,18,19,26,31,36,43,52,66", ++ "endColumns": "67,12,59,12,12,12,12,12,24", ++ "endOffsets": "118,929,989,1371,1651,1933,2317,2815,3867" ++ }, ++ "to": { ++ "startLines": "157,1815,1980,1981,1988,1993,1998,2005,2667", ++ "startColumns": "4,4,4,4,4,4,4,4,4", ++ "startOffsets": "10604,123035,134975,135035,135417,135697,135979,136363,158435", ++ "endLines": "157,1830,1980,1987,1992,1997,2004,2013,2680", ++ "endColumns": "67,12,59,12,12,12,12,12,24", ++ "endOffsets": "10667,123841,135030,135412,135692,135974,136358,136856,159016" ++ } ++ }, ++ { ++ "source": "/Users/mike/.gradle/caches/8.10.2/transforms/9d2824bbcb0decd97862b20a14707515/transformed/swiperefreshlayout-1.1.0/res/values/values.xml", ++ "from": { ++ "startLines": "2", ++ "startColumns": "4", ++ "startOffsets": "55", ++ "endLines": "5", ++ "endColumns": "24", ++ "endOffsets": "287" ++ }, ++ "to": { ++ "startLines": "3378", ++ "startColumns": "4", ++ "startOffsets": "180839", ++ "endLines": "3381", ++ "endColumns": "24", ++ "endOffsets": "181005" ++ } ++ } ++ ] ++ } ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/jet/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +@@ -0,0 +1 @@ ++[] +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/jet/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/nested_resources_validation_report/debugAndroidTest/generateDebugAndroidTestResources/nestedResourcesValidationReport.txt b/node_modules/jet/android/build/intermediates/nested_resources_validation_report/debugAndroidTest/generateDebugAndroidTestResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/nested_resources_validation_report/debugAndroidTest/generateDebugAndroidTestResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/AndroidManifest.xml b/node_modules/jet/android/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..d6df91c +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/AndroidManifest.xml +@@ -0,0 +1,54 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/output-metadata.json b/node_modules/jet/android/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/output-metadata.json +new file mode 100644 +index 0000000..a8dcf37 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/packaged_manifests/debugAndroidTest/processDebugAndroidTestManifest/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "PACKAGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "io.invertase.jet.test", ++ "variantName": "debugAndroidTest", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_0.jar b/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_0.jar +new file mode 100644 +index 0000000..6357b0f +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_0.jar differ +diff --git a/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_1.jar b/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_1.jar +new file mode 100644 +index 0000000..d4b50d8 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_1.jar differ +diff --git a/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_2.jar b/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_2.jar +new file mode 100644 +index 0000000..e8eec09 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_2.jar differ +diff --git a/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_3.jar b/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_3.jar +new file mode 100644 +index 0000000..cc3ff15 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/dee6ca3109dcdf2dab8f1d42f50f7a39569bb2487f20d145b631546d9361fa23_3.jar differ +diff --git a/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/io/invertase/jet/test/BuildConfig.dex b/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/io/invertase/jet/test/BuildConfig.dex +new file mode 100644 +index 0000000..00ebba4 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/project_dex_archive/debugAndroidTest/dexBuilderDebugAndroidTest/out/io/invertase/jet/test/BuildConfig.dex differ +diff --git a/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/BuildConfig.class b/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/BuildConfig.class +new file mode 100644 +index 0000000..f94b872 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/BuildConfig.class differ +diff --git a/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/Jet$1.class b/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/Jet$1.class +new file mode 100644 +index 0000000..a88bb9b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/Jet$1.class differ +diff --git a/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/Jet.class b/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/Jet.class +new file mode 100644 +index 0000000..f9aaf06 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/Jet.class differ +diff --git a/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/JetPackage.class b/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/JetPackage.class +new file mode 100644 +index 0000000..f920d36 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/io/invertase/jet/JetPackage.class differ +diff --git a/node_modules/jet/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/jet/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..0198369 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/jet/android/build/intermediates/runtime_symbol_list/debugAndroidTest/processDebugAndroidTestResources/R.txt b/node_modules/jet/android/build/intermediates/runtime_symbol_list/debugAndroidTest/processDebugAndroidTestResources/R.txt +new file mode 100644 +index 0000000..13c3ece +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/runtime_symbol_list/debugAndroidTest/processDebugAndroidTestResources/R.txt +@@ -0,0 +1,1986 @@ ++int anim abc_fade_in 0x7f010000 ++int anim abc_fade_out 0x7f010001 ++int anim abc_grow_fade_in_from_bottom 0x7f010002 ++int anim abc_popup_enter 0x7f010003 ++int anim abc_popup_exit 0x7f010004 ++int anim abc_shrink_fade_out_from_bottom 0x7f010005 ++int anim abc_slide_in_bottom 0x7f010006 ++int anim abc_slide_in_top 0x7f010007 ++int anim abc_slide_out_bottom 0x7f010008 ++int anim abc_slide_out_top 0x7f010009 ++int anim abc_tooltip_enter 0x7f01000a ++int anim abc_tooltip_exit 0x7f01000b ++int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000c ++int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000d ++int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000e ++int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f01000f ++int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010010 ++int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010011 ++int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010012 ++int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010013 ++int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010014 ++int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010015 ++int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010016 ++int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010017 ++int anim catalyst_fade_in 0x7f010018 ++int anim catalyst_fade_out 0x7f010019 ++int anim catalyst_push_up_in 0x7f01001a ++int anim catalyst_push_up_out 0x7f01001b ++int anim catalyst_slide_down 0x7f01001c ++int anim catalyst_slide_up 0x7f01001d ++int anim fragment_fast_out_extra_slow_in 0x7f01001e ++int animator fragment_close_enter 0x7f020000 ++int animator fragment_close_exit 0x7f020001 ++int animator fragment_fade_enter 0x7f020002 ++int animator fragment_fade_exit 0x7f020003 ++int animator fragment_open_enter 0x7f020004 ++int animator fragment_open_exit 0x7f020005 ++int attr actionBarDivider 0x7f030000 ++int attr actionBarItemBackground 0x7f030001 ++int attr actionBarPopupTheme 0x7f030002 ++int attr actionBarSize 0x7f030003 ++int attr actionBarSplitStyle 0x7f030004 ++int attr actionBarStyle 0x7f030005 ++int attr actionBarTabBarStyle 0x7f030006 ++int attr actionBarTabStyle 0x7f030007 ++int attr actionBarTabTextStyle 0x7f030008 ++int attr actionBarTheme 0x7f030009 ++int attr actionBarWidgetTheme 0x7f03000a ++int attr actionButtonStyle 0x7f03000b ++int attr actionDropDownStyle 0x7f03000c ++int attr actionLayout 0x7f03000d ++int attr actionMenuTextAppearance 0x7f03000e ++int attr actionMenuTextColor 0x7f03000f ++int attr actionModeBackground 0x7f030010 ++int attr actionModeCloseButtonStyle 0x7f030011 ++int attr actionModeCloseContentDescription 0x7f030012 ++int attr actionModeCloseDrawable 0x7f030013 ++int attr actionModeCopyDrawable 0x7f030014 ++int attr actionModeCutDrawable 0x7f030015 ++int attr actionModeFindDrawable 0x7f030016 ++int attr actionModePasteDrawable 0x7f030017 ++int attr actionModePopupWindowStyle 0x7f030018 ++int attr actionModeSelectAllDrawable 0x7f030019 ++int attr actionModeShareDrawable 0x7f03001a ++int attr actionModeSplitBackground 0x7f03001b ++int attr actionModeStyle 0x7f03001c ++int attr actionModeTheme 0x7f03001d ++int attr actionModeWebSearchDrawable 0x7f03001e ++int attr actionOverflowButtonStyle 0x7f03001f ++int attr actionOverflowMenuStyle 0x7f030020 ++int attr actionProviderClass 0x7f030021 ++int attr actionViewClass 0x7f030022 ++int attr activityChooserViewStyle 0x7f030023 ++int attr actualImageResource 0x7f030024 ++int attr actualImageScaleType 0x7f030025 ++int attr actualImageUri 0x7f030026 ++int attr alertDialogButtonGroupStyle 0x7f030027 ++int attr alertDialogCenterButtons 0x7f030028 ++int attr alertDialogStyle 0x7f030029 ++int attr alertDialogTheme 0x7f03002a ++int attr allowStacking 0x7f03002b ++int attr alpha 0x7f03002c ++int attr alphabeticModifiers 0x7f03002d ++int attr arrowHeadLength 0x7f03002e ++int attr arrowShaftLength 0x7f03002f ++int attr autoCompleteTextViewStyle 0x7f030030 ++int attr autoSizeMaxTextSize 0x7f030031 ++int attr autoSizeMinTextSize 0x7f030032 ++int attr autoSizePresetSizes 0x7f030033 ++int attr autoSizeStepGranularity 0x7f030034 ++int attr autoSizeTextType 0x7f030035 ++int attr autofillInlineSuggestionChip 0x7f030036 ++int attr autofillInlineSuggestionEndIconStyle 0x7f030037 ++int attr autofillInlineSuggestionStartIconStyle 0x7f030038 ++int attr autofillInlineSuggestionSubtitle 0x7f030039 ++int attr autofillInlineSuggestionTitle 0x7f03003a ++int attr background 0x7f03003b ++int attr backgroundImage 0x7f03003c ++int attr backgroundSplit 0x7f03003d ++int attr backgroundStacked 0x7f03003e ++int attr backgroundTint 0x7f03003f ++int attr backgroundTintMode 0x7f030040 ++int attr barLength 0x7f030041 ++int attr borderlessButtonStyle 0x7f030042 ++int attr buttonBarButtonStyle 0x7f030043 ++int attr buttonBarNegativeButtonStyle 0x7f030044 ++int attr buttonBarNeutralButtonStyle 0x7f030045 ++int attr buttonBarPositiveButtonStyle 0x7f030046 ++int attr buttonBarStyle 0x7f030047 ++int attr buttonCompat 0x7f030048 ++int attr buttonGravity 0x7f030049 ++int attr buttonIconDimen 0x7f03004a ++int attr buttonPanelSideLayout 0x7f03004b ++int attr buttonStyle 0x7f03004c ++int attr buttonStyleSmall 0x7f03004d ++int attr buttonTint 0x7f03004e ++int attr buttonTintMode 0x7f03004f ++int attr checkMarkCompat 0x7f030050 ++int attr checkMarkTint 0x7f030051 ++int attr checkMarkTintMode 0x7f030052 ++int attr checkboxStyle 0x7f030053 ++int attr checkedTextViewStyle 0x7f030054 ++int attr closeIcon 0x7f030055 ++int attr closeItemLayout 0x7f030056 ++int attr collapseContentDescription 0x7f030057 ++int attr collapseIcon 0x7f030058 ++int attr color 0x7f030059 ++int attr colorAccent 0x7f03005a ++int attr colorBackgroundFloating 0x7f03005b ++int attr colorButtonNormal 0x7f03005c ++int attr colorControlActivated 0x7f03005d ++int attr colorControlHighlight 0x7f03005e ++int attr colorControlNormal 0x7f03005f ++int attr colorError 0x7f030060 ++int attr colorPrimary 0x7f030061 ++int attr colorPrimaryDark 0x7f030062 ++int attr colorSwitchThumbNormal 0x7f030063 ++int attr commitIcon 0x7f030064 ++int attr contentDescription 0x7f030065 ++int attr contentInsetEnd 0x7f030066 ++int attr contentInsetEndWithActions 0x7f030067 ++int attr contentInsetLeft 0x7f030068 ++int attr contentInsetRight 0x7f030069 ++int attr contentInsetStart 0x7f03006a ++int attr contentInsetStartWithNavigation 0x7f03006b ++int attr controlBackground 0x7f03006c ++int attr customNavigationLayout 0x7f03006d ++int attr defaultQueryHint 0x7f03006e ++int attr dialogCornerRadius 0x7f03006f ++int attr dialogPreferredPadding 0x7f030070 ++int attr dialogTheme 0x7f030071 ++int attr displayOptions 0x7f030072 ++int attr divider 0x7f030073 ++int attr dividerHorizontal 0x7f030074 ++int attr dividerPadding 0x7f030075 ++int attr dividerVertical 0x7f030076 ++int attr drawableBottomCompat 0x7f030077 ++int attr drawableEndCompat 0x7f030078 ++int attr drawableLeftCompat 0x7f030079 ++int attr drawableRightCompat 0x7f03007a ++int attr drawableSize 0x7f03007b ++int attr drawableStartCompat 0x7f03007c ++int attr drawableTint 0x7f03007d ++int attr drawableTintMode 0x7f03007e ++int attr drawableTopCompat 0x7f03007f ++int attr drawerArrowStyle 0x7f030080 ++int attr dropDownListViewStyle 0x7f030081 ++int attr dropdownListPreferredItemHeight 0x7f030082 ++int attr editTextBackground 0x7f030083 ++int attr editTextColor 0x7f030084 ++int attr editTextStyle 0x7f030085 ++int attr elevation 0x7f030086 ++int attr emojiCompatEnabled 0x7f030087 ++int attr expandActivityOverflowButtonDrawable 0x7f030088 ++int attr fadeDuration 0x7f030089 ++int attr failureImage 0x7f03008a ++int attr failureImageScaleType 0x7f03008b ++int attr firstBaselineToTopHeight 0x7f03008c ++int attr font 0x7f03008d ++int attr fontFamily 0x7f03008e ++int attr fontProviderAuthority 0x7f03008f ++int attr fontProviderCerts 0x7f030090 ++int attr fontProviderFetchStrategy 0x7f030091 ++int attr fontProviderFetchTimeout 0x7f030092 ++int attr fontProviderPackage 0x7f030093 ++int attr fontProviderQuery 0x7f030094 ++int attr fontProviderSystemFontFamily 0x7f030095 ++int attr fontStyle 0x7f030096 ++int attr fontVariationSettings 0x7f030097 ++int attr fontWeight 0x7f030098 ++int attr gapBetweenBars 0x7f030099 ++int attr goIcon 0x7f03009a ++int attr height 0x7f03009b ++int attr hideOnContentScroll 0x7f03009c ++int attr homeAsUpIndicator 0x7f03009d ++int attr homeLayout 0x7f03009e ++int attr icon 0x7f03009f ++int attr iconTint 0x7f0300a0 ++int attr iconTintMode 0x7f0300a1 ++int attr iconifiedByDefault 0x7f0300a2 ++int attr imageButtonStyle 0x7f0300a3 ++int attr indeterminateProgressStyle 0x7f0300a4 ++int attr initialActivityCount 0x7f0300a5 ++int attr isAutofillInlineSuggestionTheme 0x7f0300a6 ++int attr isLightTheme 0x7f0300a7 ++int attr itemPadding 0x7f0300a8 ++int attr lStar 0x7f0300a9 ++int attr lastBaselineToBottomHeight 0x7f0300aa ++int attr layout 0x7f0300ab ++int attr lineHeight 0x7f0300ac ++int attr listChoiceBackgroundIndicator 0x7f0300ad ++int attr listChoiceIndicatorMultipleAnimated 0x7f0300ae ++int attr listChoiceIndicatorSingleAnimated 0x7f0300af ++int attr listDividerAlertDialog 0x7f0300b0 ++int attr listItemLayout 0x7f0300b1 ++int attr listLayout 0x7f0300b2 ++int attr listMenuViewStyle 0x7f0300b3 ++int attr listPopupWindowStyle 0x7f0300b4 ++int attr listPreferredItemHeight 0x7f0300b5 ++int attr listPreferredItemHeightLarge 0x7f0300b6 ++int attr listPreferredItemHeightSmall 0x7f0300b7 ++int attr listPreferredItemPaddingEnd 0x7f0300b8 ++int attr listPreferredItemPaddingLeft 0x7f0300b9 ++int attr listPreferredItemPaddingRight 0x7f0300ba ++int attr listPreferredItemPaddingStart 0x7f0300bb ++int attr logo 0x7f0300bc ++int attr logoDescription 0x7f0300bd ++int attr maxButtonHeight 0x7f0300be ++int attr measureWithLargestChild 0x7f0300bf ++int attr menu 0x7f0300c0 ++int attr multiChoiceItemLayout 0x7f0300c1 ++int attr navigationContentDescription 0x7f0300c2 ++int attr navigationIcon 0x7f0300c3 ++int attr navigationMode 0x7f0300c4 ++int attr nestedScrollViewStyle 0x7f0300c5 ++int attr numericModifiers 0x7f0300c6 ++int attr overlapAnchor 0x7f0300c7 ++int attr overlayImage 0x7f0300c8 ++int attr paddingBottomNoButtons 0x7f0300c9 ++int attr paddingEnd 0x7f0300ca ++int attr paddingStart 0x7f0300cb ++int attr paddingTopNoTitle 0x7f0300cc ++int attr panelBackground 0x7f0300cd ++int attr panelMenuListTheme 0x7f0300ce ++int attr panelMenuListWidth 0x7f0300cf ++int attr placeholderImage 0x7f0300d0 ++int attr placeholderImageScaleType 0x7f0300d1 ++int attr popupMenuStyle 0x7f0300d2 ++int attr popupTheme 0x7f0300d3 ++int attr popupWindowStyle 0x7f0300d4 ++int attr preserveIconSpacing 0x7f0300d5 ++int attr pressedStateOverlayImage 0x7f0300d6 ++int attr progressBarAutoRotateInterval 0x7f0300d7 ++int attr progressBarImage 0x7f0300d8 ++int attr progressBarImageScaleType 0x7f0300d9 ++int attr progressBarPadding 0x7f0300da ++int attr progressBarStyle 0x7f0300db ++int attr queryBackground 0x7f0300dc ++int attr queryHint 0x7f0300dd ++int attr queryPatterns 0x7f0300de ++int attr radioButtonStyle 0x7f0300df ++int attr ratingBarStyle 0x7f0300e0 ++int attr ratingBarStyleIndicator 0x7f0300e1 ++int attr ratingBarStyleSmall 0x7f0300e2 ++int attr retryImage 0x7f0300e3 ++int attr retryImageScaleType 0x7f0300e4 ++int attr roundAsCircle 0x7f0300e5 ++int attr roundBottomEnd 0x7f0300e6 ++int attr roundBottomLeft 0x7f0300e7 ++int attr roundBottomRight 0x7f0300e8 ++int attr roundBottomStart 0x7f0300e9 ++int attr roundTopEnd 0x7f0300ea ++int attr roundTopLeft 0x7f0300eb ++int attr roundTopRight 0x7f0300ec ++int attr roundTopStart 0x7f0300ed ++int attr roundWithOverlayColor 0x7f0300ee ++int attr roundedCornerRadius 0x7f0300ef ++int attr roundingBorderColor 0x7f0300f0 ++int attr roundingBorderPadding 0x7f0300f1 ++int attr roundingBorderWidth 0x7f0300f2 ++int attr searchHintIcon 0x7f0300f3 ++int attr searchIcon 0x7f0300f4 ++int attr searchViewStyle 0x7f0300f5 ++int attr seekBarStyle 0x7f0300f6 ++int attr selectableItemBackground 0x7f0300f7 ++int attr selectableItemBackgroundBorderless 0x7f0300f8 ++int attr shortcutMatchRequired 0x7f0300f9 ++int attr showAsAction 0x7f0300fa ++int attr showDividers 0x7f0300fb ++int attr showText 0x7f0300fc ++int attr showTitle 0x7f0300fd ++int attr singleChoiceItemLayout 0x7f0300fe ++int attr spinBars 0x7f0300ff ++int attr spinnerDropDownItemStyle 0x7f030100 ++int attr spinnerStyle 0x7f030101 ++int attr splitTrack 0x7f030102 ++int attr srcCompat 0x7f030103 ++int attr state_above_anchor 0x7f030104 ++int attr subMenuArrow 0x7f030105 ++int attr submitBackground 0x7f030106 ++int attr subtitle 0x7f030107 ++int attr subtitleTextAppearance 0x7f030108 ++int attr subtitleTextColor 0x7f030109 ++int attr subtitleTextStyle 0x7f03010a ++int attr suggestionRowLayout 0x7f03010b ++int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x7f03010c ++int attr switchMinWidth 0x7f03010d ++int attr switchPadding 0x7f03010e ++int attr switchStyle 0x7f03010f ++int attr switchTextAppearance 0x7f030110 ++int attr textAllCaps 0x7f030111 ++int attr textAppearanceLargePopupMenu 0x7f030112 ++int attr textAppearanceListItem 0x7f030113 ++int attr textAppearanceListItemSecondary 0x7f030114 ++int attr textAppearanceListItemSmall 0x7f030115 ++int attr textAppearancePopupMenuHeader 0x7f030116 ++int attr textAppearanceSearchResultSubtitle 0x7f030117 ++int attr textAppearanceSearchResultTitle 0x7f030118 ++int attr textAppearanceSmallPopupMenu 0x7f030119 ++int attr textColorAlertDialogListItem 0x7f03011a ++int attr textColorSearchUrl 0x7f03011b ++int attr textLocale 0x7f03011c ++int attr theme 0x7f03011d ++int attr thickness 0x7f03011e ++int attr thumbTextPadding 0x7f03011f ++int attr thumbTint 0x7f030120 ++int attr thumbTintMode 0x7f030121 ++int attr tickMark 0x7f030122 ++int attr tickMarkTint 0x7f030123 ++int attr tickMarkTintMode 0x7f030124 ++int attr tint 0x7f030125 ++int attr tintMode 0x7f030126 ++int attr title 0x7f030127 ++int attr titleMargin 0x7f030128 ++int attr titleMarginBottom 0x7f030129 ++int attr titleMarginEnd 0x7f03012a ++int attr titleMarginStart 0x7f03012b ++int attr titleMarginTop 0x7f03012c ++int attr titleMargins 0x7f03012d ++int attr titleTextAppearance 0x7f03012e ++int attr titleTextColor 0x7f03012f ++int attr titleTextStyle 0x7f030130 ++int attr toolbarNavigationButtonStyle 0x7f030131 ++int attr toolbarStyle 0x7f030132 ++int attr tooltipForegroundColor 0x7f030133 ++int attr tooltipFrameBackground 0x7f030134 ++int attr tooltipText 0x7f030135 ++int attr track 0x7f030136 ++int attr trackTint 0x7f030137 ++int attr trackTintMode 0x7f030138 ++int attr ttcIndex 0x7f030139 ++int attr viewAspectRatio 0x7f03013a ++int attr viewInflaterClass 0x7f03013b ++int attr voiceIcon 0x7f03013c ++int attr windowActionBar 0x7f03013d ++int attr windowActionBarOverlay 0x7f03013e ++int attr windowActionModeOverlay 0x7f03013f ++int attr windowFixedHeightMajor 0x7f030140 ++int attr windowFixedHeightMinor 0x7f030141 ++int attr windowFixedWidthMajor 0x7f030142 ++int attr windowFixedWidthMinor 0x7f030143 ++int attr windowMinWidthMajor 0x7f030144 ++int attr windowMinWidthMinor 0x7f030145 ++int attr windowNoTitle 0x7f030146 ++int bool abc_action_bar_embed_tabs 0x7f040000 ++int bool abc_config_actionMenuItemAllCaps 0x7f040001 ++int color abc_background_cache_hint_selector_material_dark 0x7f050000 ++int color abc_background_cache_hint_selector_material_light 0x7f050001 ++int color abc_btn_colored_borderless_text_material 0x7f050002 ++int color abc_btn_colored_text_material 0x7f050003 ++int color abc_color_highlight_material 0x7f050004 ++int color abc_decor_view_status_guard 0x7f050005 ++int color abc_decor_view_status_guard_light 0x7f050006 ++int color abc_hint_foreground_material_dark 0x7f050007 ++int color abc_hint_foreground_material_light 0x7f050008 ++int color abc_primary_text_disable_only_material_dark 0x7f050009 ++int color abc_primary_text_disable_only_material_light 0x7f05000a ++int color abc_primary_text_material_dark 0x7f05000b ++int color abc_primary_text_material_light 0x7f05000c ++int color abc_search_url_text 0x7f05000d ++int color abc_search_url_text_normal 0x7f05000e ++int color abc_search_url_text_pressed 0x7f05000f ++int color abc_search_url_text_selected 0x7f050010 ++int color abc_secondary_text_material_dark 0x7f050011 ++int color abc_secondary_text_material_light 0x7f050012 ++int color abc_tint_btn_checkable 0x7f050013 ++int color abc_tint_default 0x7f050014 ++int color abc_tint_edittext 0x7f050015 ++int color abc_tint_seek_thumb 0x7f050016 ++int color abc_tint_spinner 0x7f050017 ++int color abc_tint_switch_track 0x7f050018 ++int color accent_material_dark 0x7f050019 ++int color accent_material_light 0x7f05001a ++int color androidx_core_ripple_material_light 0x7f05001b ++int color androidx_core_secondary_text_default_material_light 0x7f05001c ++int color background_floating_material_dark 0x7f05001d ++int color background_floating_material_light 0x7f05001e ++int color background_material_dark 0x7f05001f ++int color background_material_light 0x7f050020 ++int color bright_foreground_disabled_material_dark 0x7f050021 ++int color bright_foreground_disabled_material_light 0x7f050022 ++int color bright_foreground_inverse_material_dark 0x7f050023 ++int color bright_foreground_inverse_material_light 0x7f050024 ++int color bright_foreground_material_dark 0x7f050025 ++int color bright_foreground_material_light 0x7f050026 ++int color button_material_dark 0x7f050027 ++int color button_material_light 0x7f050028 ++int color catalyst_logbox_background 0x7f050029 ++int color catalyst_redbox_background 0x7f05002a ++int color dim_foreground_disabled_material_dark 0x7f05002b ++int color dim_foreground_disabled_material_light 0x7f05002c ++int color dim_foreground_material_dark 0x7f05002d ++int color dim_foreground_material_light 0x7f05002e ++int color error_color_material_dark 0x7f05002f ++int color error_color_material_light 0x7f050030 ++int color foreground_material_dark 0x7f050031 ++int color foreground_material_light 0x7f050032 ++int color highlighted_text_material_dark 0x7f050033 ++int color highlighted_text_material_light 0x7f050034 ++int color material_blue_grey_800 0x7f050035 ++int color material_blue_grey_900 0x7f050036 ++int color material_blue_grey_950 0x7f050037 ++int color material_deep_teal_200 0x7f050038 ++int color material_deep_teal_500 0x7f050039 ++int color material_grey_100 0x7f05003a ++int color material_grey_300 0x7f05003b ++int color material_grey_50 0x7f05003c ++int color material_grey_600 0x7f05003d ++int color material_grey_800 0x7f05003e ++int color material_grey_850 0x7f05003f ++int color material_grey_900 0x7f050040 ++int color notification_action_color_filter 0x7f050041 ++int color notification_icon_bg_color 0x7f050042 ++int color primary_dark_material_dark 0x7f050043 ++int color primary_dark_material_light 0x7f050044 ++int color primary_material_dark 0x7f050045 ++int color primary_material_light 0x7f050046 ++int color primary_text_default_material_dark 0x7f050047 ++int color primary_text_default_material_light 0x7f050048 ++int color primary_text_disabled_material_dark 0x7f050049 ++int color primary_text_disabled_material_light 0x7f05004a ++int color ripple_material_dark 0x7f05004b ++int color ripple_material_light 0x7f05004c ++int color secondary_text_default_material_dark 0x7f05004d ++int color secondary_text_default_material_light 0x7f05004e ++int color secondary_text_disabled_material_dark 0x7f05004f ++int color secondary_text_disabled_material_light 0x7f050050 ++int color switch_thumb_disabled_material_dark 0x7f050051 ++int color switch_thumb_disabled_material_light 0x7f050052 ++int color switch_thumb_material_dark 0x7f050053 ++int color switch_thumb_material_light 0x7f050054 ++int color switch_thumb_normal_material_dark 0x7f050055 ++int color switch_thumb_normal_material_light 0x7f050056 ++int color tooltip_background_dark 0x7f050057 ++int color tooltip_background_light 0x7f050058 ++int dimen abc_action_bar_content_inset_material 0x7f060000 ++int dimen abc_action_bar_content_inset_with_nav 0x7f060001 ++int dimen abc_action_bar_default_height_material 0x7f060002 ++int dimen abc_action_bar_default_padding_end_material 0x7f060003 ++int dimen abc_action_bar_default_padding_start_material 0x7f060004 ++int dimen abc_action_bar_elevation_material 0x7f060005 ++int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006 ++int dimen abc_action_bar_overflow_padding_end_material 0x7f060007 ++int dimen abc_action_bar_overflow_padding_start_material 0x7f060008 ++int dimen abc_action_bar_stacked_max_height 0x7f060009 ++int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a ++int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b ++int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c ++int dimen abc_action_button_min_height_material 0x7f06000d ++int dimen abc_action_button_min_width_material 0x7f06000e ++int dimen abc_action_button_min_width_overflow_material 0x7f06000f ++int dimen abc_alert_dialog_button_bar_height 0x7f060010 ++int dimen abc_alert_dialog_button_dimen 0x7f060011 ++int dimen abc_button_inset_horizontal_material 0x7f060012 ++int dimen abc_button_inset_vertical_material 0x7f060013 ++int dimen abc_button_padding_horizontal_material 0x7f060014 ++int dimen abc_button_padding_vertical_material 0x7f060015 ++int dimen abc_cascading_menus_min_smallest_width 0x7f060016 ++int dimen abc_config_prefDialogWidth 0x7f060017 ++int dimen abc_control_corner_material 0x7f060018 ++int dimen abc_control_inset_material 0x7f060019 ++int dimen abc_control_padding_material 0x7f06001a ++int dimen abc_dialog_corner_radius_material 0x7f06001b ++int dimen abc_dialog_fixed_height_major 0x7f06001c ++int dimen abc_dialog_fixed_height_minor 0x7f06001d ++int dimen abc_dialog_fixed_width_major 0x7f06001e ++int dimen abc_dialog_fixed_width_minor 0x7f06001f ++int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020 ++int dimen abc_dialog_list_padding_top_no_title 0x7f060021 ++int dimen abc_dialog_min_width_major 0x7f060022 ++int dimen abc_dialog_min_width_minor 0x7f060023 ++int dimen abc_dialog_padding_material 0x7f060024 ++int dimen abc_dialog_padding_top_material 0x7f060025 ++int dimen abc_dialog_title_divider_material 0x7f060026 ++int dimen abc_disabled_alpha_material_dark 0x7f060027 ++int dimen abc_disabled_alpha_material_light 0x7f060028 ++int dimen abc_dropdownitem_icon_width 0x7f060029 ++int dimen abc_dropdownitem_text_padding_left 0x7f06002a ++int dimen abc_dropdownitem_text_padding_right 0x7f06002b ++int dimen abc_edit_text_inset_bottom_material 0x7f06002c ++int dimen abc_edit_text_inset_horizontal_material 0x7f06002d ++int dimen abc_edit_text_inset_top_material 0x7f06002e ++int dimen abc_floating_window_z 0x7f06002f ++int dimen abc_list_item_height_large_material 0x7f060030 ++int dimen abc_list_item_height_material 0x7f060031 ++int dimen abc_list_item_height_small_material 0x7f060032 ++int dimen abc_list_item_padding_horizontal_material 0x7f060033 ++int dimen abc_panel_menu_list_width 0x7f060034 ++int dimen abc_progress_bar_height_material 0x7f060035 ++int dimen abc_search_view_preferred_height 0x7f060036 ++int dimen abc_search_view_preferred_width 0x7f060037 ++int dimen abc_seekbar_track_background_height_material 0x7f060038 ++int dimen abc_seekbar_track_progress_height_material 0x7f060039 ++int dimen abc_select_dialog_padding_start_material 0x7f06003a ++int dimen abc_star_big 0x7f06003b ++int dimen abc_star_medium 0x7f06003c ++int dimen abc_star_small 0x7f06003d ++int dimen abc_switch_padding 0x7f06003e ++int dimen abc_text_size_body_1_material 0x7f06003f ++int dimen abc_text_size_body_2_material 0x7f060040 ++int dimen abc_text_size_button_material 0x7f060041 ++int dimen abc_text_size_caption_material 0x7f060042 ++int dimen abc_text_size_display_1_material 0x7f060043 ++int dimen abc_text_size_display_2_material 0x7f060044 ++int dimen abc_text_size_display_3_material 0x7f060045 ++int dimen abc_text_size_display_4_material 0x7f060046 ++int dimen abc_text_size_headline_material 0x7f060047 ++int dimen abc_text_size_large_material 0x7f060048 ++int dimen abc_text_size_medium_material 0x7f060049 ++int dimen abc_text_size_menu_header_material 0x7f06004a ++int dimen abc_text_size_menu_material 0x7f06004b ++int dimen abc_text_size_small_material 0x7f06004c ++int dimen abc_text_size_subhead_material 0x7f06004d ++int dimen abc_text_size_subtitle_material_toolbar 0x7f06004e ++int dimen abc_text_size_title_material 0x7f06004f ++int dimen abc_text_size_title_material_toolbar 0x7f060050 ++int dimen autofill_inline_suggestion_icon_size 0x7f060051 ++int dimen compat_button_inset_horizontal_material 0x7f060052 ++int dimen compat_button_inset_vertical_material 0x7f060053 ++int dimen compat_button_padding_horizontal_material 0x7f060054 ++int dimen compat_button_padding_vertical_material 0x7f060055 ++int dimen compat_control_corner_material 0x7f060056 ++int dimen compat_notification_large_icon_max_height 0x7f060057 ++int dimen compat_notification_large_icon_max_width 0x7f060058 ++int dimen disabled_alpha_material_dark 0x7f060059 ++int dimen disabled_alpha_material_light 0x7f06005a ++int dimen highlight_alpha_material_colored 0x7f06005b ++int dimen highlight_alpha_material_dark 0x7f06005c ++int dimen highlight_alpha_material_light 0x7f06005d ++int dimen hint_alpha_material_dark 0x7f06005e ++int dimen hint_alpha_material_light 0x7f06005f ++int dimen hint_pressed_alpha_material_dark 0x7f060060 ++int dimen hint_pressed_alpha_material_light 0x7f060061 ++int dimen notification_action_icon_size 0x7f060062 ++int dimen notification_action_text_size 0x7f060063 ++int dimen notification_big_circle_margin 0x7f060064 ++int dimen notification_content_margin_start 0x7f060065 ++int dimen notification_large_icon_height 0x7f060066 ++int dimen notification_large_icon_width 0x7f060067 ++int dimen notification_main_column_padding_top 0x7f060068 ++int dimen notification_media_narrow_margin 0x7f060069 ++int dimen notification_right_icon_size 0x7f06006a ++int dimen notification_right_side_padding_top 0x7f06006b ++int dimen notification_small_icon_background_padding 0x7f06006c ++int dimen notification_small_icon_size_as_large 0x7f06006d ++int dimen notification_subtext_size 0x7f06006e ++int dimen notification_top_pad 0x7f06006f ++int dimen notification_top_pad_large_text 0x7f060070 ++int dimen tooltip_corner_radius 0x7f060071 ++int dimen tooltip_horizontal_padding 0x7f060072 ++int dimen tooltip_margin 0x7f060073 ++int dimen tooltip_precise_anchor_extra_offset 0x7f060074 ++int dimen tooltip_precise_anchor_threshold 0x7f060075 ++int dimen tooltip_vertical_padding 0x7f060076 ++int dimen tooltip_y_offset_non_touch 0x7f060077 ++int dimen tooltip_y_offset_touch 0x7f060078 ++int drawable abc_ab_share_pack_mtrl_alpha 0x7f070000 ++int drawable abc_action_bar_item_background_material 0x7f070001 ++int drawable abc_btn_borderless_material 0x7f070002 ++int drawable abc_btn_check_material 0x7f070003 ++int drawable abc_btn_check_material_anim 0x7f070004 ++int drawable abc_btn_check_to_on_mtrl_000 0x7f070005 ++int drawable abc_btn_check_to_on_mtrl_015 0x7f070006 ++int drawable abc_btn_colored_material 0x7f070007 ++int drawable abc_btn_default_mtrl_shape 0x7f070008 ++int drawable abc_btn_radio_material 0x7f070009 ++int drawable abc_btn_radio_material_anim 0x7f07000a ++int drawable abc_btn_radio_to_on_mtrl_000 0x7f07000b ++int drawable abc_btn_radio_to_on_mtrl_015 0x7f07000c ++int drawable abc_btn_switch_to_on_mtrl_00001 0x7f07000d ++int drawable abc_btn_switch_to_on_mtrl_00012 0x7f07000e ++int drawable abc_cab_background_internal_bg 0x7f07000f ++int drawable abc_cab_background_top_material 0x7f070010 ++int drawable abc_cab_background_top_mtrl_alpha 0x7f070011 ++int drawable abc_control_background_material 0x7f070012 ++int drawable abc_dialog_material_background 0x7f070013 ++int drawable abc_edit_text_material 0x7f070014 ++int drawable abc_ic_ab_back_material 0x7f070015 ++int drawable abc_ic_arrow_drop_right_black_24dp 0x7f070016 ++int drawable abc_ic_clear_material 0x7f070017 ++int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f070018 ++int drawable abc_ic_go_search_api_material 0x7f070019 ++int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f07001a ++int drawable abc_ic_menu_cut_mtrl_alpha 0x7f07001b ++int drawable abc_ic_menu_overflow_material 0x7f07001c ++int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f07001d ++int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f07001e ++int drawable abc_ic_menu_share_mtrl_alpha 0x7f07001f ++int drawable abc_ic_search_api_material 0x7f070020 ++int drawable abc_ic_voice_search_api_material 0x7f070021 ++int drawable abc_item_background_holo_dark 0x7f070022 ++int drawable abc_item_background_holo_light 0x7f070023 ++int drawable abc_list_divider_material 0x7f070024 ++int drawable abc_list_divider_mtrl_alpha 0x7f070025 ++int drawable abc_list_focused_holo 0x7f070026 ++int drawable abc_list_longpressed_holo 0x7f070027 ++int drawable abc_list_pressed_holo_dark 0x7f070028 ++int drawable abc_list_pressed_holo_light 0x7f070029 ++int drawable abc_list_selector_background_transition_holo_dark 0x7f07002a ++int drawable abc_list_selector_background_transition_holo_light 0x7f07002b ++int drawable abc_list_selector_disabled_holo_dark 0x7f07002c ++int drawable abc_list_selector_disabled_holo_light 0x7f07002d ++int drawable abc_list_selector_holo_dark 0x7f07002e ++int drawable abc_list_selector_holo_light 0x7f07002f ++int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f070030 ++int drawable abc_popup_background_mtrl_mult 0x7f070031 ++int drawable abc_ratingbar_indicator_material 0x7f070032 ++int drawable abc_ratingbar_material 0x7f070033 ++int drawable abc_ratingbar_small_material 0x7f070034 ++int drawable abc_scrubber_control_off_mtrl_alpha 0x7f070035 ++int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f070036 ++int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f070037 ++int drawable abc_scrubber_primary_mtrl_alpha 0x7f070038 ++int drawable abc_scrubber_track_mtrl_alpha 0x7f070039 ++int drawable abc_seekbar_thumb_material 0x7f07003a ++int drawable abc_seekbar_tick_mark_material 0x7f07003b ++int drawable abc_seekbar_track_material 0x7f07003c ++int drawable abc_spinner_mtrl_am_alpha 0x7f07003d ++int drawable abc_spinner_textfield_background_material 0x7f07003e ++int drawable abc_star_black_48dp 0x7f07003f ++int drawable abc_star_half_black_48dp 0x7f070040 ++int drawable abc_switch_thumb_material 0x7f070041 ++int drawable abc_switch_track_mtrl_alpha 0x7f070042 ++int drawable abc_tab_indicator_material 0x7f070043 ++int drawable abc_tab_indicator_mtrl_alpha 0x7f070044 ++int drawable abc_text_cursor_material 0x7f070045 ++int drawable abc_text_select_handle_left_mtrl 0x7f070046 ++int drawable abc_text_select_handle_middle_mtrl 0x7f070047 ++int drawable abc_text_select_handle_right_mtrl 0x7f070048 ++int drawable abc_textfield_activated_mtrl_alpha 0x7f070049 ++int drawable abc_textfield_default_mtrl_alpha 0x7f07004a ++int drawable abc_textfield_search_activated_mtrl_alpha 0x7f07004b ++int drawable abc_textfield_search_default_mtrl_alpha 0x7f07004c ++int drawable abc_textfield_search_material 0x7f07004d ++int drawable abc_vector_test 0x7f07004e ++int drawable autofill_inline_suggestion_chip_background 0x7f07004f ++int drawable btn_checkbox_checked_mtrl 0x7f070050 ++int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f070051 ++int drawable btn_checkbox_unchecked_mtrl 0x7f070052 ++int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f070053 ++int drawable btn_radio_off_mtrl 0x7f070054 ++int drawable btn_radio_off_to_on_mtrl_animation 0x7f070055 ++int drawable btn_radio_on_mtrl 0x7f070056 ++int drawable btn_radio_on_to_off_mtrl_animation 0x7f070057 ++int drawable ic_resume 0x7f070058 ++int drawable notification_action_background 0x7f070059 ++int drawable notification_bg 0x7f07005a ++int drawable notification_bg_low 0x7f07005b ++int drawable notification_bg_low_normal 0x7f07005c ++int drawable notification_bg_low_pressed 0x7f07005d ++int drawable notification_bg_normal 0x7f07005e ++int drawable notification_bg_normal_pressed 0x7f07005f ++int drawable notification_icon_background 0x7f070060 ++int drawable notification_template_icon_bg 0x7f070061 ++int drawable notification_template_icon_low_bg 0x7f070062 ++int drawable notification_tile_bg 0x7f070063 ++int drawable notify_panel_notification_icon_bg 0x7f070064 ++int drawable paused_in_debugger_background 0x7f070065 ++int drawable paused_in_debugger_dialog_background 0x7f070066 ++int drawable redbox_top_border_background 0x7f070067 ++int drawable ripple_effect 0x7f070068 ++int drawable test_level_drawable 0x7f070069 ++int drawable tooltip_frame_dark 0x7f07006a ++int drawable tooltip_frame_light 0x7f07006b ++int id ALT 0x7f080000 ++int id CTRL 0x7f080001 ++int id FUNCTION 0x7f080002 ++int id META 0x7f080003 ++int id SHIFT 0x7f080004 ++int id SYM 0x7f080005 ++int id accessibility_action_clickable_span 0x7f080006 ++int id accessibility_actions 0x7f080007 ++int id accessibility_collection 0x7f080008 ++int id accessibility_collection_item 0x7f080009 ++int id accessibility_custom_action_0 0x7f08000a ++int id accessibility_custom_action_1 0x7f08000b ++int id accessibility_custom_action_10 0x7f08000c ++int id accessibility_custom_action_11 0x7f08000d ++int id accessibility_custom_action_12 0x7f08000e ++int id accessibility_custom_action_13 0x7f08000f ++int id accessibility_custom_action_14 0x7f080010 ++int id accessibility_custom_action_15 0x7f080011 ++int id accessibility_custom_action_16 0x7f080012 ++int id accessibility_custom_action_17 0x7f080013 ++int id accessibility_custom_action_18 0x7f080014 ++int id accessibility_custom_action_19 0x7f080015 ++int id accessibility_custom_action_2 0x7f080016 ++int id accessibility_custom_action_20 0x7f080017 ++int id accessibility_custom_action_21 0x7f080018 ++int id accessibility_custom_action_22 0x7f080019 ++int id accessibility_custom_action_23 0x7f08001a ++int id accessibility_custom_action_24 0x7f08001b ++int id accessibility_custom_action_25 0x7f08001c ++int id accessibility_custom_action_26 0x7f08001d ++int id accessibility_custom_action_27 0x7f08001e ++int id accessibility_custom_action_28 0x7f08001f ++int id accessibility_custom_action_29 0x7f080020 ++int id accessibility_custom_action_3 0x7f080021 ++int id accessibility_custom_action_30 0x7f080022 ++int id accessibility_custom_action_31 0x7f080023 ++int id accessibility_custom_action_4 0x7f080024 ++int id accessibility_custom_action_5 0x7f080025 ++int id accessibility_custom_action_6 0x7f080026 ++int id accessibility_custom_action_7 0x7f080027 ++int id accessibility_custom_action_8 0x7f080028 ++int id accessibility_custom_action_9 0x7f080029 ++int id accessibility_hint 0x7f08002a ++int id accessibility_label 0x7f08002b ++int id accessibility_links 0x7f08002c ++int id accessibility_role 0x7f08002d ++int id accessibility_state 0x7f08002e ++int id accessibility_state_expanded 0x7f08002f ++int id accessibility_value 0x7f080030 ++int id action_bar 0x7f080031 ++int id action_bar_activity_content 0x7f080032 ++int id action_bar_container 0x7f080033 ++int id action_bar_root 0x7f080034 ++int id action_bar_spinner 0x7f080035 ++int id action_bar_subtitle 0x7f080036 ++int id action_bar_title 0x7f080037 ++int id action_container 0x7f080038 ++int id action_context_bar 0x7f080039 ++int id action_divider 0x7f08003a ++int id action_image 0x7f08003b ++int id action_menu_divider 0x7f08003c ++int id action_menu_presenter 0x7f08003d ++int id action_mode_bar 0x7f08003e ++int id action_mode_bar_stub 0x7f08003f ++int id action_mode_close_button 0x7f080040 ++int id action_text 0x7f080041 ++int id actions 0x7f080042 ++int id activity_chooser_view_content 0x7f080043 ++int id add 0x7f080044 ++int id alertTitle 0x7f080045 ++int id always 0x7f080046 ++int id async 0x7f080047 ++int id autofill_inline_suggestion_end_icon 0x7f080048 ++int id autofill_inline_suggestion_start_icon 0x7f080049 ++int id autofill_inline_suggestion_subtitle 0x7f08004a ++int id autofill_inline_suggestion_title 0x7f08004b ++int id beginning 0x7f08004c ++int id blocking 0x7f08004d ++int id bottom 0x7f08004e ++int id button 0x7f08004f ++int id buttonPanel 0x7f080050 ++int id button_text 0x7f080051 ++int id catalyst_redbox_title 0x7f080052 ++int id center 0x7f080053 ++int id centerCrop 0x7f080054 ++int id centerInside 0x7f080055 ++int id center_vertical 0x7f080056 ++int id checkbox 0x7f080057 ++int id checked 0x7f080058 ++int id chronometer 0x7f080059 ++int id collapseActionView 0x7f08005a ++int id content 0x7f08005b ++int id contentPanel 0x7f08005c ++int id custom 0x7f08005d ++int id customPanel 0x7f08005e ++int id decor_content_parent 0x7f08005f ++int id default_activity_button 0x7f080060 ++int id dialog_button 0x7f080061 ++int id disableHome 0x7f080062 ++int id edit_query 0x7f080063 ++int id end 0x7f080064 ++int id expand_activities_button 0x7f080065 ++int id expanded_menu 0x7f080066 ++int id filter 0x7f080067 ++int id fitBottomStart 0x7f080068 ++int id fitCenter 0x7f080069 ++int id fitEnd 0x7f08006a ++int id fitStart 0x7f08006b ++int id fitXY 0x7f08006c ++int id focusCrop 0x7f08006d ++int id forever 0x7f08006e ++int id fps_text 0x7f08006f ++int id fragment_container_view_tag 0x7f080070 ++int id group_divider 0x7f080071 ++int id home 0x7f080072 ++int id homeAsUp 0x7f080073 ++int id icon 0x7f080074 ++int id icon_group 0x7f080075 ++int id ifRoom 0x7f080076 ++int id image 0x7f080077 ++int id info 0x7f080078 ++int id invalidate_transform 0x7f080079 ++int id italic 0x7f08007a ++int id labelled_by 0x7f08007b ++int id line1 0x7f08007c ++int id line3 0x7f08007d ++int id listMode 0x7f08007e ++int id list_item 0x7f08007f ++int id message 0x7f080080 ++int id middle 0x7f080081 ++int id mix_blend_mode 0x7f080082 ++int id multiply 0x7f080083 ++int id never 0x7f080084 ++int id none 0x7f080085 ++int id normal 0x7f080086 ++int id notification_background 0x7f080087 ++int id notification_main_column 0x7f080088 ++int id notification_main_column_container 0x7f080089 ++int id off 0x7f08008a ++int id on 0x7f08008b ++int id parentPanel 0x7f08008c ++int id pointer_events 0x7f08008d ++int id progress_circular 0x7f08008e ++int id progress_horizontal 0x7f08008f ++int id radio 0x7f080090 ++int id react_test_id 0x7f080091 ++int id right_icon 0x7f080092 ++int id right_side 0x7f080093 ++int id rn_frame_file 0x7f080094 ++int id rn_frame_method 0x7f080095 ++int id rn_redbox_dismiss_button 0x7f080096 ++int id rn_redbox_line_separator 0x7f080097 ++int id rn_redbox_loading_indicator 0x7f080098 ++int id rn_redbox_reload_button 0x7f080099 ++int id rn_redbox_report_button 0x7f08009a ++int id rn_redbox_report_label 0x7f08009b ++int id rn_redbox_stack 0x7f08009c ++int id role 0x7f08009d ++int id screen 0x7f08009e ++int id scrollIndicatorDown 0x7f08009f ++int id scrollIndicatorUp 0x7f0800a0 ++int id scrollView 0x7f0800a1 ++int id search_badge 0x7f0800a2 ++int id search_bar 0x7f0800a3 ++int id search_button 0x7f0800a4 ++int id search_close_btn 0x7f0800a5 ++int id search_edit_frame 0x7f0800a6 ++int id search_go_btn 0x7f0800a7 ++int id search_mag_icon 0x7f0800a8 ++int id search_plate 0x7f0800a9 ++int id search_src_text 0x7f0800aa ++int id search_voice_btn 0x7f0800ab ++int id select_dialog_listview 0x7f0800ac ++int id shortcut 0x7f0800ad ++int id showCustom 0x7f0800ae ++int id showHome 0x7f0800af ++int id showTitle 0x7f0800b0 ++int id spacer 0x7f0800b1 ++int id special_effects_controller_view_tag 0x7f0800b2 ++int id split_action_bar 0x7f0800b3 ++int id src_atop 0x7f0800b4 ++int id src_in 0x7f0800b5 ++int id src_over 0x7f0800b6 ++int id submenuarrow 0x7f0800b7 ++int id submit_area 0x7f0800b8 ++int id tabMode 0x7f0800b9 ++int id tag_accessibility_actions 0x7f0800ba ++int id tag_accessibility_clickable_spans 0x7f0800bb ++int id tag_accessibility_heading 0x7f0800bc ++int id tag_accessibility_pane_title 0x7f0800bd ++int id tag_on_apply_window_listener 0x7f0800be ++int id tag_on_receive_content_listener 0x7f0800bf ++int id tag_on_receive_content_mime_types 0x7f0800c0 ++int id tag_screen_reader_focusable 0x7f0800c1 ++int id tag_state_description 0x7f0800c2 ++int id tag_transition_group 0x7f0800c3 ++int id tag_unhandled_key_event_manager 0x7f0800c4 ++int id tag_unhandled_key_listeners 0x7f0800c5 ++int id tag_window_insets_animation_callback 0x7f0800c6 ++int id text 0x7f0800c7 ++int id text2 0x7f0800c8 ++int id textSpacerNoButtons 0x7f0800c9 ++int id textSpacerNoTitle 0x7f0800ca ++int id time 0x7f0800cb ++int id title 0x7f0800cc ++int id titleDividerNoCustom 0x7f0800cd ++int id title_template 0x7f0800ce ++int id top 0x7f0800cf ++int id topPanel 0x7f0800d0 ++int id transform 0x7f0800d1 ++int id transform_origin 0x7f0800d2 ++int id unchecked 0x7f0800d3 ++int id uniform 0x7f0800d4 ++int id up 0x7f0800d5 ++int id useLogo 0x7f0800d6 ++int id use_hardware_layer 0x7f0800d7 ++int id view_tag_instance_handle 0x7f0800d8 ++int id view_tag_native_id 0x7f0800d9 ++int id view_tree_lifecycle_owner 0x7f0800da ++int id view_tree_on_back_pressed_dispatcher_owner 0x7f0800db ++int id view_tree_saved_state_registry_owner 0x7f0800dc ++int id view_tree_view_model_store_owner 0x7f0800dd ++int id visible_removing_fragment_view_tag 0x7f0800de ++int id withText 0x7f0800df ++int id wrap_content 0x7f0800e0 ++int integer abc_config_activityDefaultDur 0x7f090000 ++int integer abc_config_activityShortDur 0x7f090001 ++int integer cancel_button_image_alpha 0x7f090002 ++int integer config_tooltipAnimTime 0x7f090003 ++int integer react_native_dev_server_port 0x7f090004 ++int integer status_bar_notification_info_maxnum 0x7f090005 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0a0000 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0a0001 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0a0002 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0a0003 ++int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0a0004 ++int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0a0005 ++int interpolator fast_out_slow_in 0x7f0a0006 ++int layout abc_action_bar_title_item 0x7f0b0000 ++int layout abc_action_bar_up_container 0x7f0b0001 ++int layout abc_action_menu_item_layout 0x7f0b0002 ++int layout abc_action_menu_layout 0x7f0b0003 ++int layout abc_action_mode_bar 0x7f0b0004 ++int layout abc_action_mode_close_item_material 0x7f0b0005 ++int layout abc_activity_chooser_view 0x7f0b0006 ++int layout abc_activity_chooser_view_list_item 0x7f0b0007 ++int layout abc_alert_dialog_button_bar_material 0x7f0b0008 ++int layout abc_alert_dialog_material 0x7f0b0009 ++int layout abc_alert_dialog_title_material 0x7f0b000a ++int layout abc_cascading_menu_item_layout 0x7f0b000b ++int layout abc_dialog_title_material 0x7f0b000c ++int layout abc_expanded_menu_layout 0x7f0b000d ++int layout abc_list_menu_item_checkbox 0x7f0b000e ++int layout abc_list_menu_item_icon 0x7f0b000f ++int layout abc_list_menu_item_layout 0x7f0b0010 ++int layout abc_list_menu_item_radio 0x7f0b0011 ++int layout abc_popup_menu_header_item_layout 0x7f0b0012 ++int layout abc_popup_menu_item_layout 0x7f0b0013 ++int layout abc_screen_content_include 0x7f0b0014 ++int layout abc_screen_simple 0x7f0b0015 ++int layout abc_screen_simple_overlay_action_mode 0x7f0b0016 ++int layout abc_screen_toolbar 0x7f0b0017 ++int layout abc_search_dropdown_item_icons_2line 0x7f0b0018 ++int layout abc_search_view 0x7f0b0019 ++int layout abc_select_dialog_material 0x7f0b001a ++int layout abc_tooltip 0x7f0b001b ++int layout autofill_inline_suggestion 0x7f0b001c ++int layout custom_dialog 0x7f0b001d ++int layout dev_loading_view 0x7f0b001e ++int layout fps_view 0x7f0b001f ++int layout notification_action 0x7f0b0020 ++int layout notification_action_tombstone 0x7f0b0021 ++int layout notification_template_custom_big 0x7f0b0022 ++int layout notification_template_icon_group 0x7f0b0023 ++int layout notification_template_part_chronometer 0x7f0b0024 ++int layout notification_template_part_time 0x7f0b0025 ++int layout paused_in_debugger_view 0x7f0b0026 ++int layout redbox_item_frame 0x7f0b0027 ++int layout redbox_item_title 0x7f0b0028 ++int layout redbox_view 0x7f0b0029 ++int layout select_dialog_item_material 0x7f0b002a ++int layout select_dialog_multichoice_material 0x7f0b002b ++int layout select_dialog_singlechoice_material 0x7f0b002c ++int layout support_simple_spinner_dropdown_item 0x7f0b002d ++int string abc_action_bar_home_description 0x7f0c0000 ++int string abc_action_bar_up_description 0x7f0c0001 ++int string abc_action_menu_overflow_description 0x7f0c0002 ++int string abc_action_mode_done 0x7f0c0003 ++int string abc_activity_chooser_view_see_all 0x7f0c0004 ++int string abc_activitychooserview_choose_application 0x7f0c0005 ++int string abc_capital_off 0x7f0c0006 ++int string abc_capital_on 0x7f0c0007 ++int string abc_menu_alt_shortcut_label 0x7f0c0008 ++int string abc_menu_ctrl_shortcut_label 0x7f0c0009 ++int string abc_menu_delete_shortcut_label 0x7f0c000a ++int string abc_menu_enter_shortcut_label 0x7f0c000b ++int string abc_menu_function_shortcut_label 0x7f0c000c ++int string abc_menu_meta_shortcut_label 0x7f0c000d ++int string abc_menu_shift_shortcut_label 0x7f0c000e ++int string abc_menu_space_shortcut_label 0x7f0c000f ++int string abc_menu_sym_shortcut_label 0x7f0c0010 ++int string abc_prepend_shortcut_label 0x7f0c0011 ++int string abc_search_hint 0x7f0c0012 ++int string abc_searchview_description_clear 0x7f0c0013 ++int string abc_searchview_description_query 0x7f0c0014 ++int string abc_searchview_description_search 0x7f0c0015 ++int string abc_searchview_description_submit 0x7f0c0016 ++int string abc_searchview_description_voice 0x7f0c0017 ++int string abc_shareactionprovider_share_with 0x7f0c0018 ++int string abc_shareactionprovider_share_with_application 0x7f0c0019 ++int string abc_toolbar_collapse_description 0x7f0c001a ++int string alert_description 0x7f0c001b ++int string androidx_startup 0x7f0c001c ++int string catalyst_change_bundle_location 0x7f0c001d ++int string catalyst_copy_button 0x7f0c001e ++int string catalyst_debug_connecting 0x7f0c001f ++int string catalyst_debug_error 0x7f0c0020 ++int string catalyst_debug_open 0x7f0c0021 ++int string catalyst_debug_open_disabled 0x7f0c0022 ++int string catalyst_dev_menu_header 0x7f0c0023 ++int string catalyst_dev_menu_sub_header 0x7f0c0024 ++int string catalyst_dismiss_button 0x7f0c0025 ++int string catalyst_heap_capture 0x7f0c0026 ++int string catalyst_hot_reloading 0x7f0c0027 ++int string catalyst_hot_reloading_auto_disable 0x7f0c0028 ++int string catalyst_hot_reloading_auto_enable 0x7f0c0029 ++int string catalyst_hot_reloading_stop 0x7f0c002a ++int string catalyst_inspector_toggle 0x7f0c002b ++int string catalyst_loading_from_url 0x7f0c002c ++int string catalyst_open_debugger_error 0x7f0c002d ++int string catalyst_perf_monitor 0x7f0c002e ++int string catalyst_perf_monitor_stop 0x7f0c002f ++int string catalyst_reload 0x7f0c0030 ++int string catalyst_reload_button 0x7f0c0031 ++int string catalyst_reload_error 0x7f0c0032 ++int string catalyst_report_button 0x7f0c0033 ++int string catalyst_sample_profiler_toggle 0x7f0c0034 ++int string catalyst_settings 0x7f0c0035 ++int string catalyst_settings_title 0x7f0c0036 ++int string combobox_description 0x7f0c0037 ++int string header_description 0x7f0c0038 ++int string image_description 0x7f0c0039 ++int string imagebutton_description 0x7f0c003a ++int string link_description 0x7f0c003b ++int string menu_description 0x7f0c003c ++int string menubar_description 0x7f0c003d ++int string menuitem_description 0x7f0c003e ++int string progressbar_description 0x7f0c003f ++int string radiogroup_description 0x7f0c0040 ++int string rn_tab_description 0x7f0c0041 ++int string scrollbar_description 0x7f0c0042 ++int string search_menu_title 0x7f0c0043 ++int string spinbutton_description 0x7f0c0044 ++int string state_busy_description 0x7f0c0045 ++int string state_collapsed_description 0x7f0c0046 ++int string state_expanded_description 0x7f0c0047 ++int string state_mixed_description 0x7f0c0048 ++int string state_off_description 0x7f0c0049 ++int string state_on_description 0x7f0c004a ++int string state_unselected_description 0x7f0c004b ++int string status_bar_notification_info_overflow 0x7f0c004c ++int string summary_description 0x7f0c004d ++int string tablist_description 0x7f0c004e ++int string timer_description 0x7f0c004f ++int string toolbar_description 0x7f0c0050 ++int style AlertDialog_AppCompat 0x7f0d0000 ++int style AlertDialog_AppCompat_Light 0x7f0d0001 ++int style Animation_AppCompat_Dialog 0x7f0d0002 ++int style Animation_AppCompat_DropDownUp 0x7f0d0003 ++int style Animation_AppCompat_Tooltip 0x7f0d0004 ++int style Animation_Catalyst_LogBox 0x7f0d0005 ++int style Animation_Catalyst_RedBox 0x7f0d0006 ++int style Base_AlertDialog_AppCompat 0x7f0d0007 ++int style Base_AlertDialog_AppCompat_Light 0x7f0d0008 ++int style Base_Animation_AppCompat_Dialog 0x7f0d0009 ++int style Base_Animation_AppCompat_DropDownUp 0x7f0d000a ++int style Base_Animation_AppCompat_Tooltip 0x7f0d000b ++int style Base_DialogWindowTitle_AppCompat 0x7f0d000c ++int style Base_DialogWindowTitleBackground_AppCompat 0x7f0d000d ++int style Base_TextAppearance_AppCompat 0x7f0d000e ++int style Base_TextAppearance_AppCompat_Body1 0x7f0d000f ++int style Base_TextAppearance_AppCompat_Body2 0x7f0d0010 ++int style Base_TextAppearance_AppCompat_Button 0x7f0d0011 ++int style Base_TextAppearance_AppCompat_Caption 0x7f0d0012 ++int style Base_TextAppearance_AppCompat_Display1 0x7f0d0013 ++int style Base_TextAppearance_AppCompat_Display2 0x7f0d0014 ++int style Base_TextAppearance_AppCompat_Display3 0x7f0d0015 ++int style Base_TextAppearance_AppCompat_Display4 0x7f0d0016 ++int style Base_TextAppearance_AppCompat_Headline 0x7f0d0017 ++int style Base_TextAppearance_AppCompat_Inverse 0x7f0d0018 ++int style Base_TextAppearance_AppCompat_Large 0x7f0d0019 ++int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0d001a ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0d001b ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0d001c ++int style Base_TextAppearance_AppCompat_Medium 0x7f0d001d ++int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0d001e ++int style Base_TextAppearance_AppCompat_Menu 0x7f0d001f ++int style Base_TextAppearance_AppCompat_SearchResult 0x7f0d0020 ++int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0d0021 ++int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0d0022 ++int style Base_TextAppearance_AppCompat_Small 0x7f0d0023 ++int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0d0024 ++int style Base_TextAppearance_AppCompat_Subhead 0x7f0d0025 ++int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0d0026 ++int style Base_TextAppearance_AppCompat_Title 0x7f0d0027 ++int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0d0028 ++int style Base_TextAppearance_AppCompat_Tooltip 0x7f0d0029 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0d002a ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0d002b ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0d002c ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0d002d ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0d002e ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0d002f ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0d0030 ++int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0d0031 ++int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0d0032 ++int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0d0033 ++int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0d0034 ++int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0d0035 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0d0036 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0d0037 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0d0038 ++int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0d0039 ++int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0d003a ++int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0d003b ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0d003c ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0d003d ++int style Base_Theme_AppCompat 0x7f0d003e ++int style Base_Theme_AppCompat_CompactMenu 0x7f0d003f ++int style Base_Theme_AppCompat_Dialog 0x7f0d0040 ++int style Base_Theme_AppCompat_Dialog_Alert 0x7f0d0041 ++int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0d0042 ++int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0d0043 ++int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0d0044 ++int style Base_Theme_AppCompat_Light 0x7f0d0045 ++int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0d0046 ++int style Base_Theme_AppCompat_Light_Dialog 0x7f0d0047 ++int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0d0048 ++int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0d0049 ++int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0d004a ++int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0d004b ++int style Base_ThemeOverlay_AppCompat 0x7f0d004c ++int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0d004d ++int style Base_ThemeOverlay_AppCompat_Dark 0x7f0d004e ++int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0d004f ++int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0d0050 ++int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0d0051 ++int style Base_ThemeOverlay_AppCompat_Light 0x7f0d0052 ++int style Base_V21_Theme_AppCompat 0x7f0d0053 ++int style Base_V21_Theme_AppCompat_Dialog 0x7f0d0054 ++int style Base_V21_Theme_AppCompat_Light 0x7f0d0055 ++int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0d0056 ++int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0d0057 ++int style Base_V22_Theme_AppCompat 0x7f0d0058 ++int style Base_V22_Theme_AppCompat_Light 0x7f0d0059 ++int style Base_V23_Theme_AppCompat 0x7f0d005a ++int style Base_V23_Theme_AppCompat_Light 0x7f0d005b ++int style Base_V26_Theme_AppCompat 0x7f0d005c ++int style Base_V26_Theme_AppCompat_Light 0x7f0d005d ++int style Base_V26_Widget_AppCompat_Toolbar 0x7f0d005e ++int style Base_V28_Theme_AppCompat 0x7f0d005f ++int style Base_V28_Theme_AppCompat_Light 0x7f0d0060 ++int style Base_V7_Theme_AppCompat 0x7f0d0061 ++int style Base_V7_Theme_AppCompat_Dialog 0x7f0d0062 ++int style Base_V7_Theme_AppCompat_Light 0x7f0d0063 ++int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0d0064 ++int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0d0065 ++int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0d0066 ++int style Base_V7_Widget_AppCompat_EditText 0x7f0d0067 ++int style Base_V7_Widget_AppCompat_Toolbar 0x7f0d0068 ++int style Base_Widget_AppCompat_ActionBar 0x7f0d0069 ++int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0d006a ++int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0d006b ++int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0d006c ++int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0d006d ++int style Base_Widget_AppCompat_ActionButton 0x7f0d006e ++int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0d006f ++int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0d0070 ++int style Base_Widget_AppCompat_ActionMode 0x7f0d0071 ++int style Base_Widget_AppCompat_ActivityChooserView 0x7f0d0072 ++int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0d0073 ++int style Base_Widget_AppCompat_Button 0x7f0d0074 ++int style Base_Widget_AppCompat_Button_Borderless 0x7f0d0075 ++int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0d0076 ++int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0d0077 ++int style Base_Widget_AppCompat_Button_Colored 0x7f0d0078 ++int style Base_Widget_AppCompat_Button_Small 0x7f0d0079 ++int style Base_Widget_AppCompat_ButtonBar 0x7f0d007a ++int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0d007b ++int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0d007c ++int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0d007d ++int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0d007e ++int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0d007f ++int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0d0080 ++int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0d0081 ++int style Base_Widget_AppCompat_EditText 0x7f0d0082 ++int style Base_Widget_AppCompat_ImageButton 0x7f0d0083 ++int style Base_Widget_AppCompat_Light_ActionBar 0x7f0d0084 ++int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0d0085 ++int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0d0086 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0d0087 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0d0088 ++int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0d0089 ++int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0d008a ++int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0d008b ++int style Base_Widget_AppCompat_ListMenuView 0x7f0d008c ++int style Base_Widget_AppCompat_ListPopupWindow 0x7f0d008d ++int style Base_Widget_AppCompat_ListView 0x7f0d008e ++int style Base_Widget_AppCompat_ListView_DropDown 0x7f0d008f ++int style Base_Widget_AppCompat_ListView_Menu 0x7f0d0090 ++int style Base_Widget_AppCompat_PopupMenu 0x7f0d0091 ++int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0d0092 ++int style Base_Widget_AppCompat_PopupWindow 0x7f0d0093 ++int style Base_Widget_AppCompat_ProgressBar 0x7f0d0094 ++int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0d0095 ++int style Base_Widget_AppCompat_RatingBar 0x7f0d0096 ++int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0d0097 ++int style Base_Widget_AppCompat_RatingBar_Small 0x7f0d0098 ++int style Base_Widget_AppCompat_SearchView 0x7f0d0099 ++int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0d009a ++int style Base_Widget_AppCompat_SeekBar 0x7f0d009b ++int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0d009c ++int style Base_Widget_AppCompat_Spinner 0x7f0d009d ++int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0d009e ++int style Base_Widget_AppCompat_TextView 0x7f0d009f ++int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0d00a0 ++int style Base_Widget_AppCompat_Toolbar 0x7f0d00a1 ++int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0d00a2 ++int style CalendarDatePickerDialog 0x7f0d00a3 ++int style CalendarDatePickerStyle 0x7f0d00a4 ++int style DialogAnimationFade 0x7f0d00a5 ++int style DialogAnimationSlide 0x7f0d00a6 ++int style NoAnimationDialog 0x7f0d00a7 ++int style Platform_AppCompat 0x7f0d00a8 ++int style Platform_AppCompat_Light 0x7f0d00a9 ++int style Platform_ThemeOverlay_AppCompat 0x7f0d00aa ++int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0d00ab ++int style Platform_ThemeOverlay_AppCompat_Light 0x7f0d00ac ++int style Platform_V21_AppCompat 0x7f0d00ad ++int style Platform_V21_AppCompat_Light 0x7f0d00ae ++int style Platform_V25_AppCompat 0x7f0d00af ++int style Platform_V25_AppCompat_Light 0x7f0d00b0 ++int style Platform_Widget_AppCompat_Spinner 0x7f0d00b1 ++int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0d00b2 ++int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0d00b3 ++int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0d00b4 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0d00b5 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0d00b6 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f0d00b7 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f0d00b8 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0d00b9 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f0d00ba ++int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0d00bb ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0d00bc ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0d00bd ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0d00be ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0d00bf ++int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0d00c0 ++int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0d00c1 ++int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0d00c2 ++int style SpinnerDatePickerDialog 0x7f0d00c3 ++int style SpinnerDatePickerStyle 0x7f0d00c4 ++int style TextAppearance_AppCompat 0x7f0d00c5 ++int style TextAppearance_AppCompat_Body1 0x7f0d00c6 ++int style TextAppearance_AppCompat_Body2 0x7f0d00c7 ++int style TextAppearance_AppCompat_Button 0x7f0d00c8 ++int style TextAppearance_AppCompat_Caption 0x7f0d00c9 ++int style TextAppearance_AppCompat_Display1 0x7f0d00ca ++int style TextAppearance_AppCompat_Display2 0x7f0d00cb ++int style TextAppearance_AppCompat_Display3 0x7f0d00cc ++int style TextAppearance_AppCompat_Display4 0x7f0d00cd ++int style TextAppearance_AppCompat_Headline 0x7f0d00ce ++int style TextAppearance_AppCompat_Inverse 0x7f0d00cf ++int style TextAppearance_AppCompat_Large 0x7f0d00d0 ++int style TextAppearance_AppCompat_Large_Inverse 0x7f0d00d1 ++int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0d00d2 ++int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0d00d3 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0d00d4 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0d00d5 ++int style TextAppearance_AppCompat_Medium 0x7f0d00d6 ++int style TextAppearance_AppCompat_Medium_Inverse 0x7f0d00d7 ++int style TextAppearance_AppCompat_Menu 0x7f0d00d8 ++int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0d00d9 ++int style TextAppearance_AppCompat_SearchResult_Title 0x7f0d00da ++int style TextAppearance_AppCompat_Small 0x7f0d00db ++int style TextAppearance_AppCompat_Small_Inverse 0x7f0d00dc ++int style TextAppearance_AppCompat_Subhead 0x7f0d00dd ++int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0d00de ++int style TextAppearance_AppCompat_Title 0x7f0d00df ++int style TextAppearance_AppCompat_Title_Inverse 0x7f0d00e0 ++int style TextAppearance_AppCompat_Tooltip 0x7f0d00e1 ++int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0d00e2 ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0d00e3 ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0d00e4 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0d00e5 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0d00e6 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0d00e7 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0d00e8 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0d00e9 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0d00ea ++int style TextAppearance_AppCompat_Widget_Button 0x7f0d00eb ++int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0d00ec ++int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0d00ed ++int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0d00ee ++int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0d00ef ++int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0d00f0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0d00f1 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0d00f2 ++int style TextAppearance_AppCompat_Widget_Switch 0x7f0d00f3 ++int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0d00f4 ++int style TextAppearance_Compat_Notification 0x7f0d00f5 ++int style TextAppearance_Compat_Notification_Info 0x7f0d00f6 ++int style TextAppearance_Compat_Notification_Line2 0x7f0d00f7 ++int style TextAppearance_Compat_Notification_Time 0x7f0d00f8 ++int style TextAppearance_Compat_Notification_Title 0x7f0d00f9 ++int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0d00fa ++int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0d00fb ++int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0d00fc ++int style Theme 0x7f0d00fd ++int style Theme_AppCompat 0x7f0d00fe ++int style Theme_AppCompat_CompactMenu 0x7f0d00ff ++int style Theme_AppCompat_DayNight 0x7f0d0100 ++int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0d0101 ++int style Theme_AppCompat_DayNight_Dialog 0x7f0d0102 ++int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0d0103 ++int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0d0104 ++int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0d0105 ++int style Theme_AppCompat_DayNight_NoActionBar 0x7f0d0106 ++int style Theme_AppCompat_Dialog 0x7f0d0107 ++int style Theme_AppCompat_Dialog_Alert 0x7f0d0108 ++int style Theme_AppCompat_Dialog_MinWidth 0x7f0d0109 ++int style Theme_AppCompat_DialogWhenLarge 0x7f0d010a ++int style Theme_AppCompat_Empty 0x7f0d010b ++int style Theme_AppCompat_Light 0x7f0d010c ++int style Theme_AppCompat_Light_DarkActionBar 0x7f0d010d ++int style Theme_AppCompat_Light_Dialog 0x7f0d010e ++int style Theme_AppCompat_Light_Dialog_Alert 0x7f0d010f ++int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0d0110 ++int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0d0111 ++int style Theme_AppCompat_Light_NoActionBar 0x7f0d0112 ++int style Theme_AppCompat_NoActionBar 0x7f0d0113 ++int style Theme_AutofillInlineSuggestion 0x7f0d0114 ++int style Theme_Catalyst 0x7f0d0115 ++int style Theme_Catalyst_LogBox 0x7f0d0116 ++int style Theme_Catalyst_RedBox 0x7f0d0117 ++int style Theme_FullScreenDialog 0x7f0d0118 ++int style Theme_FullScreenDialogAnimatedFade 0x7f0d0119 ++int style Theme_FullScreenDialogAnimatedSlide 0x7f0d011a ++int style Theme_ReactNative_AppCompat_Light 0x7f0d011b ++int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f0d011c ++int style Theme_ReactNative_TextInput_DefaultBackground 0x7f0d011d ++int style ThemeOverlay_AppCompat 0x7f0d011e ++int style ThemeOverlay_AppCompat_ActionBar 0x7f0d011f ++int style ThemeOverlay_AppCompat_Dark 0x7f0d0120 ++int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0d0121 ++int style ThemeOverlay_AppCompat_DayNight 0x7f0d0122 ++int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f0d0123 ++int style ThemeOverlay_AppCompat_Dialog 0x7f0d0124 ++int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0d0125 ++int style ThemeOverlay_AppCompat_Light 0x7f0d0126 ++int style Widget_AppCompat_ActionBar 0x7f0d0127 ++int style Widget_AppCompat_ActionBar_Solid 0x7f0d0128 ++int style Widget_AppCompat_ActionBar_TabBar 0x7f0d0129 ++int style Widget_AppCompat_ActionBar_TabText 0x7f0d012a ++int style Widget_AppCompat_ActionBar_TabView 0x7f0d012b ++int style Widget_AppCompat_ActionButton 0x7f0d012c ++int style Widget_AppCompat_ActionButton_CloseMode 0x7f0d012d ++int style Widget_AppCompat_ActionButton_Overflow 0x7f0d012e ++int style Widget_AppCompat_ActionMode 0x7f0d012f ++int style Widget_AppCompat_ActivityChooserView 0x7f0d0130 ++int style Widget_AppCompat_AutoCompleteTextView 0x7f0d0131 ++int style Widget_AppCompat_Button 0x7f0d0132 ++int style Widget_AppCompat_Button_Borderless 0x7f0d0133 ++int style Widget_AppCompat_Button_Borderless_Colored 0x7f0d0134 ++int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0d0135 ++int style Widget_AppCompat_Button_Colored 0x7f0d0136 ++int style Widget_AppCompat_Button_Small 0x7f0d0137 ++int style Widget_AppCompat_ButtonBar 0x7f0d0138 ++int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0d0139 ++int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0d013a ++int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0d013b ++int style Widget_AppCompat_CompoundButton_Switch 0x7f0d013c ++int style Widget_AppCompat_DrawerArrowToggle 0x7f0d013d ++int style Widget_AppCompat_DropDownItem_Spinner 0x7f0d013e ++int style Widget_AppCompat_EditText 0x7f0d013f ++int style Widget_AppCompat_ImageButton 0x7f0d0140 ++int style Widget_AppCompat_Light_ActionBar 0x7f0d0141 ++int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0d0142 ++int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0d0143 ++int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0d0144 ++int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0d0145 ++int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0d0146 ++int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0d0147 ++int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0d0148 ++int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0d0149 ++int style Widget_AppCompat_Light_ActionButton 0x7f0d014a ++int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0d014b ++int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0d014c ++int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0d014d ++int style Widget_AppCompat_Light_ActivityChooserView 0x7f0d014e ++int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0d014f ++int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0d0150 ++int style Widget_AppCompat_Light_ListPopupWindow 0x7f0d0151 ++int style Widget_AppCompat_Light_ListView_DropDown 0x7f0d0152 ++int style Widget_AppCompat_Light_PopupMenu 0x7f0d0153 ++int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0d0154 ++int style Widget_AppCompat_Light_SearchView 0x7f0d0155 ++int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0d0156 ++int style Widget_AppCompat_ListMenuView 0x7f0d0157 ++int style Widget_AppCompat_ListPopupWindow 0x7f0d0158 ++int style Widget_AppCompat_ListView 0x7f0d0159 ++int style Widget_AppCompat_ListView_DropDown 0x7f0d015a ++int style Widget_AppCompat_ListView_Menu 0x7f0d015b ++int style Widget_AppCompat_PopupMenu 0x7f0d015c ++int style Widget_AppCompat_PopupMenu_Overflow 0x7f0d015d ++int style Widget_AppCompat_PopupWindow 0x7f0d015e ++int style Widget_AppCompat_ProgressBar 0x7f0d015f ++int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0d0160 ++int style Widget_AppCompat_RatingBar 0x7f0d0161 ++int style Widget_AppCompat_RatingBar_Indicator 0x7f0d0162 ++int style Widget_AppCompat_RatingBar_Small 0x7f0d0163 ++int style Widget_AppCompat_SearchView 0x7f0d0164 ++int style Widget_AppCompat_SearchView_ActionBar 0x7f0d0165 ++int style Widget_AppCompat_SeekBar 0x7f0d0166 ++int style Widget_AppCompat_SeekBar_Discrete 0x7f0d0167 ++int style Widget_AppCompat_Spinner 0x7f0d0168 ++int style Widget_AppCompat_Spinner_DropDown 0x7f0d0169 ++int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0d016a ++int style Widget_AppCompat_Spinner_Underlined 0x7f0d016b ++int style Widget_AppCompat_TextView 0x7f0d016c ++int style Widget_AppCompat_TextView_SpinnerItem 0x7f0d016d ++int style Widget_AppCompat_Toolbar 0x7f0d016e ++int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0d016f ++int style Widget_Autofill 0x7f0d0170 ++int style Widget_Autofill_InlineSuggestionChip 0x7f0d0171 ++int style Widget_Autofill_InlineSuggestionEndIconStyle 0x7f0d0172 ++int style Widget_Autofill_InlineSuggestionStartIconStyle 0x7f0d0173 ++int style Widget_Autofill_InlineSuggestionSubtitle 0x7f0d0174 ++int style Widget_Autofill_InlineSuggestionTitle 0x7f0d0175 ++int style Widget_Compat_NotificationActionContainer 0x7f0d0176 ++int style Widget_Compat_NotificationActionText 0x7f0d0177 ++int style redboxButton 0x7f0d0178 ++int[] styleable ActionBar { 0x7f03003b, 0x7f03003d, 0x7f03003e, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f030069, 0x7f03006a, 0x7f03006b, 0x7f03006d, 0x7f030072, 0x7f030073, 0x7f030086, 0x7f03009b, 0x7f03009c, 0x7f03009d, 0x7f03009e, 0x7f03009f, 0x7f0300a4, 0x7f0300a8, 0x7f0300bc, 0x7f0300c4, 0x7f0300d3, 0x7f0300da, 0x7f0300db, 0x7f030107, 0x7f03010a, 0x7f030127, 0x7f030130 } ++int styleable ActionBar_background 0 ++int styleable ActionBar_backgroundSplit 1 ++int styleable ActionBar_backgroundStacked 2 ++int styleable ActionBar_contentInsetEnd 3 ++int styleable ActionBar_contentInsetEndWithActions 4 ++int styleable ActionBar_contentInsetLeft 5 ++int styleable ActionBar_contentInsetRight 6 ++int styleable ActionBar_contentInsetStart 7 ++int styleable ActionBar_contentInsetStartWithNavigation 8 ++int styleable ActionBar_customNavigationLayout 9 ++int styleable ActionBar_displayOptions 10 ++int styleable ActionBar_divider 11 ++int styleable ActionBar_elevation 12 ++int styleable ActionBar_height 13 ++int styleable ActionBar_hideOnContentScroll 14 ++int styleable ActionBar_homeAsUpIndicator 15 ++int styleable ActionBar_homeLayout 16 ++int styleable ActionBar_icon 17 ++int styleable ActionBar_indeterminateProgressStyle 18 ++int styleable ActionBar_itemPadding 19 ++int styleable ActionBar_logo 20 ++int styleable ActionBar_navigationMode 21 ++int styleable ActionBar_popupTheme 22 ++int styleable ActionBar_progressBarPadding 23 ++int styleable ActionBar_progressBarStyle 24 ++int styleable ActionBar_subtitle 25 ++int styleable ActionBar_subtitleTextStyle 26 ++int styleable ActionBar_title 27 ++int styleable ActionBar_titleTextStyle 28 ++int[] styleable ActionBarLayout { 0x010100b3 } ++int styleable ActionBarLayout_android_layout_gravity 0 ++int[] styleable ActionMenuItemView { 0x0101013f } ++int styleable ActionMenuItemView_android_minWidth 0 ++int[] styleable ActionMenuView { } ++int[] styleable ActionMode { 0x7f03003b, 0x7f03003d, 0x7f030056, 0x7f03009b, 0x7f03010a, 0x7f030130 } ++int styleable ActionMode_background 0 ++int styleable ActionMode_backgroundSplit 1 ++int styleable ActionMode_closeItemLayout 2 ++int styleable ActionMode_height 3 ++int styleable ActionMode_subtitleTextStyle 4 ++int styleable ActionMode_titleTextStyle 5 ++int[] styleable ActivityChooserView { 0x7f030088, 0x7f0300a5 } ++int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 ++int styleable ActivityChooserView_initialActivityCount 1 ++int[] styleable AlertDialog { 0x010100f2, 0x7f03004a, 0x7f03004b, 0x7f0300b1, 0x7f0300b2, 0x7f0300c1, 0x7f0300fd, 0x7f0300fe } ++int styleable AlertDialog_android_layout 0 ++int styleable AlertDialog_buttonIconDimen 1 ++int styleable AlertDialog_buttonPanelSideLayout 2 ++int styleable AlertDialog_listItemLayout 3 ++int styleable AlertDialog_listLayout 4 ++int styleable AlertDialog_multiChoiceItemLayout 5 ++int styleable AlertDialog_showTitle 6 ++int styleable AlertDialog_singleChoiceItemLayout 7 ++int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } ++int styleable AnimatedStateListDrawableCompat_android_dither 0 ++int styleable AnimatedStateListDrawableCompat_android_visible 1 ++int styleable AnimatedStateListDrawableCompat_android_variablePadding 2 ++int styleable AnimatedStateListDrawableCompat_android_constantSize 3 ++int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4 ++int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5 ++int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 } ++int styleable AnimatedStateListDrawableItem_android_id 0 ++int styleable AnimatedStateListDrawableItem_android_drawable 1 ++int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b } ++int styleable AnimatedStateListDrawableTransition_android_drawable 0 ++int styleable AnimatedStateListDrawableTransition_android_toId 1 ++int styleable AnimatedStateListDrawableTransition_android_fromId 2 ++int styleable AnimatedStateListDrawableTransition_android_reversible 3 ++int[] styleable AppCompatEmojiHelper { } ++int[] styleable AppCompatImageView { 0x01010119, 0x7f030103, 0x7f030125, 0x7f030126 } ++int styleable AppCompatImageView_android_src 0 ++int styleable AppCompatImageView_srcCompat 1 ++int styleable AppCompatImageView_tint 2 ++int styleable AppCompatImageView_tintMode 3 ++int[] styleable AppCompatSeekBar { 0x01010142, 0x7f030122, 0x7f030123, 0x7f030124 } ++int styleable AppCompatSeekBar_android_thumb 0 ++int styleable AppCompatSeekBar_tickMark 1 ++int styleable AppCompatSeekBar_tickMarkTint 2 ++int styleable AppCompatSeekBar_tickMarkTintMode 3 ++int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } ++int styleable AppCompatTextHelper_android_textAppearance 0 ++int styleable AppCompatTextHelper_android_drawableTop 1 ++int styleable AppCompatTextHelper_android_drawableBottom 2 ++int styleable AppCompatTextHelper_android_drawableLeft 3 ++int styleable AppCompatTextHelper_android_drawableRight 4 ++int styleable AppCompatTextHelper_android_drawableStart 5 ++int styleable AppCompatTextHelper_android_drawableEnd 6 ++int[] styleable AppCompatTextView { 0x01010034, 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030034, 0x7f030035, 0x7f030077, 0x7f030078, 0x7f030079, 0x7f03007a, 0x7f03007c, 0x7f03007d, 0x7f03007e, 0x7f03007f, 0x7f030087, 0x7f03008c, 0x7f03008e, 0x7f030097, 0x7f0300aa, 0x7f0300ac, 0x7f030111, 0x7f03011c } ++int styleable AppCompatTextView_android_textAppearance 0 ++int styleable AppCompatTextView_autoSizeMaxTextSize 1 ++int styleable AppCompatTextView_autoSizeMinTextSize 2 ++int styleable AppCompatTextView_autoSizePresetSizes 3 ++int styleable AppCompatTextView_autoSizeStepGranularity 4 ++int styleable AppCompatTextView_autoSizeTextType 5 ++int styleable AppCompatTextView_drawableBottomCompat 6 ++int styleable AppCompatTextView_drawableEndCompat 7 ++int styleable AppCompatTextView_drawableLeftCompat 8 ++int styleable AppCompatTextView_drawableRightCompat 9 ++int styleable AppCompatTextView_drawableStartCompat 10 ++int styleable AppCompatTextView_drawableTint 11 ++int styleable AppCompatTextView_drawableTintMode 12 ++int styleable AppCompatTextView_drawableTopCompat 13 ++int styleable AppCompatTextView_emojiCompatEnabled 14 ++int styleable AppCompatTextView_firstBaselineToTopHeight 15 ++int styleable AppCompatTextView_fontFamily 16 ++int styleable AppCompatTextView_fontVariationSettings 17 ++int styleable AppCompatTextView_lastBaselineToBottomHeight 18 ++int styleable AppCompatTextView_lineHeight 19 ++int styleable AppCompatTextView_textAllCaps 20 ++int styleable AppCompatTextView_textLocale 21 ++int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030023, 0x7f030027, 0x7f030028, 0x7f030029, 0x7f03002a, 0x7f030030, 0x7f030042, 0x7f030043, 0x7f030044, 0x7f030045, 0x7f030046, 0x7f030047, 0x7f03004c, 0x7f03004d, 0x7f030053, 0x7f030054, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f03005e, 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f03006c, 0x7f03006f, 0x7f030070, 0x7f030071, 0x7f030074, 0x7f030076, 0x7f030081, 0x7f030082, 0x7f030083, 0x7f030084, 0x7f030085, 0x7f03009d, 0x7f0300a3, 0x7f0300ad, 0x7f0300ae, 0x7f0300af, 0x7f0300b0, 0x7f0300b3, 0x7f0300b4, 0x7f0300b5, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8, 0x7f0300b9, 0x7f0300ba, 0x7f0300bb, 0x7f0300cd, 0x7f0300ce, 0x7f0300cf, 0x7f0300d2, 0x7f0300d4, 0x7f0300df, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, 0x7f0300f5, 0x7f0300f6, 0x7f0300f7, 0x7f0300f8, 0x7f030100, 0x7f030101, 0x7f03010f, 0x7f030112, 0x7f030113, 0x7f030114, 0x7f030115, 0x7f030116, 0x7f030117, 0x7f030118, 0x7f030119, 0x7f03011a, 0x7f03011b, 0x7f030131, 0x7f030132, 0x7f030133, 0x7f030134, 0x7f03013b, 0x7f03013d, 0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146 } ++int styleable AppCompatTheme_android_windowIsFloating 0 ++int styleable AppCompatTheme_android_windowAnimationStyle 1 ++int styleable AppCompatTheme_actionBarDivider 2 ++int styleable AppCompatTheme_actionBarItemBackground 3 ++int styleable AppCompatTheme_actionBarPopupTheme 4 ++int styleable AppCompatTheme_actionBarSize 5 ++int styleable AppCompatTheme_actionBarSplitStyle 6 ++int styleable AppCompatTheme_actionBarStyle 7 ++int styleable AppCompatTheme_actionBarTabBarStyle 8 ++int styleable AppCompatTheme_actionBarTabStyle 9 ++int styleable AppCompatTheme_actionBarTabTextStyle 10 ++int styleable AppCompatTheme_actionBarTheme 11 ++int styleable AppCompatTheme_actionBarWidgetTheme 12 ++int styleable AppCompatTheme_actionButtonStyle 13 ++int styleable AppCompatTheme_actionDropDownStyle 14 ++int styleable AppCompatTheme_actionMenuTextAppearance 15 ++int styleable AppCompatTheme_actionMenuTextColor 16 ++int styleable AppCompatTheme_actionModeBackground 17 ++int styleable AppCompatTheme_actionModeCloseButtonStyle 18 ++int styleable AppCompatTheme_actionModeCloseContentDescription 19 ++int styleable AppCompatTheme_actionModeCloseDrawable 20 ++int styleable AppCompatTheme_actionModeCopyDrawable 21 ++int styleable AppCompatTheme_actionModeCutDrawable 22 ++int styleable AppCompatTheme_actionModeFindDrawable 23 ++int styleable AppCompatTheme_actionModePasteDrawable 24 ++int styleable AppCompatTheme_actionModePopupWindowStyle 25 ++int styleable AppCompatTheme_actionModeSelectAllDrawable 26 ++int styleable AppCompatTheme_actionModeShareDrawable 27 ++int styleable AppCompatTheme_actionModeSplitBackground 28 ++int styleable AppCompatTheme_actionModeStyle 29 ++int styleable AppCompatTheme_actionModeTheme 30 ++int styleable AppCompatTheme_actionModeWebSearchDrawable 31 ++int styleable AppCompatTheme_actionOverflowButtonStyle 32 ++int styleable AppCompatTheme_actionOverflowMenuStyle 33 ++int styleable AppCompatTheme_activityChooserViewStyle 34 ++int styleable AppCompatTheme_alertDialogButtonGroupStyle 35 ++int styleable AppCompatTheme_alertDialogCenterButtons 36 ++int styleable AppCompatTheme_alertDialogStyle 37 ++int styleable AppCompatTheme_alertDialogTheme 38 ++int styleable AppCompatTheme_autoCompleteTextViewStyle 39 ++int styleable AppCompatTheme_borderlessButtonStyle 40 ++int styleable AppCompatTheme_buttonBarButtonStyle 41 ++int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 ++int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 ++int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 ++int styleable AppCompatTheme_buttonBarStyle 45 ++int styleable AppCompatTheme_buttonStyle 46 ++int styleable AppCompatTheme_buttonStyleSmall 47 ++int styleable AppCompatTheme_checkboxStyle 48 ++int styleable AppCompatTheme_checkedTextViewStyle 49 ++int styleable AppCompatTheme_colorAccent 50 ++int styleable AppCompatTheme_colorBackgroundFloating 51 ++int styleable AppCompatTheme_colorButtonNormal 52 ++int styleable AppCompatTheme_colorControlActivated 53 ++int styleable AppCompatTheme_colorControlHighlight 54 ++int styleable AppCompatTheme_colorControlNormal 55 ++int styleable AppCompatTheme_colorError 56 ++int styleable AppCompatTheme_colorPrimary 57 ++int styleable AppCompatTheme_colorPrimaryDark 58 ++int styleable AppCompatTheme_colorSwitchThumbNormal 59 ++int styleable AppCompatTheme_controlBackground 60 ++int styleable AppCompatTheme_dialogCornerRadius 61 ++int styleable AppCompatTheme_dialogPreferredPadding 62 ++int styleable AppCompatTheme_dialogTheme 63 ++int styleable AppCompatTheme_dividerHorizontal 64 ++int styleable AppCompatTheme_dividerVertical 65 ++int styleable AppCompatTheme_dropDownListViewStyle 66 ++int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 ++int styleable AppCompatTheme_editTextBackground 68 ++int styleable AppCompatTheme_editTextColor 69 ++int styleable AppCompatTheme_editTextStyle 70 ++int styleable AppCompatTheme_homeAsUpIndicator 71 ++int styleable AppCompatTheme_imageButtonStyle 72 ++int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 ++int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 ++int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 ++int styleable AppCompatTheme_listDividerAlertDialog 76 ++int styleable AppCompatTheme_listMenuViewStyle 77 ++int styleable AppCompatTheme_listPopupWindowStyle 78 ++int styleable AppCompatTheme_listPreferredItemHeight 79 ++int styleable AppCompatTheme_listPreferredItemHeightLarge 80 ++int styleable AppCompatTheme_listPreferredItemHeightSmall 81 ++int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 ++int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 ++int styleable AppCompatTheme_listPreferredItemPaddingRight 84 ++int styleable AppCompatTheme_listPreferredItemPaddingStart 85 ++int styleable AppCompatTheme_panelBackground 86 ++int styleable AppCompatTheme_panelMenuListTheme 87 ++int styleable AppCompatTheme_panelMenuListWidth 88 ++int styleable AppCompatTheme_popupMenuStyle 89 ++int styleable AppCompatTheme_popupWindowStyle 90 ++int styleable AppCompatTheme_radioButtonStyle 91 ++int styleable AppCompatTheme_ratingBarStyle 92 ++int styleable AppCompatTheme_ratingBarStyleIndicator 93 ++int styleable AppCompatTheme_ratingBarStyleSmall 94 ++int styleable AppCompatTheme_searchViewStyle 95 ++int styleable AppCompatTheme_seekBarStyle 96 ++int styleable AppCompatTheme_selectableItemBackground 97 ++int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 ++int styleable AppCompatTheme_spinnerDropDownItemStyle 99 ++int styleable AppCompatTheme_spinnerStyle 100 ++int styleable AppCompatTheme_switchStyle 101 ++int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 ++int styleable AppCompatTheme_textAppearanceListItem 103 ++int styleable AppCompatTheme_textAppearanceListItemSecondary 104 ++int styleable AppCompatTheme_textAppearanceListItemSmall 105 ++int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 ++int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 ++int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 ++int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 ++int styleable AppCompatTheme_textColorAlertDialogListItem 110 ++int styleable AppCompatTheme_textColorSearchUrl 111 ++int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 ++int styleable AppCompatTheme_toolbarStyle 113 ++int styleable AppCompatTheme_tooltipForegroundColor 114 ++int styleable AppCompatTheme_tooltipFrameBackground 115 ++int styleable AppCompatTheme_viewInflaterClass 116 ++int styleable AppCompatTheme_windowActionBar 117 ++int styleable AppCompatTheme_windowActionBarOverlay 118 ++int styleable AppCompatTheme_windowActionModeOverlay 119 ++int styleable AppCompatTheme_windowFixedHeightMajor 120 ++int styleable AppCompatTheme_windowFixedHeightMinor 121 ++int styleable AppCompatTheme_windowFixedWidthMajor 122 ++int styleable AppCompatTheme_windowFixedWidthMinor 123 ++int styleable AppCompatTheme_windowMinWidthMajor 124 ++int styleable AppCompatTheme_windowMinWidthMinor 125 ++int styleable AppCompatTheme_windowNoTitle 126 ++int[] styleable Autofill_InlineSuggestion { 0x7f030036, 0x7f030037, 0x7f030038, 0x7f030039, 0x7f03003a, 0x7f0300a6 } ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionChip 0 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionEndIconStyle 1 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionStartIconStyle 2 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionSubtitle 3 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionTitle 4 ++int styleable Autofill_InlineSuggestion_isAutofillInlineSuggestionTheme 5 ++int[] styleable ButtonBarLayout { 0x7f03002b } ++int styleable ButtonBarLayout_allowStacking 0 ++int[] styleable Capability { 0x7f0300de, 0x7f0300f9 } ++int styleable Capability_queryPatterns 0 ++int styleable Capability_shortcutMatchRequired 1 ++int[] styleable CheckedTextView { 0x01010108, 0x7f030050, 0x7f030051, 0x7f030052 } ++int styleable CheckedTextView_android_checkMark 0 ++int styleable CheckedTextView_checkMarkCompat 1 ++int styleable CheckedTextView_checkMarkTint 2 ++int styleable CheckedTextView_checkMarkTintMode 3 ++int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x01010647, 0x7f03002c, 0x7f0300a9 } ++int styleable ColorStateListItem_android_color 0 ++int styleable ColorStateListItem_android_alpha 1 ++int styleable ColorStateListItem_android_lStar 2 ++int styleable ColorStateListItem_alpha 3 ++int styleable ColorStateListItem_lStar 4 ++int[] styleable CompoundButton { 0x01010107, 0x7f030048, 0x7f03004e, 0x7f03004f } ++int styleable CompoundButton_android_button 0 ++int styleable CompoundButton_buttonCompat 1 ++int styleable CompoundButton_buttonTint 2 ++int styleable CompoundButton_buttonTintMode 3 ++int[] styleable DrawerArrowToggle { 0x7f03002e, 0x7f03002f, 0x7f030041, 0x7f030059, 0x7f03007b, 0x7f030099, 0x7f0300ff, 0x7f03011e } ++int styleable DrawerArrowToggle_arrowHeadLength 0 ++int styleable DrawerArrowToggle_arrowShaftLength 1 ++int styleable DrawerArrowToggle_barLength 2 ++int styleable DrawerArrowToggle_color 3 ++int styleable DrawerArrowToggle_drawableSize 4 ++int styleable DrawerArrowToggle_gapBetweenBars 5 ++int styleable DrawerArrowToggle_spinBars 6 ++int styleable DrawerArrowToggle_thickness 7 ++int[] styleable FontFamily { 0x7f03008f, 0x7f030090, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095 } ++int styleable FontFamily_fontProviderAuthority 0 ++int styleable FontFamily_fontProviderCerts 1 ++int styleable FontFamily_fontProviderFetchStrategy 2 ++int styleable FontFamily_fontProviderFetchTimeout 3 ++int styleable FontFamily_fontProviderPackage 4 ++int styleable FontFamily_fontProviderQuery 5 ++int styleable FontFamily_fontProviderSystemFontFamily 6 ++int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f03008d, 0x7f030096, 0x7f030097, 0x7f030098, 0x7f030139 } ++int styleable FontFamilyFont_android_font 0 ++int styleable FontFamilyFont_android_fontWeight 1 ++int styleable FontFamilyFont_android_fontStyle 2 ++int styleable FontFamilyFont_android_ttcIndex 3 ++int styleable FontFamilyFont_android_fontVariationSettings 4 ++int styleable FontFamilyFont_font 5 ++int styleable FontFamilyFont_fontStyle 6 ++int styleable FontFamilyFont_fontVariationSettings 7 ++int styleable FontFamilyFont_fontWeight 8 ++int styleable FontFamilyFont_ttcIndex 9 ++int[] styleable Fragment { 0x01010003, 0x010100d0, 0x010100d1 } ++int styleable Fragment_android_name 0 ++int styleable Fragment_android_id 1 ++int styleable Fragment_android_tag 2 ++int[] styleable FragmentContainerView { 0x01010003, 0x010100d1 } ++int styleable FragmentContainerView_android_name 0 ++int styleable FragmentContainerView_android_tag 1 ++int[] styleable GenericDraweeHierarchy { 0x7f030025, 0x7f03003c, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f0300c8, 0x7f0300d0, 0x7f0300d1, 0x7f0300d6, 0x7f0300d7, 0x7f0300d8, 0x7f0300d9, 0x7f0300e3, 0x7f0300e4, 0x7f0300e5, 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f0300e9, 0x7f0300ea, 0x7f0300eb, 0x7f0300ec, 0x7f0300ed, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f1, 0x7f0300f2, 0x7f03013a } ++int styleable GenericDraweeHierarchy_actualImageScaleType 0 ++int styleable GenericDraweeHierarchy_backgroundImage 1 ++int styleable GenericDraweeHierarchy_fadeDuration 2 ++int styleable GenericDraweeHierarchy_failureImage 3 ++int styleable GenericDraweeHierarchy_failureImageScaleType 4 ++int styleable GenericDraweeHierarchy_overlayImage 5 ++int styleable GenericDraweeHierarchy_placeholderImage 6 ++int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 ++int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 ++int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 ++int styleable GenericDraweeHierarchy_progressBarImage 10 ++int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 ++int styleable GenericDraweeHierarchy_retryImage 12 ++int styleable GenericDraweeHierarchy_retryImageScaleType 13 ++int styleable GenericDraweeHierarchy_roundAsCircle 14 ++int styleable GenericDraweeHierarchy_roundBottomEnd 15 ++int styleable GenericDraweeHierarchy_roundBottomLeft 16 ++int styleable GenericDraweeHierarchy_roundBottomRight 17 ++int styleable GenericDraweeHierarchy_roundBottomStart 18 ++int styleable GenericDraweeHierarchy_roundTopEnd 19 ++int styleable GenericDraweeHierarchy_roundTopLeft 20 ++int styleable GenericDraweeHierarchy_roundTopRight 21 ++int styleable GenericDraweeHierarchy_roundTopStart 22 ++int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 ++int styleable GenericDraweeHierarchy_roundedCornerRadius 24 ++int styleable GenericDraweeHierarchy_roundingBorderColor 25 ++int styleable GenericDraweeHierarchy_roundingBorderPadding 26 ++int styleable GenericDraweeHierarchy_roundingBorderWidth 27 ++int styleable GenericDraweeHierarchy_viewAspectRatio 28 ++int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 } ++int styleable GradientColor_android_startColor 0 ++int styleable GradientColor_android_endColor 1 ++int styleable GradientColor_android_type 2 ++int styleable GradientColor_android_centerX 3 ++int styleable GradientColor_android_centerY 4 ++int styleable GradientColor_android_gradientRadius 5 ++int styleable GradientColor_android_tileMode 6 ++int styleable GradientColor_android_centerColor 7 ++int styleable GradientColor_android_startX 8 ++int styleable GradientColor_android_startY 9 ++int styleable GradientColor_android_endX 10 ++int styleable GradientColor_android_endY 11 ++int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } ++int styleable GradientColorItem_android_color 0 ++int styleable GradientColorItem_android_offset 1 ++int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f030073, 0x7f030075, 0x7f0300bf, 0x7f0300fb } ++int styleable LinearLayoutCompat_android_gravity 0 ++int styleable LinearLayoutCompat_android_orientation 1 ++int styleable LinearLayoutCompat_android_baselineAligned 2 ++int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 ++int styleable LinearLayoutCompat_android_weightSum 4 ++int styleable LinearLayoutCompat_divider 5 ++int styleable LinearLayoutCompat_dividerPadding 6 ++int styleable LinearLayoutCompat_measureWithLargestChild 7 ++int styleable LinearLayoutCompat_showDividers 8 ++int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } ++int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 ++int styleable LinearLayoutCompat_Layout_android_layout_width 1 ++int styleable LinearLayoutCompat_Layout_android_layout_height 2 ++int styleable LinearLayoutCompat_Layout_android_layout_weight 3 ++int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } ++int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 ++int styleable ListPopupWindow_android_dropDownVerticalOffset 1 ++int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } ++int styleable MenuGroup_android_enabled 0 ++int styleable MenuGroup_android_id 1 ++int styleable MenuGroup_android_visible 2 ++int styleable MenuGroup_android_menuCategory 3 ++int styleable MenuGroup_android_orderInCategory 4 ++int styleable MenuGroup_android_checkableBehavior 5 ++int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000d, 0x7f030021, 0x7f030022, 0x7f03002d, 0x7f030065, 0x7f0300a0, 0x7f0300a1, 0x7f0300c6, 0x7f0300fa, 0x7f030135 } ++int styleable MenuItem_android_icon 0 ++int styleable MenuItem_android_enabled 1 ++int styleable MenuItem_android_id 2 ++int styleable MenuItem_android_checked 3 ++int styleable MenuItem_android_visible 4 ++int styleable MenuItem_android_menuCategory 5 ++int styleable MenuItem_android_orderInCategory 6 ++int styleable MenuItem_android_title 7 ++int styleable MenuItem_android_titleCondensed 8 ++int styleable MenuItem_android_alphabeticShortcut 9 ++int styleable MenuItem_android_numericShortcut 10 ++int styleable MenuItem_android_checkable 11 ++int styleable MenuItem_android_onClick 12 ++int styleable MenuItem_actionLayout 13 ++int styleable MenuItem_actionProviderClass 14 ++int styleable MenuItem_actionViewClass 15 ++int styleable MenuItem_alphabeticModifiers 16 ++int styleable MenuItem_contentDescription 17 ++int styleable MenuItem_iconTint 18 ++int styleable MenuItem_iconTintMode 19 ++int styleable MenuItem_numericModifiers 20 ++int styleable MenuItem_showAsAction 21 ++int styleable MenuItem_tooltipText 22 ++int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0300d5, 0x7f030105 } ++int styleable MenuView_android_windowAnimationStyle 0 ++int styleable MenuView_android_itemTextAppearance 1 ++int styleable MenuView_android_horizontalDivider 2 ++int styleable MenuView_android_verticalDivider 3 ++int styleable MenuView_android_headerBackground 4 ++int styleable MenuView_android_itemBackground 5 ++int styleable MenuView_android_itemIconDisabledAlpha 6 ++int styleable MenuView_preserveIconSpacing 7 ++int styleable MenuView_subMenuArrow 8 ++int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0300c7 } ++int styleable PopupWindow_android_popupBackground 0 ++int styleable PopupWindow_android_popupAnimationStyle 1 ++int styleable PopupWindow_overlapAnchor 2 ++int[] styleable PopupWindowBackgroundState { 0x7f030104 } ++int styleable PopupWindowBackgroundState_state_above_anchor 0 ++int[] styleable RecycleListView { 0x7f0300c9, 0x7f0300cc } ++int styleable RecycleListView_paddingBottomNoButtons 0 ++int styleable RecycleListView_paddingTopNoTitle 1 ++int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f030055, 0x7f030064, 0x7f03006e, 0x7f03009a, 0x7f0300a2, 0x7f0300ab, 0x7f0300dc, 0x7f0300dd, 0x7f0300f3, 0x7f0300f4, 0x7f030106, 0x7f03010b, 0x7f03013c } ++int styleable SearchView_android_focusable 0 ++int styleable SearchView_android_maxWidth 1 ++int styleable SearchView_android_inputType 2 ++int styleable SearchView_android_imeOptions 3 ++int styleable SearchView_closeIcon 4 ++int styleable SearchView_commitIcon 5 ++int styleable SearchView_defaultQueryHint 6 ++int styleable SearchView_goIcon 7 ++int styleable SearchView_iconifiedByDefault 8 ++int styleable SearchView_layout 9 ++int styleable SearchView_queryBackground 10 ++int styleable SearchView_queryHint 11 ++int styleable SearchView_searchHintIcon 12 ++int styleable SearchView_searchIcon 13 ++int styleable SearchView_submitBackground 14 ++int styleable SearchView_suggestionRowLayout 15 ++int styleable SearchView_voiceIcon 16 ++int[] styleable SimpleDraweeView { 0x7f030024, 0x7f030026, 0x7f03003c, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f0300c8, 0x7f0300d0, 0x7f0300d1, 0x7f0300d6, 0x7f0300d7, 0x7f0300d8, 0x7f0300d9, 0x7f0300e3, 0x7f0300e4, 0x7f0300e5, 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f0300e9, 0x7f0300ea, 0x7f0300eb, 0x7f0300ec, 0x7f0300ed, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f1, 0x7f0300f2, 0x7f03013a } ++int styleable SimpleDraweeView_actualImageResource 0 ++int styleable SimpleDraweeView_actualImageUri 1 ++int styleable SimpleDraweeView_backgroundImage 2 ++int styleable SimpleDraweeView_fadeDuration 3 ++int styleable SimpleDraweeView_failureImage 4 ++int styleable SimpleDraweeView_failureImageScaleType 5 ++int styleable SimpleDraweeView_overlayImage 6 ++int styleable SimpleDraweeView_placeholderImage 7 ++int styleable SimpleDraweeView_placeholderImageScaleType 8 ++int styleable SimpleDraweeView_pressedStateOverlayImage 9 ++int styleable SimpleDraweeView_progressBarAutoRotateInterval 10 ++int styleable SimpleDraweeView_progressBarImage 11 ++int styleable SimpleDraweeView_progressBarImageScaleType 12 ++int styleable SimpleDraweeView_retryImage 13 ++int styleable SimpleDraweeView_retryImageScaleType 14 ++int styleable SimpleDraweeView_roundAsCircle 15 ++int styleable SimpleDraweeView_roundBottomEnd 16 ++int styleable SimpleDraweeView_roundBottomLeft 17 ++int styleable SimpleDraweeView_roundBottomRight 18 ++int styleable SimpleDraweeView_roundBottomStart 19 ++int styleable SimpleDraweeView_roundTopEnd 20 ++int styleable SimpleDraweeView_roundTopLeft 21 ++int styleable SimpleDraweeView_roundTopRight 22 ++int styleable SimpleDraweeView_roundTopStart 23 ++int styleable SimpleDraweeView_roundWithOverlayColor 24 ++int styleable SimpleDraweeView_roundedCornerRadius 25 ++int styleable SimpleDraweeView_roundingBorderColor 26 ++int styleable SimpleDraweeView_roundingBorderPadding 27 ++int styleable SimpleDraweeView_roundingBorderWidth 28 ++int styleable SimpleDraweeView_viewAspectRatio 29 ++int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0300d3 } ++int styleable Spinner_android_entries 0 ++int styleable Spinner_android_popupBackground 1 ++int styleable Spinner_android_prompt 2 ++int styleable Spinner_android_dropDownWidth 3 ++int styleable Spinner_popupTheme 4 ++int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } ++int styleable StateListDrawable_android_dither 0 ++int styleable StateListDrawable_android_visible 1 ++int styleable StateListDrawable_android_variablePadding 2 ++int styleable StateListDrawable_android_constantSize 3 ++int styleable StateListDrawable_android_enterFadeDuration 4 ++int styleable StateListDrawable_android_exitFadeDuration 5 ++int[] styleable StateListDrawableItem { 0x01010199 } ++int styleable StateListDrawableItem_android_drawable 0 ++int[] styleable SwipeRefreshLayout { 0x7f03010c } ++int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 ++int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0300fc, 0x7f030102, 0x7f03010d, 0x7f03010e, 0x7f030110, 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030136, 0x7f030137, 0x7f030138 } ++int styleable SwitchCompat_android_textOn 0 ++int styleable SwitchCompat_android_textOff 1 ++int styleable SwitchCompat_android_thumb 2 ++int styleable SwitchCompat_showText 3 ++int styleable SwitchCompat_splitTrack 4 ++int styleable SwitchCompat_switchMinWidth 5 ++int styleable SwitchCompat_switchPadding 6 ++int styleable SwitchCompat_switchTextAppearance 7 ++int styleable SwitchCompat_thumbTextPadding 8 ++int styleable SwitchCompat_thumbTint 9 ++int styleable SwitchCompat_thumbTintMode 10 ++int styleable SwitchCompat_track 11 ++int styleable SwitchCompat_trackTint 12 ++int styleable SwitchCompat_trackTintMode 13 ++int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f03008e, 0x7f030097, 0x7f030111, 0x7f03011c } ++int styleable TextAppearance_android_textSize 0 ++int styleable TextAppearance_android_typeface 1 ++int styleable TextAppearance_android_textStyle 2 ++int styleable TextAppearance_android_textColor 3 ++int styleable TextAppearance_android_textColorHint 4 ++int styleable TextAppearance_android_textColorLink 5 ++int styleable TextAppearance_android_shadowColor 6 ++int styleable TextAppearance_android_shadowDx 7 ++int styleable TextAppearance_android_shadowDy 8 ++int styleable TextAppearance_android_shadowRadius 9 ++int styleable TextAppearance_android_fontFamily 10 ++int styleable TextAppearance_android_textFontWeight 11 ++int styleable TextAppearance_fontFamily 12 ++int styleable TextAppearance_fontVariationSettings 13 ++int styleable TextAppearance_textAllCaps 14 ++int styleable TextAppearance_textLocale 15 ++int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f030049, 0x7f030057, 0x7f030058, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f030069, 0x7f03006a, 0x7f03006b, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300c0, 0x7f0300c2, 0x7f0300c3, 0x7f0300d3, 0x7f030107, 0x7f030108, 0x7f030109, 0x7f030127, 0x7f030128, 0x7f030129, 0x7f03012a, 0x7f03012b, 0x7f03012c, 0x7f03012d, 0x7f03012e, 0x7f03012f } ++int styleable Toolbar_android_gravity 0 ++int styleable Toolbar_android_minHeight 1 ++int styleable Toolbar_buttonGravity 2 ++int styleable Toolbar_collapseContentDescription 3 ++int styleable Toolbar_collapseIcon 4 ++int styleable Toolbar_contentInsetEnd 5 ++int styleable Toolbar_contentInsetEndWithActions 6 ++int styleable Toolbar_contentInsetLeft 7 ++int styleable Toolbar_contentInsetRight 8 ++int styleable Toolbar_contentInsetStart 9 ++int styleable Toolbar_contentInsetStartWithNavigation 10 ++int styleable Toolbar_logo 11 ++int styleable Toolbar_logoDescription 12 ++int styleable Toolbar_maxButtonHeight 13 ++int styleable Toolbar_menu 14 ++int styleable Toolbar_navigationContentDescription 15 ++int styleable Toolbar_navigationIcon 16 ++int styleable Toolbar_popupTheme 17 ++int styleable Toolbar_subtitle 18 ++int styleable Toolbar_subtitleTextAppearance 19 ++int styleable Toolbar_subtitleTextColor 20 ++int styleable Toolbar_title 21 ++int styleable Toolbar_titleMargin 22 ++int styleable Toolbar_titleMarginBottom 23 ++int styleable Toolbar_titleMarginEnd 24 ++int styleable Toolbar_titleMarginStart 25 ++int styleable Toolbar_titleMarginTop 26 ++int styleable Toolbar_titleMargins 27 ++int styleable Toolbar_titleTextAppearance 28 ++int styleable Toolbar_titleTextColor 29 ++int[] styleable View { 0x01010000, 0x010100da, 0x7f0300ca, 0x7f0300cb, 0x7f03011d } ++int styleable View_android_theme 0 ++int styleable View_android_focusable 1 ++int styleable View_paddingEnd 2 ++int styleable View_paddingStart 3 ++int styleable View_theme 4 ++int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f03003f, 0x7f030040 } ++int styleable ViewBackgroundHelper_android_background 0 ++int styleable ViewBackgroundHelper_backgroundTint 1 ++int styleable ViewBackgroundHelper_backgroundTintMode 2 ++int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } ++int styleable ViewStubCompat_android_id 0 ++int styleable ViewStubCompat_android_layout 1 ++int styleable ViewStubCompat_android_inflatedId 2 ++int xml rn_dev_preferences 0x7f0f0000 +diff --git a/node_modules/jet/android/build/intermediates/signing_config_versions/debugAndroidTest/writeDebugAndroidTestSigningConfigVersions/signing-config-versions.json b/node_modules/jet/android/build/intermediates/signing_config_versions/debugAndroidTest/writeDebugAndroidTestSigningConfigVersions/signing-config-versions.json +new file mode 100644 +index 0000000..51f6368 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/signing_config_versions/debugAndroidTest/writeDebugAndroidTestSigningConfigVersions/signing-config-versions.json +@@ -0,0 +1 @@ ++{"enableV1Signing":false,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/intermediates/source_set_path_map/debugAndroidTest/mapDebugAndroidTestSourceSetPaths/file-map.txt b/node_modules/jet/android/build/intermediates/source_set_path_map/debugAndroidTest/mapDebugAndroidTestSourceSetPaths/file-map.txt +new file mode 100644 +index 0000000..c1c4ac8 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/source_set_path_map/debugAndroidTest/mapDebugAndroidTestSourceSetPaths/file-map.txt +@@ -0,0 +1,26 @@ ++io.invertase.jet.test.jet-emoji2-views-helper-1.2.0-0 /Users/mike/.gradle/caches/8.10.2/transforms/1395f1dd1e1d799872bf9e49c278750d/transformed/emoji2-views-helper-1.2.0/res ++io.invertase.jet.test.jet-lifecycle-viewmodel-2.5.1-1 /Users/mike/.gradle/caches/8.10.2/transforms/1cfc69a90cd3b3a0d2dab9b52d03cdee/transformed/lifecycle-viewmodel-2.5.1/res ++io.invertase.jet.test.jet-emoji2-1.2.0-2 /Users/mike/.gradle/caches/8.10.2/transforms/1f8cd4c9c69e3f3dde095d0ab0d83963/transformed/emoji2-1.2.0/res ++io.invertase.jet.test.jet-startup-runtime-1.1.1-3 /Users/mike/.gradle/caches/8.10.2/transforms/20038f428f7192ca73c13e5db60982fd/transformed/startup-runtime-1.1.1/res ++io.invertase.jet.test.jet-savedstate-1.2.0-4 /Users/mike/.gradle/caches/8.10.2/transforms/215fa374b0823e679a9dfabc7ca00667/transformed/savedstate-1.2.0/res ++io.invertase.jet.test.jet-lifecycle-runtime-2.5.1-5 /Users/mike/.gradle/caches/8.10.2/transforms/2459e462f7434c5f1e3571dd2698a418/transformed/lifecycle-runtime-2.5.1/res ++io.invertase.jet.test.jet-activity-1.6.0-6 /Users/mike/.gradle/caches/8.10.2/transforms/26f63bb91982d11bfb8d5e7702276faf/transformed/activity-1.6.0/res ++io.invertase.jet.test.jet-tracing-1.1.0-7 /Users/mike/.gradle/caches/8.10.2/transforms/2c040609e983c4f5d8ec7475a37766fd/transformed/tracing-1.1.0/res ++io.invertase.jet.test.jet-lifecycle-viewmodel-savedstate-2.5.1-8 /Users/mike/.gradle/caches/8.10.2/transforms/43ab0272df19cb55b9145857db0930f1/transformed/lifecycle-viewmodel-savedstate-2.5.1/res ++io.invertase.jet.test.jet-react-android-0.76.2-debug-9 /Users/mike/.gradle/caches/8.10.2/transforms/4c6fbd6969ebb5864101bef237834e8f/transformed/react-android-0.76.2-debug/res ++io.invertase.jet.test.jet-appcompat-1.6.1-10 /Users/mike/.gradle/caches/8.10.2/transforms/7b9981d2356e6ad8c21817a2d1d61cca/transformed/appcompat-1.6.1/res ++io.invertase.jet.test.jet-drawee-3.2.0-11 /Users/mike/.gradle/caches/8.10.2/transforms/817de9ea2c7d94bb13ea8c8df33455f0/transformed/drawee-3.2.0/res ++io.invertase.jet.test.jet-core-1.9.0-12 /Users/mike/.gradle/caches/8.10.2/transforms/9aedca77cb0166f24d026460bbb3e8f2/transformed/core-1.9.0/res ++io.invertase.jet.test.jet-core-ktx-1.9.0-13 /Users/mike/.gradle/caches/8.10.2/transforms/9b5b1aa58eb744e91e4e457ca640c7dd/transformed/core-ktx-1.9.0/res ++io.invertase.jet.test.jet-swiperefreshlayout-1.1.0-14 /Users/mike/.gradle/caches/8.10.2/transforms/9d2824bbcb0decd97862b20a14707515/transformed/swiperefreshlayout-1.1.0/res ++io.invertase.jet.test.jet-fragment-1.3.6-15 /Users/mike/.gradle/caches/8.10.2/transforms/aab319f82c96efbdcc73962788b25c1d/transformed/fragment-1.3.6/res ++io.invertase.jet.test.jet-appcompat-resources-1.6.1-16 /Users/mike/.gradle/caches/8.10.2/transforms/b90e7b89f761281c15180b86eb3c9233/transformed/appcompat-resources-1.6.1/res ++io.invertase.jet.test.jet-lifecycle-livedata-core-2.5.1-17 /Users/mike/.gradle/caches/8.10.2/transforms/bbe4f15f576428eb4e7f92ea82c07e0f/transformed/lifecycle-livedata-core-2.5.1/res ++io.invertase.jet.test.jet-autofill-1.1.0-18 /Users/mike/.gradle/caches/8.10.2/transforms/e853aea443e5379bb5d1607f216211be/transformed/autofill-1.1.0/res ++io.invertase.jet.test.jet-lifecycle-process-2.4.1-19 /Users/mike/.gradle/caches/8.10.2/transforms/ee2183567378c854597213307fc2ce1e/transformed/lifecycle-process-2.4.1/res ++io.invertase.jet.test.jet-annotation-experimental-1.3.0-20 /Users/mike/.gradle/caches/8.10.2/transforms/fce2a7d97bf26d796b4e754be3c64aa8/transformed/annotation-experimental-1.3.0/res ++io.invertase.jet.test.jet-androidTest-21 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/generated/res/resValues/androidTest/debug ++io.invertase.jet.test.jet-mergeDebugAndroidTestResources-22 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir ++io.invertase.jet.test.jet-mergeDebugAndroidTestResources-23 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/stripped.dir ++io.invertase.jet.test.jet-debugAndroidTest-24 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/merged_res/debugAndroidTest/mergeDebugAndroidTestResources ++io.invertase.jet.test.jet-debug-25 /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build/intermediates/packaged_res/debug/packageDebugResources +diff --git a/node_modules/jet/android/build/intermediates/stable_resource_ids_file/debugAndroidTest/processDebugAndroidTestResources/stableIds.txt b/node_modules/jet/android/build/intermediates/stable_resource_ids_file/debugAndroidTest/processDebugAndroidTestResources/stableIds.txt +new file mode 100644 +index 0000000..aea29e1 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/stable_resource_ids_file/debugAndroidTest/processDebugAndroidTestResources/stableIds.txt +@@ -0,0 +1,1478 @@ ++io.invertase.jet.test:styleable/ViewBackgroundHelper = 0x7f0e0031 ++io.invertase.jet.test:styleable/TextAppearance = 0x7f0e002e ++io.invertase.jet.test:styleable/SwitchCompat = 0x7f0e002d ++io.invertase.jet.test:styleable/StateListDrawableItem = 0x7f0e002b ++io.invertase.jet.test:styleable/SearchView = 0x7f0e0027 ++io.invertase.jet.test:styleable/RecycleListView = 0x7f0e0026 ++io.invertase.jet.test:styleable/MenuView = 0x7f0e0023 ++io.invertase.jet.test:styleable/ListPopupWindow = 0x7f0e0020 ++io.invertase.jet.test:styleable/LinearLayoutCompat = 0x7f0e001e ++io.invertase.jet.test:styleable/GenericDraweeHierarchy = 0x7f0e001b ++io.invertase.jet.test:styleable/FragmentContainerView = 0x7f0e001a ++io.invertase.jet.test:styleable/FontFamily = 0x7f0e0017 ++io.invertase.jet.test:styleable/CompoundButton = 0x7f0e0015 ++io.invertase.jet.test:styleable/ColorStateListItem = 0x7f0e0014 ++io.invertase.jet.test:styleable/AppCompatTheme = 0x7f0e000f ++io.invertase.jet.test:styleable/AppCompatTextHelper = 0x7f0e000d ++io.invertase.jet.test:styleable/AppCompatSeekBar = 0x7f0e000c ++io.invertase.jet.test:styleable/AnimatedStateListDrawableItem = 0x7f0e0008 ++io.invertase.jet.test:styleable/AnimatedStateListDrawableCompat = 0x7f0e0007 ++io.invertase.jet.test:styleable/AlertDialog = 0x7f0e0006 ++io.invertase.jet.test:styleable/ActivityChooserView = 0x7f0e0005 ++io.invertase.jet.test:styleable/ActionMenuItemView = 0x7f0e0002 ++io.invertase.jet.test:styleable/ActionBarLayout = 0x7f0e0001 ++io.invertase.jet.test:styleable/ActionBar = 0x7f0e0000 ++io.invertase.jet.test:style/Widget.Compat.NotificationActionText = 0x7f0d0177 ++io.invertase.jet.test:style/Widget.Compat.NotificationActionContainer = 0x7f0d0176 ++io.invertase.jet.test:style/Widget.Autofill.InlineSuggestionStartIconStyle = 0x7f0d0173 ++io.invertase.jet.test:style/Widget.Autofill.InlineSuggestionChip = 0x7f0d0171 ++io.invertase.jet.test:style/Widget.AppCompat.Toolbar.Button.Navigation = 0x7f0d016f ++io.invertase.jet.test:style/Widget.AppCompat.TextView.SpinnerItem = 0x7f0d016d ++io.invertase.jet.test:style/Widget.AppCompat.TextView = 0x7f0d016c ++io.invertase.jet.test:styleable/AppCompatEmojiHelper = 0x7f0e000a ++io.invertase.jet.test:style/Widget.AppCompat.Spinner.Underlined = 0x7f0d016b ++io.invertase.jet.test:style/Widget.AppCompat.Spinner = 0x7f0d0168 ++io.invertase.jet.test:style/Widget.AppCompat.SeekBar = 0x7f0d0166 ++io.invertase.jet.test:style/Widget.AppCompat.SearchView = 0x7f0d0164 ++io.invertase.jet.test:styleable/MenuGroup = 0x7f0e0021 ++io.invertase.jet.test:style/Widget.AppCompat.RatingBar.Indicator = 0x7f0d0162 ++io.invertase.jet.test:style/Widget.AppCompat.ListView.Menu = 0x7f0d015b ++io.invertase.jet.test:style/Widget.AppCompat.ListView.DropDown = 0x7f0d015a ++io.invertase.jet.test:style/Widget.AppCompat.ListPopupWindow = 0x7f0d0158 ++io.invertase.jet.test:style/Widget.AppCompat.ListMenuView = 0x7f0d0157 ++io.invertase.jet.test:style/Widget.AppCompat.Light.SearchView = 0x7f0d0155 ++io.invertase.jet.test:styleable/GradientColor = 0x7f0e001c ++io.invertase.jet.test:style/Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f0d0154 ++io.invertase.jet.test:style/Widget.AppCompat.Light.ListView.DropDown = 0x7f0d0152 ++io.invertase.jet.test:style/Widget.AppCompat.Light.ListPopupWindow = 0x7f0d0151 ++io.invertase.jet.test:style/Widget.AppCompat.Light.DropDownItem.Spinner = 0x7f0d0150 ++io.invertase.jet.test:style/Widget.AppCompat.Light.AutoCompleteTextView = 0x7f0d014f ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionButton.Overflow = 0x7f0d014c ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionButton = 0x7f0d014a ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionBar.TabView.Inverse = 0x7f0d0149 ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionBar.TabBar = 0x7f0d0144 ++io.invertase.jet.test:style/Widget.AppCompat.EditText = 0x7f0d013f ++io.invertase.jet.test:style/Widget.AppCompat.CompoundButton.CheckBox = 0x7f0d013a ++io.invertase.jet.test:style/Widget.AppCompat.Button.Small = 0x7f0d0137 ++io.invertase.jet.test:style/Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f0d0135 ++io.invertase.jet.test:style/Widget.AppCompat.Button.Borderless.Colored = 0x7f0d0134 ++io.invertase.jet.test:style/Widget.AppCompat.Button.Borderless = 0x7f0d0133 ++io.invertase.jet.test:style/Widget.AppCompat.Button = 0x7f0d0132 ++io.invertase.jet.test:style/Widget.AppCompat.ActivityChooserView = 0x7f0d0130 ++io.invertase.jet.test:style/Widget.AppCompat.ActionButton.Overflow = 0x7f0d012e ++io.invertase.jet.test:style/Widget.AppCompat.ActionBar.TabBar = 0x7f0d0129 ++io.invertase.jet.test:style/Widget.AppCompat.ActionBar = 0x7f0d0127 ++io.invertase.jet.test:style/ThemeOverlay.AppCompat.Light = 0x7f0d0126 ++io.invertase.jet.test:style/ThemeOverlay.AppCompat.Dialog = 0x7f0d0124 ++io.invertase.jet.test:styleable/ButtonBarLayout = 0x7f0e0011 ++io.invertase.jet.test:style/ThemeOverlay.AppCompat.DayNight = 0x7f0d0122 ++io.invertase.jet.test:style/ThemeOverlay.AppCompat = 0x7f0d011e ++io.invertase.jet.test:style/Theme.ReactNative.TextInput.DefaultBackground = 0x7f0d011d ++io.invertase.jet.test:style/Theme.ReactNative.AppCompat.Light.NoActionBar.FullScreen = 0x7f0d011c ++io.invertase.jet.test:style/Widget.AppCompat.ActionButton.CloseMode = 0x7f0d012d ++io.invertase.jet.test:style/Theme.ReactNative.AppCompat.Light = 0x7f0d011b ++io.invertase.jet.test:style/Theme.Catalyst.RedBox = 0x7f0d0117 ++io.invertase.jet.test:style/Theme.AutofillInlineSuggestion = 0x7f0d0114 ++io.invertase.jet.test:style/Theme.AppCompat.Light.NoActionBar = 0x7f0d0112 ++io.invertase.jet.test:style/Theme.AppCompat.Light.DialogWhenLarge = 0x7f0d0111 ++io.invertase.jet.test:styleable/Toolbar = 0x7f0e002f ++io.invertase.jet.test:style/Theme.AppCompat.Light.Dialog.MinWidth = 0x7f0d0110 ++io.invertase.jet.test:style/Theme.AppCompat.Light.Dialog.Alert = 0x7f0d010f ++io.invertase.jet.test:style/Theme.AppCompat.Light.Dialog = 0x7f0d010e ++io.invertase.jet.test:style/Theme.AppCompat.Light.DarkActionBar = 0x7f0d010d ++io.invertase.jet.test:style/Theme.AppCompat.DialogWhenLarge = 0x7f0d010a ++io.invertase.jet.test:style/Theme.AppCompat.Dialog.MinWidth = 0x7f0d0109 ++io.invertase.jet.test:style/Theme.AppCompat.DayNight.NoActionBar = 0x7f0d0106 ++io.invertase.jet.test:style/Theme.AppCompat.DayNight.Dialog.Alert = 0x7f0d0103 ++io.invertase.jet.test:style/Widget.AppCompat.Spinner.DropDown = 0x7f0d0169 ++io.invertase.jet.test:style/Theme.AppCompat.DayNight.Dialog = 0x7f0d0102 ++io.invertase.jet.test:style/TextAppearance.Compat.Notification.Title = 0x7f0d00f9 ++io.invertase.jet.test:style/TextAppearance.Compat.Notification.Time = 0x7f0d00f8 ++io.invertase.jet.test:style/Theme.FullScreenDialog = 0x7f0d0118 ++io.invertase.jet.test:style/TextAppearance.Compat.Notification.Line2 = 0x7f0d00f7 ++io.invertase.jet.test:style/TextAppearance.Compat.Notification = 0x7f0d00f5 ++io.invertase.jet.test:style/Widget.AppCompat.SeekBar.Discrete = 0x7f0d0167 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f0d00f0 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f0d00ee ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.Button.Colored = 0x7f0d00ed ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f0d00e9 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f0d00e6 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f0d00e5 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f0d00e4 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Title.Inverse = 0x7f0d00e0 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Title = 0x7f0d00df ++io.invertase.jet.test:style/TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f0d00d9 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Menu = 0x7f0d00d8 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Medium.Inverse = 0x7f0d00d7 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Light.SearchResult.Title = 0x7f0d00d3 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Large.Inverse = 0x7f0d00d1 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Display3 = 0x7f0d00cc ++io.invertase.jet.test:style/TextAppearance.AppCompat.Display2 = 0x7f0d00cb ++io.invertase.jet.test:style/TextAppearance.AppCompat.Display1 = 0x7f0d00ca ++io.invertase.jet.test:style/TextAppearance.AppCompat.Caption = 0x7f0d00c9 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Button = 0x7f0d00c8 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Body1 = 0x7f0d00c6 ++io.invertase.jet.test:style/SpinnerDatePickerStyle = 0x7f0d00c4 ++io.invertase.jet.test:style/RtlUnderlay.Widget.AppCompat.ActionButton.Overflow = 0x7f0d00c2 ++io.invertase.jet.test:style/RtlUnderlay.Widget.AppCompat.ActionButton = 0x7f0d00c1 ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Text = 0x7f0d00bf ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query = 0x7f0d00be ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 = 0x7f0d00bc ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown = 0x7f0d00bb ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text = 0x7f0d00b9 ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut = 0x7f0d00b7 ++io.invertase.jet.test:style/Widget.AppCompat.PopupMenu.Overflow = 0x7f0d015d ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup = 0x7f0d00b6 ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem = 0x7f0d00b5 ++io.invertase.jet.test:style/Platform.V25.AppCompat.Light = 0x7f0d00b0 ++io.invertase.jet.test:style/Widget.AppCompat.ActionButton = 0x7f0d012c ++io.invertase.jet.test:style/Platform.V25.AppCompat = 0x7f0d00af ++io.invertase.jet.test:style/Platform.V21.AppCompat.Light = 0x7f0d00ae ++io.invertase.jet.test:style/Platform.ThemeOverlay.AppCompat.Dark = 0x7f0d00ab ++io.invertase.jet.test:style/Platform.ThemeOverlay.AppCompat = 0x7f0d00aa ++io.invertase.jet.test:style/DialogAnimationSlide = 0x7f0d00a6 ++io.invertase.jet.test:style/DialogAnimationFade = 0x7f0d00a5 ++io.invertase.jet.test:style/Base.Widget.AppCompat.Toolbar = 0x7f0d00a1 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f0d00f4 ++io.invertase.jet.test:style/Base.Widget.AppCompat.TextView.SpinnerItem = 0x7f0d00a0 ++io.invertase.jet.test:style/Base.Widget.AppCompat.TextView = 0x7f0d009f ++io.invertase.jet.test:style/Base.Widget.AppCompat.Spinner = 0x7f0d009d ++io.invertase.jet.test:style/Base.Widget.AppCompat.SeekBar.Discrete = 0x7f0d009c ++io.invertase.jet.test:style/Base.Widget.AppCompat.SearchView.ActionBar = 0x7f0d009a ++io.invertase.jet.test:style/Base.Widget.AppCompat.SearchView = 0x7f0d0099 ++io.invertase.jet.test:style/Base.Widget.AppCompat.RatingBar.Small = 0x7f0d0098 ++io.invertase.jet.test:style/Base.Widget.AppCompat.RatingBar = 0x7f0d0096 ++io.invertase.jet.test:style/Base.Widget.AppCompat.ProgressBar.Horizontal = 0x7f0d0095 ++io.invertase.jet.test:style/Base.Widget.AppCompat.ListView.Menu = 0x7f0d0090 ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionBar.Solid.Inverse = 0x7f0d0143 ++io.invertase.jet.test:style/Base.Widget.AppCompat.ListView = 0x7f0d008e ++io.invertase.jet.test:style/Base.Widget.AppCompat.ListPopupWindow = 0x7f0d008d ++io.invertase.jet.test:style/Base.Widget.AppCompat.ListMenuView = 0x7f0d008c ++io.invertase.jet.test:style/Base.Widget.AppCompat.Light.PopupMenu = 0x7f0d008a ++io.invertase.jet.test:style/TextAppearance.AppCompat.Display4 = 0x7f0d00cd ++io.invertase.jet.test:style/Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f0d0088 ++io.invertase.jet.test:style/Base.Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f0d008b ++io.invertase.jet.test:style/Base.Widget.AppCompat.Light.ActionBar.TabText = 0x7f0d0087 ++io.invertase.jet.test:style/Base.Widget.AppCompat.Light.ActionBar.Solid = 0x7f0d0085 ++io.invertase.jet.test:style/Base.Widget.AppCompat.Light.ActionBar = 0x7f0d0084 ++io.invertase.jet.test:style/Base.Widget.AppCompat.ImageButton = 0x7f0d0083 ++io.invertase.jet.test:style/Base.Widget.AppCompat.EditText = 0x7f0d0082 ++io.invertase.jet.test:style/Base.Widget.AppCompat.DropDownItem.Spinner = 0x7f0d0081 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Tooltip = 0x7f0d00e1 ++io.invertase.jet.test:style/Base.Widget.AppCompat.DrawerArrowToggle = 0x7f0d007f ++io.invertase.jet.test:style/Base.Widget.AppCompat.CompoundButton.RadioButton = 0x7f0d007d ++io.invertase.jet.test:style/Base.Widget.AppCompat.ButtonBar.AlertDialog = 0x7f0d007b ++io.invertase.jet.test:style/TextAppearance.AppCompat.Inverse = 0x7f0d00cf ++io.invertase.jet.test:style/Base.Widget.AppCompat.ButtonBar = 0x7f0d007a ++io.invertase.jet.test:style/Base.Widget.AppCompat.Button.Colored = 0x7f0d0078 ++io.invertase.jet.test:style/Base.Widget.AppCompat.AutoCompleteTextView = 0x7f0d0073 ++io.invertase.jet.test:style/Widget.AppCompat.ButtonBar = 0x7f0d0138 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Body2 = 0x7f0d00c7 ++io.invertase.jet.test:style/Base.Widget.AppCompat.ActivityChooserView = 0x7f0d0072 ++io.invertase.jet.test:style/Base.Widget.AppCompat.ActionBar.TabView = 0x7f0d006d ++io.invertase.jet.test:style/Base.Widget.AppCompat.ActionBar.TabText = 0x7f0d006c ++io.invertase.jet.test:style/Base.Widget.AppCompat.ActionBar = 0x7f0d0069 ++io.invertase.jet.test:style/Base.V7.Widget.AppCompat.Toolbar = 0x7f0d0068 ++io.invertase.jet.test:style/Base.V7.Theme.AppCompat.Light.Dialog = 0x7f0d0064 ++io.invertase.jet.test:style/Base.V28.Theme.AppCompat.Light = 0x7f0d0060 ++io.invertase.jet.test:style/Base.V28.Theme.AppCompat = 0x7f0d005f ++io.invertase.jet.test:style/Base.V26.Widget.AppCompat.Toolbar = 0x7f0d005e ++io.invertase.jet.test:style/Base.V26.Theme.AppCompat = 0x7f0d005c ++io.invertase.jet.test:style/Base.V23.Theme.AppCompat = 0x7f0d005a ++io.invertase.jet.test:style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar = 0x7f0d0156 ++io.invertase.jet.test:style/Base.V22.Theme.AppCompat = 0x7f0d0058 ++io.invertase.jet.test:style/Base.V21.Theme.AppCompat.Light.Dialog = 0x7f0d0056 ++io.invertase.jet.test:style/Base.V21.Theme.AppCompat.Light = 0x7f0d0055 ++io.invertase.jet.test:style/Base.V21.Theme.AppCompat.Dialog = 0x7f0d0054 ++io.invertase.jet.test:style/Base.V21.Theme.AppCompat = 0x7f0d0053 ++io.invertase.jet.test:style/Base.ThemeOverlay.AppCompat.Dialog.Alert = 0x7f0d0051 ++io.invertase.jet.test:style/Base.ThemeOverlay.AppCompat.Dialog = 0x7f0d0050 ++io.invertase.jet.test:style/Base.Theme.AppCompat.Light.DialogWhenLarge = 0x7f0d004b ++io.invertase.jet.test:style/Base.Theme.AppCompat.Light.Dialog.MinWidth = 0x7f0d004a ++io.invertase.jet.test:style/Base.Theme.AppCompat.Light.Dialog = 0x7f0d0047 ++io.invertase.jet.test:style/Base.Theme.AppCompat.Light.DarkActionBar = 0x7f0d0046 ++io.invertase.jet.test:style/Base.Theme.AppCompat.Light = 0x7f0d0045 ++io.invertase.jet.test:style/Base.Theme.AppCompat.DialogWhenLarge = 0x7f0d0044 ++io.invertase.jet.test:style/Base.Theme.AppCompat.Dialog.MinWidth = 0x7f0d0043 ++io.invertase.jet.test:style/Base.Theme.AppCompat = 0x7f0d003e ++io.invertase.jet.test:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f0d003d ++io.invertase.jet.test:style/Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f0d003b ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f0d003a ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f0d0038 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f0d0037 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.DropDownItem = 0x7f0d0035 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.Button.Inverse = 0x7f0d0034 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.Button.Colored = 0x7f0d0033 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f0d0032 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.Button = 0x7f0d0031 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f0d002f ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse = 0x7f0d002c ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Tooltip = 0x7f0d0029 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Title.Inverse = 0x7f0d0028 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Title = 0x7f0d0027 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f0d00e2 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Subhead = 0x7f0d0025 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Small = 0x7f0d0023 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.SearchResult.Title = 0x7f0d0022 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.SearchResult.Subtitle = 0x7f0d0021 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f0d001c ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Large.Inverse = 0x7f0d001a ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse = 0x7f0d002e ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f0d002a ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Large = 0x7f0d0019 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Inverse = 0x7f0d0018 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Headline = 0x7f0d0017 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Display4 = 0x7f0d0016 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Display3 = 0x7f0d0015 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Display2 = 0x7f0d0014 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Body1 = 0x7f0d000f ++io.invertase.jet.test:style/Base.DialogWindowTitle.AppCompat = 0x7f0d000c ++io.invertase.jet.test:style/Base.Animation.AppCompat.Dialog = 0x7f0d0009 ++io.invertase.jet.test:style/Base.AlertDialog.AppCompat = 0x7f0d0007 ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionBar.TabBar.Inverse = 0x7f0d0145 ++io.invertase.jet.test:style/Animation.AppCompat.DropDownUp = 0x7f0d0003 ++io.invertase.jet.test:style/AlertDialog.AppCompat = 0x7f0d0000 ++io.invertase.jet.test:string/toolbar_description = 0x7f0c0050 ++io.invertase.jet.test:string/timer_description = 0x7f0c004f ++io.invertase.jet.test:string/summary_description = 0x7f0c004d ++io.invertase.jet.test:string/state_unselected_description = 0x7f0c004b ++io.invertase.jet.test:string/state_off_description = 0x7f0c0049 ++io.invertase.jet.test:string/state_mixed_description = 0x7f0c0048 ++io.invertase.jet.test:style/Base.V7.Widget.AppCompat.EditText = 0x7f0d0067 ++io.invertase.jet.test:string/progressbar_description = 0x7f0c003f ++io.invertase.jet.test:style/TextAppearance.AppCompat.Medium = 0x7f0d00d6 ++io.invertase.jet.test:string/menuitem_description = 0x7f0c003e ++io.invertase.jet.test:string/image_description = 0x7f0c0039 ++io.invertase.jet.test:string/header_description = 0x7f0c0038 ++io.invertase.jet.test:string/catalyst_settings_title = 0x7f0c0036 ++io.invertase.jet.test:string/catalyst_sample_profiler_toggle = 0x7f0c0034 ++io.invertase.jet.test:string/catalyst_report_button = 0x7f0c0033 ++io.invertase.jet.test:string/catalyst_perf_monitor_stop = 0x7f0c002f ++io.invertase.jet.test:string/catalyst_loading_from_url = 0x7f0c002c ++io.invertase.jet.test:string/catalyst_inspector_toggle = 0x7f0c002b ++io.invertase.jet.test:string/catalyst_hot_reloading_stop = 0x7f0c002a ++io.invertase.jet.test:string/catalyst_hot_reloading_auto_enable = 0x7f0c0029 ++io.invertase.jet.test:string/catalyst_hot_reloading_auto_disable = 0x7f0c0028 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Large = 0x7f0d00d0 ++io.invertase.jet.test:string/catalyst_dev_menu_header = 0x7f0c0023 ++io.invertase.jet.test:string/catalyst_debug_error = 0x7f0c0020 ++io.invertase.jet.test:string/catalyst_debug_connecting = 0x7f0c001f ++io.invertase.jet.test:string/catalyst_copy_button = 0x7f0c001e ++io.invertase.jet.test:string/catalyst_change_bundle_location = 0x7f0c001d ++io.invertase.jet.test:string/androidx_startup = 0x7f0c001c ++io.invertase.jet.test:string/alert_description = 0x7f0c001b ++io.invertase.jet.test:string/abc_shareactionprovider_share_with = 0x7f0c0018 ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionBar.TabView = 0x7f0d0148 ++io.invertase.jet.test:string/abc_searchview_description_voice = 0x7f0c0017 ++io.invertase.jet.test:string/abc_searchview_description_search = 0x7f0c0015 ++io.invertase.jet.test:string/abc_searchview_description_query = 0x7f0c0014 ++io.invertase.jet.test:string/abc_prepend_shortcut_label = 0x7f0c0011 ++io.invertase.jet.test:style/Animation.Catalyst.LogBox = 0x7f0d0005 ++io.invertase.jet.test:string/abc_menu_shift_shortcut_label = 0x7f0c000e ++io.invertase.jet.test:style/Theme.AppCompat.DayNight.Dialog.MinWidth = 0x7f0d0104 ++io.invertase.jet.test:string/abc_menu_function_shortcut_label = 0x7f0c000c ++io.invertase.jet.test:string/abc_menu_enter_shortcut_label = 0x7f0c000b ++io.invertase.jet.test:string/abc_menu_alt_shortcut_label = 0x7f0c0008 ++io.invertase.jet.test:string/abc_capital_off = 0x7f0c0006 ++io.invertase.jet.test:string/abc_action_menu_overflow_description = 0x7f0c0002 ++io.invertase.jet.test:styleable/ViewStubCompat = 0x7f0e0032 ++io.invertase.jet.test:string/abc_action_bar_home_description = 0x7f0c0000 ++io.invertase.jet.test:layout/support_simple_spinner_dropdown_item = 0x7f0b002d ++io.invertase.jet.test:layout/select_dialog_singlechoice_material = 0x7f0b002c ++io.invertase.jet.test:string/abc_activity_chooser_view_see_all = 0x7f0c0004 ++io.invertase.jet.test:layout/select_dialog_multichoice_material = 0x7f0b002b ++io.invertase.jet.test:style/Theme.AppCompat.CompactMenu = 0x7f0d00ff ++io.invertase.jet.test:layout/redbox_item_frame = 0x7f0b0027 ++io.invertase.jet.test:layout/notification_template_part_chronometer = 0x7f0b0024 ++io.invertase.jet.test:layout/notification_template_custom_big = 0x7f0b0022 ++io.invertase.jet.test:string/state_on_description = 0x7f0c004a ++io.invertase.jet.test:layout/abc_screen_toolbar = 0x7f0b0017 ++io.invertase.jet.test:layout/abc_screen_simple_overlay_action_mode = 0x7f0b0016 ++io.invertase.jet.test:string/menu_description = 0x7f0c003c ++io.invertase.jet.test:layout/abc_screen_simple = 0x7f0b0015 ++io.invertase.jet.test:layout/abc_screen_content_include = 0x7f0b0014 ++io.invertase.jet.test:layout/abc_popup_menu_item_layout = 0x7f0b0013 ++io.invertase.jet.test:layout/abc_popup_menu_header_item_layout = 0x7f0b0012 ++io.invertase.jet.test:layout/abc_list_menu_item_radio = 0x7f0b0011 ++io.invertase.jet.test:layout/abc_list_menu_item_layout = 0x7f0b0010 ++io.invertase.jet.test:style/Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f0d003c ++io.invertase.jet.test:layout/abc_list_menu_item_checkbox = 0x7f0b000e ++io.invertase.jet.test:layout/abc_expanded_menu_layout = 0x7f0b000d ++io.invertase.jet.test:style/Base.Widget.AppCompat.ActionButton.CloseMode = 0x7f0d006f ++io.invertase.jet.test:layout/abc_dialog_title_material = 0x7f0b000c ++io.invertase.jet.test:layout/paused_in_debugger_view = 0x7f0b0026 ++io.invertase.jet.test:layout/abc_alert_dialog_title_material = 0x7f0b000a ++io.invertase.jet.test:style/Widget.AppCompat.Button.Colored = 0x7f0d0136 ++io.invertase.jet.test:style/TextAppearance.Widget.AppCompat.Toolbar.Title = 0x7f0d00fc ++io.invertase.jet.test:layout/abc_alert_dialog_button_bar_material = 0x7f0b0008 ++io.invertase.jet.test:string/catalyst_heap_capture = 0x7f0c0026 ++io.invertase.jet.test:layout/abc_activity_chooser_view = 0x7f0b0006 ++io.invertase.jet.test:layout/abc_action_mode_close_item_material = 0x7f0b0005 ++io.invertase.jet.test:layout/abc_action_menu_layout = 0x7f0b0003 ++io.invertase.jet.test:interpolator/fast_out_slow_in = 0x7f0a0006 ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionBar = 0x7f0d0141 ++io.invertase.jet.test:interpolator/btn_radio_to_on_mtrl_animation_interpolator_0 = 0x7f0a0005 ++io.invertase.jet.test:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f0a0002 ++io.invertase.jet.test:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f0a0001 ++io.invertase.jet.test:style/Base.Widget.AppCompat.PopupMenu = 0x7f0d0091 ++io.invertase.jet.test:integer/status_bar_notification_info_maxnum = 0x7f090005 ++io.invertase.jet.test:styleable/AppCompatTextView = 0x7f0e000e ++io.invertase.jet.test:integer/config_tooltipAnimTime = 0x7f090003 ++io.invertase.jet.test:integer/abc_config_activityShortDur = 0x7f090001 ++io.invertase.jet.test:integer/abc_config_activityDefaultDur = 0x7f090000 ++io.invertase.jet.test:id/wrap_content = 0x7f0800e0 ++io.invertase.jet.test:id/withText = 0x7f0800df ++io.invertase.jet.test:id/visible_removing_fragment_view_tag = 0x7f0800de ++io.invertase.jet.test:id/view_tree_view_model_store_owner = 0x7f0800dd ++io.invertase.jet.test:id/view_tree_saved_state_registry_owner = 0x7f0800dc ++io.invertase.jet.test:id/view_tree_on_back_pressed_dispatcher_owner = 0x7f0800db ++io.invertase.jet.test:style/Widget.AppCompat.RatingBar.Small = 0x7f0d0163 ++io.invertase.jet.test:id/view_tree_lifecycle_owner = 0x7f0800da ++io.invertase.jet.test:id/view_tag_native_id = 0x7f0800d9 ++io.invertase.jet.test:id/view_tag_instance_handle = 0x7f0800d8 ++io.invertase.jet.test:id/transform_origin = 0x7f0800d2 ++io.invertase.jet.test:style/Widget.AppCompat.Spinner.DropDown.ActionBar = 0x7f0d016a ++io.invertase.jet.test:id/topPanel = 0x7f0800d0 ++io.invertase.jet.test:id/top = 0x7f0800cf ++io.invertase.jet.test:id/title_template = 0x7f0800ce ++io.invertase.jet.test:styleable/DrawerArrowToggle = 0x7f0e0016 ++io.invertase.jet.test:id/titleDividerNoCustom = 0x7f0800cd ++io.invertase.jet.test:id/time = 0x7f0800cb ++io.invertase.jet.test:layout/redbox_view = 0x7f0b0029 ++io.invertase.jet.test:interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 0x7f0a0003 ++io.invertase.jet.test:id/text = 0x7f0800c7 ++io.invertase.jet.test:layout/notification_template_part_time = 0x7f0b0025 ++io.invertase.jet.test:id/tag_window_insets_animation_callback = 0x7f0800c6 ++io.invertase.jet.test:id/tag_unhandled_key_listeners = 0x7f0800c5 ++io.invertase.jet.test:id/tag_transition_group = 0x7f0800c3 ++io.invertase.jet.test:id/tag_screen_reader_focusable = 0x7f0800c1 ++io.invertase.jet.test:id/tag_on_receive_content_mime_types = 0x7f0800c0 ++io.invertase.jet.test:id/tag_on_receive_content_listener = 0x7f0800bf ++io.invertase.jet.test:style/redboxButton = 0x7f0d0178 ++io.invertase.jet.test:id/tag_accessibility_pane_title = 0x7f0800bd ++io.invertase.jet.test:style/Base.V23.Theme.AppCompat.Light = 0x7f0d005b ++io.invertase.jet.test:id/tag_accessibility_heading = 0x7f0800bc ++io.invertase.jet.test:id/tag_accessibility_actions = 0x7f0800ba ++io.invertase.jet.test:string/abc_action_bar_up_description = 0x7f0c0001 ++io.invertase.jet.test:id/tabMode = 0x7f0800b9 ++io.invertase.jet.test:id/submit_area = 0x7f0800b8 ++io.invertase.jet.test:id/src_over = 0x7f0800b6 ++io.invertase.jet.test:id/src_in = 0x7f0800b5 ++io.invertase.jet.test:id/split_action_bar = 0x7f0800b3 ++io.invertase.jet.test:id/showCustom = 0x7f0800ae ++io.invertase.jet.test:style/Base.Theme.AppCompat.Dialog = 0x7f0d0040 ++io.invertase.jet.test:id/shortcut = 0x7f0800ad ++io.invertase.jet.test:id/select_dialog_listview = 0x7f0800ac ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionBar.Solid = 0x7f0d0142 ++io.invertase.jet.test:style/Animation.AppCompat.Dialog = 0x7f0d0002 ++io.invertase.jet.test:id/search_src_text = 0x7f0800aa ++io.invertase.jet.test:id/textSpacerNoButtons = 0x7f0800c9 ++io.invertase.jet.test:id/search_mag_icon = 0x7f0800a8 ++io.invertase.jet.test:id/search_go_btn = 0x7f0800a7 ++io.invertase.jet.test:id/search_bar = 0x7f0800a3 ++io.invertase.jet.test:style/Base.Theme.AppCompat.Dialog.FixedSize = 0x7f0d0042 ++io.invertase.jet.test:string/catalyst_perf_monitor = 0x7f0c002e ++io.invertase.jet.test:id/scrollView = 0x7f0800a1 ++io.invertase.jet.test:id/scrollIndicatorUp = 0x7f0800a0 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Light.SearchResult.Subtitle = 0x7f0d00d2 ++io.invertase.jet.test:id/rn_redbox_stack = 0x7f08009c ++io.invertase.jet.test:id/rn_redbox_report_label = 0x7f08009b ++io.invertase.jet.test:id/rn_redbox_dismiss_button = 0x7f080096 ++io.invertase.jet.test:id/rn_frame_method = 0x7f080095 ++io.invertase.jet.test:id/rn_frame_file = 0x7f080094 ++io.invertase.jet.test:styleable/SimpleDraweeView = 0x7f0e0028 ++io.invertase.jet.test:id/right_side = 0x7f080093 ++io.invertase.jet.test:id/radio = 0x7f080090 ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 = 0x7f0d00bd ++io.invertase.jet.test:style/Base.V7.Theme.AppCompat.Dialog = 0x7f0d0062 ++io.invertase.jet.test:id/progress_circular = 0x7f08008e ++io.invertase.jet.test:id/rn_redbox_reload_button = 0x7f080099 ++io.invertase.jet.test:id/parentPanel = 0x7f08008c ++io.invertase.jet.test:id/on = 0x7f08008b ++io.invertase.jet.test:id/notification_main_column_container = 0x7f080089 ++io.invertase.jet.test:id/notification_main_column = 0x7f080088 ++io.invertase.jet.test:id/none = 0x7f080085 ++io.invertase.jet.test:layout/abc_list_menu_item_icon = 0x7f0b000f ++io.invertase.jet.test:id/rn_redbox_line_separator = 0x7f080097 ++io.invertase.jet.test:id/mix_blend_mode = 0x7f080082 ++io.invertase.jet.test:id/message = 0x7f080080 ++io.invertase.jet.test:id/list_item = 0x7f08007f ++io.invertase.jet.test:id/listMode = 0x7f08007e ++io.invertase.jet.test:layout/select_dialog_item_material = 0x7f0b002a ++io.invertase.jet.test:id/line3 = 0x7f08007d ++io.invertase.jet.test:id/line1 = 0x7f08007c ++io.invertase.jet.test:id/labelled_by = 0x7f08007b ++io.invertase.jet.test:id/invalidate_transform = 0x7f080079 ++io.invertase.jet.test:id/image = 0x7f080077 ++io.invertase.jet.test:style/TextAppearance.AppCompat = 0x7f0d00c5 ++io.invertase.jet.test:id/ifRoom = 0x7f080076 ++io.invertase.jet.test:id/home = 0x7f080072 ++io.invertase.jet.test:string/abc_menu_ctrl_shortcut_label = 0x7f0c0009 ++io.invertase.jet.test:id/group_divider = 0x7f080071 ++io.invertase.jet.test:id/FUNCTION = 0x7f080002 ++io.invertase.jet.test:id/fitXY = 0x7f08006c ++io.invertase.jet.test:attr/navigationMode = 0x7f0300c4 ++io.invertase.jet.test:attr/overlayImage = 0x7f0300c8 ++io.invertase.jet.test:color/dim_foreground_material_dark = 0x7f05002d ++io.invertase.jet.test:id/expanded_menu = 0x7f080066 ++io.invertase.jet.test:id/dialog_button = 0x7f080061 ++io.invertase.jet.test:dimen/abc_button_inset_vertical_material = 0x7f060013 ++io.invertase.jet.test:id/content = 0x7f08005b ++io.invertase.jet.test:style/ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f0d0121 ++io.invertase.jet.test:id/checked = 0x7f080058 ++io.invertase.jet.test:string/state_busy_description = 0x7f0c0045 ++io.invertase.jet.test:attr/retryImageScaleType = 0x7f0300e4 ++io.invertase.jet.test:id/center_vertical = 0x7f080056 ++io.invertase.jet.test:id/action_bar_container = 0x7f080033 ++io.invertase.jet.test:id/centerCrop = 0x7f080054 ++io.invertase.jet.test:id/bottom = 0x7f08004e ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon = 0x7f0d00c0 ++io.invertase.jet.test:id/accessibility_actions = 0x7f080007 ++io.invertase.jet.test:id/beginning = 0x7f08004c ++io.invertase.jet.test:style/Widget.Autofill.InlineSuggestionEndIconStyle = 0x7f0d0172 ++io.invertase.jet.test:attr/dropDownListViewStyle = 0x7f030081 ++io.invertase.jet.test:id/autofill_inline_suggestion_title = 0x7f08004b ++io.invertase.jet.test:style/Base.Widget.AppCompat.Button.Borderless.Colored = 0x7f0d0076 ++io.invertase.jet.test:style/Base.V22.Theme.AppCompat.Light = 0x7f0d0059 ++io.invertase.jet.test:id/autofill_inline_suggestion_subtitle = 0x7f08004a ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.SearchResult = 0x7f0d0020 ++io.invertase.jet.test:attr/actionModeSelectAllDrawable = 0x7f030019 ++io.invertase.jet.test:id/autofill_inline_suggestion_end_icon = 0x7f080048 ++io.invertase.jet.test:id/accessibility_custom_action_25 = 0x7f08001c ++io.invertase.jet.test:id/async = 0x7f080047 ++io.invertase.jet.test:id/tag_on_apply_window_listener = 0x7f0800be ++io.invertase.jet.test:id/always = 0x7f080046 ++io.invertase.jet.test:id/alertTitle = 0x7f080045 ++io.invertase.jet.test:color/secondary_text_default_material_light = 0x7f05004e ++io.invertase.jet.test:id/activity_chooser_view_content = 0x7f080043 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.PopupMenu.Large = 0x7f0d00f1 ++io.invertase.jet.test:id/action_text = 0x7f080041 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Small.Inverse = 0x7f0d00dc ++io.invertase.jet.test:id/action_mode_close_button = 0x7f080040 ++io.invertase.jet.test:id/action_menu_presenter = 0x7f08003d ++io.invertase.jet.test:string/state_expanded_description = 0x7f0c0047 ++io.invertase.jet.test:id/action_menu_divider = 0x7f08003c ++io.invertase.jet.test:id/action_bar_title = 0x7f080037 ++io.invertase.jet.test:id/action_bar_spinner = 0x7f080035 ++io.invertase.jet.test:dimen/abc_star_small = 0x7f06003d ++io.invertase.jet.test:id/action_bar = 0x7f080031 ++io.invertase.jet.test:dimen/notification_large_icon_width = 0x7f060067 ++io.invertase.jet.test:id/accessibility_value = 0x7f080030 ++io.invertase.jet.test:string/abc_menu_delete_shortcut_label = 0x7f0c000a ++io.invertase.jet.test:attr/arrowShaftLength = 0x7f03002f ++io.invertase.jet.test:id/accessibility_state_expanded = 0x7f08002f ++io.invertase.jet.test:id/accessibility_label = 0x7f08002b ++io.invertase.jet.test:id/role = 0x7f08009d ++io.invertase.jet.test:id/collapseActionView = 0x7f08005a ++io.invertase.jet.test:string/abc_menu_space_shortcut_label = 0x7f0c000f ++io.invertase.jet.test:drawable/abc_btn_radio_to_on_mtrl_015 = 0x7f07000c ++io.invertase.jet.test:id/accessibility_hint = 0x7f08002a ++io.invertase.jet.test:id/accessibility_custom_action_9 = 0x7f080029 ++io.invertase.jet.test:id/accessibility_custom_action_8 = 0x7f080028 ++io.invertase.jet.test:string/catalyst_debug_open = 0x7f0c0021 ++io.invertase.jet.test:string/abc_toolbar_collapse_description = 0x7f0c001a ++io.invertase.jet.test:id/accessibility_custom_action_7 = 0x7f080027 ++io.invertase.jet.test:style/Theme.AppCompat.Dialog.Alert = 0x7f0d0108 ++io.invertase.jet.test:style/Base.V7.Theme.AppCompat.Light = 0x7f0d0063 ++io.invertase.jet.test:id/accessibility_links = 0x7f08002c ++io.invertase.jet.test:id/accessibility_custom_action_5 = 0x7f080025 ++io.invertase.jet.test:dimen/abc_dialog_fixed_height_major = 0x7f06001c ++io.invertase.jet.test:attr/initialActivityCount = 0x7f0300a5 ++io.invertase.jet.test:id/accessibility_custom_action_4 = 0x7f080024 ++io.invertase.jet.test:id/accessibility_custom_action_30 = 0x7f080022 ++io.invertase.jet.test:id/accessibility_custom_action_3 = 0x7f080021 ++io.invertase.jet.test:drawable/abc_btn_check_to_on_mtrl_015 = 0x7f070006 ++io.invertase.jet.test:id/accessibility_custom_action_28 = 0x7f08001f ++io.invertase.jet.test:id/right_icon = 0x7f080092 ++io.invertase.jet.test:id/accessibility_custom_action_27 = 0x7f08001e ++io.invertase.jet.test:string/link_description = 0x7f0c003b ++io.invertase.jet.test:attr/buttonBarNeutralButtonStyle = 0x7f030045 ++io.invertase.jet.test:dimen/abc_text_size_title_material_toolbar = 0x7f060050 ++io.invertase.jet.test:dimen/abc_text_size_subhead_material = 0x7f06004d ++io.invertase.jet.test:id/accessibility_custom_action_23 = 0x7f08001a ++io.invertase.jet.test:drawable/abc_list_pressed_holo_dark = 0x7f070028 ++io.invertase.jet.test:dimen/tooltip_horizontal_padding = 0x7f060072 ++io.invertase.jet.test:id/accessibility_custom_action_21 = 0x7f080018 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Small = 0x7f0d00db ++io.invertase.jet.test:drawable/abc_ic_ab_back_material = 0x7f070015 ++io.invertase.jet.test:id/accessibility_custom_action_2 = 0x7f080016 ++io.invertase.jet.test:id/forever = 0x7f08006e ++io.invertase.jet.test:id/accessibility_custom_action_17 = 0x7f080013 ++io.invertase.jet.test:id/accessibility_custom_action_14 = 0x7f080010 ++io.invertase.jet.test:dimen/abc_action_button_min_width_overflow_material = 0x7f06000f ++io.invertase.jet.test:id/accessibility_custom_action_12 = 0x7f08000e ++io.invertase.jet.test:string/radiogroup_description = 0x7f0c0040 ++io.invertase.jet.test:string/catalyst_reload_error = 0x7f0c0032 ++io.invertase.jet.test:id/accessibility_custom_action_1 = 0x7f08000b ++io.invertase.jet.test:id/accessibility_collection_item = 0x7f080009 ++io.invertase.jet.test:style/Widget.AppCompat.ProgressBar.Horizontal = 0x7f0d0160 ++io.invertase.jet.test:color/accent_material_dark = 0x7f050019 ++io.invertase.jet.test:id/SHIFT = 0x7f080004 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Subhead.Inverse = 0x7f0d00de ++io.invertase.jet.test:id/META = 0x7f080003 ++io.invertase.jet.test:attr/numericModifiers = 0x7f0300c6 ++io.invertase.jet.test:id/ALT = 0x7f080000 ++io.invertase.jet.test:drawable/test_level_drawable = 0x7f070069 ++io.invertase.jet.test:id/search_plate = 0x7f0800a9 ++io.invertase.jet.test:drawable/paused_in_debugger_dialog_background = 0x7f070066 ++io.invertase.jet.test:drawable/paused_in_debugger_background = 0x7f070065 ++io.invertase.jet.test:style/CalendarDatePickerStyle = 0x7f0d00a4 ++io.invertase.jet.test:style/Base.Widget.AppCompat.RatingBar.Indicator = 0x7f0d0097 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.ActionMode.Title = 0x7f0d0030 ++io.invertase.jet.test:id/rn_redbox_loading_indicator = 0x7f080098 ++io.invertase.jet.test:drawable/notification_template_icon_low_bg = 0x7f070062 ++io.invertase.jet.test:drawable/notification_icon_background = 0x7f070060 ++io.invertase.jet.test:attr/colorBackgroundFloating = 0x7f03005b ++io.invertase.jet.test:attr/iconTint = 0x7f0300a0 ++io.invertase.jet.test:drawable/notification_bg_low_pressed = 0x7f07005d ++io.invertase.jet.test:drawable/ic_resume = 0x7f070058 ++io.invertase.jet.test:style/Base.ThemeOverlay.AppCompat.ActionBar = 0x7f0d004d ++io.invertase.jet.test:drawable/abc_list_focused_holo = 0x7f070026 ++io.invertase.jet.test:drawable/btn_radio_on_to_off_mtrl_animation = 0x7f070057 ++io.invertase.jet.test:style/Base.Widget.AppCompat.PopupWindow = 0x7f0d0093 ++io.invertase.jet.test:style/Base.V7.ThemeOverlay.AppCompat.Dialog = 0x7f0d0065 ++io.invertase.jet.test:drawable/btn_radio_on_mtrl = 0x7f070056 ++io.invertase.jet.test:id/action_bar_activity_content = 0x7f080032 ++io.invertase.jet.test:id/pointer_events = 0x7f08008d ++io.invertase.jet.test:dimen/highlight_alpha_material_colored = 0x7f06005b ++io.invertase.jet.test:drawable/btn_radio_off_mtrl = 0x7f070054 ++io.invertase.jet.test:attr/drawableStartCompat = 0x7f03007c ++io.invertase.jet.test:drawable/abc_btn_borderless_material = 0x7f070002 ++io.invertase.jet.test:drawable/btn_checkbox_unchecked_to_checked_mtrl_animation = 0x7f070053 ++io.invertase.jet.test:drawable/btn_checkbox_checked_mtrl = 0x7f070050 ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionButton.CloseMode = 0x7f0d014b ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Medium.Inverse = 0x7f0d001e ++io.invertase.jet.test:string/catalyst_settings = 0x7f0c0035 ++io.invertase.jet.test:color/abc_tint_btn_checkable = 0x7f050013 ++io.invertase.jet.test:attr/popupWindowStyle = 0x7f0300d4 ++io.invertase.jet.test:drawable/autofill_inline_suggestion_chip_background = 0x7f07004f ++io.invertase.jet.test:drawable/abc_textfield_search_material = 0x7f07004d ++io.invertase.jet.test:attr/textAppearanceSmallPopupMenu = 0x7f030119 ++io.invertase.jet.test:attr/textColorSearchUrl = 0x7f03011b ++io.invertase.jet.test:drawable/abc_textfield_search_activated_mtrl_alpha = 0x7f07004b ++io.invertase.jet.test:styleable/PopupWindow = 0x7f0e0024 ++io.invertase.jet.test:attr/dropdownListPreferredItemHeight = 0x7f030082 ++io.invertase.jet.test:attr/actionDropDownStyle = 0x7f03000c ++io.invertase.jet.test:drawable/abc_text_select_handle_right_mtrl = 0x7f070048 ++io.invertase.jet.test:string/catalyst_open_debugger_error = 0x7f0c002d ++io.invertase.jet.test:drawable/abc_text_select_handle_middle_mtrl = 0x7f070047 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Display1 = 0x7f0d0013 ++io.invertase.jet.test:drawable/abc_tab_indicator_mtrl_alpha = 0x7f070044 ++io.invertase.jet.test:drawable/abc_switch_track_mtrl_alpha = 0x7f070042 ++io.invertase.jet.test:id/contentPanel = 0x7f08005c ++io.invertase.jet.test:drawable/abc_switch_thumb_material = 0x7f070041 ++io.invertase.jet.test:style/Base.V21.ThemeOverlay.AppCompat.Dialog = 0x7f0d0057 ++io.invertase.jet.test:drawable/abc_star_black_48dp = 0x7f07003f ++io.invertase.jet.test:attr/titleMarginTop = 0x7f03012c ++io.invertase.jet.test:drawable/abc_spinner_mtrl_am_alpha = 0x7f07003d ++io.invertase.jet.test:string/catalyst_hot_reloading = 0x7f0c0027 ++io.invertase.jet.test:drawable/tooltip_frame_light = 0x7f07006b ++io.invertase.jet.test:drawable/abc_seekbar_track_material = 0x7f07003c ++io.invertase.jet.test:attr/drawableSize = 0x7f03007b ++io.invertase.jet.test:attr/closeIcon = 0x7f030055 ++io.invertase.jet.test:attr/contentInsetStart = 0x7f03006a ++io.invertase.jet.test:drawable/abc_seekbar_tick_mark_material = 0x7f07003b ++io.invertase.jet.test:drawable/abc_scrubber_primary_mtrl_alpha = 0x7f070038 ++io.invertase.jet.test:attr/selectableItemBackground = 0x7f0300f7 ++io.invertase.jet.test:drawable/notification_bg = 0x7f07005a ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Small.Inverse = 0x7f0d0024 ++io.invertase.jet.test:string/state_collapsed_description = 0x7f0c0046 ++io.invertase.jet.test:attr/actionProviderClass = 0x7f030021 ++io.invertase.jet.test:drawable/abc_ratingbar_material = 0x7f070033 ++io.invertase.jet.test:drawable/abc_list_selector_holo_dark = 0x7f07002e ++io.invertase.jet.test:dimen/abc_text_size_button_material = 0x7f060041 ++io.invertase.jet.test:drawable/abc_list_selector_disabled_holo_light = 0x7f07002d ++io.invertase.jet.test:drawable/abc_list_selector_background_transition_holo_dark = 0x7f07002a ++io.invertase.jet.test:id/homeAsUp = 0x7f080073 ++io.invertase.jet.test:drawable/abc_list_divider_mtrl_alpha = 0x7f070025 ++io.invertase.jet.test:drawable/abc_ic_voice_search_api_material = 0x7f070021 ++io.invertase.jet.test:styleable/ActionMode = 0x7f0e0004 ++io.invertase.jet.test:color/material_grey_300 = 0x7f05003b ++io.invertase.jet.test:drawable/abc_ic_search_api_material = 0x7f070020 ++io.invertase.jet.test:drawable/abc_ic_menu_selectall_mtrl_alpha = 0x7f07001e ++io.invertase.jet.test:drawable/abc_ic_menu_paste_mtrl_am_alpha = 0x7f07001d ++io.invertase.jet.test:style/Base.Widget.AppCompat.ActionButton.Overflow = 0x7f0d0070 ++io.invertase.jet.test:attr/listItemLayout = 0x7f0300b1 ++io.invertase.jet.test:attr/tooltipFrameBackground = 0x7f030134 ++io.invertase.jet.test:drawable/abc_ic_menu_cut_mtrl_alpha = 0x7f07001b ++io.invertase.jet.test:attr/lStar = 0x7f0300a9 ++io.invertase.jet.test:drawable/abc_popup_background_mtrl_mult = 0x7f070031 ++io.invertase.jet.test:drawable/abc_ic_menu_copy_mtrl_am_alpha = 0x7f07001a ++io.invertase.jet.test:drawable/abc_ic_go_search_api_material = 0x7f070019 ++io.invertase.jet.test:drawable/abc_ic_arrow_drop_right_black_24dp = 0x7f070016 ++io.invertase.jet.test:color/abc_search_url_text_pressed = 0x7f05000f ++io.invertase.jet.test:id/autofill_inline_suggestion_start_icon = 0x7f080049 ++io.invertase.jet.test:drawable/abc_dialog_material_background = 0x7f070013 ++io.invertase.jet.test:drawable/abc_control_background_material = 0x7f070012 ++io.invertase.jet.test:drawable/abc_btn_switch_to_on_mtrl_00012 = 0x7f07000e ++io.invertase.jet.test:id/text2 = 0x7f0800c8 ++io.invertase.jet.test:drawable/abc_btn_switch_to_on_mtrl_00001 = 0x7f07000d ++io.invertase.jet.test:style/Base.ThemeOverlay.AppCompat.Light = 0x7f0d0052 ++io.invertase.jet.test:id/fitStart = 0x7f08006b ++io.invertase.jet.test:style/Base.Widget.AppCompat.CompoundButton.CheckBox = 0x7f0d007c ++io.invertase.jet.test:drawable/abc_btn_colored_material = 0x7f070007 ++io.invertase.jet.test:string/catalyst_reload_button = 0x7f0c0031 ++io.invertase.jet.test:drawable/ripple_effect = 0x7f070068 ++io.invertase.jet.test:drawable/abc_btn_check_material_anim = 0x7f070004 ++io.invertase.jet.test:drawable/notification_template_icon_bg = 0x7f070061 ++io.invertase.jet.test:drawable/abc_ab_share_pack_mtrl_alpha = 0x7f070000 ++io.invertase.jet.test:id/custom = 0x7f08005d ++io.invertase.jet.test:dimen/tooltip_y_offset_touch = 0x7f060078 ++io.invertase.jet.test:dimen/tooltip_precise_anchor_threshold = 0x7f060075 ++io.invertase.jet.test:styleable/PopupWindowBackgroundState = 0x7f0e0025 ++io.invertase.jet.test:dimen/notification_big_circle_margin = 0x7f060064 ++io.invertase.jet.test:dimen/tooltip_corner_radius = 0x7f060071 ++io.invertase.jet.test:style/Base.Widget.AppCompat.Button = 0x7f0d0074 ++io.invertase.jet.test:attr/titleTextColor = 0x7f03012f ++io.invertase.jet.test:dimen/abc_action_button_min_height_material = 0x7f06000d ++io.invertase.jet.test:dimen/notification_top_pad_large_text = 0x7f060070 ++io.invertase.jet.test:color/tooltip_background_dark = 0x7f050057 ++io.invertase.jet.test:dimen/notification_small_icon_size_as_large = 0x7f06006d ++io.invertase.jet.test:style/Theme.AppCompat.DayNight.DarkActionBar = 0x7f0d0101 ++io.invertase.jet.test:dimen/abc_text_size_body_1_material = 0x7f06003f ++io.invertase.jet.test:dimen/notification_right_icon_size = 0x7f06006a ++io.invertase.jet.test:dimen/notification_media_narrow_margin = 0x7f060069 ++io.invertase.jet.test:string/abc_capital_on = 0x7f0c0007 ++io.invertase.jet.test:id/add = 0x7f080044 ++io.invertase.jet.test:dimen/notification_action_icon_size = 0x7f060062 ++io.invertase.jet.test:attr/title = 0x7f030127 ++io.invertase.jet.test:dimen/hint_pressed_alpha_material_light = 0x7f060061 ++io.invertase.jet.test:dimen/hint_pressed_alpha_material_dark = 0x7f060060 ++io.invertase.jet.test:attr/dividerPadding = 0x7f030075 ++io.invertase.jet.test:id/accessibility_state = 0x7f08002e ++io.invertase.jet.test:dimen/hint_alpha_material_dark = 0x7f06005e ++io.invertase.jet.test:style/Theme.Catalyst.LogBox = 0x7f0d0116 ++io.invertase.jet.test:dimen/highlight_alpha_material_dark = 0x7f06005c ++io.invertase.jet.test:attr/actionBarWidgetTheme = 0x7f03000a ++io.invertase.jet.test:dimen/compat_control_corner_material = 0x7f060056 ++io.invertase.jet.test:id/customPanel = 0x7f08005e ++io.invertase.jet.test:color/abc_primary_text_material_light = 0x7f05000c ++io.invertase.jet.test:dimen/compat_button_inset_vertical_material = 0x7f060053 ++io.invertase.jet.test:drawable/abc_scrubber_track_mtrl_alpha = 0x7f070039 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.Button = 0x7f0d00eb ++io.invertase.jet.test:attr/fontProviderCerts = 0x7f030090 ++io.invertase.jet.test:dimen/abc_text_size_subtitle_material_toolbar = 0x7f06004e ++io.invertase.jet.test:dimen/abc_text_size_small_material = 0x7f06004c ++io.invertase.jet.test:style/Theme.AppCompat.DayNight.DialogWhenLarge = 0x7f0d0105 ++io.invertase.jet.test:dimen/abc_text_size_menu_material = 0x7f06004b ++io.invertase.jet.test:drawable/abc_cab_background_top_mtrl_alpha = 0x7f070011 ++io.invertase.jet.test:dimen/abc_search_view_preferred_width = 0x7f060037 ++io.invertase.jet.test:dimen/notification_right_side_padding_top = 0x7f06006b ++io.invertase.jet.test:dimen/abc_text_size_medium_material = 0x7f060049 ++io.invertase.jet.test:drawable/redbox_top_border_background = 0x7f070067 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f0d00d4 ++io.invertase.jet.test:dimen/abc_text_size_large_material = 0x7f060048 ++io.invertase.jet.test:attr/buttonPanelSideLayout = 0x7f03004b ++io.invertase.jet.test:drawable/abc_star_half_black_48dp = 0x7f070040 ++io.invertase.jet.test:style/Base.Widget.AppCompat.ProgressBar = 0x7f0d0094 ++io.invertase.jet.test:dimen/abc_text_size_headline_material = 0x7f060047 ++io.invertase.jet.test:dimen/notification_subtext_size = 0x7f06006e ++io.invertase.jet.test:style/TextAppearance.AppCompat.Headline = 0x7f0d00ce ++io.invertase.jet.test:dimen/abc_text_size_display_3_material = 0x7f060045 ++io.invertase.jet.test:style/Widget.AppCompat.SearchView.ActionBar = 0x7f0d0165 ++io.invertase.jet.test:attr/backgroundSplit = 0x7f03003d ++io.invertase.jet.test:dimen/abc_text_size_caption_material = 0x7f060042 ++io.invertase.jet.test:style/Base.Theme.AppCompat.Light.Dialog.FixedSize = 0x7f0d0049 ++io.invertase.jet.test:id/chronometer = 0x7f080059 ++io.invertase.jet.test:id/action_container = 0x7f080038 ++io.invertase.jet.test:id/accessibility_custom_action_11 = 0x7f08000d ++io.invertase.jet.test:dimen/abc_switch_padding = 0x7f06003e ++io.invertase.jet.test:dimen/abc_star_medium = 0x7f06003c ++io.invertase.jet.test:attr/dialogTheme = 0x7f030071 ++io.invertase.jet.test:dimen/abc_select_dialog_padding_start_material = 0x7f06003a ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.DialogTitle.Icon = 0x7f0d00b4 ++io.invertase.jet.test:color/background_material_light = 0x7f050020 ++io.invertase.jet.test:dimen/abc_panel_menu_list_width = 0x7f060034 ++io.invertase.jet.test:dimen/abc_list_item_padding_horizontal_material = 0x7f060033 ++io.invertase.jet.test:drawable/abc_scrubber_control_to_pressed_mtrl_000 = 0x7f070036 ++io.invertase.jet.test:style/Base.ThemeOverlay.AppCompat = 0x7f0d004c ++io.invertase.jet.test:attr/logo = 0x7f0300bc ++io.invertase.jet.test:dimen/abc_list_item_height_large_material = 0x7f060030 ++io.invertase.jet.test:id/end = 0x7f080064 ++io.invertase.jet.test:dimen/abc_floating_window_z = 0x7f06002f ++io.invertase.jet.test:dimen/abc_edit_text_inset_top_material = 0x7f06002e ++io.invertase.jet.test:dimen/abc_text_size_display_2_material = 0x7f060044 ++io.invertase.jet.test:style/Widget.AppCompat.PopupWindow = 0x7f0d015e ++io.invertase.jet.test:attr/alertDialogButtonGroupStyle = 0x7f030027 ++io.invertase.jet.test:dimen/abc_edit_text_inset_horizontal_material = 0x7f06002d ++io.invertase.jet.test:styleable/LinearLayoutCompat_Layout = 0x7f0e001f ++io.invertase.jet.test:dimen/abc_edit_text_inset_bottom_material = 0x7f06002c ++io.invertase.jet.test:style/Widget.AppCompat.RatingBar = 0x7f0d0161 ++io.invertase.jet.test:dimen/abc_dropdownitem_text_padding_left = 0x7f06002a ++io.invertase.jet.test:id/default_activity_button = 0x7f080060 ++io.invertase.jet.test:dimen/abc_dropdownitem_icon_width = 0x7f060029 ++io.invertase.jet.test:style/ThemeOverlay.AppCompat.Dialog.Alert = 0x7f0d0125 ++io.invertase.jet.test:dimen/abc_dialog_title_divider_material = 0x7f060026 ++io.invertase.jet.test:id/normal = 0x7f080086 ++io.invertase.jet.test:dimen/abc_dialog_list_padding_top_no_title = 0x7f060021 ++io.invertase.jet.test:dimen/abc_dialog_list_padding_bottom_no_buttons = 0x7f060020 ++io.invertase.jet.test:dimen/abc_dialog_fixed_width_major = 0x7f06001e ++io.invertase.jet.test:dimen/notification_large_icon_height = 0x7f060066 ++io.invertase.jet.test:attr/layout = 0x7f0300ab ++io.invertase.jet.test:dimen/abc_dialog_fixed_height_minor = 0x7f06001d ++io.invertase.jet.test:style/Theme.AppCompat.Light = 0x7f0d010c ++io.invertase.jet.test:attr/progressBarPadding = 0x7f0300da ++io.invertase.jet.test:dimen/abc_dialog_corner_radius_material = 0x7f06001b ++io.invertase.jet.test:dimen/abc_config_prefDialogWidth = 0x7f060017 ++io.invertase.jet.test:attr/actionBarStyle = 0x7f030005 ++io.invertase.jet.test:dimen/abc_button_padding_horizontal_material = 0x7f060014 ++io.invertase.jet.test:dimen/abc_button_inset_horizontal_material = 0x7f060012 ++io.invertase.jet.test:id/spacer = 0x7f0800b1 ++io.invertase.jet.test:attr/actionModeCloseButtonStyle = 0x7f030011 ++io.invertase.jet.test:id/accessibility_custom_action_18 = 0x7f080014 ++io.invertase.jet.test:drawable/abc_text_cursor_material = 0x7f070045 ++io.invertase.jet.test:dimen/abc_alert_dialog_button_bar_height = 0x7f060010 ++io.invertase.jet.test:drawable/notification_action_background = 0x7f070059 ++io.invertase.jet.test:attr/listChoiceIndicatorMultipleAnimated = 0x7f0300ae ++io.invertase.jet.test:id/filter = 0x7f080067 ++io.invertase.jet.test:layout/custom_dialog = 0x7f0b001d ++io.invertase.jet.test:layout/abc_action_menu_item_layout = 0x7f0b0002 ++io.invertase.jet.test:dimen/abc_action_bar_overflow_padding_start_material = 0x7f060008 ++io.invertase.jet.test:dimen/abc_text_size_display_1_material = 0x7f060043 ++io.invertase.jet.test:style/Base.Widget.AppCompat.PopupMenu.Overflow = 0x7f0d0092 ++io.invertase.jet.test:style/Base.Animation.AppCompat.DropDownUp = 0x7f0d000a ++io.invertase.jet.test:layout/abc_action_bar_up_container = 0x7f0b0001 ++io.invertase.jet.test:id/progress_horizontal = 0x7f08008f ++io.invertase.jet.test:dimen/abc_action_bar_overflow_padding_end_material = 0x7f060007 ++io.invertase.jet.test:attr/buttonTint = 0x7f03004e ++io.invertase.jet.test:attr/listPreferredItemPaddingStart = 0x7f0300bb ++io.invertase.jet.test:dimen/abc_action_bar_icon_vertical_padding_material = 0x7f060006 ++io.invertase.jet.test:id/fragment_container_view_tag = 0x7f080070 ++io.invertase.jet.test:layout/fps_view = 0x7f0b001f ++io.invertase.jet.test:dimen/abc_action_bar_elevation_material = 0x7f060005 ++io.invertase.jet.test:style/Base.Theme.AppCompat.CompactMenu = 0x7f0d003f ++io.invertase.jet.test:color/abc_tint_edittext = 0x7f050015 ++io.invertase.jet.test:attr/spinnerDropDownItemStyle = 0x7f030100 ++io.invertase.jet.test:id/accessibility_custom_action_13 = 0x7f08000f ++io.invertase.jet.test:drawable/btn_radio_off_to_on_mtrl_animation = 0x7f070055 ++io.invertase.jet.test:attr/buttonTintMode = 0x7f03004f ++io.invertase.jet.test:dimen/abc_action_bar_default_padding_start_material = 0x7f060004 ++io.invertase.jet.test:dimen/abc_action_bar_content_inset_with_nav = 0x7f060001 ++io.invertase.jet.test:attr/drawableBottomCompat = 0x7f030077 ++io.invertase.jet.test:drawable/notification_bg_normal = 0x7f07005e ++io.invertase.jet.test:attr/editTextStyle = 0x7f030085 ++io.invertase.jet.test:dimen/abc_action_bar_content_inset_material = 0x7f060000 ++io.invertase.jet.test:color/tooltip_background_light = 0x7f050058 ++io.invertase.jet.test:style/Widget.AppCompat.CompoundButton.RadioButton = 0x7f0d013b ++io.invertase.jet.test:drawable/abc_ic_menu_share_mtrl_alpha = 0x7f07001f ++io.invertase.jet.test:color/ripple_material_light = 0x7f05004c ++io.invertase.jet.test:color/switch_thumb_normal_material_light = 0x7f050056 ++io.invertase.jet.test:color/switch_thumb_material_light = 0x7f050054 ++io.invertase.jet.test:color/switch_thumb_disabled_material_dark = 0x7f050051 ++io.invertase.jet.test:id/src_atop = 0x7f0800b4 ++io.invertase.jet.test:color/secondary_text_disabled_material_light = 0x7f050050 ++io.invertase.jet.test:id/react_test_id = 0x7f080091 ++io.invertase.jet.test:color/secondary_text_default_material_dark = 0x7f05004d ++io.invertase.jet.test:id/accessibility_action_clickable_span = 0x7f080006 ++io.invertase.jet.test:color/primary_text_default_material_light = 0x7f050048 ++io.invertase.jet.test:attr/progressBarAutoRotateInterval = 0x7f0300d7 ++io.invertase.jet.test:color/primary_material_light = 0x7f050046 ++io.invertase.jet.test:drawable/abc_spinner_textfield_background_material = 0x7f07003e ++io.invertase.jet.test:color/primary_material_dark = 0x7f050045 ++io.invertase.jet.test:id/accessibility_custom_action_6 = 0x7f080026 ++io.invertase.jet.test:color/material_grey_900 = 0x7f050040 ++io.invertase.jet.test:color/material_grey_850 = 0x7f05003f ++io.invertase.jet.test:style/Base.Widget.AppCompat.CompoundButton.Switch = 0x7f0d007e ++io.invertase.jet.test:id/focusCrop = 0x7f08006d ++io.invertase.jet.test:color/material_grey_800 = 0x7f05003e ++io.invertase.jet.test:dimen/abc_dialog_min_width_minor = 0x7f060023 ++io.invertase.jet.test:color/material_grey_600 = 0x7f05003d ++io.invertase.jet.test:attr/roundWithOverlayColor = 0x7f0300ee ++io.invertase.jet.test:color/material_deep_teal_200 = 0x7f050038 ++io.invertase.jet.test:dimen/abc_search_view_preferred_height = 0x7f060036 ++io.invertase.jet.test:dimen/abc_dialog_padding_top_material = 0x7f060025 ++io.invertase.jet.test:color/ripple_material_dark = 0x7f05004b ++io.invertase.jet.test:attr/listPopupWindowStyle = 0x7f0300b4 ++io.invertase.jet.test:color/material_blue_grey_950 = 0x7f050037 ++io.invertase.jet.test:style/Platform.AppCompat = 0x7f0d00a8 ++io.invertase.jet.test:string/catalyst_debug_open_disabled = 0x7f0c0022 ++io.invertase.jet.test:id/tag_accessibility_clickable_spans = 0x7f0800bb ++io.invertase.jet.test:color/material_blue_grey_900 = 0x7f050036 ++io.invertase.jet.test:styleable/Autofill.InlineSuggestion = 0x7f0e0010 ++io.invertase.jet.test:color/switch_thumb_material_dark = 0x7f050053 ++io.invertase.jet.test:color/material_blue_grey_800 = 0x7f050035 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f0d002d ++io.invertase.jet.test:id/tag_unhandled_key_event_manager = 0x7f0800c4 ++io.invertase.jet.test:color/highlighted_text_material_dark = 0x7f050033 ++io.invertase.jet.test:dimen/abc_dialog_padding_material = 0x7f060024 ++io.invertase.jet.test:layout/dev_loading_view = 0x7f0b001e ++io.invertase.jet.test:attr/actionBarTabStyle = 0x7f030007 ++io.invertase.jet.test:color/primary_dark_material_light = 0x7f050044 ++io.invertase.jet.test:attr/actionModeBackground = 0x7f030010 ++io.invertase.jet.test:color/foreground_material_light = 0x7f050032 ++io.invertase.jet.test:color/foreground_material_dark = 0x7f050031 ++io.invertase.jet.test:style/Base.V7.Theme.AppCompat = 0x7f0d0061 ++io.invertase.jet.test:color/catalyst_redbox_background = 0x7f05002a ++io.invertase.jet.test:attr/roundingBorderPadding = 0x7f0300f1 ++io.invertase.jet.test:dimen/abc_control_padding_material = 0x7f06001a ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle = 0x7f0d00e7 ++io.invertase.jet.test:color/button_material_dark = 0x7f050027 ++io.invertase.jet.test:anim/abc_slide_in_bottom = 0x7f010006 ++io.invertase.jet.test:id/accessibility_collection = 0x7f080008 ++io.invertase.jet.test:attr/selectableItemBackgroundBorderless = 0x7f0300f8 ++io.invertase.jet.test:color/bright_foreground_material_light = 0x7f050026 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Subhead = 0x7f0d00dd ++io.invertase.jet.test:dimen/abc_seekbar_track_progress_height_material = 0x7f060039 ++io.invertase.jet.test:color/bright_foreground_inverse_material_light = 0x7f050024 ++io.invertase.jet.test:attr/autofillInlineSuggestionSubtitle = 0x7f030039 ++io.invertase.jet.test:color/bright_foreground_inverse_material_dark = 0x7f050023 ++io.invertase.jet.test:id/buttonPanel = 0x7f080050 ++io.invertase.jet.test:color/bright_foreground_disabled_material_light = 0x7f050022 ++io.invertase.jet.test:attr/navigationContentDescription = 0x7f0300c2 ++io.invertase.jet.test:dimen/abc_button_padding_vertical_material = 0x7f060015 ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem = 0x7f0d00b3 ++io.invertase.jet.test:attr/thumbTint = 0x7f030120 ++io.invertase.jet.test:color/background_floating_material_light = 0x7f05001e ++io.invertase.jet.test:style/Base.Widget.AppCompat.ListView.DropDown = 0x7f0d008f ++io.invertase.jet.test:dimen/abc_dialog_min_width_major = 0x7f060022 ++io.invertase.jet.test:attr/menu = 0x7f0300c0 ++io.invertase.jet.test:color/accent_material_light = 0x7f05001a ++io.invertase.jet.test:string/abc_action_mode_done = 0x7f0c0003 ++io.invertase.jet.test:id/accessibility_custom_action_10 = 0x7f08000c ++io.invertase.jet.test:layout/abc_cascading_menu_item_layout = 0x7f0b000b ++io.invertase.jet.test:color/background_floating_material_dark = 0x7f05001d ++io.invertase.jet.test:color/dim_foreground_disabled_material_light = 0x7f05002c ++io.invertase.jet.test:color/abc_tint_seek_thumb = 0x7f050016 ++io.invertase.jet.test:attr/actionBarTheme = 0x7f030009 ++io.invertase.jet.test:attr/progressBarImageScaleType = 0x7f0300d9 ++io.invertase.jet.test:color/abc_secondary_text_material_light = 0x7f050012 ++io.invertase.jet.test:attr/alertDialogCenterButtons = 0x7f030028 ++io.invertase.jet.test:attr/fontVariationSettings = 0x7f030097 ++io.invertase.jet.test:color/abc_secondary_text_material_dark = 0x7f050011 ++io.invertase.jet.test:layout/abc_action_bar_title_item = 0x7f0b0000 ++io.invertase.jet.test:color/abc_search_url_text_normal = 0x7f05000e ++io.invertase.jet.test:string/menubar_description = 0x7f0c003d ++io.invertase.jet.test:id/accessibility_custom_action_0 = 0x7f08000a ++io.invertase.jet.test:color/abc_search_url_text = 0x7f05000d ++io.invertase.jet.test:attr/subMenuArrow = 0x7f030105 ++io.invertase.jet.test:color/abc_primary_text_material_dark = 0x7f05000b ++io.invertase.jet.test:attr/autofillInlineSuggestionTitle = 0x7f03003a ++io.invertase.jet.test:color/abc_primary_text_disable_only_material_light = 0x7f05000a ++io.invertase.jet.test:string/abc_searchview_description_submit = 0x7f0c0016 ++io.invertase.jet.test:id/accessibility_custom_action_15 = 0x7f080011 ++io.invertase.jet.test:color/abc_hint_foreground_material_light = 0x7f050008 ++io.invertase.jet.test:attr/contentInsetLeft = 0x7f030068 ++io.invertase.jet.test:color/abc_decor_view_status_guard_light = 0x7f050006 ++io.invertase.jet.test:attr/roundingBorderWidth = 0x7f0300f2 ++io.invertase.jet.test:attr/measureWithLargestChild = 0x7f0300bf ++io.invertase.jet.test:color/abc_decor_view_status_guard = 0x7f050005 ++io.invertase.jet.test:color/abc_btn_colored_text_material = 0x7f050003 ++io.invertase.jet.test:id/up = 0x7f0800d5 ++io.invertase.jet.test:attr/showText = 0x7f0300fc ++io.invertase.jet.test:drawable/abc_item_background_holo_light = 0x7f070023 ++io.invertase.jet.test:color/abc_background_cache_hint_selector_material_dark = 0x7f050000 ++io.invertase.jet.test:layout/abc_tooltip = 0x7f0b001b ++io.invertase.jet.test:attr/windowNoTitle = 0x7f030146 ++io.invertase.jet.test:id/screen = 0x7f08009e ++io.invertase.jet.test:attr/track = 0x7f030136 ++io.invertase.jet.test:attr/windowMinWidthMinor = 0x7f030145 ++io.invertase.jet.test:id/checkbox = 0x7f080057 ++io.invertase.jet.test:anim/btn_radio_to_off_mtrl_dot_group_animation = 0x7f010012 ++io.invertase.jet.test:attr/buttonBarButtonStyle = 0x7f030043 ++io.invertase.jet.test:drawable/btn_checkbox_checked_to_unchecked_mtrl_animation = 0x7f070051 ++io.invertase.jet.test:drawable/abc_ic_menu_overflow_material = 0x7f07001c ++io.invertase.jet.test:attr/windowMinWidthMajor = 0x7f030144 ++io.invertase.jet.test:drawable/abc_ic_commit_search_api_mtrl_alpha = 0x7f070018 ++io.invertase.jet.test:style/Base.AlertDialog.AppCompat.Light = 0x7f0d0008 ++io.invertase.jet.test:attr/itemPadding = 0x7f0300a8 ++io.invertase.jet.test:style/Base.Widget.AppCompat.Spinner.Underlined = 0x7f0d009e ++io.invertase.jet.test:attr/windowFixedWidthMajor = 0x7f030142 ++io.invertase.jet.test:dimen/notification_action_text_size = 0x7f060063 ++io.invertase.jet.test:attr/textAppearanceListItem = 0x7f030113 ++io.invertase.jet.test:dimen/abc_list_item_height_small_material = 0x7f060032 ++io.invertase.jet.test:attr/checkMarkCompat = 0x7f030050 ++io.invertase.jet.test:attr/actionOverflowButtonStyle = 0x7f03001f ++io.invertase.jet.test:attr/windowActionBarOverlay = 0x7f03013e ++io.invertase.jet.test:dimen/tooltip_margin = 0x7f060073 ++io.invertase.jet.test:attr/actionBarSplitStyle = 0x7f030004 ++io.invertase.jet.test:attr/tooltipText = 0x7f030135 ++io.invertase.jet.test:id/rn_redbox_report_button = 0x7f08009a ++io.invertase.jet.test:attr/colorControlNormal = 0x7f03005f ++io.invertase.jet.test:attr/toolbarStyle = 0x7f030132 ++io.invertase.jet.test:attr/indeterminateProgressStyle = 0x7f0300a4 ++io.invertase.jet.test:attr/toolbarNavigationButtonStyle = 0x7f030131 ++io.invertase.jet.test:style/Base.ThemeOverlay.AppCompat.Dark = 0x7f0d004e ++io.invertase.jet.test:color/androidx_core_secondary_text_default_material_light = 0x7f05001c ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionBar.TabText = 0x7f0d0146 ++io.invertase.jet.test:attr/background = 0x7f03003b ++io.invertase.jet.test:attr/titleMargins = 0x7f03012d ++io.invertase.jet.test:style/Base.Widget.AppCompat.DrawerArrowToggle.Common = 0x7f0d0080 ++io.invertase.jet.test:attr/listDividerAlertDialog = 0x7f0300b0 ++io.invertase.jet.test:attr/titleMarginEnd = 0x7f03012a ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.DropDownItem = 0x7f0d00ef ++io.invertase.jet.test:attr/alertDialogStyle = 0x7f030029 ++io.invertase.jet.test:dimen/compat_button_inset_horizontal_material = 0x7f060052 ++io.invertase.jet.test:attr/titleMargin = 0x7f030128 ++io.invertase.jet.test:attr/navigationIcon = 0x7f0300c3 ++io.invertase.jet.test:attr/tintMode = 0x7f030126 ++io.invertase.jet.test:id/action_context_bar = 0x7f080039 ++io.invertase.jet.test:attr/tint = 0x7f030125 ++io.invertase.jet.test:id/middle = 0x7f080081 ++io.invertase.jet.test:attr/tickMarkTintMode = 0x7f030124 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small = 0x7f0d00d5 ++io.invertase.jet.test:attr/tickMarkTint = 0x7f030123 ++io.invertase.jet.test:dimen/compat_button_padding_vertical_material = 0x7f060055 ++io.invertase.jet.test:id/blocking = 0x7f08004d ++io.invertase.jet.test:drawable/abc_btn_default_mtrl_shape = 0x7f070008 ++io.invertase.jet.test:attr/tickMark = 0x7f030122 ++io.invertase.jet.test:style/Widget.AppCompat.ProgressBar = 0x7f0d015f ++io.invertase.jet.test:attr/thickness = 0x7f03011e ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Subhead.Inverse = 0x7f0d0026 ++io.invertase.jet.test:id/action_image = 0x7f08003b ++io.invertase.jet.test:anim/abc_slide_in_top = 0x7f010007 ++io.invertase.jet.test:string/catalyst_dismiss_button = 0x7f0c0025 ++io.invertase.jet.test:drawable/abc_btn_check_material = 0x7f070003 ++io.invertase.jet.test:attr/actionModeStyle = 0x7f03001c ++io.invertase.jet.test:dimen/abc_alert_dialog_button_dimen = 0x7f060011 ++io.invertase.jet.test:attr/textAppearanceSearchResultSubtitle = 0x7f030117 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Menu = 0x7f0d001f ++io.invertase.jet.test:drawable/abc_list_selector_background_transition_holo_light = 0x7f07002b ++io.invertase.jet.test:attr/activityChooserViewStyle = 0x7f030023 ++io.invertase.jet.test:attr/titleTextStyle = 0x7f030130 ++io.invertase.jet.test:attr/actionLayout = 0x7f03000d ++io.invertase.jet.test:attr/textAppearancePopupMenuHeader = 0x7f030116 ++io.invertase.jet.test:attr/textAppearanceLargePopupMenu = 0x7f030112 ++io.invertase.jet.test:drawable/abc_btn_radio_material_anim = 0x7f07000a ++io.invertase.jet.test:style/TextAppearance.AppCompat.SearchResult.Title = 0x7f0d00da ++io.invertase.jet.test:attr/subtitleTextAppearance = 0x7f030108 ++io.invertase.jet.test:id/never = 0x7f080084 ++io.invertase.jet.test:attr/actionModeTheme = 0x7f03001d ++io.invertase.jet.test:attr/swipeRefreshLayoutProgressSpinnerBackgroundColor = 0x7f03010c ++io.invertase.jet.test:attr/textAllCaps = 0x7f030111 ++io.invertase.jet.test:dimen/abc_control_corner_material = 0x7f060018 ++io.invertase.jet.test:attr/actionModeShareDrawable = 0x7f03001a ++io.invertase.jet.test:attr/switchTextAppearance = 0x7f030110 ++io.invertase.jet.test:attr/showDividers = 0x7f0300fb ++io.invertase.jet.test:styleable/Spinner = 0x7f0e0029 ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f0d0147 ++io.invertase.jet.test:attr/colorPrimaryDark = 0x7f030062 ++io.invertase.jet.test:attr/switchPadding = 0x7f03010e ++io.invertase.jet.test:attr/imageButtonStyle = 0x7f0300a3 ++io.invertase.jet.test:attr/suggestionRowLayout = 0x7f03010b ++io.invertase.jet.test:attr/subtitleTextStyle = 0x7f03010a ++io.invertase.jet.test:id/accessibility_custom_action_29 = 0x7f080020 ++io.invertase.jet.test:attr/allowStacking = 0x7f03002b ++io.invertase.jet.test:layout/abc_search_view = 0x7f0b0019 ++io.invertase.jet.test:attr/subtitle = 0x7f030107 ++io.invertase.jet.test:color/primary_text_disabled_material_light = 0x7f05004a ++io.invertase.jet.test:attr/windowFixedWidthMinor = 0x7f030143 ++io.invertase.jet.test:attr/actionModePopupWindowStyle = 0x7f030018 ++io.invertase.jet.test:attr/defaultQueryHint = 0x7f03006e ++io.invertase.jet.test:attr/state_above_anchor = 0x7f030104 ++io.invertase.jet.test:attr/closeItemLayout = 0x7f030056 ++io.invertase.jet.test:attr/srcCompat = 0x7f030103 ++io.invertase.jet.test:id/search_badge = 0x7f0800a2 ++io.invertase.jet.test:attr/splitTrack = 0x7f030102 ++io.invertase.jet.test:id/italic = 0x7f08007a ++io.invertase.jet.test:dimen/abc_progress_bar_height_material = 0x7f060035 ++io.invertase.jet.test:id/useLogo = 0x7f0800d6 ++io.invertase.jet.test:attr/spinnerStyle = 0x7f030101 ++io.invertase.jet.test:attr/singleChoiceItemLayout = 0x7f0300fe ++io.invertase.jet.test:attr/buttonStyle = 0x7f03004c ++io.invertase.jet.test:id/fitBottomStart = 0x7f080068 ++io.invertase.jet.test:attr/autoSizeStepGranularity = 0x7f030034 ++io.invertase.jet.test:layout/notification_template_icon_group = 0x7f0b0023 ++io.invertase.jet.test:drawable/abc_btn_radio_material = 0x7f070009 ++io.invertase.jet.test:attr/seekBarStyle = 0x7f0300f6 ++io.invertase.jet.test:attr/searchHintIcon = 0x7f0300f3 ++io.invertase.jet.test:id/uniform = 0x7f0800d4 ++io.invertase.jet.test:dimen/abc_disabled_alpha_material_dark = 0x7f060027 ++io.invertase.jet.test:color/material_grey_100 = 0x7f05003a ++io.invertase.jet.test:style/Base.Theme.AppCompat.Dialog.Alert = 0x7f0d0041 ++io.invertase.jet.test:attr/voiceIcon = 0x7f03013c ++io.invertase.jet.test:attr/roundedCornerRadius = 0x7f0300ef ++io.invertase.jet.test:attr/trackTintMode = 0x7f030138 ++io.invertase.jet.test:color/androidx_core_ripple_material_light = 0x7f05001b ++io.invertase.jet.test:attr/roundBottomEnd = 0x7f0300e6 ++io.invertase.jet.test:attr/roundTopRight = 0x7f0300ec ++io.invertase.jet.test:layout/abc_action_mode_bar = 0x7f0b0004 ++io.invertase.jet.test:attr/textColorAlertDialogListItem = 0x7f03011a ++io.invertase.jet.test:string/imagebutton_description = 0x7f0c003a ++io.invertase.jet.test:attr/paddingEnd = 0x7f0300ca ++io.invertase.jet.test:id/expand_activities_button = 0x7f080065 ++io.invertase.jet.test:attr/roundTopEnd = 0x7f0300ea ++io.invertase.jet.test:attr/overlapAnchor = 0x7f0300c7 ++io.invertase.jet.test:style/Widget.AppCompat.Toolbar = 0x7f0d016e ++io.invertase.jet.test:style/Widget.AppCompat.ButtonBar.AlertDialog = 0x7f0d0139 ++io.invertase.jet.test:style/Platform.V21.AppCompat = 0x7f0d00ad ++io.invertase.jet.test:attr/dividerHorizontal = 0x7f030074 ++io.invertase.jet.test:drawable/tooltip_frame_dark = 0x7f07006a ++io.invertase.jet.test:style/Base.Widget.AppCompat.Button.Small = 0x7f0d0079 ++io.invertase.jet.test:dimen/tooltip_y_offset_non_touch = 0x7f060077 ++io.invertase.jet.test:attr/roundBottomStart = 0x7f0300e9 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f0d00f2 ++io.invertase.jet.test:attr/roundBottomLeft = 0x7f0300e7 ++io.invertase.jet.test:attr/panelBackground = 0x7f0300cd ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.Switch = 0x7f0d0039 ++io.invertase.jet.test:anim/abc_fade_out = 0x7f010001 ++io.invertase.jet.test:attr/theme = 0x7f03011d ++io.invertase.jet.test:attr/titleMarginStart = 0x7f03012b ++io.invertase.jet.test:id/accessibility_role = 0x7f08002d ++io.invertase.jet.test:styleable/SwipeRefreshLayout = 0x7f0e002c ++io.invertase.jet.test:attr/ratingBarStyleSmall = 0x7f0300e2 ++io.invertase.jet.test:id/disableHome = 0x7f080062 ++io.invertase.jet.test:style/Widget.Autofill.InlineSuggestionTitle = 0x7f0d0175 ++io.invertase.jet.test:style/SpinnerDatePickerDialog = 0x7f0d00c3 ++io.invertase.jet.test:attr/ratingBarStyleIndicator = 0x7f0300e1 ++io.invertase.jet.test:style/Base.Widget.AppCompat.ActionBar.Solid = 0x7f0d006a ++io.invertase.jet.test:string/spinbutton_description = 0x7f0c0044 ++io.invertase.jet.test:attr/logoDescription = 0x7f0300bd ++io.invertase.jet.test:color/abc_color_highlight_material = 0x7f050004 ++io.invertase.jet.test:style/TextAppearance.Compat.Notification.Info = 0x7f0d00f6 ++io.invertase.jet.test:id/action_divider = 0x7f08003a ++io.invertase.jet.test:style/Widget.AppCompat.ImageButton = 0x7f0d0140 ++io.invertase.jet.test:style/Theme.AppCompat.DayNight = 0x7f0d0100 ++io.invertase.jet.test:id/search_close_btn = 0x7f0800a5 ++io.invertase.jet.test:color/primary_text_disabled_material_dark = 0x7f050049 ++io.invertase.jet.test:attr/radioButtonStyle = 0x7f0300df ++io.invertase.jet.test:attr/autofillInlineSuggestionEndIconStyle = 0x7f030037 ++io.invertase.jet.test:attr/lastBaselineToBottomHeight = 0x7f0300aa ++io.invertase.jet.test:attr/queryHint = 0x7f0300dd ++io.invertase.jet.test:dimen/tooltip_precise_anchor_extra_offset = 0x7f060074 ++io.invertase.jet.test:color/dim_foreground_disabled_material_dark = 0x7f05002b ++io.invertase.jet.test:color/catalyst_logbox_background = 0x7f050029 ++io.invertase.jet.test:style/AlertDialog.AppCompat.Light = 0x7f0d0001 ++io.invertase.jet.test:attr/queryBackground = 0x7f0300dc ++io.invertase.jet.test:style/Theme.AppCompat.Dialog = 0x7f0d0107 ++io.invertase.jet.test:color/material_grey_50 = 0x7f05003c ++io.invertase.jet.test:drawable/abc_list_selector_holo_light = 0x7f07002f ++io.invertase.jet.test:color/abc_tint_spinner = 0x7f050017 ++io.invertase.jet.test:attr/progressBarStyle = 0x7f0300db ++io.invertase.jet.test:id/CTRL = 0x7f080001 ++io.invertase.jet.test:layout/abc_alert_dialog_material = 0x7f0b0009 ++io.invertase.jet.test:attr/progressBarImage = 0x7f0300d8 ++io.invertase.jet.test:styleable/AppCompatImageView = 0x7f0e000b ++io.invertase.jet.test:style/Widget.AppCompat.ActionBar.Solid = 0x7f0d0128 ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow = 0x7f0d00b8 ++io.invertase.jet.test:attr/preserveIconSpacing = 0x7f0300d5 ++io.invertase.jet.test:dimen/abc_action_bar_default_height_material = 0x7f060002 ++io.invertase.jet.test:color/primary_dark_material_dark = 0x7f050043 ++io.invertase.jet.test:drawable/abc_ic_clear_material = 0x7f070017 ++io.invertase.jet.test:attr/listChoiceBackgroundIndicator = 0x7f0300ad ++io.invertase.jet.test:attr/submitBackground = 0x7f030106 ++io.invertase.jet.test:string/abc_activitychooserview_choose_application = 0x7f0c0005 ++io.invertase.jet.test:dimen/abc_dialog_fixed_width_minor = 0x7f06001f ++io.invertase.jet.test:attr/checkboxStyle = 0x7f030053 ++io.invertase.jet.test:animator/fragment_fade_enter = 0x7f020002 ++io.invertase.jet.test:attr/popupMenuStyle = 0x7f0300d2 ++io.invertase.jet.test:color/secondary_text_disabled_material_dark = 0x7f05004f ++io.invertase.jet.test:styleable/AnimatedStateListDrawableTransition = 0x7f0e0009 ++io.invertase.jet.test:attr/panelMenuListTheme = 0x7f0300ce ++io.invertase.jet.test:attr/paddingTopNoTitle = 0x7f0300cc ++io.invertase.jet.test:style/Animation.AppCompat.Tooltip = 0x7f0d0004 ++io.invertase.jet.test:string/search_menu_title = 0x7f0c0043 ++io.invertase.jet.test:dimen/abc_action_bar_default_padding_end_material = 0x7f060003 ++io.invertase.jet.test:integer/react_native_dev_server_port = 0x7f090004 ++io.invertase.jet.test:color/abc_search_url_text_selected = 0x7f050010 ++io.invertase.jet.test:attr/textAppearanceListItemSmall = 0x7f030115 ++io.invertase.jet.test:attr/dialogCornerRadius = 0x7f03006f ++io.invertase.jet.test:drawable/abc_edit_text_material = 0x7f070014 ++io.invertase.jet.test:style/Base.Animation.AppCompat.Tooltip = 0x7f0d000b ++io.invertase.jet.test:dimen/disabled_alpha_material_light = 0x7f06005a ++io.invertase.jet.test:attr/multiChoiceItemLayout = 0x7f0300c1 ++io.invertase.jet.test:drawable/notify_panel_notification_icon_bg = 0x7f070064 ++io.invertase.jet.test:attr/actionButtonStyle = 0x7f03000b ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Medium = 0x7f0d001d ++io.invertase.jet.test:bool/abc_action_bar_embed_tabs = 0x7f040000 ++io.invertase.jet.test:attr/isLightTheme = 0x7f0300a7 ++io.invertase.jet.test:style/Theme.AppCompat.Empty = 0x7f0d010b ++io.invertase.jet.test:attr/searchIcon = 0x7f0300f4 ++io.invertase.jet.test:drawable/notification_bg_low_normal = 0x7f07005c ++io.invertase.jet.test:color/highlighted_text_material_light = 0x7f050034 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Button = 0x7f0d0011 ++io.invertase.jet.test:attr/maxButtonHeight = 0x7f0300be ++io.invertase.jet.test:color/error_color_material_dark = 0x7f05002f ++io.invertase.jet.test:id/edit_query = 0x7f080063 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse = 0x7f0d00e8 ++io.invertase.jet.test:id/search_edit_frame = 0x7f0800a6 ++io.invertase.jet.test:color/abc_tint_switch_track = 0x7f050018 ++io.invertase.jet.test:attr/fontProviderQuery = 0x7f030094 ++io.invertase.jet.test:attr/listPreferredItemPaddingRight = 0x7f0300ba ++io.invertase.jet.test:style/Theme.Catalyst = 0x7f0d0115 ++io.invertase.jet.test:attr/switchMinWidth = 0x7f03010d ++io.invertase.jet.test:id/icon = 0x7f080074 ++io.invertase.jet.test:drawable/notification_bg_low = 0x7f07005b ++io.invertase.jet.test:style/Widget.AppCompat.CompoundButton.Switch = 0x7f0d013c ++io.invertase.jet.test:id/fitEnd = 0x7f08006a ++io.invertase.jet.test:attr/listPreferredItemHeightSmall = 0x7f0300b7 ++io.invertase.jet.test:dimen/abc_action_bar_stacked_tab_max_width = 0x7f06000a ++io.invertase.jet.test:styleable/MenuItem = 0x7f0e0022 ++io.invertase.jet.test:attr/actionBarDivider = 0x7f030000 ++io.invertase.jet.test:dimen/abc_disabled_alpha_material_light = 0x7f060028 ++io.invertase.jet.test:attr/listPreferredItemHeightLarge = 0x7f0300b6 ++io.invertase.jet.test:style/Base.Widget.AppCompat.ActionBar.TabBar = 0x7f0d006b ++io.invertase.jet.test:id/tag_state_description = 0x7f0800c2 ++io.invertase.jet.test:id/accessibility_custom_action_20 = 0x7f080017 ++io.invertase.jet.test:drawable/abc_list_pressed_holo_light = 0x7f070029 ++io.invertase.jet.test:attr/commitIcon = 0x7f030064 ++io.invertase.jet.test:anim/btn_radio_to_off_mtrl_ring_outer_animation = 0x7f010013 ++io.invertase.jet.test:color/abc_primary_text_disable_only_material_dark = 0x7f050009 ++io.invertase.jet.test:dimen/notification_top_pad = 0x7f06006f ++io.invertase.jet.test:dimen/abc_action_bar_stacked_max_height = 0x7f060009 ++io.invertase.jet.test:attr/ratingBarStyle = 0x7f0300e0 ++io.invertase.jet.test:attr/placeholderImage = 0x7f0300d0 ++io.invertase.jet.test:attr/listPreferredItemHeight = 0x7f0300b5 ++io.invertase.jet.test:styleable/CheckedTextView = 0x7f0e0013 ++io.invertase.jet.test:drawable/notification_bg_normal_pressed = 0x7f07005f ++io.invertase.jet.test:dimen/autofill_inline_suggestion_icon_size = 0x7f060051 ++io.invertase.jet.test:id/button_text = 0x7f080051 ++io.invertase.jet.test:attr/searchViewStyle = 0x7f0300f5 ++io.invertase.jet.test:attr/listLayout = 0x7f0300b2 ++io.invertase.jet.test:drawable/notification_tile_bg = 0x7f070063 ++io.invertase.jet.test:attr/lineHeight = 0x7f0300ac ++io.invertase.jet.test:dimen/abc_list_item_height_material = 0x7f060031 ++io.invertase.jet.test:attr/fontFamily = 0x7f03008e ++io.invertase.jet.test:attr/iconifiedByDefault = 0x7f0300a2 ++io.invertase.jet.test:style/Base.Widget.AppCompat.Light.ActionBar.TabView = 0x7f0d0089 ++io.invertase.jet.test:attr/windowActionBar = 0x7f03013d ++io.invertase.jet.test:string/abc_menu_meta_shortcut_label = 0x7f0c000d ++io.invertase.jet.test:id/off = 0x7f08008a ++io.invertase.jet.test:attr/iconTintMode = 0x7f0300a1 ++io.invertase.jet.test:attr/windowFixedHeightMajor = 0x7f030140 ++io.invertase.jet.test:attr/autoCompleteTextViewStyle = 0x7f030030 ++io.invertase.jet.test:attr/autoSizeTextType = 0x7f030035 ++io.invertase.jet.test:id/accessibility_custom_action_19 = 0x7f080015 ++io.invertase.jet.test:attr/homeAsUpIndicator = 0x7f03009d ++io.invertase.jet.test:attr/height = 0x7f03009b ++io.invertase.jet.test:dimen/abc_text_size_title_material = 0x7f06004f ++io.invertase.jet.test:attr/homeLayout = 0x7f03009e ++io.invertase.jet.test:attr/gapBetweenBars = 0x7f030099 ++io.invertase.jet.test:style/Theme.AppCompat.NoActionBar = 0x7f0d0113 ++io.invertase.jet.test:drawable/abc_list_longpressed_holo = 0x7f070027 ++io.invertase.jet.test:anim/catalyst_slide_up = 0x7f01001d ++io.invertase.jet.test:attr/firstBaselineToTopHeight = 0x7f03008c ++io.invertase.jet.test:id/action_mode_bar_stub = 0x7f08003f ++io.invertase.jet.test:drawable/abc_tab_indicator_material = 0x7f070043 ++io.invertase.jet.test:attr/failureImageScaleType = 0x7f03008b ++io.invertase.jet.test:attr/textLocale = 0x7f03011c ++io.invertase.jet.test:attr/switchStyle = 0x7f03010f ++io.invertase.jet.test:drawable/abc_cab_background_top_material = 0x7f070010 ++io.invertase.jet.test:attr/failureImage = 0x7f03008a ++io.invertase.jet.test:attr/actionBarTabTextStyle = 0x7f030008 ++io.invertase.jet.test:dimen/abc_dropdownitem_text_padding_right = 0x7f06002b ++io.invertase.jet.test:attr/roundBottomRight = 0x7f0300e8 ++io.invertase.jet.test:attr/roundingBorderColor = 0x7f0300f0 ++io.invertase.jet.test:attr/buttonCompat = 0x7f030048 ++io.invertase.jet.test:attr/emojiCompatEnabled = 0x7f030087 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat = 0x7f0d000e ++io.invertase.jet.test:id/action_bar_root = 0x7f080034 ++io.invertase.jet.test:color/abc_btn_colored_borderless_text_material = 0x7f050002 ++io.invertase.jet.test:drawable/abc_menu_hardkey_panel_mtrl_mult = 0x7f070030 ++io.invertase.jet.test:id/search_voice_btn = 0x7f0800ab ++io.invertase.jet.test:attr/editTextColor = 0x7f030084 ++io.invertase.jet.test:id/transform = 0x7f0800d1 ++io.invertase.jet.test:attr/fadeDuration = 0x7f030089 ++io.invertase.jet.test:styleable/StateListDrawable = 0x7f0e002a ++io.invertase.jet.test:color/bright_foreground_material_dark = 0x7f050025 ++io.invertase.jet.test:drawable/btn_checkbox_unchecked_mtrl = 0x7f070052 ++io.invertase.jet.test:style/Base.Theme.AppCompat.Light.Dialog.Alert = 0x7f0d0048 ++io.invertase.jet.test:dimen/tooltip_vertical_padding = 0x7f060076 ++io.invertase.jet.test:anim/fragment_fast_out_extra_slow_in = 0x7f01001e ++io.invertase.jet.test:attr/fontProviderFetchStrategy = 0x7f030091 ++io.invertase.jet.test:dimen/abc_star_big = 0x7f06003b ++io.invertase.jet.test:attr/drawableTopCompat = 0x7f03007f ++io.invertase.jet.test:attr/textAppearanceSearchResultTitle = 0x7f030118 ++io.invertase.jet.test:attr/drawableTintMode = 0x7f03007e ++io.invertase.jet.test:attr/drawableTint = 0x7f03007d ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.Switch = 0x7f0d00f3 ++io.invertase.jet.test:layout/notification_action = 0x7f0b0020 ++io.invertase.jet.test:attr/retryImage = 0x7f0300e3 ++io.invertase.jet.test:attr/drawableRightCompat = 0x7f03007a ++io.invertase.jet.test:style/Platform.AppCompat.Light = 0x7f0d00a9 ++io.invertase.jet.test:attr/fontStyle = 0x7f030096 ++io.invertase.jet.test:attr/autoSizeMinTextSize = 0x7f030032 ++io.invertase.jet.test:drawable/abc_vector_test = 0x7f07004e ++io.invertase.jet.test:color/abc_tint_default = 0x7f050014 ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActionMode.Inverse = 0x7f0d014d ++io.invertase.jet.test:attr/fontProviderFetchTimeout = 0x7f030092 ++io.invertase.jet.test:id/decor_content_parent = 0x7f08005f ++io.invertase.jet.test:attr/customNavigationLayout = 0x7f03006d ++io.invertase.jet.test:style/Platform.ThemeOverlay.AppCompat.Light = 0x7f0d00ac ++io.invertase.jet.test:anim/btn_checkbox_to_checked_icon_null_animation = 0x7f01000e ++io.invertase.jet.test:dimen/compat_notification_large_icon_max_width = 0x7f060058 ++io.invertase.jet.test:id/action_bar_subtitle = 0x7f080036 ++io.invertase.jet.test:attr/actionModeWebSearchDrawable = 0x7f03001e ++io.invertase.jet.test:attr/alphabeticModifiers = 0x7f03002d ++io.invertase.jet.test:attr/contentInsetStartWithNavigation = 0x7f03006b ++io.invertase.jet.test:style/Base.Widget.AppCompat.ActionButton = 0x7f0d006e ++io.invertase.jet.test:drawable/abc_scrubber_control_off_mtrl_alpha = 0x7f070035 ++io.invertase.jet.test:attr/contentInsetEndWithActions = 0x7f030067 ++io.invertase.jet.test:color/error_color_material_light = 0x7f050030 ++io.invertase.jet.test:style/Animation.Catalyst.RedBox = 0x7f0d0006 ++io.invertase.jet.test:attr/showAsAction = 0x7f0300fa ++io.invertase.jet.test:attr/drawerArrowStyle = 0x7f030080 ++io.invertase.jet.test:style/ThemeOverlay.AppCompat.Dark = 0x7f0d0120 ++io.invertase.jet.test:attr/contentDescription = 0x7f030065 ++io.invertase.jet.test:style/ThemeOverlay.AppCompat.ActionBar = 0x7f0d011f ++io.invertase.jet.test:attr/drawableLeftCompat = 0x7f030079 ++io.invertase.jet.test:attr/placeholderImageScaleType = 0x7f0300d1 ++io.invertase.jet.test:animator/fragment_open_exit = 0x7f020005 ++io.invertase.jet.test:attr/actionMenuTextAppearance = 0x7f03000e ++io.invertase.jet.test:attr/divider = 0x7f030073 ++io.invertase.jet.test:drawable/abc_textfield_default_mtrl_alpha = 0x7f07004a ++io.invertase.jet.test:style/Widget.AppCompat.AutoCompleteTextView = 0x7f0d0131 ++io.invertase.jet.test:color/bright_foreground_disabled_material_dark = 0x7f050021 ++io.invertase.jet.test:attr/colorControlActivated = 0x7f03005d ++io.invertase.jet.test:xml/rn_dev_preferences = 0x7f0f0000 ++io.invertase.jet.test:drawable/abc_scrubber_control_to_pressed_mtrl_005 = 0x7f070037 ++io.invertase.jet.test:color/material_deep_teal_500 = 0x7f050039 ++io.invertase.jet.test:layout/abc_activity_chooser_view_list_item = 0x7f0b0007 ++io.invertase.jet.test:id/multiply = 0x7f080083 ++io.invertase.jet.test:dimen/abc_text_size_body_2_material = 0x7f060040 ++io.invertase.jet.test:dimen/abc_action_button_min_width_material = 0x7f06000e ++io.invertase.jet.test:color/background_material_dark = 0x7f05001f ++io.invertase.jet.test:anim/abc_popup_exit = 0x7f010004 ++io.invertase.jet.test:id/accessibility_custom_action_16 = 0x7f080012 ++io.invertase.jet.test:dimen/abc_seekbar_track_background_height_material = 0x7f060038 ++io.invertase.jet.test:string/catalyst_dev_menu_sub_header = 0x7f0c0024 ++io.invertase.jet.test:anim/btn_checkbox_to_checked_box_outer_merged_animation = 0x7f01000d ++io.invertase.jet.test:attr/colorButtonNormal = 0x7f03005c ++io.invertase.jet.test:anim/btn_checkbox_to_unchecked_box_inner_merged_animation = 0x7f01000f ++io.invertase.jet.test:style/Base.V26.Theme.AppCompat.Light = 0x7f0d005d ++io.invertase.jet.test:anim/catalyst_fade_in = 0x7f010018 ++io.invertase.jet.test:attr/actionModeCutDrawable = 0x7f030015 ++io.invertase.jet.test:style/NoAnimationDialog = 0x7f0d00a7 ++io.invertase.jet.test:attr/color = 0x7f030059 ++io.invertase.jet.test:id/accessibility_custom_action_24 = 0x7f08001b ++io.invertase.jet.test:attr/paddingBottomNoButtons = 0x7f0300c9 ++io.invertase.jet.test:attr/buttonBarPositiveButtonStyle = 0x7f030046 ++io.invertase.jet.test:drawable/abc_btn_radio_to_on_mtrl_000 = 0x7f07000b ++io.invertase.jet.test:attr/actionModePasteDrawable = 0x7f030017 ++io.invertase.jet.test:attr/checkedTextViewStyle = 0x7f030054 ++io.invertase.jet.test:attr/panelMenuListWidth = 0x7f0300cf ++io.invertase.jet.test:dimen/abc_text_size_display_4_material = 0x7f060046 ++io.invertase.jet.test:animator/fragment_fade_exit = 0x7f020003 ++io.invertase.jet.test:style/Widget.AppCompat.PopupMenu = 0x7f0d015c ++io.invertase.jet.test:attr/tooltipForegroundColor = 0x7f030133 ++io.invertase.jet.test:style/Widget.Autofill = 0x7f0d0170 ++io.invertase.jet.test:style/Widget.AppCompat.DropDownItem.Spinner = 0x7f0d013e ++io.invertase.jet.test:drawable/abc_cab_background_internal_bg = 0x7f07000f ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Body2 = 0x7f0d0010 ++io.invertase.jet.test:attr/listPreferredItemPaddingEnd = 0x7f0300b8 ++io.invertase.jet.test:attr/colorPrimary = 0x7f030061 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse = 0x7f0d00ea ++io.invertase.jet.test:attr/checkMarkTintMode = 0x7f030052 ++io.invertase.jet.test:dimen/hint_alpha_material_light = 0x7f06005f ++io.invertase.jet.test:style/Widget.AppCompat.DrawerArrowToggle = 0x7f0d013d ++io.invertase.jet.test:color/primary_text_default_material_dark = 0x7f050047 ++io.invertase.jet.test:color/switch_thumb_normal_material_dark = 0x7f050055 ++io.invertase.jet.test:attr/pressedStateOverlayImage = 0x7f0300d6 ++io.invertase.jet.test:animator/fragment_open_enter = 0x7f020004 ++io.invertase.jet.test:attr/autofillInlineSuggestionChip = 0x7f030036 ++io.invertase.jet.test:drawable/abc_seekbar_thumb_material = 0x7f07003a ++io.invertase.jet.test:string/catalyst_reload = 0x7f0c0030 ++io.invertase.jet.test:attr/thumbTextPadding = 0x7f03011f ++io.invertase.jet.test:style/Base.Widget.AppCompat.Button.Borderless = 0x7f0d0075 ++io.invertase.jet.test:drawable/abc_textfield_activated_mtrl_alpha = 0x7f070049 ++io.invertase.jet.test:attr/dividerVertical = 0x7f030076 ++io.invertase.jet.test:attr/actionModeCloseDrawable = 0x7f030013 ++io.invertase.jet.test:attr/buttonIconDimen = 0x7f03004a ++io.invertase.jet.test:layout/abc_search_dropdown_item_icons_2line = 0x7f0b0018 ++io.invertase.jet.test:attr/colorControlHighlight = 0x7f03005e ++io.invertase.jet.test:attr/checkMarkTint = 0x7f030051 ++io.invertase.jet.test:attr/colorSwitchThumbNormal = 0x7f030063 ++io.invertase.jet.test:string/abc_menu_sym_shortcut_label = 0x7f0c0010 ++io.invertase.jet.test:id/fps_text = 0x7f08006f ++io.invertase.jet.test:drawable/abc_textfield_search_default_mtrl_alpha = 0x7f07004c ++io.invertase.jet.test:style/Widget.AppCompat.Light.ActivityChooserView = 0x7f0d014e ++io.invertase.jet.test:attr/barLength = 0x7f030041 ++io.invertase.jet.test:attr/buttonGravity = 0x7f030049 ++io.invertase.jet.test:anim/btn_checkbox_to_unchecked_check_path_merged_animation = 0x7f010010 ++io.invertase.jet.test:id/unchecked = 0x7f0800d3 ++io.invertase.jet.test:id/SYM = 0x7f080005 ++io.invertase.jet.test:color/dim_foreground_material_light = 0x7f05002e ++io.invertase.jet.test:id/center = 0x7f080053 ++io.invertase.jet.test:attr/actionModeFindDrawable = 0x7f030016 ++io.invertase.jet.test:attr/spinBars = 0x7f0300ff ++io.invertase.jet.test:color/abc_hint_foreground_material_dark = 0x7f050007 ++io.invertase.jet.test:color/notification_icon_bg_color = 0x7f050042 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Header = 0x7f0d0036 ++io.invertase.jet.test:attr/buttonStyleSmall = 0x7f03004d ++io.invertase.jet.test:style/Base.Widget.AppCompat.Toolbar.Button.Navigation = 0x7f0d00a2 ++io.invertase.jet.test:string/scrollbar_description = 0x7f0c0042 ++io.invertase.jet.test:attr/actualImageResource = 0x7f030024 ++io.invertase.jet.test:attr/icon = 0x7f03009f ++io.invertase.jet.test:attr/borderlessButtonStyle = 0x7f030042 ++io.invertase.jet.test:attr/backgroundTintMode = 0x7f030040 ++io.invertase.jet.test:style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f0d00fa ++io.invertase.jet.test:attr/paddingStart = 0x7f0300cb ++io.invertase.jet.test:attr/backgroundTint = 0x7f03003f ++io.invertase.jet.test:styleable/View = 0x7f0e0030 ++io.invertase.jet.test:id/accessibility_custom_action_22 = 0x7f080019 ++io.invertase.jet.test:interpolator/btn_radio_to_off_mtrl_animation_interpolator_0 = 0x7f0a0004 ++io.invertase.jet.test:attr/font = 0x7f03008d ++io.invertase.jet.test:attr/collapseIcon = 0x7f030058 ++io.invertase.jet.test:attr/backgroundStacked = 0x7f03003e ++io.invertase.jet.test:dimen/compat_button_padding_horizontal_material = 0x7f060054 ++io.invertase.jet.test:attr/actionBarTabBarStyle = 0x7f030006 ++io.invertase.jet.test:dimen/disabled_alpha_material_dark = 0x7f060059 ++io.invertase.jet.test:id/submenuarrow = 0x7f0800b7 ++io.invertase.jet.test:attr/actionBarSize = 0x7f030003 ++io.invertase.jet.test:attr/buttonBarNegativeButtonStyle = 0x7f030044 ++io.invertase.jet.test:attr/titleMarginBottom = 0x7f030129 ++io.invertase.jet.test:style/Theme.FullScreenDialogAnimatedFade = 0x7f0d0119 ++io.invertase.jet.test:attr/colorAccent = 0x7f03005a ++io.invertase.jet.test:color/button_material_light = 0x7f050028 ++io.invertase.jet.test:attr/windowActionModeOverlay = 0x7f03013f ++io.invertase.jet.test:attr/alpha = 0x7f03002c ++io.invertase.jet.test:style/Base.Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f0d0077 ++io.invertase.jet.test:dimen/abc_action_bar_subtitle_bottom_margin_material = 0x7f06000b ++io.invertase.jet.test:layout/abc_select_dialog_material = 0x7f0b001a ++io.invertase.jet.test:attr/autoSizePresetSizes = 0x7f030033 ++io.invertase.jet.test:styleable/GradientColorItem = 0x7f0e001d ++io.invertase.jet.test:attr/expandActivityOverflowButtonDrawable = 0x7f030088 ++io.invertase.jet.test:attr/contentInsetEnd = 0x7f030066 ++io.invertase.jet.test:drawable/abc_list_selector_disabled_holo_dark = 0x7f07002c ++io.invertase.jet.test:attr/fontProviderAuthority = 0x7f03008f ++io.invertase.jet.test:attr/actionModeSplitBackground = 0x7f03001b ++io.invertase.jet.test:attr/thumbTintMode = 0x7f030121 ++io.invertase.jet.test:attr/autoSizeMaxTextSize = 0x7f030031 ++io.invertase.jet.test:dimen/abc_cascading_menus_min_smallest_width = 0x7f060016 ++io.invertase.jet.test:attr/backgroundImage = 0x7f03003c ++io.invertase.jet.test:attr/arrowHeadLength = 0x7f03002e ++io.invertase.jet.test:id/showHome = 0x7f0800af ++io.invertase.jet.test:attr/queryPatterns = 0x7f0300de ++io.invertase.jet.test:style/Widget.AppCompat.ActionBar.TabText = 0x7f0d012a ++io.invertase.jet.test:attr/collapseContentDescription = 0x7f030057 ++io.invertase.jet.test:styleable/Capability = 0x7f0e0012 ++io.invertase.jet.test:attr/windowFixedHeightMinor = 0x7f030141 ++io.invertase.jet.test:style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Title = 0x7f0d00ba ++io.invertase.jet.test:attr/actionMenuTextColor = 0x7f03000f ++io.invertase.jet.test:drawable/abc_btn_check_to_on_mtrl_000 = 0x7f070005 ++io.invertase.jet.test:anim/btn_radio_to_on_mtrl_ring_outer_path_animation = 0x7f010017 ++io.invertase.jet.test:anim/abc_tooltip_exit = 0x7f01000b ++io.invertase.jet.test:style/ThemeOverlay.AppCompat.DayNight.ActionBar = 0x7f0d0123 ++io.invertase.jet.test:interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0 = 0x7f0a0000 ++io.invertase.jet.test:attr/actionViewClass = 0x7f030022 ++io.invertase.jet.test:dimen/notification_small_icon_background_padding = 0x7f06006c ++io.invertase.jet.test:style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle = 0x7f0d00fb ++io.invertase.jet.test:string/tablist_description = 0x7f0c004e ++io.invertase.jet.test:color/abc_background_cache_hint_selector_material_light = 0x7f050001 ++io.invertase.jet.test:id/accessibility_custom_action_26 = 0x7f08001d ++io.invertase.jet.test:id/catalyst_redbox_title = 0x7f080052 ++io.invertase.jet.test:attr/listChoiceIndicatorSingleAnimated = 0x7f0300af ++io.invertase.jet.test:id/use_hardware_layer = 0x7f0800d7 ++io.invertase.jet.test:attr/contentInsetRight = 0x7f030069 ++io.invertase.jet.test:style/Widget.AppCompat.ActionMode = 0x7f0d012f ++io.invertase.jet.test:attr/subtitleTextColor = 0x7f030109 ++io.invertase.jet.test:drawable/abc_list_divider_material = 0x7f070024 ++io.invertase.jet.test:string/rn_tab_description = 0x7f0c0041 ++io.invertase.jet.test:attr/buttonBarStyle = 0x7f030047 ++io.invertase.jet.test:attr/dialogPreferredPadding = 0x7f030070 ++io.invertase.jet.test:anim/abc_tooltip_enter = 0x7f01000a ++io.invertase.jet.test:anim/btn_checkbox_to_unchecked_icon_null_animation = 0x7f010011 ++io.invertase.jet.test:style/Base.Widget.AppCompat.Light.ActionBar.TabBar = 0x7f0d0086 ++io.invertase.jet.test:anim/abc_shrink_fade_out_from_bottom = 0x7f010005 ++io.invertase.jet.test:style/Base.DialogWindowTitleBackground.AppCompat = 0x7f0d000d ++io.invertase.jet.test:string/status_bar_notification_info_overflow = 0x7f0c004c ++io.invertase.jet.test:attr/actionOverflowMenuStyle = 0x7f030020 ++io.invertase.jet.test:layout/notification_action_tombstone = 0x7f0b0021 ++io.invertase.jet.test:id/centerInside = 0x7f080055 ++io.invertase.jet.test:id/info = 0x7f080078 ++io.invertase.jet.test:attr/elevation = 0x7f030086 ++io.invertase.jet.test:attr/actionModeCloseContentDescription = 0x7f030012 ++io.invertase.jet.test:style/Widget.Autofill.InlineSuggestionSubtitle = 0x7f0d0174 ++io.invertase.jet.test:bool/abc_config_actionMenuItemAllCaps = 0x7f040001 ++io.invertase.jet.test:style/Widget.AppCompat.ActionBar.TabView = 0x7f0d012b ++io.invertase.jet.test:attr/hideOnContentScroll = 0x7f03009c ++io.invertase.jet.test:id/action_mode_bar = 0x7f08003e ++io.invertase.jet.test:dimen/abc_action_bar_subtitle_top_margin_material = 0x7f06000c ++io.invertase.jet.test:style/RtlOverlay.DialogWindowTitle.AppCompat = 0x7f0d00b2 ++io.invertase.jet.test:attr/trackTint = 0x7f030137 ++io.invertase.jet.test:id/search_button = 0x7f0800a4 ++io.invertase.jet.test:attr/drawableEndCompat = 0x7f030078 ++io.invertase.jet.test:id/button = 0x7f08004f ++io.invertase.jet.test:attr/fontWeight = 0x7f030098 ++io.invertase.jet.test:id/notification_background = 0x7f080087 ++io.invertase.jet.test:attr/actualImageUri = 0x7f030026 ++io.invertase.jet.test:attr/actionModeCopyDrawable = 0x7f030014 ++io.invertase.jet.test:style/Widget.AppCompat.Light.PopupMenu = 0x7f0d0153 ++io.invertase.jet.test:attr/shortcutMatchRequired = 0x7f0300f9 ++io.invertase.jet.test:layout/autofill_inline_suggestion = 0x7f0b001c ++io.invertase.jet.test:dimen/abc_text_size_menu_header_material = 0x7f06004a ++io.invertase.jet.test:string/abc_shareactionprovider_share_with_application = 0x7f0c0019 ++io.invertase.jet.test:attr/colorError = 0x7f030060 ++io.invertase.jet.test:dimen/compat_notification_large_icon_max_height = 0x7f060057 ++io.invertase.jet.test:styleable/FontFamilyFont = 0x7f0e0018 ++io.invertase.jet.test:anim/abc_popup_enter = 0x7f010003 ++io.invertase.jet.test:attr/goIcon = 0x7f03009a ++io.invertase.jet.test:attr/alertDialogTheme = 0x7f03002a ++io.invertase.jet.test:attr/textAppearanceListItemSecondary = 0x7f030114 ++io.invertase.jet.test:id/fitCenter = 0x7f080069 ++io.invertase.jet.test:attr/fontProviderPackage = 0x7f030093 ++io.invertase.jet.test:anim/catalyst_push_up_in = 0x7f01001a ++io.invertase.jet.test:anim/abc_slide_out_top = 0x7f010009 ++io.invertase.jet.test:id/accessibility_custom_action_31 = 0x7f080023 ++io.invertase.jet.test:attr/actionBarItemBackground = 0x7f030001 ++io.invertase.jet.test:id/textSpacerNoTitle = 0x7f0800ca ++io.invertase.jet.test:id/special_effects_controller_view_tag = 0x7f0800b2 ++io.invertase.jet.test:attr/editTextBackground = 0x7f030083 ++io.invertase.jet.test:attr/actionBarPopupTheme = 0x7f030002 ++io.invertase.jet.test:attr/ttcIndex = 0x7f030139 ++io.invertase.jet.test:id/showTitle = 0x7f0800b0 ++io.invertase.jet.test:id/icon_group = 0x7f080075 ++io.invertase.jet.test:drawable/abc_action_bar_item_background_material = 0x7f070001 ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f0d00e3 ++io.invertase.jet.test:attr/listPreferredItemPaddingLeft = 0x7f0300b9 ++io.invertase.jet.test:string/combobox_description = 0x7f0c0037 ++io.invertase.jet.test:attr/isAutofillInlineSuggestionTheme = 0x7f0300a6 ++io.invertase.jet.test:styleable/Fragment = 0x7f0e0019 ++io.invertase.jet.test:style/Base.V7.Widget.AppCompat.AutoCompleteTextView = 0x7f0d0066 ++io.invertase.jet.test:attr/roundAsCircle = 0x7f0300e5 ++io.invertase.jet.test:dimen/highlight_alpha_material_light = 0x7f06005d ++io.invertase.jet.test:string/abc_searchview_description_clear = 0x7f0c0013 ++io.invertase.jet.test:attr/listMenuViewStyle = 0x7f0300b3 ++io.invertase.jet.test:animator/fragment_close_exit = 0x7f020001 ++io.invertase.jet.test:drawable/abc_text_select_handle_left_mtrl = 0x7f070046 ++io.invertase.jet.test:style/Base.Widget.AppCompat.ActionMode = 0x7f0d0071 ++io.invertase.jet.test:color/notification_action_color_filter = 0x7f050041 ++io.invertase.jet.test:attr/fontProviderSystemFontFamily = 0x7f030095 ++io.invertase.jet.test:style/Platform.Widget.AppCompat.Spinner = 0x7f0d00b1 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f0d002b ++io.invertase.jet.test:id/title = 0x7f0800cc ++io.invertase.jet.test:anim/abc_grow_fade_in_from_bottom = 0x7f010002 ++io.invertase.jet.test:style/Theme.FullScreenDialogAnimatedSlide = 0x7f0d011a ++io.invertase.jet.test:anim/catalyst_push_up_out = 0x7f01001b ++io.invertase.jet.test:style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored = 0x7f0d00ec ++io.invertase.jet.test:attr/titleTextAppearance = 0x7f03012e ++io.invertase.jet.test:anim/catalyst_fade_out = 0x7f010019 ++io.invertase.jet.test:style/Theme = 0x7f0d00fd ++io.invertase.jet.test:attr/showTitle = 0x7f0300fd ++io.invertase.jet.test:drawable/abc_item_background_holo_dark = 0x7f070022 ++io.invertase.jet.test:animator/fragment_close_enter = 0x7f020000 ++io.invertase.jet.test:anim/btn_radio_to_on_mtrl_ring_outer_animation = 0x7f010016 ++io.invertase.jet.test:styleable/ActionMenuView = 0x7f0e0003 ++io.invertase.jet.test:anim/btn_radio_to_off_mtrl_ring_outer_path_animation = 0x7f010014 ++io.invertase.jet.test:style/Widget.AppCompat.ListView = 0x7f0d0159 ++io.invertase.jet.test:layout/redbox_item_title = 0x7f0b0028 ++io.invertase.jet.test:id/actions = 0x7f080042 ++io.invertase.jet.test:drawable/abc_ratingbar_small_material = 0x7f070034 ++io.invertase.jet.test:attr/viewInflaterClass = 0x7f03013b ++io.invertase.jet.test:attr/displayOptions = 0x7f030072 ++io.invertase.jet.test:id/scrollIndicatorDown = 0x7f08009f ++io.invertase.jet.test:attr/viewAspectRatio = 0x7f03013a ++io.invertase.jet.test:dimen/abc_control_inset_material = 0x7f060019 ++io.invertase.jet.test:anim/abc_slide_out_bottom = 0x7f010008 ++io.invertase.jet.test:anim/catalyst_slide_down = 0x7f01001c ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Caption = 0x7f0d0012 ++io.invertase.jet.test:anim/btn_checkbox_to_checked_box_inner_merged_animation = 0x7f01000c ++io.invertase.jet.test:attr/actualImageScaleType = 0x7f030025 ++io.invertase.jet.test:style/Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f0d001b ++io.invertase.jet.test:attr/controlBackground = 0x7f03006c ++io.invertase.jet.test:style/Theme.AppCompat = 0x7f0d00fe ++io.invertase.jet.test:drawable/abc_ratingbar_indicator_material = 0x7f070032 ++io.invertase.jet.test:style/CalendarDatePickerDialog = 0x7f0d00a3 ++io.invertase.jet.test:attr/autofillInlineSuggestionStartIconStyle = 0x7f030038 ++io.invertase.jet.test:color/switch_thumb_disabled_material_light = 0x7f050052 ++io.invertase.jet.test:dimen/notification_content_margin_start = 0x7f060065 ++io.invertase.jet.test:string/abc_search_hint = 0x7f0c0012 ++io.invertase.jet.test:anim/btn_radio_to_on_mtrl_dot_group_animation = 0x7f010015 ++io.invertase.jet.test:attr/popupTheme = 0x7f0300d3 ++io.invertase.jet.test:dimen/notification_main_column_padding_top = 0x7f060068 ++io.invertase.jet.test:attr/roundTopLeft = 0x7f0300eb ++io.invertase.jet.test:style/Base.Widget.AppCompat.SeekBar = 0x7f0d009b ++io.invertase.jet.test:style/Base.ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f0d004f ++io.invertase.jet.test:attr/nestedScrollViewStyle = 0x7f0300c5 ++io.invertase.jet.test:anim/abc_fade_in = 0x7f010000 ++io.invertase.jet.test:integer/cancel_button_image_alpha = 0x7f090002 ++io.invertase.jet.test:attr/roundTopStart = 0x7f0300ed +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libc++_shared.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libc++_shared.so +new file mode 100644 +index 0000000..d4f974d +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libfbjni.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libfbjni.so +new file mode 100644 +index 0000000..3ab6aad +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libfbjni.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libhermestooling.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libhermestooling.so +new file mode 100644 +index 0000000..06db0aa +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libhermestooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libimagepipeline.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libimagepipeline.so +new file mode 100644 +index 0000000..af73476 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libimagepipeline.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libjsctooling.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libjsctooling.so +new file mode 100644 +index 0000000..f4ff628 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libjsctooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libjsi.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libjsi.so +new file mode 100644 +index 0000000..4482cf8 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libjsi.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libnative-filters.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libnative-filters.so +new file mode 100644 +index 0000000..fd23417 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libnative-filters.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libnative-imagetranscoder.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..e89d094 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libnative-imagetranscoder.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libreactnative.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libreactnative.so +new file mode 100644 +index 0000000..5f1c649 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/arm64-v8a/libreactnative.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libc++_shared.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libc++_shared.so +new file mode 100644 +index 0000000..2d2477b +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libc++_shared.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libfbjni.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libfbjni.so +new file mode 100644 +index 0000000..32f9b70 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libfbjni.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libhermestooling.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libhermestooling.so +new file mode 100644 +index 0000000..f71cb69 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libhermestooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libimagepipeline.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libimagepipeline.so +new file mode 100644 +index 0000000..c1a4997 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libimagepipeline.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libjsctooling.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libjsctooling.so +new file mode 100644 +index 0000000..796fb20 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libjsctooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libjsi.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libjsi.so +new file mode 100644 +index 0000000..ba86253 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libjsi.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libnative-filters.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libnative-filters.so +new file mode 100644 +index 0000000..ed5e381 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libnative-filters.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libnative-imagetranscoder.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..b02dba3 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libnative-imagetranscoder.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libreactnative.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libreactnative.so +new file mode 100644 +index 0000000..fdad9e5 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/armeabi-v7a/libreactnative.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libc++_shared.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libc++_shared.so +new file mode 100644 +index 0000000..42c6a51 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libc++_shared.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libfbjni.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libfbjni.so +new file mode 100644 +index 0000000..fa807af +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libfbjni.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libhermestooling.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libhermestooling.so +new file mode 100644 +index 0000000..12e9c67 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libhermestooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libimagepipeline.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libimagepipeline.so +new file mode 100644 +index 0000000..39e4158 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libimagepipeline.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libjsctooling.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libjsctooling.so +new file mode 100644 +index 0000000..c4e0561 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libjsctooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libjsi.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libjsi.so +new file mode 100644 +index 0000000..a755357 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libjsi.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libnative-filters.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libnative-filters.so +new file mode 100644 +index 0000000..5d7d278 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libnative-filters.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libnative-imagetranscoder.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..a04c3b3 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libnative-imagetranscoder.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libreactnative.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libreactnative.so +new file mode 100644 +index 0000000..1d4d860 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86/libreactnative.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libc++_shared.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libc++_shared.so +new file mode 100644 +index 0000000..304a80a +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libc++_shared.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libfbjni.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libfbjni.so +new file mode 100644 +index 0000000..1c4eb01 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libfbjni.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libhermestooling.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libhermestooling.so +new file mode 100644 +index 0000000..65ae208 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libhermestooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libimagepipeline.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libimagepipeline.so +new file mode 100644 +index 0000000..8545143 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libimagepipeline.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libjsctooling.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libjsctooling.so +new file mode 100644 +index 0000000..104b477 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libjsctooling.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libjsi.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libjsi.so +new file mode 100644 +index 0000000..e8af881 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libjsi.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libnative-filters.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libnative-filters.so +new file mode 100644 +index 0000000..26c9af1 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libnative-filters.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libnative-imagetranscoder.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..7b03cfb +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libnative-imagetranscoder.so differ +diff --git a/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libreactnative.so b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libreactnative.so +new file mode 100644 +index 0000000..4119469 +Binary files /dev/null and b/node_modules/jet/android/build/intermediates/stripped_native_libs/debugAndroidTest/stripDebugAndroidTestDebugSymbols/out/lib/x86_64/libreactnative.so differ +diff --git a/node_modules/jet/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/jet/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..556c8fc +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1 @@ ++io.invertase.jet +diff --git a/node_modules/jet/android/build/intermediates/symbol_list_with_package_name/debugAndroidTest/processDebugAndroidTestResources/package-aware-r.txt b/node_modules/jet/android/build/intermediates/symbol_list_with_package_name/debugAndroidTest/processDebugAndroidTestResources/package-aware-r.txt +new file mode 100644 +index 0000000..55dd0c2 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/symbol_list_with_package_name/debugAndroidTest/processDebugAndroidTestResources/package-aware-r.txt +@@ -0,0 +1,1479 @@ ++io.invertase.jet.test ++anim abc_fade_in ++anim abc_fade_out ++anim abc_grow_fade_in_from_bottom ++anim abc_popup_enter ++anim abc_popup_exit ++anim abc_shrink_fade_out_from_bottom ++anim abc_slide_in_bottom ++anim abc_slide_in_top ++anim abc_slide_out_bottom ++anim abc_slide_out_top ++anim abc_tooltip_enter ++anim abc_tooltip_exit ++anim btn_checkbox_to_checked_box_inner_merged_animation ++anim btn_checkbox_to_checked_box_outer_merged_animation ++anim btn_checkbox_to_checked_icon_null_animation ++anim btn_checkbox_to_unchecked_box_inner_merged_animation ++anim btn_checkbox_to_unchecked_check_path_merged_animation ++anim btn_checkbox_to_unchecked_icon_null_animation ++anim btn_radio_to_off_mtrl_dot_group_animation ++anim btn_radio_to_off_mtrl_ring_outer_animation ++anim btn_radio_to_off_mtrl_ring_outer_path_animation ++anim btn_radio_to_on_mtrl_dot_group_animation ++anim btn_radio_to_on_mtrl_ring_outer_animation ++anim btn_radio_to_on_mtrl_ring_outer_path_animation ++anim catalyst_fade_in ++anim catalyst_fade_out ++anim catalyst_push_up_in ++anim catalyst_push_up_out ++anim catalyst_slide_down ++anim catalyst_slide_up ++anim fragment_fast_out_extra_slow_in ++animator fragment_close_enter ++animator fragment_close_exit ++animator fragment_fade_enter ++animator fragment_fade_exit ++animator fragment_open_enter ++animator fragment_open_exit ++attr actionBarDivider ++attr actionBarItemBackground ++attr actionBarPopupTheme ++attr actionBarSize ++attr actionBarSplitStyle ++attr actionBarStyle ++attr actionBarTabBarStyle ++attr actionBarTabStyle ++attr actionBarTabTextStyle ++attr actionBarTheme ++attr actionBarWidgetTheme ++attr actionButtonStyle ++attr actionDropDownStyle ++attr actionLayout ++attr actionMenuTextAppearance ++attr actionMenuTextColor ++attr actionModeBackground ++attr actionModeCloseButtonStyle ++attr actionModeCloseContentDescription ++attr actionModeCloseDrawable ++attr actionModeCopyDrawable ++attr actionModeCutDrawable ++attr actionModeFindDrawable ++attr actionModePasteDrawable ++attr actionModePopupWindowStyle ++attr actionModeSelectAllDrawable ++attr actionModeShareDrawable ++attr actionModeSplitBackground ++attr actionModeStyle ++attr actionModeTheme ++attr actionModeWebSearchDrawable ++attr actionOverflowButtonStyle ++attr actionOverflowMenuStyle ++attr actionProviderClass ++attr actionViewClass ++attr activityChooserViewStyle ++attr actualImageResource ++attr actualImageScaleType ++attr actualImageUri ++attr alertDialogButtonGroupStyle ++attr alertDialogCenterButtons ++attr alertDialogStyle ++attr alertDialogTheme ++attr allowStacking ++attr alpha ++attr alphabeticModifiers ++attr arrowHeadLength ++attr arrowShaftLength ++attr autoCompleteTextViewStyle ++attr autoSizeMaxTextSize ++attr autoSizeMinTextSize ++attr autoSizePresetSizes ++attr autoSizeStepGranularity ++attr autoSizeTextType ++attr autofillInlineSuggestionChip ++attr autofillInlineSuggestionEndIconStyle ++attr autofillInlineSuggestionStartIconStyle ++attr autofillInlineSuggestionSubtitle ++attr autofillInlineSuggestionTitle ++attr background ++attr backgroundImage ++attr backgroundSplit ++attr backgroundStacked ++attr backgroundTint ++attr backgroundTintMode ++attr barLength ++attr borderlessButtonStyle ++attr buttonBarButtonStyle ++attr buttonBarNegativeButtonStyle ++attr buttonBarNeutralButtonStyle ++attr buttonBarPositiveButtonStyle ++attr buttonBarStyle ++attr buttonCompat ++attr buttonGravity ++attr buttonIconDimen ++attr buttonPanelSideLayout ++attr buttonStyle ++attr buttonStyleSmall ++attr buttonTint ++attr buttonTintMode ++attr checkMarkCompat ++attr checkMarkTint ++attr checkMarkTintMode ++attr checkboxStyle ++attr checkedTextViewStyle ++attr closeIcon ++attr closeItemLayout ++attr collapseContentDescription ++attr collapseIcon ++attr color ++attr colorAccent ++attr colorBackgroundFloating ++attr colorButtonNormal ++attr colorControlActivated ++attr colorControlHighlight ++attr colorControlNormal ++attr colorError ++attr colorPrimary ++attr colorPrimaryDark ++attr colorSwitchThumbNormal ++attr commitIcon ++attr contentDescription ++attr contentInsetEnd ++attr contentInsetEndWithActions ++attr contentInsetLeft ++attr contentInsetRight ++attr contentInsetStart ++attr contentInsetStartWithNavigation ++attr controlBackground ++attr customNavigationLayout ++attr defaultQueryHint ++attr dialogCornerRadius ++attr dialogPreferredPadding ++attr dialogTheme ++attr displayOptions ++attr divider ++attr dividerHorizontal ++attr dividerPadding ++attr dividerVertical ++attr drawableBottomCompat ++attr drawableEndCompat ++attr drawableLeftCompat ++attr drawableRightCompat ++attr drawableSize ++attr drawableStartCompat ++attr drawableTint ++attr drawableTintMode ++attr drawableTopCompat ++attr drawerArrowStyle ++attr dropDownListViewStyle ++attr dropdownListPreferredItemHeight ++attr editTextBackground ++attr editTextColor ++attr editTextStyle ++attr elevation ++attr emojiCompatEnabled ++attr expandActivityOverflowButtonDrawable ++attr fadeDuration ++attr failureImage ++attr failureImageScaleType ++attr firstBaselineToTopHeight ++attr font ++attr fontFamily ++attr fontProviderAuthority ++attr fontProviderCerts ++attr fontProviderFetchStrategy ++attr fontProviderFetchTimeout ++attr fontProviderPackage ++attr fontProviderQuery ++attr fontProviderSystemFontFamily ++attr fontStyle ++attr fontVariationSettings ++attr fontWeight ++attr gapBetweenBars ++attr goIcon ++attr height ++attr hideOnContentScroll ++attr homeAsUpIndicator ++attr homeLayout ++attr icon ++attr iconTint ++attr iconTintMode ++attr iconifiedByDefault ++attr imageButtonStyle ++attr indeterminateProgressStyle ++attr initialActivityCount ++attr isAutofillInlineSuggestionTheme ++attr isLightTheme ++attr itemPadding ++attr lStar ++attr lastBaselineToBottomHeight ++attr layout ++attr lineHeight ++attr listChoiceBackgroundIndicator ++attr listChoiceIndicatorMultipleAnimated ++attr listChoiceIndicatorSingleAnimated ++attr listDividerAlertDialog ++attr listItemLayout ++attr listLayout ++attr listMenuViewStyle ++attr listPopupWindowStyle ++attr listPreferredItemHeight ++attr listPreferredItemHeightLarge ++attr listPreferredItemHeightSmall ++attr listPreferredItemPaddingEnd ++attr listPreferredItemPaddingLeft ++attr listPreferredItemPaddingRight ++attr listPreferredItemPaddingStart ++attr logo ++attr logoDescription ++attr maxButtonHeight ++attr measureWithLargestChild ++attr menu ++attr multiChoiceItemLayout ++attr navigationContentDescription ++attr navigationIcon ++attr navigationMode ++attr nestedScrollViewStyle ++attr numericModifiers ++attr overlapAnchor ++attr overlayImage ++attr paddingBottomNoButtons ++attr paddingEnd ++attr paddingStart ++attr paddingTopNoTitle ++attr panelBackground ++attr panelMenuListTheme ++attr panelMenuListWidth ++attr placeholderImage ++attr placeholderImageScaleType ++attr popupMenuStyle ++attr popupTheme ++attr popupWindowStyle ++attr preserveIconSpacing ++attr pressedStateOverlayImage ++attr progressBarAutoRotateInterval ++attr progressBarImage ++attr progressBarImageScaleType ++attr progressBarPadding ++attr progressBarStyle ++attr queryBackground ++attr queryHint ++attr queryPatterns ++attr radioButtonStyle ++attr ratingBarStyle ++attr ratingBarStyleIndicator ++attr ratingBarStyleSmall ++attr retryImage ++attr retryImageScaleType ++attr roundAsCircle ++attr roundBottomEnd ++attr roundBottomLeft ++attr roundBottomRight ++attr roundBottomStart ++attr roundTopEnd ++attr roundTopLeft ++attr roundTopRight ++attr roundTopStart ++attr roundWithOverlayColor ++attr roundedCornerRadius ++attr roundingBorderColor ++attr roundingBorderPadding ++attr roundingBorderWidth ++attr searchHintIcon ++attr searchIcon ++attr searchViewStyle ++attr seekBarStyle ++attr selectableItemBackground ++attr selectableItemBackgroundBorderless ++attr shortcutMatchRequired ++attr showAsAction ++attr showDividers ++attr showText ++attr showTitle ++attr singleChoiceItemLayout ++attr spinBars ++attr spinnerDropDownItemStyle ++attr spinnerStyle ++attr splitTrack ++attr srcCompat ++attr state_above_anchor ++attr subMenuArrow ++attr submitBackground ++attr subtitle ++attr subtitleTextAppearance ++attr subtitleTextColor ++attr subtitleTextStyle ++attr suggestionRowLayout ++attr swipeRefreshLayoutProgressSpinnerBackgroundColor ++attr switchMinWidth ++attr switchPadding ++attr switchStyle ++attr switchTextAppearance ++attr textAllCaps ++attr textAppearanceLargePopupMenu ++attr textAppearanceListItem ++attr textAppearanceListItemSecondary ++attr textAppearanceListItemSmall ++attr textAppearancePopupMenuHeader ++attr textAppearanceSearchResultSubtitle ++attr textAppearanceSearchResultTitle ++attr textAppearanceSmallPopupMenu ++attr textColorAlertDialogListItem ++attr textColorSearchUrl ++attr textLocale ++attr theme ++attr thickness ++attr thumbTextPadding ++attr thumbTint ++attr thumbTintMode ++attr tickMark ++attr tickMarkTint ++attr tickMarkTintMode ++attr tint ++attr tintMode ++attr title ++attr titleMargin ++attr titleMarginBottom ++attr titleMarginEnd ++attr titleMarginStart ++attr titleMarginTop ++attr titleMargins ++attr titleTextAppearance ++attr titleTextColor ++attr titleTextStyle ++attr toolbarNavigationButtonStyle ++attr toolbarStyle ++attr tooltipForegroundColor ++attr tooltipFrameBackground ++attr tooltipText ++attr track ++attr trackTint ++attr trackTintMode ++attr ttcIndex ++attr viewAspectRatio ++attr viewInflaterClass ++attr voiceIcon ++attr windowActionBar ++attr windowActionBarOverlay ++attr windowActionModeOverlay ++attr windowFixedHeightMajor ++attr windowFixedHeightMinor ++attr windowFixedWidthMajor ++attr windowFixedWidthMinor ++attr windowMinWidthMajor ++attr windowMinWidthMinor ++attr windowNoTitle ++bool abc_action_bar_embed_tabs ++bool abc_config_actionMenuItemAllCaps ++color abc_background_cache_hint_selector_material_dark ++color abc_background_cache_hint_selector_material_light ++color abc_btn_colored_borderless_text_material ++color abc_btn_colored_text_material ++color abc_color_highlight_material ++color abc_decor_view_status_guard ++color abc_decor_view_status_guard_light ++color abc_hint_foreground_material_dark ++color abc_hint_foreground_material_light ++color abc_primary_text_disable_only_material_dark ++color abc_primary_text_disable_only_material_light ++color abc_primary_text_material_dark ++color abc_primary_text_material_light ++color abc_search_url_text ++color abc_search_url_text_normal ++color abc_search_url_text_pressed ++color abc_search_url_text_selected ++color abc_secondary_text_material_dark ++color abc_secondary_text_material_light ++color abc_tint_btn_checkable ++color abc_tint_default ++color abc_tint_edittext ++color abc_tint_seek_thumb ++color abc_tint_spinner ++color abc_tint_switch_track ++color accent_material_dark ++color accent_material_light ++color androidx_core_ripple_material_light ++color androidx_core_secondary_text_default_material_light ++color background_floating_material_dark ++color background_floating_material_light ++color background_material_dark ++color background_material_light ++color bright_foreground_disabled_material_dark ++color bright_foreground_disabled_material_light ++color bright_foreground_inverse_material_dark ++color bright_foreground_inverse_material_light ++color bright_foreground_material_dark ++color bright_foreground_material_light ++color button_material_dark ++color button_material_light ++color catalyst_logbox_background ++color catalyst_redbox_background ++color dim_foreground_disabled_material_dark ++color dim_foreground_disabled_material_light ++color dim_foreground_material_dark ++color dim_foreground_material_light ++color error_color_material_dark ++color error_color_material_light ++color foreground_material_dark ++color foreground_material_light ++color highlighted_text_material_dark ++color highlighted_text_material_light ++color material_blue_grey_800 ++color material_blue_grey_900 ++color material_blue_grey_950 ++color material_deep_teal_200 ++color material_deep_teal_500 ++color material_grey_100 ++color material_grey_300 ++color material_grey_50 ++color material_grey_600 ++color material_grey_800 ++color material_grey_850 ++color material_grey_900 ++color notification_action_color_filter ++color notification_icon_bg_color ++color primary_dark_material_dark ++color primary_dark_material_light ++color primary_material_dark ++color primary_material_light ++color primary_text_default_material_dark ++color primary_text_default_material_light ++color primary_text_disabled_material_dark ++color primary_text_disabled_material_light ++color ripple_material_dark ++color ripple_material_light ++color secondary_text_default_material_dark ++color secondary_text_default_material_light ++color secondary_text_disabled_material_dark ++color secondary_text_disabled_material_light ++color switch_thumb_disabled_material_dark ++color switch_thumb_disabled_material_light ++color switch_thumb_material_dark ++color switch_thumb_material_light ++color switch_thumb_normal_material_dark ++color switch_thumb_normal_material_light ++color tooltip_background_dark ++color tooltip_background_light ++dimen abc_action_bar_content_inset_material ++dimen abc_action_bar_content_inset_with_nav ++dimen abc_action_bar_default_height_material ++dimen abc_action_bar_default_padding_end_material ++dimen abc_action_bar_default_padding_start_material ++dimen abc_action_bar_elevation_material ++dimen abc_action_bar_icon_vertical_padding_material ++dimen abc_action_bar_overflow_padding_end_material ++dimen abc_action_bar_overflow_padding_start_material ++dimen abc_action_bar_stacked_max_height ++dimen abc_action_bar_stacked_tab_max_width ++dimen abc_action_bar_subtitle_bottom_margin_material ++dimen abc_action_bar_subtitle_top_margin_material ++dimen abc_action_button_min_height_material ++dimen abc_action_button_min_width_material ++dimen abc_action_button_min_width_overflow_material ++dimen abc_alert_dialog_button_bar_height ++dimen abc_alert_dialog_button_dimen ++dimen abc_button_inset_horizontal_material ++dimen abc_button_inset_vertical_material ++dimen abc_button_padding_horizontal_material ++dimen abc_button_padding_vertical_material ++dimen abc_cascading_menus_min_smallest_width ++dimen abc_config_prefDialogWidth ++dimen abc_control_corner_material ++dimen abc_control_inset_material ++dimen abc_control_padding_material ++dimen abc_dialog_corner_radius_material ++dimen abc_dialog_fixed_height_major ++dimen abc_dialog_fixed_height_minor ++dimen abc_dialog_fixed_width_major ++dimen abc_dialog_fixed_width_minor ++dimen abc_dialog_list_padding_bottom_no_buttons ++dimen abc_dialog_list_padding_top_no_title ++dimen abc_dialog_min_width_major ++dimen abc_dialog_min_width_minor ++dimen abc_dialog_padding_material ++dimen abc_dialog_padding_top_material ++dimen abc_dialog_title_divider_material ++dimen abc_disabled_alpha_material_dark ++dimen abc_disabled_alpha_material_light ++dimen abc_dropdownitem_icon_width ++dimen abc_dropdownitem_text_padding_left ++dimen abc_dropdownitem_text_padding_right ++dimen abc_edit_text_inset_bottom_material ++dimen abc_edit_text_inset_horizontal_material ++dimen abc_edit_text_inset_top_material ++dimen abc_floating_window_z ++dimen abc_list_item_height_large_material ++dimen abc_list_item_height_material ++dimen abc_list_item_height_small_material ++dimen abc_list_item_padding_horizontal_material ++dimen abc_panel_menu_list_width ++dimen abc_progress_bar_height_material ++dimen abc_search_view_preferred_height ++dimen abc_search_view_preferred_width ++dimen abc_seekbar_track_background_height_material ++dimen abc_seekbar_track_progress_height_material ++dimen abc_select_dialog_padding_start_material ++dimen abc_star_big ++dimen abc_star_medium ++dimen abc_star_small ++dimen abc_switch_padding ++dimen abc_text_size_body_1_material ++dimen abc_text_size_body_2_material ++dimen abc_text_size_button_material ++dimen abc_text_size_caption_material ++dimen abc_text_size_display_1_material ++dimen abc_text_size_display_2_material ++dimen abc_text_size_display_3_material ++dimen abc_text_size_display_4_material ++dimen abc_text_size_headline_material ++dimen abc_text_size_large_material ++dimen abc_text_size_medium_material ++dimen abc_text_size_menu_header_material ++dimen abc_text_size_menu_material ++dimen abc_text_size_small_material ++dimen abc_text_size_subhead_material ++dimen abc_text_size_subtitle_material_toolbar ++dimen abc_text_size_title_material ++dimen abc_text_size_title_material_toolbar ++dimen autofill_inline_suggestion_icon_size ++dimen compat_button_inset_horizontal_material ++dimen compat_button_inset_vertical_material ++dimen compat_button_padding_horizontal_material ++dimen compat_button_padding_vertical_material ++dimen compat_control_corner_material ++dimen compat_notification_large_icon_max_height ++dimen compat_notification_large_icon_max_width ++dimen disabled_alpha_material_dark ++dimen disabled_alpha_material_light ++dimen highlight_alpha_material_colored ++dimen highlight_alpha_material_dark ++dimen highlight_alpha_material_light ++dimen hint_alpha_material_dark ++dimen hint_alpha_material_light ++dimen hint_pressed_alpha_material_dark ++dimen hint_pressed_alpha_material_light ++dimen notification_action_icon_size ++dimen notification_action_text_size ++dimen notification_big_circle_margin ++dimen notification_content_margin_start ++dimen notification_large_icon_height ++dimen notification_large_icon_width ++dimen notification_main_column_padding_top ++dimen notification_media_narrow_margin ++dimen notification_right_icon_size ++dimen notification_right_side_padding_top ++dimen notification_small_icon_background_padding ++dimen notification_small_icon_size_as_large ++dimen notification_subtext_size ++dimen notification_top_pad ++dimen notification_top_pad_large_text ++dimen tooltip_corner_radius ++dimen tooltip_horizontal_padding ++dimen tooltip_margin ++dimen tooltip_precise_anchor_extra_offset ++dimen tooltip_precise_anchor_threshold ++dimen tooltip_vertical_padding ++dimen tooltip_y_offset_non_touch ++dimen tooltip_y_offset_touch ++drawable abc_ab_share_pack_mtrl_alpha ++drawable abc_action_bar_item_background_material ++drawable abc_btn_borderless_material ++drawable abc_btn_check_material ++drawable abc_btn_check_material_anim ++drawable abc_btn_check_to_on_mtrl_000 ++drawable abc_btn_check_to_on_mtrl_015 ++drawable abc_btn_colored_material ++drawable abc_btn_default_mtrl_shape ++drawable abc_btn_radio_material ++drawable abc_btn_radio_material_anim ++drawable abc_btn_radio_to_on_mtrl_000 ++drawable abc_btn_radio_to_on_mtrl_015 ++drawable abc_btn_switch_to_on_mtrl_00001 ++drawable abc_btn_switch_to_on_mtrl_00012 ++drawable abc_cab_background_internal_bg ++drawable abc_cab_background_top_material ++drawable abc_cab_background_top_mtrl_alpha ++drawable abc_control_background_material ++drawable abc_dialog_material_background ++drawable abc_edit_text_material ++drawable abc_ic_ab_back_material ++drawable abc_ic_arrow_drop_right_black_24dp ++drawable abc_ic_clear_material ++drawable abc_ic_commit_search_api_mtrl_alpha ++drawable abc_ic_go_search_api_material ++drawable abc_ic_menu_copy_mtrl_am_alpha ++drawable abc_ic_menu_cut_mtrl_alpha ++drawable abc_ic_menu_overflow_material ++drawable abc_ic_menu_paste_mtrl_am_alpha ++drawable abc_ic_menu_selectall_mtrl_alpha ++drawable abc_ic_menu_share_mtrl_alpha ++drawable abc_ic_search_api_material ++drawable abc_ic_voice_search_api_material ++drawable abc_item_background_holo_dark ++drawable abc_item_background_holo_light ++drawable abc_list_divider_material ++drawable abc_list_divider_mtrl_alpha ++drawable abc_list_focused_holo ++drawable abc_list_longpressed_holo ++drawable abc_list_pressed_holo_dark ++drawable abc_list_pressed_holo_light ++drawable abc_list_selector_background_transition_holo_dark ++drawable abc_list_selector_background_transition_holo_light ++drawable abc_list_selector_disabled_holo_dark ++drawable abc_list_selector_disabled_holo_light ++drawable abc_list_selector_holo_dark ++drawable abc_list_selector_holo_light ++drawable abc_menu_hardkey_panel_mtrl_mult ++drawable abc_popup_background_mtrl_mult ++drawable abc_ratingbar_indicator_material ++drawable abc_ratingbar_material ++drawable abc_ratingbar_small_material ++drawable abc_scrubber_control_off_mtrl_alpha ++drawable abc_scrubber_control_to_pressed_mtrl_000 ++drawable abc_scrubber_control_to_pressed_mtrl_005 ++drawable abc_scrubber_primary_mtrl_alpha ++drawable abc_scrubber_track_mtrl_alpha ++drawable abc_seekbar_thumb_material ++drawable abc_seekbar_tick_mark_material ++drawable abc_seekbar_track_material ++drawable abc_spinner_mtrl_am_alpha ++drawable abc_spinner_textfield_background_material ++drawable abc_star_black_48dp ++drawable abc_star_half_black_48dp ++drawable abc_switch_thumb_material ++drawable abc_switch_track_mtrl_alpha ++drawable abc_tab_indicator_material ++drawable abc_tab_indicator_mtrl_alpha ++drawable abc_text_cursor_material ++drawable abc_text_select_handle_left_mtrl ++drawable abc_text_select_handle_middle_mtrl ++drawable abc_text_select_handle_right_mtrl ++drawable abc_textfield_activated_mtrl_alpha ++drawable abc_textfield_default_mtrl_alpha ++drawable abc_textfield_search_activated_mtrl_alpha ++drawable abc_textfield_search_default_mtrl_alpha ++drawable abc_textfield_search_material ++drawable abc_vector_test ++drawable autofill_inline_suggestion_chip_background ++drawable btn_checkbox_checked_mtrl ++drawable btn_checkbox_checked_to_unchecked_mtrl_animation ++drawable btn_checkbox_unchecked_mtrl ++drawable btn_checkbox_unchecked_to_checked_mtrl_animation ++drawable btn_radio_off_mtrl ++drawable btn_radio_off_to_on_mtrl_animation ++drawable btn_radio_on_mtrl ++drawable btn_radio_on_to_off_mtrl_animation ++drawable ic_resume ++drawable notification_action_background ++drawable notification_bg ++drawable notification_bg_low ++drawable notification_bg_low_normal ++drawable notification_bg_low_pressed ++drawable notification_bg_normal ++drawable notification_bg_normal_pressed ++drawable notification_icon_background ++drawable notification_template_icon_bg ++drawable notification_template_icon_low_bg ++drawable notification_tile_bg ++drawable notify_panel_notification_icon_bg ++drawable paused_in_debugger_background ++drawable paused_in_debugger_dialog_background ++drawable redbox_top_border_background ++drawable ripple_effect ++drawable test_level_drawable ++drawable tooltip_frame_dark ++drawable tooltip_frame_light ++id ALT ++id CTRL ++id FUNCTION ++id META ++id SHIFT ++id SYM ++id accessibility_action_clickable_span ++id accessibility_actions ++id accessibility_collection ++id accessibility_collection_item ++id accessibility_custom_action_0 ++id accessibility_custom_action_1 ++id accessibility_custom_action_10 ++id accessibility_custom_action_11 ++id accessibility_custom_action_12 ++id accessibility_custom_action_13 ++id accessibility_custom_action_14 ++id accessibility_custom_action_15 ++id accessibility_custom_action_16 ++id accessibility_custom_action_17 ++id accessibility_custom_action_18 ++id accessibility_custom_action_19 ++id accessibility_custom_action_2 ++id accessibility_custom_action_20 ++id accessibility_custom_action_21 ++id accessibility_custom_action_22 ++id accessibility_custom_action_23 ++id accessibility_custom_action_24 ++id accessibility_custom_action_25 ++id accessibility_custom_action_26 ++id accessibility_custom_action_27 ++id accessibility_custom_action_28 ++id accessibility_custom_action_29 ++id accessibility_custom_action_3 ++id accessibility_custom_action_30 ++id accessibility_custom_action_31 ++id accessibility_custom_action_4 ++id accessibility_custom_action_5 ++id accessibility_custom_action_6 ++id accessibility_custom_action_7 ++id accessibility_custom_action_8 ++id accessibility_custom_action_9 ++id accessibility_hint ++id accessibility_label ++id accessibility_links ++id accessibility_role ++id accessibility_state ++id accessibility_state_expanded ++id accessibility_value ++id action_bar ++id action_bar_activity_content ++id action_bar_container ++id action_bar_root ++id action_bar_spinner ++id action_bar_subtitle ++id action_bar_title ++id action_container ++id action_context_bar ++id action_divider ++id action_image ++id action_menu_divider ++id action_menu_presenter ++id action_mode_bar ++id action_mode_bar_stub ++id action_mode_close_button ++id action_text ++id actions ++id activity_chooser_view_content ++id add ++id alertTitle ++id always ++id async ++id autofill_inline_suggestion_end_icon ++id autofill_inline_suggestion_start_icon ++id autofill_inline_suggestion_subtitle ++id autofill_inline_suggestion_title ++id beginning ++id blocking ++id bottom ++id button ++id buttonPanel ++id button_text ++id catalyst_redbox_title ++id center ++id centerCrop ++id centerInside ++id center_vertical ++id checkbox ++id checked ++id chronometer ++id collapseActionView ++id content ++id contentPanel ++id custom ++id customPanel ++id decor_content_parent ++id default_activity_button ++id dialog_button ++id disableHome ++id edit_query ++id end ++id expand_activities_button ++id expanded_menu ++id filter ++id fitBottomStart ++id fitCenter ++id fitEnd ++id fitStart ++id fitXY ++id focusCrop ++id forever ++id fps_text ++id fragment_container_view_tag ++id group_divider ++id home ++id homeAsUp ++id icon ++id icon_group ++id ifRoom ++id image ++id info ++id invalidate_transform ++id italic ++id labelled_by ++id line1 ++id line3 ++id listMode ++id list_item ++id message ++id middle ++id mix_blend_mode ++id multiply ++id never ++id none ++id normal ++id notification_background ++id notification_main_column ++id notification_main_column_container ++id off ++id on ++id parentPanel ++id pointer_events ++id progress_circular ++id progress_horizontal ++id radio ++id react_test_id ++id right_icon ++id right_side ++id rn_frame_file ++id rn_frame_method ++id rn_redbox_dismiss_button ++id rn_redbox_line_separator ++id rn_redbox_loading_indicator ++id rn_redbox_reload_button ++id rn_redbox_report_button ++id rn_redbox_report_label ++id rn_redbox_stack ++id role ++id screen ++id scrollIndicatorDown ++id scrollIndicatorUp ++id scrollView ++id search_badge ++id search_bar ++id search_button ++id search_close_btn ++id search_edit_frame ++id search_go_btn ++id search_mag_icon ++id search_plate ++id search_src_text ++id search_voice_btn ++id select_dialog_listview ++id shortcut ++id showCustom ++id showHome ++id showTitle ++id spacer ++id special_effects_controller_view_tag ++id split_action_bar ++id src_atop ++id src_in ++id src_over ++id submenuarrow ++id submit_area ++id tabMode ++id tag_accessibility_actions ++id tag_accessibility_clickable_spans ++id tag_accessibility_heading ++id tag_accessibility_pane_title ++id tag_on_apply_window_listener ++id tag_on_receive_content_listener ++id tag_on_receive_content_mime_types ++id tag_screen_reader_focusable ++id tag_state_description ++id tag_transition_group ++id tag_unhandled_key_event_manager ++id tag_unhandled_key_listeners ++id tag_window_insets_animation_callback ++id text ++id text2 ++id textSpacerNoButtons ++id textSpacerNoTitle ++id time ++id title ++id titleDividerNoCustom ++id title_template ++id top ++id topPanel ++id transform ++id transform_origin ++id unchecked ++id uniform ++id up ++id useLogo ++id use_hardware_layer ++id view_tag_instance_handle ++id view_tag_native_id ++id view_tree_lifecycle_owner ++id view_tree_on_back_pressed_dispatcher_owner ++id view_tree_saved_state_registry_owner ++id view_tree_view_model_store_owner ++id visible_removing_fragment_view_tag ++id withText ++id wrap_content ++integer abc_config_activityDefaultDur ++integer abc_config_activityShortDur ++integer cancel_button_image_alpha ++integer config_tooltipAnimTime ++integer react_native_dev_server_port ++integer status_bar_notification_info_maxnum ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 ++interpolator btn_radio_to_off_mtrl_animation_interpolator_0 ++interpolator btn_radio_to_on_mtrl_animation_interpolator_0 ++interpolator fast_out_slow_in ++layout abc_action_bar_title_item ++layout abc_action_bar_up_container ++layout abc_action_menu_item_layout ++layout abc_action_menu_layout ++layout abc_action_mode_bar ++layout abc_action_mode_close_item_material ++layout abc_activity_chooser_view ++layout abc_activity_chooser_view_list_item ++layout abc_alert_dialog_button_bar_material ++layout abc_alert_dialog_material ++layout abc_alert_dialog_title_material ++layout abc_cascading_menu_item_layout ++layout abc_dialog_title_material ++layout abc_expanded_menu_layout ++layout abc_list_menu_item_checkbox ++layout abc_list_menu_item_icon ++layout abc_list_menu_item_layout ++layout abc_list_menu_item_radio ++layout abc_popup_menu_header_item_layout ++layout abc_popup_menu_item_layout ++layout abc_screen_content_include ++layout abc_screen_simple ++layout abc_screen_simple_overlay_action_mode ++layout abc_screen_toolbar ++layout abc_search_dropdown_item_icons_2line ++layout abc_search_view ++layout abc_select_dialog_material ++layout abc_tooltip ++layout autofill_inline_suggestion ++layout custom_dialog ++layout dev_loading_view ++layout fps_view ++layout notification_action ++layout notification_action_tombstone ++layout notification_template_custom_big ++layout notification_template_icon_group ++layout notification_template_part_chronometer ++layout notification_template_part_time ++layout paused_in_debugger_view ++layout redbox_item_frame ++layout redbox_item_title ++layout redbox_view ++layout select_dialog_item_material ++layout select_dialog_multichoice_material ++layout select_dialog_singlechoice_material ++layout support_simple_spinner_dropdown_item ++string abc_action_bar_home_description ++string abc_action_bar_up_description ++string abc_action_menu_overflow_description ++string abc_action_mode_done ++string abc_activity_chooser_view_see_all ++string abc_activitychooserview_choose_application ++string abc_capital_off ++string abc_capital_on ++string abc_menu_alt_shortcut_label ++string abc_menu_ctrl_shortcut_label ++string abc_menu_delete_shortcut_label ++string abc_menu_enter_shortcut_label ++string abc_menu_function_shortcut_label ++string abc_menu_meta_shortcut_label ++string abc_menu_shift_shortcut_label ++string abc_menu_space_shortcut_label ++string abc_menu_sym_shortcut_label ++string abc_prepend_shortcut_label ++string abc_search_hint ++string abc_searchview_description_clear ++string abc_searchview_description_query ++string abc_searchview_description_search ++string abc_searchview_description_submit ++string abc_searchview_description_voice ++string abc_shareactionprovider_share_with ++string abc_shareactionprovider_share_with_application ++string abc_toolbar_collapse_description ++string alert_description ++string androidx_startup ++string catalyst_change_bundle_location ++string catalyst_copy_button ++string catalyst_debug_connecting ++string catalyst_debug_error ++string catalyst_debug_open ++string catalyst_debug_open_disabled ++string catalyst_dev_menu_header ++string catalyst_dev_menu_sub_header ++string catalyst_dismiss_button ++string catalyst_heap_capture ++string catalyst_hot_reloading ++string catalyst_hot_reloading_auto_disable ++string catalyst_hot_reloading_auto_enable ++string catalyst_hot_reloading_stop ++string catalyst_inspector_toggle ++string catalyst_loading_from_url ++string catalyst_open_debugger_error ++string catalyst_perf_monitor ++string catalyst_perf_monitor_stop ++string catalyst_reload ++string catalyst_reload_button ++string catalyst_reload_error ++string catalyst_report_button ++string catalyst_sample_profiler_toggle ++string catalyst_settings ++string catalyst_settings_title ++string combobox_description ++string header_description ++string image_description ++string imagebutton_description ++string link_description ++string menu_description ++string menubar_description ++string menuitem_description ++string progressbar_description ++string radiogroup_description ++string rn_tab_description ++string scrollbar_description ++string search_menu_title ++string spinbutton_description ++string state_busy_description ++string state_collapsed_description ++string state_expanded_description ++string state_mixed_description ++string state_off_description ++string state_on_description ++string state_unselected_description ++string status_bar_notification_info_overflow ++string summary_description ++string tablist_description ++string timer_description ++string toolbar_description ++style AlertDialog_AppCompat ++style AlertDialog_AppCompat_Light ++style Animation_AppCompat_Dialog ++style Animation_AppCompat_DropDownUp ++style Animation_AppCompat_Tooltip ++style Animation_Catalyst_LogBox ++style Animation_Catalyst_RedBox ++style Base_AlertDialog_AppCompat ++style Base_AlertDialog_AppCompat_Light ++style Base_Animation_AppCompat_Dialog ++style Base_Animation_AppCompat_DropDownUp ++style Base_Animation_AppCompat_Tooltip ++style Base_DialogWindowTitle_AppCompat ++style Base_DialogWindowTitleBackground_AppCompat ++style Base_TextAppearance_AppCompat ++style Base_TextAppearance_AppCompat_Body1 ++style Base_TextAppearance_AppCompat_Body2 ++style Base_TextAppearance_AppCompat_Button ++style Base_TextAppearance_AppCompat_Caption ++style Base_TextAppearance_AppCompat_Display1 ++style Base_TextAppearance_AppCompat_Display2 ++style Base_TextAppearance_AppCompat_Display3 ++style Base_TextAppearance_AppCompat_Display4 ++style Base_TextAppearance_AppCompat_Headline ++style Base_TextAppearance_AppCompat_Inverse ++style Base_TextAppearance_AppCompat_Large ++style Base_TextAppearance_AppCompat_Large_Inverse ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Medium ++style Base_TextAppearance_AppCompat_Medium_Inverse ++style Base_TextAppearance_AppCompat_Menu ++style Base_TextAppearance_AppCompat_SearchResult ++style Base_TextAppearance_AppCompat_SearchResult_Subtitle ++style Base_TextAppearance_AppCompat_SearchResult_Title ++style Base_TextAppearance_AppCompat_Small ++style Base_TextAppearance_AppCompat_Small_Inverse ++style Base_TextAppearance_AppCompat_Subhead ++style Base_TextAppearance_AppCompat_Subhead_Inverse ++style Base_TextAppearance_AppCompat_Title ++style Base_TextAppearance_AppCompat_Title_Inverse ++style Base_TextAppearance_AppCompat_Tooltip ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Title ++style Base_TextAppearance_AppCompat_Widget_Button ++style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Inverse ++style Base_TextAppearance_AppCompat_Widget_DropDownItem ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Widget_Switch ++style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Title ++style Base_Theme_AppCompat ++style Base_Theme_AppCompat_CompactMenu ++style Base_Theme_AppCompat_Dialog ++style Base_Theme_AppCompat_Dialog_Alert ++style Base_Theme_AppCompat_Dialog_FixedSize ++style Base_Theme_AppCompat_Dialog_MinWidth ++style Base_Theme_AppCompat_DialogWhenLarge ++style Base_Theme_AppCompat_Light ++style Base_Theme_AppCompat_Light_DarkActionBar ++style Base_Theme_AppCompat_Light_Dialog ++style Base_Theme_AppCompat_Light_Dialog_Alert ++style Base_Theme_AppCompat_Light_Dialog_FixedSize ++style Base_Theme_AppCompat_Light_Dialog_MinWidth ++style Base_Theme_AppCompat_Light_DialogWhenLarge ++style Base_ThemeOverlay_AppCompat ++style Base_ThemeOverlay_AppCompat_ActionBar ++style Base_ThemeOverlay_AppCompat_Dark ++style Base_ThemeOverlay_AppCompat_Dark_ActionBar ++style Base_ThemeOverlay_AppCompat_Dialog ++style Base_ThemeOverlay_AppCompat_Dialog_Alert ++style Base_ThemeOverlay_AppCompat_Light ++style Base_V21_Theme_AppCompat ++style Base_V21_Theme_AppCompat_Dialog ++style Base_V21_Theme_AppCompat_Light ++style Base_V21_Theme_AppCompat_Light_Dialog ++style Base_V21_ThemeOverlay_AppCompat_Dialog ++style Base_V22_Theme_AppCompat ++style Base_V22_Theme_AppCompat_Light ++style Base_V23_Theme_AppCompat ++style Base_V23_Theme_AppCompat_Light ++style Base_V26_Theme_AppCompat ++style Base_V26_Theme_AppCompat_Light ++style Base_V26_Widget_AppCompat_Toolbar ++style Base_V28_Theme_AppCompat ++style Base_V28_Theme_AppCompat_Light ++style Base_V7_Theme_AppCompat ++style Base_V7_Theme_AppCompat_Dialog ++style Base_V7_Theme_AppCompat_Light ++style Base_V7_Theme_AppCompat_Light_Dialog ++style Base_V7_ThemeOverlay_AppCompat_Dialog ++style Base_V7_Widget_AppCompat_AutoCompleteTextView ++style Base_V7_Widget_AppCompat_EditText ++style Base_V7_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_ActionBar ++style Base_Widget_AppCompat_ActionBar_Solid ++style Base_Widget_AppCompat_ActionBar_TabBar ++style Base_Widget_AppCompat_ActionBar_TabText ++style Base_Widget_AppCompat_ActionBar_TabView ++style Base_Widget_AppCompat_ActionButton ++style Base_Widget_AppCompat_ActionButton_CloseMode ++style Base_Widget_AppCompat_ActionButton_Overflow ++style Base_Widget_AppCompat_ActionMode ++style Base_Widget_AppCompat_ActivityChooserView ++style Base_Widget_AppCompat_AutoCompleteTextView ++style Base_Widget_AppCompat_Button ++style Base_Widget_AppCompat_Button_Borderless ++style Base_Widget_AppCompat_Button_Borderless_Colored ++style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_Button_Colored ++style Base_Widget_AppCompat_Button_Small ++style Base_Widget_AppCompat_ButtonBar ++style Base_Widget_AppCompat_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_CompoundButton_CheckBox ++style Base_Widget_AppCompat_CompoundButton_RadioButton ++style Base_Widget_AppCompat_CompoundButton_Switch ++style Base_Widget_AppCompat_DrawerArrowToggle ++style Base_Widget_AppCompat_DrawerArrowToggle_Common ++style Base_Widget_AppCompat_DropDownItem_Spinner ++style Base_Widget_AppCompat_EditText ++style Base_Widget_AppCompat_ImageButton ++style Base_Widget_AppCompat_Light_ActionBar ++style Base_Widget_AppCompat_Light_ActionBar_Solid ++style Base_Widget_AppCompat_Light_ActionBar_TabBar ++style Base_Widget_AppCompat_Light_ActionBar_TabText ++style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Base_Widget_AppCompat_Light_ActionBar_TabView ++style Base_Widget_AppCompat_Light_PopupMenu ++style Base_Widget_AppCompat_Light_PopupMenu_Overflow ++style Base_Widget_AppCompat_ListMenuView ++style Base_Widget_AppCompat_ListPopupWindow ++style Base_Widget_AppCompat_ListView ++style Base_Widget_AppCompat_ListView_DropDown ++style Base_Widget_AppCompat_ListView_Menu ++style Base_Widget_AppCompat_PopupMenu ++style Base_Widget_AppCompat_PopupMenu_Overflow ++style Base_Widget_AppCompat_PopupWindow ++style Base_Widget_AppCompat_ProgressBar ++style Base_Widget_AppCompat_ProgressBar_Horizontal ++style Base_Widget_AppCompat_RatingBar ++style Base_Widget_AppCompat_RatingBar_Indicator ++style Base_Widget_AppCompat_RatingBar_Small ++style Base_Widget_AppCompat_SearchView ++style Base_Widget_AppCompat_SearchView_ActionBar ++style Base_Widget_AppCompat_SeekBar ++style Base_Widget_AppCompat_SeekBar_Discrete ++style Base_Widget_AppCompat_Spinner ++style Base_Widget_AppCompat_Spinner_Underlined ++style Base_Widget_AppCompat_TextView ++style Base_Widget_AppCompat_TextView_SpinnerItem ++style Base_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_Toolbar_Button_Navigation ++style CalendarDatePickerDialog ++style CalendarDatePickerStyle ++style DialogAnimationFade ++style DialogAnimationSlide ++style NoAnimationDialog ++style Platform_AppCompat ++style Platform_AppCompat_Light ++style Platform_ThemeOverlay_AppCompat ++style Platform_ThemeOverlay_AppCompat_Dark ++style Platform_ThemeOverlay_AppCompat_Light ++style Platform_V21_AppCompat ++style Platform_V21_AppCompat_Light ++style Platform_V25_AppCompat ++style Platform_V25_AppCompat_Light ++style Platform_Widget_AppCompat_Spinner ++style RtlOverlay_DialogWindowTitle_AppCompat ++style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem ++style RtlOverlay_Widget_AppCompat_DialogTitle_Icon ++style RtlOverlay_Widget_AppCompat_PopupMenuItem ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title ++style RtlOverlay_Widget_AppCompat_Search_DropDown ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Query ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Text ++style RtlOverlay_Widget_AppCompat_SearchView_MagIcon ++style RtlUnderlay_Widget_AppCompat_ActionButton ++style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow ++style SpinnerDatePickerDialog ++style SpinnerDatePickerStyle ++style TextAppearance_AppCompat ++style TextAppearance_AppCompat_Body1 ++style TextAppearance_AppCompat_Body2 ++style TextAppearance_AppCompat_Button ++style TextAppearance_AppCompat_Caption ++style TextAppearance_AppCompat_Display1 ++style TextAppearance_AppCompat_Display2 ++style TextAppearance_AppCompat_Display3 ++style TextAppearance_AppCompat_Display4 ++style TextAppearance_AppCompat_Headline ++style TextAppearance_AppCompat_Inverse ++style TextAppearance_AppCompat_Large ++style TextAppearance_AppCompat_Large_Inverse ++style TextAppearance_AppCompat_Light_SearchResult_Subtitle ++style TextAppearance_AppCompat_Light_SearchResult_Title ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Medium ++style TextAppearance_AppCompat_Medium_Inverse ++style TextAppearance_AppCompat_Menu ++style TextAppearance_AppCompat_SearchResult_Subtitle ++style TextAppearance_AppCompat_SearchResult_Title ++style TextAppearance_AppCompat_Small ++style TextAppearance_AppCompat_Small_Inverse ++style TextAppearance_AppCompat_Subhead ++style TextAppearance_AppCompat_Subhead_Inverse ++style TextAppearance_AppCompat_Title ++style TextAppearance_AppCompat_Title_Inverse ++style TextAppearance_AppCompat_Tooltip ++style TextAppearance_AppCompat_Widget_ActionBar_Menu ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionBar_Title ++style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Title ++style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse ++style TextAppearance_AppCompat_Widget_Button ++style TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style TextAppearance_AppCompat_Widget_Button_Colored ++style TextAppearance_AppCompat_Widget_Button_Inverse ++style TextAppearance_AppCompat_Widget_DropDownItem ++style TextAppearance_AppCompat_Widget_PopupMenu_Header ++style TextAppearance_AppCompat_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Widget_Switch ++style TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style TextAppearance_Compat_Notification ++style TextAppearance_Compat_Notification_Info ++style TextAppearance_Compat_Notification_Line2 ++style TextAppearance_Compat_Notification_Time ++style TextAppearance_Compat_Notification_Title ++style TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style TextAppearance_Widget_AppCompat_Toolbar_Title ++style Theme ++style Theme_AppCompat ++style Theme_AppCompat_CompactMenu ++style Theme_AppCompat_DayNight ++style Theme_AppCompat_DayNight_DarkActionBar ++style Theme_AppCompat_DayNight_Dialog ++style Theme_AppCompat_DayNight_Dialog_Alert ++style Theme_AppCompat_DayNight_Dialog_MinWidth ++style Theme_AppCompat_DayNight_DialogWhenLarge ++style Theme_AppCompat_DayNight_NoActionBar ++style Theme_AppCompat_Dialog ++style Theme_AppCompat_Dialog_Alert ++style Theme_AppCompat_Dialog_MinWidth ++style Theme_AppCompat_DialogWhenLarge ++style Theme_AppCompat_Empty ++style Theme_AppCompat_Light ++style Theme_AppCompat_Light_DarkActionBar ++style Theme_AppCompat_Light_Dialog ++style Theme_AppCompat_Light_Dialog_Alert ++style Theme_AppCompat_Light_Dialog_MinWidth ++style Theme_AppCompat_Light_DialogWhenLarge ++style Theme_AppCompat_Light_NoActionBar ++style Theme_AppCompat_NoActionBar ++style Theme_AutofillInlineSuggestion ++style Theme_Catalyst ++style Theme_Catalyst_LogBox ++style Theme_Catalyst_RedBox ++style Theme_FullScreenDialog ++style Theme_FullScreenDialogAnimatedFade ++style Theme_FullScreenDialogAnimatedSlide ++style Theme_ReactNative_AppCompat_Light ++style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen ++style Theme_ReactNative_TextInput_DefaultBackground ++style ThemeOverlay_AppCompat ++style ThemeOverlay_AppCompat_ActionBar ++style ThemeOverlay_AppCompat_Dark ++style ThemeOverlay_AppCompat_Dark_ActionBar ++style ThemeOverlay_AppCompat_DayNight ++style ThemeOverlay_AppCompat_DayNight_ActionBar ++style ThemeOverlay_AppCompat_Dialog ++style ThemeOverlay_AppCompat_Dialog_Alert ++style ThemeOverlay_AppCompat_Light ++style Widget_AppCompat_ActionBar ++style Widget_AppCompat_ActionBar_Solid ++style Widget_AppCompat_ActionBar_TabBar ++style Widget_AppCompat_ActionBar_TabText ++style Widget_AppCompat_ActionBar_TabView ++style Widget_AppCompat_ActionButton ++style Widget_AppCompat_ActionButton_CloseMode ++style Widget_AppCompat_ActionButton_Overflow ++style Widget_AppCompat_ActionMode ++style Widget_AppCompat_ActivityChooserView ++style Widget_AppCompat_AutoCompleteTextView ++style Widget_AppCompat_Button ++style Widget_AppCompat_Button_Borderless ++style Widget_AppCompat_Button_Borderless_Colored ++style Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Widget_AppCompat_Button_Colored ++style Widget_AppCompat_Button_Small ++style Widget_AppCompat_ButtonBar ++style Widget_AppCompat_ButtonBar_AlertDialog ++style Widget_AppCompat_CompoundButton_CheckBox ++style Widget_AppCompat_CompoundButton_RadioButton ++style Widget_AppCompat_CompoundButton_Switch ++style Widget_AppCompat_DrawerArrowToggle ++style Widget_AppCompat_DropDownItem_Spinner ++style Widget_AppCompat_EditText ++style Widget_AppCompat_ImageButton ++style Widget_AppCompat_Light_ActionBar ++style Widget_AppCompat_Light_ActionBar_Solid ++style Widget_AppCompat_Light_ActionBar_Solid_Inverse ++style Widget_AppCompat_Light_ActionBar_TabBar ++style Widget_AppCompat_Light_ActionBar_TabBar_Inverse ++style Widget_AppCompat_Light_ActionBar_TabText ++style Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Widget_AppCompat_Light_ActionBar_TabView ++style Widget_AppCompat_Light_ActionBar_TabView_Inverse ++style Widget_AppCompat_Light_ActionButton ++style Widget_AppCompat_Light_ActionButton_CloseMode ++style Widget_AppCompat_Light_ActionButton_Overflow ++style Widget_AppCompat_Light_ActionMode_Inverse ++style Widget_AppCompat_Light_ActivityChooserView ++style Widget_AppCompat_Light_AutoCompleteTextView ++style Widget_AppCompat_Light_DropDownItem_Spinner ++style Widget_AppCompat_Light_ListPopupWindow ++style Widget_AppCompat_Light_ListView_DropDown ++style Widget_AppCompat_Light_PopupMenu ++style Widget_AppCompat_Light_PopupMenu_Overflow ++style Widget_AppCompat_Light_SearchView ++style Widget_AppCompat_Light_Spinner_DropDown_ActionBar ++style Widget_AppCompat_ListMenuView ++style Widget_AppCompat_ListPopupWindow ++style Widget_AppCompat_ListView ++style Widget_AppCompat_ListView_DropDown ++style Widget_AppCompat_ListView_Menu ++style Widget_AppCompat_PopupMenu ++style Widget_AppCompat_PopupMenu_Overflow ++style Widget_AppCompat_PopupWindow ++style Widget_AppCompat_ProgressBar ++style Widget_AppCompat_ProgressBar_Horizontal ++style Widget_AppCompat_RatingBar ++style Widget_AppCompat_RatingBar_Indicator ++style Widget_AppCompat_RatingBar_Small ++style Widget_AppCompat_SearchView ++style Widget_AppCompat_SearchView_ActionBar ++style Widget_AppCompat_SeekBar ++style Widget_AppCompat_SeekBar_Discrete ++style Widget_AppCompat_Spinner ++style Widget_AppCompat_Spinner_DropDown ++style Widget_AppCompat_Spinner_DropDown_ActionBar ++style Widget_AppCompat_Spinner_Underlined ++style Widget_AppCompat_TextView ++style Widget_AppCompat_TextView_SpinnerItem ++style Widget_AppCompat_Toolbar ++style Widget_AppCompat_Toolbar_Button_Navigation ++style Widget_Autofill ++style Widget_Autofill_InlineSuggestionChip ++style Widget_Autofill_InlineSuggestionEndIconStyle ++style Widget_Autofill_InlineSuggestionStartIconStyle ++style Widget_Autofill_InlineSuggestionSubtitle ++style Widget_Autofill_InlineSuggestionTitle ++style Widget_Compat_NotificationActionContainer ++style Widget_Compat_NotificationActionText ++style redboxButton ++styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle ++styleable ActionBarLayout android_layout_gravity ++styleable ActionMenuItemView android_minWidth ++styleable ActionMenuView ++styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle ++styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount ++styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout ++styleable AnimatedStateListDrawableCompat android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration ++styleable AnimatedStateListDrawableItem android_id android_drawable ++styleable AnimatedStateListDrawableTransition android_drawable android_toId android_fromId android_reversible ++styleable AppCompatEmojiHelper ++styleable AppCompatImageView android_src srcCompat tint tintMode ++styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode ++styleable AppCompatTextHelper android_textAppearance android_drawableTop android_drawableBottom android_drawableLeft android_drawableRight android_drawableStart android_drawableEnd ++styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale ++styleable AppCompatTheme android_windowIsFloating android_windowAnimationStyle actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle ++styleable Autofill_InlineSuggestion autofillInlineSuggestionChip autofillInlineSuggestionEndIconStyle autofillInlineSuggestionStartIconStyle autofillInlineSuggestionSubtitle autofillInlineSuggestionTitle isAutofillInlineSuggestionTheme ++styleable ButtonBarLayout allowStacking ++styleable Capability queryPatterns shortcutMatchRequired ++styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode ++styleable ColorStateListItem android_color android_alpha android_lStar alpha lStar ++styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode ++styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness ++styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily ++styleable FontFamilyFont android_font android_fontWeight android_fontStyle android_ttcIndex android_fontVariationSettings font fontStyle fontVariationSettings fontWeight ttcIndex ++styleable Fragment android_name android_id android_tag ++styleable FragmentContainerView android_name android_tag ++styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio ++styleable GradientColor android_startColor android_endColor android_type android_centerX android_centerY android_gradientRadius android_tileMode android_centerColor android_startX android_startY android_endX android_endY ++styleable GradientColorItem android_color android_offset ++styleable LinearLayoutCompat android_gravity android_orientation android_baselineAligned android_baselineAlignedChildIndex android_weightSum divider dividerPadding measureWithLargestChild showDividers ++styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_width android_layout_height android_layout_weight ++styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset ++styleable MenuGroup android_enabled android_id android_visible android_menuCategory android_orderInCategory android_checkableBehavior ++styleable MenuItem android_icon android_enabled android_id android_checked android_visible android_menuCategory android_orderInCategory android_title android_titleCondensed android_alphabeticShortcut android_numericShortcut android_checkable android_onClick actionLayout actionProviderClass actionViewClass alphabeticModifiers contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText ++styleable MenuView android_windowAnimationStyle android_itemTextAppearance android_horizontalDivider android_verticalDivider android_headerBackground android_itemBackground android_itemIconDisabledAlpha preserveIconSpacing subMenuArrow ++styleable PopupWindow android_popupBackground android_popupAnimationStyle overlapAnchor ++styleable PopupWindowBackgroundState state_above_anchor ++styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle ++styleable SearchView android_focusable android_maxWidth android_inputType android_imeOptions closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon ++styleable SimpleDraweeView actualImageResource actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio ++styleable Spinner android_entries android_popupBackground android_prompt android_dropDownWidth popupTheme ++styleable StateListDrawable android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration ++styleable StateListDrawableItem android_drawable ++styleable SwipeRefreshLayout swipeRefreshLayoutProgressSpinnerBackgroundColor ++styleable SwitchCompat android_textOn android_textOff android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode ++styleable TextAppearance android_textSize android_typeface android_textStyle android_textColor android_textColorHint android_textColorLink android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_fontFamily android_textFontWeight fontFamily fontVariationSettings textAllCaps textLocale ++styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor ++styleable View android_theme android_focusable paddingEnd paddingStart theme ++styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode ++styleable ViewStubCompat android_id android_layout android_inflatedId ++xml rn_dev_preferences +diff --git a/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/debug-artifact-dependencies.xml b/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/debug-artifact-dependencies.xml +new file mode 100644 +index 0000000..c3f5077 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/debug-artifact-dependencies.xml +@@ -0,0 +1,419 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/debug-artifact-libraries.xml b/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/debug-artifact-libraries.xml +new file mode 100644 +index 0000000..4a62618 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/debug-artifact-libraries.xml +@@ -0,0 +1,735 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/debug.xml b/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/debug.xml +new file mode 100644 +index 0000000..22707df +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/debug.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/module.xml b/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/module.xml +new file mode 100644 +index 0000000..634a447 +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/unit_test_lint_model/debug/generateDebugUnitTestLintModel/module.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/intermediates/unit_test_lint_partial_results/debug/lintAnalyzeDebugUnitTest/out/lint-partial.xml b/node_modules/jet/android/build/intermediates/unit_test_lint_partial_results/debug/lintAnalyzeDebugUnitTest/out/lint-partial.xml +new file mode 100644 +index 0000000..e7731fd +--- /dev/null ++++ b/node_modules/jet/android/build/intermediates/unit_test_lint_partial_results/debug/lintAnalyzeDebugUnitTest/out/lint-partial.xml +@@ -0,0 +1,9 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/outputs/aar/jet-debug.aar b/node_modules/jet/android/build/outputs/aar/jet-debug.aar +new file mode 100644 +index 0000000..3384305 +Binary files /dev/null and b/node_modules/jet/android/build/outputs/aar/jet-debug.aar differ +diff --git a/node_modules/jet/android/build/outputs/apk/androidTest/debug/jet-debug-androidTest.apk b/node_modules/jet/android/build/outputs/apk/androidTest/debug/jet-debug-androidTest.apk +new file mode 100644 +index 0000000..484a564 +Binary files /dev/null and b/node_modules/jet/android/build/outputs/apk/androidTest/debug/jet-debug-androidTest.apk differ +diff --git a/node_modules/jet/android/build/outputs/apk/androidTest/debug/output-metadata.json b/node_modules/jet/android/build/outputs/apk/androidTest/debug/output-metadata.json +new file mode 100644 +index 0000000..2fc7e99 +--- /dev/null ++++ b/node_modules/jet/android/build/outputs/apk/androidTest/debug/output-metadata.json +@@ -0,0 +1,21 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "APK", ++ "kind": "Directory" ++ }, ++ "applicationId": "io.invertase.jet.test", ++ "variantName": "debugAndroidTest", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "versionCode": 0, ++ "versionName": "", ++ "outputFile": "jet-debug-androidTest.apk" ++ } ++ ], ++ "elementType": "File", ++ "minSdkVersionForDexing": 24 ++} +\ No newline at end of file +diff --git a/node_modules/jet/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/jet/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..6e8aafb +--- /dev/null ++++ b/node_modules/jet/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,17 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/src/main/AndroidManifest.xml:1:1-3:12 ++INJECTED from /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/src/main/AndroidManifest.xml:1:1-3:12 ++ package ++ ADDED from /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/src/main/AndroidManifest.xml:2:11-37 ++ INJECTED from /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/src/main/AndroidManifest.xml ++ xmlns:android ++ ADDED from /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/src/main/AndroidManifest.xml:1:11-69 ++uses-sdk ++INJECTED from /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/src/main/AndroidManifest.xml reason: use-sdk injection requested ++INJECTED from /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/src/main/AndroidManifest.xml ++INJECTED from /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/src/main/AndroidManifest.xml ++ android:targetSdkVersion ++ INJECTED from /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/src/main/AndroidManifest.xml ++ android:minSdkVersion ++ INJECTED from /Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/src/main/AndroidManifest.xml +diff --git a/node_modules/jet/android/build/reports/lint-results-debug.html b/node_modules/jet/android/build/reports/lint-results-debug.html +new file mode 100644 +index 0000000..3ee3ad4 +--- /dev/null ++++ b/node_modules/jet/android/build/reports/lint-results-debug.html +@@ -0,0 +1,1221 @@ ++ ++ ++ ++ ++ ++Lint Report ++ ++ ++ ++ ++ ++ ++ ++ ++

++
++
++ Lint Report: 2 warnings ++
++ ++
++
++ ++
++
++ ++
++
++
++

Overview

++
++
++ ++ ++ ++ ++ ++ ++ ++ ++
Correctness ++
1warning ++AndroidGradlePluginVersion: Obsolete Android Gradle Plugin Version
1warning ++GradleDynamicVersion: Gradle Dynamic Version
Included Additional Checks (20) ++
Disabled Checks (39) ++
++
++
++
++
++
++ ++ ++
++
++
++

Obsolete Android Gradle Plugin Version

++
++
++
++
++../../build.gradle:8: A newer version of com.android.tools.build:gradle than 7.0.3 is available: 8.7.3. (There is also a newer version of 7.0.�� available, if upgrading to 8.7.3 is difficult: 7.0.4)
++  5   }
++  6 
++  7   dependencies {
++  8     classpath 'com.android.tools.build:gradle:7.0.3'                                                
++  9   }
++ 10 }
++
++ ++
++ ++
++
++ ++ AndroidGradlePluginVersion ++ ++ ++ Correctness ++ ++ ++ Warning ++ ++ ++ Priority 4/10 ++ ++
++
++
++
++
++
++
++
++
++

Gradle Dynamic Version

++
++
++
++
++../../build.gradle:49: Avoid using + in version numbers; can lead to unpredictable and unrepeatable builds (com.facebook.react:react-native:+)
++ 46 }
++ 47 
++ 48 dependencies {
++ 49   api 'com.facebook.react:react-native:+'                                                           
++ 50 }
++
++ ++
++ ++
++
++ ++ GradleDynamicVersion ++ ++ ++ Correctness ++ ++ ++ Warning ++ ++ ++ Priority 4/10 ++ ++
++
++
++
++
++
++ ++
++
++
++

Included Additional Checks

++
++
++This card lists all the extra checks run by lint, provided from libraries, ++build configuration and extra flags. This is included to help you verify ++whether a particular check is included in analysis when configuring builds. ++(Note that the list does not include the hundreds of built-in checks into lint, ++only additional ones.) ++ ++
++
++
++
++
++ ++
++
++
++

Disabled Checks

++
++
++One or more issues were not run by lint, either ++because the check is not enabled by default, or because ++it was disabled with a command line flag or via one or ++more lint.xml configuration files in the project directories. ++ ++
++
++
++
++
++ ++
++
++
++

Suppressing Warnings and Errors

++
++
++Lint errors can be suppressed in a variety of ways:
++
++1. With a @SuppressLint annotation in the Java code
++2. With a tools:ignore attribute in the XML file
++3. With a //noinspection comment in the source code
++4. With ignore flags specified in the build.gradle file, as explained below
++5. With a lint.xml configuration file in the project
++6. With a lint.xml configuration file passed to lint via the --config flag
++7. With the --ignore flag passed to lint.
++
++To suppress a lint warning with an annotation, add a @SuppressLint("id") annotation on the class, method or variable declaration closest to the warning instance you want to disable. The id can be one or more issue id's, such as "UnusedResources" or {"UnusedResources","UnusedIds"}, or it can be "all" to suppress all lint warnings in the given scope.
++
++To suppress a lint warning with a comment, add a //noinspection id comment on the line before the statement with the error.
++
++To suppress a lint warning in an XML file, add a tools:ignore="id" attribute on the element containing the error, or one of its surrounding elements. You also need to define the namespace for the tools prefix on the root element in your document, next to the xmlns:android declaration:
++xmlns:tools="http://schemas.android.com/tools"
++
++To suppress a lint warning in a build.gradle file, add a section like this:
++ ++
++android {
++    lintOptions {
++        disable 'TypographyFractions','TypographyQuotes'
++    }
++}
++
++
++Here we specify a comma separated list of issue id's after the disable command. You can also use warning or error instead of disable to change the severity of issues.
++
++To suppress lint warnings with a configuration XML file, create a file named lint.xml and place it at the root directory of the module in which it applies.
++
++The format of the lint.xml file is something like the following:
++ ++
++<?xml version="1.0" encoding="UTF-8"?>
++<lint>
++    <!-- Ignore everything in the test source set -->
++    <issue id="all">
++        <ignore path="\*/test/\*" />
++    </issue>
++
++    <!-- Disable this given check in this project -->
++    <issue id="IconMissingDensityFolder" severity="ignore" />
++
++    <!-- Ignore the ObsoleteLayoutParam issue in the given files -->
++    <issue id="ObsoleteLayoutParam">
++        <ignore path="res/layout/activation.xml" />
++        <ignore path="res/layout-xlarge/activation.xml" />
++        <ignore regexp="(foo|bar)\.java" />
++    </issue>
++
++    <!-- Ignore the UselessLeaf issue in the given file -->
++    <issue id="UselessLeaf">
++        <ignore path="res/layout/main.xml" />
++    </issue>
++
++    <!-- Change the severity of hardcoded strings to "error" -->
++    <issue id="HardcodedText" severity="error" />
++</lint>
++
++
++To suppress lint checks from the command line, pass the --ignore flag with a comma separated list of ids to be suppressed, such as:
++$ lint --ignore UnusedResources,UselessLeaf /my/project/path
++
++For more information, see https://developer.android.com/studio/write/lint.html#config
++ ++
++
++
++
++
++ ++ +\ No newline at end of file +diff --git a/node_modules/jet/android/build/reports/lint-results-debug.txt b/node_modules/jet/android/build/reports/lint-results-debug.txt +new file mode 100644 +index 0000000..57cc0d6 +--- /dev/null ++++ b/node_modules/jet/android/build/reports/lint-results-debug.txt +@@ -0,0 +1,24 @@ ++/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build.gradle:8: Warning: A newer version of com.android.tools.build:gradle than 7.0.3 is available: 8.7.3. (There is also a newer version of 7.0.𝑥 available, if upgrading to 8.7.3 is difficult: 7.0.4) [AndroidGradlePluginVersion] ++ classpath 'com.android.tools.build:gradle:7.0.3' ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ++ ++ Explanation for issues of type "AndroidGradlePluginVersion": ++ This detector looks for usage of the Android Gradle Plugin where the ++ version you are using is not the current stable release. Using older ++ versions is fine, and there are cases where you deliberately want to stick ++ with an older version. However, you may simply not be aware that a more ++ recent version is available, and that is what this lint check helps find. ++ ++/Users/mike/work/invertase/react-native-google-mobile-ads/RNGoogleMobileAdsExample/node_modules/jet/android/build.gradle:49: Warning: Avoid using + in version numbers; can lead to unpredictable and unrepeatable builds (com.facebook.react:react-native:+) [GradleDynamicVersion] ++ api 'com.facebook.react:react-native:+' ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ++ ++ Explanation for issues of type "GradleDynamicVersion": ++ Using + in dependencies lets you automatically pick up the latest available ++ version rather than a specific, named version. However, this is not ++ recommended; your builds are not repeatable; you may have tested with a ++ slightly different version than what the build server used. (Using a ++ dynamic version as the major version number is more problematic than using ++ it in the minor version position.) ++ ++0 errors, 2 warnings +diff --git a/node_modules/jet/android/build/reports/lint-results-debug.xml b/node_modules/jet/android/build/reports/lint-results-debug.xml +new file mode 100644 +index 0000000..16a58e1 +--- /dev/null ++++ b/node_modules/jet/android/build/reports/lint-results-debug.xml +@@ -0,0 +1,36 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/jet/android/build/tmp/compileDebugAndroidTestJavaWithJavac/previous-compilation-data.bin b/node_modules/jet/android/build/tmp/compileDebugAndroidTestJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..bbb22fa +Binary files /dev/null and b/node_modules/jet/android/build/tmp/compileDebugAndroidTestJavaWithJavac/previous-compilation-data.bin differ +diff --git a/node_modules/jet/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/jet/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..1486617 +Binary files /dev/null and b/node_modules/jet/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ +diff --git a/node_modules/jet/dist/TestListView.js b/node_modules/jet/dist/TestListView.js +index 7433547..9539bee 100644 +--- a/node_modules/jet/dist/TestListView.js ++++ b/node_modules/jet/dist/TestListView.js +@@ -46,6 +46,7 @@ var testListViewStyles = ReactNative.StyleSheet.create({ + button: { + flex: 0, + margin: 8, ++ padding: 4, + height: 28, + backgroundColor: CommonStyles.buttonBackgroundColor, + borderRadius: CommonStyles.buttonBorderRadius, +@@ -132,33 +133,30 @@ var TestListView = /** @class */ (function (_super) { + var testType = test.getTestType(); + var result = TestRegistry_1.default.getResult(testPath); + var resultText; ++ var resultTextStyle; + if (!result) { +- resultText = ( +- not run +- ); ++ resultTextStyle = testListViewStyles.notRunText ++ resultText = "not run" + } + else if (result.errors.length > 0) { +- resultText = ( +- {result.errors.length + (result.errors.length > 1 ? ' errors' : ' error')} +- ); ++ resultTextStyle = testListViewStyles.errorText ++ resultText = result.errors.length + (result.errors.length > 1 ? ' errors' : ' error') + } + else if (testType === Test_1.TestType.Interactive && !result.userValidated) { +- resultText = ( +- needs validation +- ); ++ resultTextStyle = testListViewStyles.warningText ++ resultText = "needs validation" + } + else { +- resultText = ( +- {testType === Test_1.TestType.Interactive ? 'validated' : 'success'} +- ); ++ resultTextStyle = testListViewStyles.successText ++ resultText = testType === Test_1.TestType.Interactive ? 'validated' : 'success' + } +- return ( ++ return ( + + + {TestRegistry_1.default.formatPath(test.getPath())} + +- +- {resultText} ++ ++ + + + ); diff --git a/RNGoogleMobileAdsExample/yarn.lock b/RNGoogleMobileAdsExample/yarn.lock index f2141302..90df687e 100644 --- a/RNGoogleMobileAdsExample/yarn.lock +++ b/RNGoogleMobileAdsExample/yarn.lock @@ -10,15 +10,7 @@ "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.24" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.2": - version "7.24.2" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae" - integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ== - dependencies: - "@babel/highlight" "^7.24.2" - picocolors "^1.0.0" - -"@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0": +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0", "@babel/code-frame@^7.26.2": version "7.26.2" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== @@ -27,38 +19,12 @@ js-tokens "^4.0.0" picocolors "^1.0.0" -"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.5": - version "7.24.4" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.4.tgz#6f102372e9094f25d908ca0d34fc74c74606059a" - integrity sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ== - -"@babel/compat-data@^7.25.9", "@babel/compat-data@^7.26.0": - version "7.26.2" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.2.tgz#278b6b13664557de95b8f35b90d96785850bb56e" - integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg== - -"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.23.9": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.5.tgz#15ab5b98e101972d171aeef92ac70d8d6718f06a" - integrity sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.24.2" - "@babel/generator" "^7.24.5" - "@babel/helper-compilation-targets" "^7.23.6" - "@babel/helper-module-transforms" "^7.24.5" - "@babel/helpers" "^7.24.5" - "@babel/parser" "^7.24.5" - "@babel/template" "^7.24.0" - "@babel/traverse" "^7.24.5" - "@babel/types" "^7.24.5" - convert-source-map "^2.0.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.3" - semver "^6.3.1" +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.9", "@babel/compat-data@^7.26.0": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.3.tgz#99488264a56b2aded63983abd6a417f03b92ed02" + integrity sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g== -"@babel/core@^7.25.2": +"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.23.9", "@babel/core@^7.25.2": version "7.26.0" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== @@ -88,34 +54,17 @@ eslint-visitor-keys "^2.1.0" semver "^6.3.1" -"@babel/generator@^7.24.5", "@babel/generator@^7.7.2": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.5.tgz#e5afc068f932f05616b66713e28d0f04e99daeb3" - integrity sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA== - dependencies: - "@babel/types" "^7.24.5" - "@jridgewell/gen-mapping" "^0.3.5" - "@jridgewell/trace-mapping" "^0.3.25" - jsesc "^2.5.1" - -"@babel/generator@^7.25.0", "@babel/generator@^7.25.9", "@babel/generator@^7.26.0": - version "7.26.2" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.2.tgz#87b75813bec87916210e5e01939a4c823d6bb74f" - integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw== +"@babel/generator@^7.25.0", "@babel/generator@^7.26.0", "@babel/generator@^7.26.3", "@babel/generator@^7.7.2": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.3.tgz#ab8d4360544a425c90c248df7059881f4b2ce019" + integrity sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ== dependencies: - "@babel/parser" "^7.26.2" - "@babel/types" "^7.26.0" + "@babel/parser" "^7.26.3" + "@babel/types" "^7.26.3" "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.25" jsesc "^3.0.2" -"@babel/helper-annotate-as-pure@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" - integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== - dependencies: - "@babel/types" "^7.22.5" - "@babel/helper-annotate-as-pure@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz#d8eac4d2dc0d7b6e11fa6e535332e0d3184f06b4" @@ -123,26 +72,7 @@ dependencies: "@babel/types" "^7.25.9" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.25.9.tgz#f41752fe772a578e67286e6779a68a5a92de1ee9" - integrity sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g== - dependencies: - "@babel/traverse" "^7.25.9" - "@babel/types" "^7.25.9" - -"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": - version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" - integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== - dependencies: - "@babel/compat-data" "^7.23.5" - "@babel/helper-validator-option" "^7.23.5" - browserslist "^4.22.2" - lru-cache "^5.1.1" - semver "^6.3.1" - -"@babel/helper-compilation-targets@^7.25.9": +"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875" integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ== @@ -153,22 +83,7 @@ lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.5.tgz#7d19da92c7e0cd8d11c09af2ce1b8e7512a6e723" - integrity sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-function-name" "^7.23.0" - "@babel/helper-member-expression-to-functions" "^7.24.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.24.1" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.24.5" - semver "^6.3.1" - -"@babel/helper-create-class-features-plugin@^7.25.9": +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz#7644147706bb90ff613297d49ed5266bde729f83" integrity sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ== @@ -181,28 +96,19 @@ "@babel/traverse" "^7.25.9" semver "^6.3.1" -"@babel/helper-create-regexp-features-plugin@^7.18.6": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" - integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - regexpu-core "^5.3.1" - semver "^6.3.1" - -"@babel/helper-create-regexp-features-plugin@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.9.tgz#3e8999db94728ad2b2458d7a470e7770b7764e26" - integrity sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw== +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.25.9": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz#5169756ecbe1d95f7866b90bb555b022595302a0" + integrity sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong== dependencies: "@babel/helper-annotate-as-pure" "^7.25.9" - regexpu-core "^6.1.1" + regexpu-core "^6.2.0" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.6.2": - version "0.6.2" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d" - integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== +"@babel/helper-define-polyfill-provider@^0.6.2", "@babel/helper-define-polyfill-provider@^0.6.3": + version "0.6.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz#f4f2792fae2ef382074bc2d713522cf24e6ddb21" + integrity sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" @@ -210,33 +116,6 @@ lodash.debounce "^4.0.8" resolve "^1.14.2" -"@babel/helper-environment-visitor@^7.22.20": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" - integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== - -"@babel/helper-function-name@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" - integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== - dependencies: - "@babel/template" "^7.22.15" - "@babel/types" "^7.23.0" - -"@babel/helper-hoist-variables@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" - integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-member-expression-to-functions@^7.23.0", "@babel/helper-member-expression-to-functions@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.5.tgz#5981e131d5c7003c7d1fa1ad49e86c9b097ec475" - integrity sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA== - dependencies: - "@babel/types" "^7.24.5" - "@babel/helper-member-expression-to-functions@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz#9dfffe46f727005a5ea29051ac835fb735e4c1a3" @@ -245,13 +124,6 @@ "@babel/traverse" "^7.25.9" "@babel/types" "^7.25.9" -"@babel/helper-module-imports@^7.24.3": - version "7.24.3" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128" - integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg== - dependencies: - "@babel/types" "^7.24.0" - "@babel/helper-module-imports@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" @@ -260,17 +132,6 @@ "@babel/traverse" "^7.25.9" "@babel/types" "^7.25.9" -"@babel/helper-module-transforms@^7.23.3", "@babel/helper-module-transforms@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz#ea6c5e33f7b262a0ae762fd5986355c45f54a545" - integrity sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A== - dependencies: - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-module-imports" "^7.24.3" - "@babel/helper-simple-access" "^7.24.5" - "@babel/helper-split-export-declaration" "^7.24.5" - "@babel/helper-validator-identifier" "^7.24.5" - "@babel/helper-module-transforms@^7.25.9", "@babel/helper-module-transforms@^7.26.0": version "7.26.0" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" @@ -280,13 +141,6 @@ "@babel/helper-validator-identifier" "^7.25.9" "@babel/traverse" "^7.25.9" -"@babel/helper-optimise-call-expression@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" - integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== - dependencies: - "@babel/types" "^7.22.5" - "@babel/helper-optimise-call-expression@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz#3324ae50bae7e2ab3c33f60c9a877b6a0146b54e" @@ -294,12 +148,7 @@ dependencies: "@babel/types" "^7.25.9" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.0", "@babel/helper-plugin-utils@^7.24.5", "@babel/helper-plugin-utils@^7.8.0": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz#a924607dd254a65695e5bd209b98b902b3b2f11a" - integrity sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ== - -"@babel/helper-plugin-utils@^7.25.9": +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.8.0": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46" integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw== @@ -313,15 +162,6 @@ "@babel/helper-wrap-function" "^7.25.9" "@babel/traverse" "^7.25.9" -"@babel/helper-replace-supers@^7.24.1": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz#7085bd19d4a0b7ed8f405c1ed73ccb70f323abc1" - integrity sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ== - dependencies: - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-member-expression-to-functions" "^7.23.0" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz#ba447224798c3da3f8713fc272b145e33da6a5c5" @@ -331,29 +171,7 @@ "@babel/helper-optimise-call-expression" "^7.25.9" "@babel/traverse" "^7.25.9" -"@babel/helper-simple-access@^7.22.5", "@babel/helper-simple-access@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz#50da5b72f58c16b07fbd992810be6049478e85ba" - integrity sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ== - dependencies: - "@babel/types" "^7.24.5" - -"@babel/helper-simple-access@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.25.9.tgz#6d51783299884a2c74618d6ef0f86820ec2e7739" - integrity sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q== - dependencies: - "@babel/traverse" "^7.25.9" - "@babel/types" "^7.25.9" - -"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" - integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-skip-transparent-expression-wrappers@^7.25.9": +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz#0b2e1b62d560d6b1954893fd2b705dc17c91f0c9" integrity sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA== @@ -361,38 +179,16 @@ "@babel/traverse" "^7.25.9" "@babel/types" "^7.25.9" -"@babel/helper-split-export-declaration@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz#b9a67f06a46b0b339323617c8c6213b9055a78b6" - integrity sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q== - dependencies: - "@babel/types" "^7.24.5" - -"@babel/helper-string-parser@^7.24.1": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e" - integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ== - "@babel/helper-string-parser@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== -"@babel/helper-validator-identifier@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz#918b1a7fa23056603506370089bd990d8720db62" - integrity sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA== - "@babel/helper-validator-identifier@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== -"@babel/helper-validator-option@^7.23.5": - version "7.23.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" - integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== - "@babel/helper-validator-option@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" @@ -407,15 +203,6 @@ "@babel/traverse" "^7.25.9" "@babel/types" "^7.25.9" -"@babel/helpers@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.5.tgz#fedeb87eeafa62b621160402181ad8585a22a40a" - integrity sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q== - dependencies: - "@babel/template" "^7.24.0" - "@babel/traverse" "^7.24.5" - "@babel/types" "^7.24.5" - "@babel/helpers@^7.26.0": version "7.26.0" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4" @@ -424,27 +211,12 @@ "@babel/template" "^7.25.9" "@babel/types" "^7.26.0" -"@babel/highlight@^7.24.2": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.5.tgz#bc0613f98e1dd0720e99b2a9ee3760194a704b6e" - integrity sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw== - dependencies: - "@babel/helper-validator-identifier" "^7.24.5" - chalk "^2.4.2" - js-tokens "^4.0.0" - picocolors "^1.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.24.0", "@babel/parser@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.5.tgz#4a4d5ab4315579e5398a82dcf636ca80c3392790" - integrity sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg== - -"@babel/parser@^7.25.3", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2": - version "7.26.2" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.2.tgz#fd7b6f487cfea09889557ef5d4eeb9ff9a5abd11" - integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ== +"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.3", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.3": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.3.tgz#8c51c5db6ddf08134af1ddbacf16aaab48bac234" + integrity sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA== dependencies: - "@babel/types" "^7.26.0" + "@babel/types" "^7.26.3" "@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.9": version "7.25.9" @@ -536,13 +308,20 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-class-properties@^7.8.3": +"@babel/plugin-syntax-class-properties@^7.12.13": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== dependencies: "@babel/helper-plugin-utils" "^7.12.13" +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" @@ -557,14 +336,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.24.1": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.1.tgz#875c25e3428d7896c87589765fc8b9d32f24bd8d" - integrity sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.0" - -"@babel/plugin-syntax-flow@^7.25.9": +"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.25.9": version "7.26.0" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz#96507595c21b45fccfc2bc758d5c45452e6164fa" integrity sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg== @@ -578,14 +350,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-syntax-import-attributes@^7.26.0": +"@babel/plugin-syntax-import-attributes@^7.24.7", "@babel/plugin-syntax-import-attributes@^7.26.0": version "7.26.0" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz#3b1412847699eea739b4f2602c74ce36f6b0b0f7" integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A== dependencies: "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-syntax-import-meta@^7.8.3": +"@babel/plugin-syntax-import-meta@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== @@ -599,21 +371,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.24.1", "@babel/plugin-syntax-jsx@^7.7.2": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz#3f6ca04b8c841811dbc3c5c5f837934e0d626c10" - integrity sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA== - dependencies: - "@babel/helper-plugin-utils" "^7.24.0" - -"@babel/plugin-syntax-jsx@^7.25.9": +"@babel/plugin-syntax-jsx@^7.25.9", "@babel/plugin-syntax-jsx@^7.7.2": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz#a34313a178ea56f1951599b929c1ceacee719290" integrity sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA== dependencies: "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== @@ -627,7 +392,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-numeric-separator@^7.8.3": +"@babel/plugin-syntax-numeric-separator@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== @@ -655,21 +420,21 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-top-level-await@^7.8.3": +"@babel/plugin-syntax-private-property-in-object@^7.14.5": version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.24.1", "@babel/plugin-syntax-typescript@^7.7.2": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz#b3bcc51f396d15f3591683f90239de143c076844" - integrity sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw== +"@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== dependencies: - "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.25.9": +"@babel/plugin-syntax-typescript@^7.25.9", "@babel/plugin-syntax-typescript@^7.7.2": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz#67dda2b74da43727cf21d46cf9afef23f4365399" integrity sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ== @@ -797,11 +562,10 @@ "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-exponentiation-operator@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.25.9.tgz#ece47b70d236c1d99c263a1e22b62dc20a4c8b0f" - integrity sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA== + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz#e29f01b6de302c7c2c794277a48f04a9ca7f03bc" + integrity sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.25.9" "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-export-namespace-from@^7.25.9": @@ -811,15 +575,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-flow-strip-types@^7.24.1": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.1.tgz#fa8d0a146506ea195da1671d38eed459242b2dcc" - integrity sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ== - dependencies: - "@babel/helper-plugin-utils" "^7.24.0" - "@babel/plugin-syntax-flow" "^7.24.1" - -"@babel/plugin-transform-flow-strip-types@^7.25.2": +"@babel/plugin-transform-flow-strip-types@^7.25.2", "@babel/plugin-transform-flow-strip-types@^7.25.9": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.9.tgz#85879b42a8f5948fd6317069978e98f23ef8aec1" integrity sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA== @@ -880,23 +636,13 @@ "@babel/helper-module-transforms" "^7.25.9" "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.24.1": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz#e71ba1d0d69e049a22bf90b3867e263823d3f1b9" - integrity sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw== - dependencies: - "@babel/helper-module-transforms" "^7.23.3" - "@babel/helper-plugin-utils" "^7.24.0" - "@babel/helper-simple-access" "^7.22.5" - -"@babel/plugin-transform-modules-commonjs@^7.24.8", "@babel/plugin-transform-modules-commonjs@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.9.tgz#d165c8c569a080baf5467bda88df6425fc060686" - integrity sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg== +"@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.24.8", "@babel/plugin-transform-modules-commonjs@^7.25.9": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz#8f011d44b20d02c3de44d8850d971d8497f981fb" + integrity sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ== dependencies: - "@babel/helper-module-transforms" "^7.25.9" + "@babel/helper-module-transforms" "^7.26.0" "@babel/helper-plugin-utils" "^7.25.9" - "@babel/helper-simple-access" "^7.25.9" "@babel/plugin-transform-modules-systemjs@^7.25.9": version "7.25.9" @@ -1111,20 +857,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-typescript@^7.24.1": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.5.tgz#bcba979e462120dc06a75bd34c473a04781931b8" - integrity sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.24.5" - "@babel/helper-plugin-utils" "^7.24.5" - "@babel/plugin-syntax-typescript" "^7.24.1" - -"@babel/plugin-transform-typescript@^7.25.2": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.9.tgz#69267905c2b33c2ac6d8fe765e9dc2ddc9df3849" - integrity sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ== +"@babel/plugin-transform-typescript@^7.25.2", "@babel/plugin-transform-typescript@^7.25.9": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz#3d6add9c78735623317387ee26d5ada540eee3fd" + integrity sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA== dependencies: "@babel/helper-annotate-as-pure" "^7.25.9" "@babel/helper-create-class-features-plugin" "^7.25.9" @@ -1163,7 +899,7 @@ "@babel/helper-create-regexp-features-plugin" "^7.25.9" "@babel/helper-plugin-utils" "^7.25.9" -"@babel/preset-env@^7.25.3": +"@babel/preset-env@^7.26.0": version "7.26.0" resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.26.0.tgz#30e5c6bc1bcc54865bff0c5a30f6d4ccdc7fa8b1" integrity sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw== @@ -1239,13 +975,13 @@ semver "^6.3.1" "@babel/preset-flow@^7.13.13": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.24.1.tgz#da7196c20c2d7dd4e98cfd8b192fe53b5eb6f0bb" - integrity sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.25.9.tgz#ef8b5e7e3f24a42b3711e77fb14919b87dffed0a" + integrity sha512-EASHsAhE+SSlEzJ4bzfusnXSHiU+JfAYzj+jbw2vgQKgq5HrUr8qs+vgtiEL5dOH6sEweI+PNt2D7AqrDSHyqQ== dependencies: - "@babel/helper-plugin-utils" "^7.24.0" - "@babel/helper-validator-option" "^7.23.5" - "@babel/plugin-transform-flow-strip-types" "^7.24.1" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" + "@babel/plugin-transform-flow-strip-types" "^7.25.9" "@babel/preset-modules@0.1.6-no-external-plugins": version "0.1.6-no-external-plugins" @@ -1257,20 +993,20 @@ esutils "^2.0.2" "@babel/preset-typescript@^7.13.0": - version "7.24.1" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.24.1.tgz#89bdf13a3149a17b3b2a2c9c62547f06db8845ec" - integrity sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ== + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz#4a570f1b8d104a242d923957ffa1eaff142a106d" + integrity sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg== dependencies: - "@babel/helper-plugin-utils" "^7.24.0" - "@babel/helper-validator-option" "^7.23.5" - "@babel/plugin-syntax-jsx" "^7.24.1" - "@babel/plugin-transform-modules-commonjs" "^7.24.1" - "@babel/plugin-transform-typescript" "^7.24.1" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" + "@babel/plugin-syntax-jsx" "^7.25.9" + "@babel/plugin-transform-modules-commonjs" "^7.25.9" + "@babel/plugin-transform-typescript" "^7.25.9" "@babel/register@^7.13.16": - version "7.23.7" - resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.23.7.tgz#485a5e7951939d21304cae4af1719fdb887bc038" - integrity sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.25.9.tgz#1c465acf7dc983d70ccc318eb5b887ecb04f021b" + integrity sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA== dependencies: clone-deep "^4.0.1" find-cache-dir "^2.0.0" @@ -1278,35 +1014,14 @@ pirates "^4.0.6" source-map-support "^0.5.16" -"@babel/regjsgen@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" - integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== - -"@babel/runtime@^7.12.5", "@babel/runtime@^7.8.4": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.5.tgz#230946857c053a36ccc66e1dd03b17dd0c4ed02c" - integrity sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g== - dependencies: - regenerator-runtime "^0.14.0" - -"@babel/runtime@^7.25.0": +"@babel/runtime@^7.12.5", "@babel/runtime@^7.25.0", "@babel/runtime@^7.8.4": version "7.26.0" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1" integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw== dependencies: regenerator-runtime "^0.14.0" -"@babel/template@^7.22.15", "@babel/template@^7.24.0", "@babel/template@^7.3.3": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.0.tgz#c6a524aa93a4a05d66aaf31654258fae69d87d50" - integrity sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA== - dependencies: - "@babel/code-frame" "^7.23.5" - "@babel/parser" "^7.24.0" - "@babel/types" "^7.24.0" - -"@babel/template@^7.25.0", "@babel/template@^7.25.9": +"@babel/template@^7.25.0", "@babel/template@^7.25.9", "@babel/template@^7.3.3": version "7.25.9" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016" integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== @@ -1316,60 +1031,35 @@ "@babel/types" "^7.25.9" "@babel/traverse--for-generate-function-map@npm:@babel/traverse@^7.25.3": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84" - integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw== + version "7.26.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.4.tgz#ac3a2a84b908dde6d463c3bfa2c5fdc1653574bd" + integrity sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w== dependencies: - "@babel/code-frame" "^7.25.9" - "@babel/generator" "^7.25.9" - "@babel/parser" "^7.25.9" + "@babel/code-frame" "^7.26.2" + "@babel/generator" "^7.26.3" + "@babel/parser" "^7.26.3" "@babel/template" "^7.25.9" - "@babel/types" "^7.25.9" - debug "^4.3.1" - globals "^11.1.0" - -"@babel/traverse@^7.24.5": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.5.tgz#972aa0bc45f16983bf64aa1f877b2dd0eea7e6f8" - integrity sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA== - dependencies: - "@babel/code-frame" "^7.24.2" - "@babel/generator" "^7.24.5" - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-function-name" "^7.23.0" - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.24.5" - "@babel/parser" "^7.24.5" - "@babel/types" "^7.24.5" + "@babel/types" "^7.26.3" debug "^4.3.1" globals "^11.1.0" "@babel/traverse@^7.25.3", "@babel/traverse@^7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84" - integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw== + version "7.26.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.4.tgz#ac3a2a84b908dde6d463c3bfa2c5fdc1653574bd" + integrity sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w== dependencies: - "@babel/code-frame" "^7.25.9" - "@babel/generator" "^7.25.9" - "@babel/parser" "^7.25.9" + "@babel/code-frame" "^7.26.2" + "@babel/generator" "^7.26.3" + "@babel/parser" "^7.26.3" "@babel/template" "^7.25.9" - "@babel/types" "^7.25.9" + "@babel/types" "^7.26.3" debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.24.0", "@babel/types@^7.24.5", "@babel/types@^7.3.3", "@babel/types@^7.4.4": - version "7.24.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.5.tgz#7661930afc638a5383eb0c4aee59b74f38db84d7" - integrity sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ== - dependencies: - "@babel/helper-string-parser" "^7.24.1" - "@babel/helper-validator-identifier" "^7.24.5" - to-fast-properties "^2.0.0" - -"@babel/types@^7.25.2", "@babel/types@^7.25.9", "@babel/types@^7.26.0": - version "7.26.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff" - integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA== +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.25.2", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.26.3", "@babel/types@^7.3.3", "@babel/types@^7.4.4": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.3.tgz#37e79830f04c2b5687acc77db97fbc75fb81f3c0" + integrity sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA== dependencies: "@babel/helper-string-parser" "^7.25.9" "@babel/helper-validator-identifier" "^7.25.9" @@ -1380,21 +1070,16 @@ integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" - integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + version "4.4.1" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56" + integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== dependencies: - eslint-visitor-keys "^3.3.0" - -"@eslint-community/regexpp@^4.10.0": - version "4.11.1" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz#a547badfc719eb3e5f4b556325e542fbe9d7a18f" - integrity sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q== + eslint-visitor-keys "^3.4.3" -"@eslint-community/regexpp@^4.6.1": - version "4.10.0" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" - integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== +"@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.6.1": + version "4.12.1" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" + integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== "@eslint/eslintrc@^2.1.4": version "2.1.4" @@ -1411,10 +1096,15 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.57.0": - version "8.57.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f" - integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== +"@eslint/js@8.57.1": + version "8.57.1" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz#de633db3ec2ef6a3c89e2f19038063e8a122e2c2" + integrity sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q== + +"@flatten-js/interval-tree@^1.1.2": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@flatten-js/interval-tree/-/interval-tree-1.1.3.tgz#7d9b4bb92042c6bbcefae5bbb822b5ec3c073e88" + integrity sha512-xhFWUBoHJFF77cJO1D6REjdgJEMRf2Y2Z+eKEPav8evGKcLSnj1ud5pLXQSbGuxF3VSvT1rWhMfVpXEKJLTL+A== "@hapi/hoek@^9.0.0", "@hapi/hoek@^9.3.0": version "9.3.0" @@ -1428,12 +1118,12 @@ dependencies: "@hapi/hoek" "^9.0.0" -"@humanwhocodes/config-array@^0.11.14": - version "0.11.14" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" - integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== +"@humanwhocodes/config-array@^0.13.0": + version "0.13.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz#fb907624df3256d04b9aa2df50d7aa97ec648748" + integrity sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw== dependencies: - "@humanwhocodes/object-schema" "^2.0.2" + "@humanwhocodes/object-schema" "^2.0.3" debug "^4.3.1" minimatch "^3.0.5" @@ -1442,7 +1132,7 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== -"@humanwhocodes/object-schema@^2.0.2": +"@humanwhocodes/object-schema@^2.0.3": version "2.0.3" resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3" integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== @@ -1452,6 +1142,18 @@ resolved "https://registry.yarnpkg.com/@iabtcf/core/-/core-1.5.6.tgz#92568d89252fbf205aa65836703cb0a52e812382" integrity sha512-u2q9thI9vLurYZdGtyJsDYOqoeLc4EgQsYGSc+UVibYII61B/ENJPZS6eFlML1F0hSoTR/goptpo5nGRDkKd2w== +"@isaacs/cliui@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== + dependencies: + string-width "^5.1.2" + string-width-cjs "npm:string-width@^4.2.0" + strip-ansi "^7.0.1" + strip-ansi-cjs "npm:strip-ansi@^6.0.1" + wrap-ansi "^8.1.0" + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" + "@isaacs/ttlcache@^1.4.1": version "1.4.1" resolved "https://registry.yarnpkg.com/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz#21fb23db34e9b6220c6ba023a0118a2dd3461ea2" @@ -1684,9 +1386,9 @@ chalk "^4.0.0" "@jridgewell/gen-mapping@^0.3.5": - version "0.3.5" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" - integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + version "0.3.8" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz#4f0e06362e01362f823d348f1872b08f666d8142" + integrity sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA== dependencies: "@jridgewell/set-array" "^1.2.1" "@jridgewell/sourcemap-codec" "^1.4.10" @@ -1711,9 +1413,9 @@ "@jridgewell/trace-mapping" "^0.3.25" "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + version "1.5.0" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" + integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== "@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": version "0.3.25" @@ -1751,6 +1453,11 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== + "@react-native-community/cli-clean@15.0.1": version "15.0.1" resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-15.0.1.tgz#80ce09ffe0d62bb265447007f24dc8dcbf8fe7d3" @@ -1903,22 +1610,22 @@ prompts "^2.4.2" semver "^7.5.2" -"@react-native/assets-registry@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.76.2.tgz#c3cf689b336e008bec3a80976ae6a92aa34d616b" - integrity sha512-0CTWv/FqJzU1vsyx2JpCkyLSUOePU7DdKgFvtHdwOxFpOw3aBecszqZDGJADYV9WSZQlq6RV0HmIaWycGYCOMA== +"@react-native/assets-registry@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.76.5.tgz#3343338813aa6354df9fec52af50d0b5f7f3d013" + integrity sha512-MN5dasWo37MirVcKWuysRkRr4BjNc81SXwUtJYstwbn8oEkfnwR9DaqdDTo/hHOnTdhafffLIa2xOOHcjDIGEw== -"@react-native/babel-plugin-codegen@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.76.2.tgz#9a18112abbc9e4b8f6bcb2f45521f009c462984a" - integrity sha512-a1IfRho/ZUVbvzSu3JWkxsvqyEI7IXApPQikhGWw4e24QYsIYHdlIULs3rb0840lqpO1dbbuudfO7lmkpkbkMg== +"@react-native/babel-plugin-codegen@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.76.5.tgz#a7c32274351e51db9c0a7849ce8059940448c087" + integrity sha512-xe7HSQGop4bnOLMaXt0aU+rIatMNEQbz242SDl8V9vx5oOTI0VbZV9yLy6yBc6poUlYbcboF20YVjoRsxX4yww== dependencies: - "@react-native/codegen" "0.76.2" + "@react-native/codegen" "0.76.5" -"@react-native/babel-preset@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.76.2.tgz#3c4555012c612f8a849d407b3c91e63afe085c66" - integrity sha512-/kbxZqy70mGONv23uZg7lm7ZCE4dO5dgMzVPz6QsveXIRHQBRLsSC+9w2iZEnYWpLayoWFmTbq8ZG+4W32D3bA== +"@react-native/babel-preset@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.76.5.tgz#794ca17e1107e46712153f296a4930de2048e20e" + integrity sha512-1Nu5Um4EogOdppBLI4pfupkteTjWfmI0hqW8ezWTg7Bezw0FtBj8yS8UYVd3wTnDFT9A5mA2VNoNUqomJnvj2A== dependencies: "@babel/core" "^7.25.2" "@babel/plugin-proposal-export-default-from" "^7.24.7" @@ -1961,15 +1668,15 @@ "@babel/plugin-transform-typescript" "^7.25.2" "@babel/plugin-transform-unicode-regex" "^7.24.7" "@babel/template" "^7.25.0" - "@react-native/babel-plugin-codegen" "0.76.2" + "@react-native/babel-plugin-codegen" "0.76.5" babel-plugin-syntax-hermes-parser "^0.25.1" babel-plugin-transform-flow-enums "^0.0.2" react-refresh "^0.14.0" -"@react-native/codegen@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.76.2.tgz#b770d3522275717c4c2894a1f519749d5fd16733" - integrity sha512-rIgdI5mHHnNTzAeDYH+ivKMIcv6vr04Ol+TmX77n1HjJkzMhQqSHWcX+Pq9oiu7l2zKkymadrw6OPD8VPgre8g== +"@react-native/codegen@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.76.5.tgz#4d89ec14a023d6946dbc44537c39b03bd006db7b" + integrity sha512-FoZ9VRQ5MpgtDAnVo1rT9nNRfjnWpE40o1GeJSDlpUMttd36bVXvsDm8W/NhX8BKTWXSX+CPQJsRcvN1UPYGKg== dependencies: "@babel/parser" "^7.25.3" glob "^7.1.1" @@ -1980,13 +1687,13 @@ nullthrows "^1.1.1" yargs "^17.6.2" -"@react-native/community-cli-plugin@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.76.2.tgz#c12b42918eb5f8f85a08cf4d1f40ca1158dfc2ca" - integrity sha512-ZRL8oTGSMwXqTsVkRL9AVW8C/AZRnxCcFfhestsx//SrQt3J/hbtDOHTIGkkt5AEA0zEvb/UAAyIAN/wuN4llw== +"@react-native/community-cli-plugin@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.76.5.tgz#e701a9f99565504a2510d1b54713b1c5dd0f1bb4" + integrity sha512-3MKMnlU0cZOWlMhz5UG6WqACJiWUrE3XwBEumzbMmZw3Iw3h+fIsn+7kLLE5EhzqLt0hg5Y4cgYFi4kOaNgq+g== dependencies: - "@react-native/dev-middleware" "0.76.2" - "@react-native/metro-babel-transformer" "0.76.2" + "@react-native/dev-middleware" "0.76.5" + "@react-native/metro-babel-transformer" "0.76.5" chalk "^4.0.0" execa "^5.1.1" invariant "^2.2.4" @@ -1997,18 +1704,18 @@ readline "^1.3.0" semver "^7.1.3" -"@react-native/debugger-frontend@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.76.2.tgz#6fed871e1c87f2b5992c56625b7088f3cf477af4" - integrity sha512-FIcz24Oya2wIO7rZD3dxVyK8t5ZD6Fojl9o7lrjnTWqMedcevRTtdSOIAf4ypksYH/x7HypovE2Zp8U65Xv0Mw== +"@react-native/debugger-frontend@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.76.5.tgz#0e89940543fb5029506690b83f12547d0bf42cc4" + integrity sha512-5gtsLfBaSoa9WP8ToDb/8NnDBLZjv4sybQQj7rDKytKOdsXm3Pr2y4D7x7GQQtP1ZQRqzU0X0OZrhRz9xNnOqA== -"@react-native/dev-middleware@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.76.2.tgz#f73dd4032e6acaeb30a672c778420e3d4eb9e76f" - integrity sha512-qiowXpxofLk0lpIZps7fyyp9NiKlqBwh0R0yVub5l4EJcqjLonjsznYAHbusnPW9kb9MQSdovGPNv5b8RadJww== +"@react-native/dev-middleware@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.76.5.tgz#10d02fcc6c3c9d24f6dc147c2ef95d6fa6bd3787" + integrity sha512-f8eimsxpkvMgJia7POKoUu9uqjGF6KgkxX4zqr/a6eoR1qdEAWUd6PonSAqtag3PAqvEaJpB99gLH2ZJI1nDGg== dependencies: "@isaacs/ttlcache" "^1.4.1" - "@react-native/debugger-frontend" "0.76.2" + "@react-native/debugger-frontend" "0.76.5" chrome-launcher "^0.15.2" chromium-edge-launcher "^0.2.0" connect "^3.6.5" @@ -2019,14 +1726,14 @@ serve-static "^1.13.1" ws "^6.2.3" -"@react-native/eslint-config@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.76.2.tgz#2741eee69ff194b8adc15281c0cb9695ba015ef0" - integrity sha512-7w/WkBmBMTu+1i381Wi+XBNINAZaJcvcljShf26u2qXSiSY8pdXL2kb1pS+oZkD7KUDK2AnUbCkSp8hI7+lnyQ== +"@react-native/eslint-config@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.76.5.tgz#c22daaa8478e740b5e4d7e748ad33fe29628ec9e" + integrity sha512-FnzjnwuWrpuJaBfjLMEPtGe6dy3d2Mc3cnoOGF5ghDbpHP2JUHp1GoKRZdZpJlGXJyQTi8wULpyKK6v8jM0dOA== dependencies: "@babel/core" "^7.25.2" "@babel/eslint-parser" "^7.25.1" - "@react-native/eslint-plugin" "0.76.2" + "@react-native/eslint-plugin" "0.76.5" "@typescript-eslint/eslint-plugin" "^7.1.1" "@typescript-eslint/parser" "^7.1.1" eslint-config-prettier "^8.5.0" @@ -2036,57 +1743,56 @@ eslint-plugin-react "^7.30.1" eslint-plugin-react-hooks "^4.6.0" eslint-plugin-react-native "^4.0.0" - hermes-eslint "^0.23.1" -"@react-native/eslint-plugin@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.76.2.tgz#cc55f7a31a38675fc7f31195d8551872e9243419" - integrity sha512-KHNMyxSNgAY4K1bpeTb7E0iUkqQ3ujAIsBQ0DigAiDVuE2S3j29mq/t1jnuyqBYpw0uwkwGNqIwI7W+vSduEtw== +"@react-native/eslint-plugin@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.76.5.tgz#c7f1240ff85d539b62aec2f1ec950195da3a01b2" + integrity sha512-yAd3349bvWXlegStk6o/lOofRVmr/uSLNdAEsFXw18OlxjnBSx9U3teJtQNA91DfquQAcmSgf1lIBv+MUJ+fnw== -"@react-native/gradle-plugin@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.76.2.tgz#a06be606fadf9896f4302684aa5c1f2ae95f912b" - integrity sha512-KC5/uAeLoeD1dOjymx6gnNFHGGLB22xNYjrjrJNK5r0bw2O2KXp4rpB5VCT/2H5B48cVC0xPB7RIKOFrDHr5bQ== +"@react-native/gradle-plugin@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.76.5.tgz#90d55ec3a99c609358db97b2d7444b28fdc35bc0" + integrity sha512-7KSyD0g0KhbngITduC8OABn0MAlJfwjIdze7nA4Oe1q3R7qmAv+wQzW+UEXvPah8m1WqFjYTkQwz/4mK3XrQGw== -"@react-native/js-polyfills@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.76.2.tgz#2ae509d2cafba8291baf3f8b54a761e08d6fa97d" - integrity sha512-OXunyNn33fa7gQ6iU5rQcYZQsO7OkJIAr/TgVdoHxpOB4i+ZGsfv6df3JKriBVT1ZZm6ZTlKyIa4QpLq3p0dmw== +"@react-native/js-polyfills@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.76.5.tgz#8f35696d96f804de589cd38382c4f0ffbbc248d5" + integrity sha512-ggM8tcKTcaqyKQcXMIvcB0vVfqr9ZRhWVxWIdiFO1mPvJyS6n+a+lLGkgQAyO8pfH0R1qw6K9D0nqbbDo865WQ== -"@react-native/metro-babel-transformer@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.76.2.tgz#7645512527cae774f6c34d60718870178e9833df" - integrity sha512-OIYhmWfN+HDyQLzoEg+2P0h7OopYk4djggg0M+k5e1a+g2dFNJILO/BsDobM8uLA8hAzClAJyJLZbPo5jeqdMA== +"@react-native/metro-babel-transformer@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.76.5.tgz#ed5a05fff34c47af43eba4069e50be7c486f77bd" + integrity sha512-Cm9G5Sg5BDty3/MKa3vbCAJtT3YHhlEaPlQALLykju7qBS+pHZV9bE9hocfyyvc5N/osTIGWxG5YOfqTeMu1oQ== dependencies: "@babel/core" "^7.25.2" - "@react-native/babel-preset" "0.76.2" + "@react-native/babel-preset" "0.76.5" hermes-parser "0.23.1" nullthrows "^1.1.1" -"@react-native/metro-config@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.76.2.tgz#fb6c420a45cc61b32fcd4bcac898fca3f54f81f3" - integrity sha512-BKPYj0iq2qCygnz3JlgKVrTuHGi7VwKo2gIRhM9pqdQngEbqXvlRkiWaecqPeuG9JXJ90siPinjxn1N2M935hQ== +"@react-native/metro-config@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.76.5.tgz#0e6ecbb5eca47e827e977a9fe1b57978df2d611d" + integrity sha512-+bklxpRj1BAFzAwOI29MjdddwlC6wTJYlnMK9a77GiowELNeRO4R8UD1dRepOoSVpPFfFlLbFiqYQXqBrbl1pA== dependencies: - "@react-native/js-polyfills" "0.76.2" - "@react-native/metro-babel-transformer" "0.76.2" + "@react-native/js-polyfills" "0.76.5" + "@react-native/metro-babel-transformer" "0.76.5" metro-config "^0.81.0" metro-runtime "^0.81.0" -"@react-native/normalize-colors@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.76.2.tgz#015fa1d454ec605153c8af05666185026e682e66" - integrity sha512-ICoOpaTLPsFQjNLSM00NgQr6wal300cZZonHVSDXKntX+BfkLeuCHRtr/Mn+klTtW+/1v2/2FRm9dXjvyGf9Dw== +"@react-native/normalize-colors@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.76.5.tgz#a33560736311aefcf1d3cb594597befe81a9a53c" + integrity sha512-6QRLEok1r55gLqj+94mEWUENuU5A6wsr2OoXpyq/CgQ7THWowbHtru/kRGRr6o3AQXrVnZheR60JNgFcpNYIug== -"@react-native/typescript-config@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.76.2.tgz#e1fdc082fea5e4676fef195676b36cd8b6a40c33" - integrity sha512-sW1MG8ZQp7Jk9C0BeR3GTyXQYzAlRL/VcUjuer+Adou2FdHueqhm56LQelAsO8RyzO/FCj2WdUnd+9K098RBhQ== +"@react-native/typescript-config@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.76.5.tgz#45ec2459404de5c0b16beec727e8f4cb9e138a29" + integrity sha512-dRbY4XQTUUxR5Oq+S+2/5JQVU6WL0qvNnAz51jiXllC+hp5L4bljSxlzaj5CJ9vzGNFzm56m5Y9Q6MltoIU4Cw== -"@react-native/virtualized-lists@0.76.2": - version "0.76.2" - resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.76.2.tgz#2b9f720323d828cdd0f1ef5d26f700cfd44b5e89" - integrity sha512-FzXvkHgKvJGf0pSuLy6878cxJ6mxWKgZsH9s2kO4LWJocI8Bi3ViDx7IGAWYuvN+Fnue5TKaqGPhfD+4XrKtYQ== +"@react-native/virtualized-lists@0.76.5": + version "0.76.5" + resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.76.5.tgz#394c2d48687db30c79278d183fda8a129a2d24d3" + integrity sha512-M/fW1fTwxrHbcx0OiVOIxzG6rKC0j9cR9Csf80o77y1Xry0yrNPpAlf8D1ev3LvHsiAUiRNFlauoPtodrs2J1A== dependencies: invariant "^2.2.4" nullthrows "^1.1.1" @@ -2120,7 +1826,7 @@ dependencies: type-detect "4.0.8" -"@sinonjs/commons@^3.0.0": +"@sinonjs/commons@^3.0.0", "@sinonjs/commons@^3.0.1": version "3.0.1" resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.1.tgz#1029357e44ca901a615585f6d27738dbc89084cd" integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ== @@ -2135,11 +1841,11 @@ "@sinonjs/commons" "^3.0.0" "@sinonjs/fake-timers@^11.2.2": - version "11.2.2" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-11.2.2.tgz#50063cc3574f4a27bd8453180a04171c85cc9699" - integrity sha512-G2piCSxQ7oWOxwGSAyFHfPIsyeJGXYtc6mFbnFA+kRXkiEnTl8c/8jul2S329iFBnDI9HGoeWWAZvuvOkZccgw== + version "11.3.1" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-11.3.1.tgz#51d6e8d83ca261ff02c0ab0e68e9db23d5cd5999" + integrity sha512-EVJO7nW5M/F5Tur0Rf2z/QoMo+1Ia963RiMtapiQrEWvY0iBUvADo8Beegwjpnle5BHkyHuoxSTW3jF43H1XRA== dependencies: - "@sinonjs/commons" "^3.0.0" + "@sinonjs/commons" "^3.0.1" "@sinonjs/fake-timers@^7.1.2": version "7.1.2" @@ -2158,9 +1864,9 @@ type-detect "^4.0.8" "@sinonjs/text-encoding@^0.7.2": - version "0.7.2" - resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz#5981a8db18b56ba38ef0efb7d995b12aa7b51918" - integrity sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ== + version "0.7.3" + resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.3.tgz#282046f03e886e352b2d5f5da5eb755e01457f3f" + integrity sha512-DE427ROAphMQzU4ENbliGYrBSYPXF+TtLg9S8vzeA+OF4ZKzoDdzfL8sxuMUGS/lgRhM6j1URSk9ghf7Xo1tyA== "@types/babel__core@^7.1.14": version "7.20.5" @@ -2234,28 +1940,28 @@ "@types/node" "*" "@types/node@*": - version "20.12.12" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.12.tgz#7cbecdf902085cec634fdb362172dfe12b8f2050" - integrity sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw== + version "22.10.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.10.2.tgz#a485426e6d1fdafc7b0d4c7b24e2c78182ddabb9" + integrity sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ== dependencies: - undici-types "~5.26.4" + undici-types "~6.20.0" "@types/prop-types@*": - version "15.7.12" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.12.tgz#12bb1e2be27293c1406acb6af1c3f3a1481d98c6" - integrity sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q== + version "15.7.14" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.14.tgz#1433419d73b2a7ebfc6918dcefd2ec0d5cd698f2" + integrity sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ== "@types/react-test-renderer@^18.0.0": - version "18.3.0" - resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-18.3.0.tgz#839502eae70058a4ae161f63385a8e7929cef4c0" - integrity sha512-HW4MuEYxfDbOHQsVlY/XtOvNHftCVEPhJF2pQXXwcUiUF+Oyb0usgp48HSgpK5rt8m9KZb22yqOeZm+rrVG8gw== + version "18.3.1" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-18.3.1.tgz#225bfe8d4ad7ee3b04c2fa27642bb74274a5961d" + integrity sha512-vAhnk0tG2eGa37lkU9+s5SoroCsRI08xnsWFiAXOuPH2jqzMbcXvKExXViPi1P5fIklDeCvXqyrdmipFaSkZrA== dependencies: - "@types/react" "*" + "@types/react" "^18" -"@types/react@*", "@types/react@^18.2.6": - version "18.3.3" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.3.tgz#9679020895318b0915d7a3ab004d92d33375c45f" - integrity sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw== +"@types/react@^18", "@types/react@^18.2.6": + version "18.3.18" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.18.tgz#9b382c4cd32e13e463f97df07c2ee3bbcd26904b" + integrity sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ== dependencies: "@types/prop-types" "*" csstype "^3.0.2" @@ -2283,9 +1989,9 @@ "@types/yargs-parser" "*" "@types/yargs@^17.0.8": - version "17.0.32" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" - integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== + version "17.0.33" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.33.tgz#8c32303da83eec050a84b3c7ae7b9f922d13e32d" + integrity sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA== dependencies: "@types/yargs-parser" "*" @@ -2419,9 +2125,9 @@ eslint-visitor-keys "^3.4.3" "@ungap/structured-clone@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" - integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + version "1.2.1" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.1.tgz#28fa185f67daaf7b7a1a8c1d445132c5d979f8bd" + integrity sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA== "@yarnpkg/lockfile@^1.1.0": version "1.1.0" @@ -2435,7 +2141,7 @@ abort-controller@^3.0.0: dependencies: event-target-shim "^5.0.0" -accepts@^1.3.7, accepts@~1.3.5, accepts@~1.3.7: +accepts@^1.3.7, accepts@~1.3.7: version "1.3.8" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== @@ -2449,9 +2155,9 @@ acorn-jsx@^5.3.2: integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== acorn@^8.8.2, acorn@^8.9.0: - version "8.11.3" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" - integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== + version "8.14.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== ajv@^6.12.4: version "6.12.6" @@ -2464,24 +2170,24 @@ ajv@^6.12.4: uri-js "^4.2.2" ajv@^8.6.3: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.13.0.tgz#a3939eaec9fb80d217ddf0c3376948c023f28c91" - integrity sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA== + version "8.17.1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" + integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== dependencies: fast-deep-equal "^3.1.3" + fast-uri "^3.0.1" json-schema-traverse "^1.0.0" require-from-string "^2.0.2" - uri-js "^4.4.1" anser@^1.4.9: version "1.4.10" resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" integrity sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww== -ansi-colors@4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" - integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== +ansi-colors@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== ansi-escapes@^4.2.1: version "4.3.2" @@ -2509,7 +2215,12 @@ ansi-regex@^5.0.0, ansi-regex@^5.0.1: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-styles@^3.2.0, ansi-styles@^3.2.1: +ansi-regex@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.1.0.tgz#95ec409c69619d6cb1b8b34f14b660ef28ebd654" + integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== + +ansi-styles@^3.2.0: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== @@ -2528,6 +2239,11 @@ ansi-styles@^5.0.0: resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== +ansi-styles@^6.1.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + anymatch@^3.0.3, anymatch@~3.1.2: version "3.1.3" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" @@ -2553,15 +2269,15 @@ argparse@^2.0.1: resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -array-buffer-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" - integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== +array-buffer-byte-length@^1.0.1, array-buffer-byte-length@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz#384d12a37295aec3769ab022ad323a18a51ccf8b" + integrity sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw== dependencies: - call-bind "^1.0.5" - is-array-buffer "^3.0.4" + call-bound "^1.0.3" + is-array-buffer "^3.0.5" -array-includes@^3.1.6, array-includes@^3.1.7: +array-includes@^3.1.6, array-includes@^3.1.8: version "3.1.8" resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d" integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ== @@ -2578,7 +2294,7 @@ array-union@^2.1.0: resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== -array.prototype.findlast@^1.2.4: +array.prototype.findlast@^1.2.5: version "1.2.5" resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz#3e4fbcb30a15a7f5bf64cf2faae22d139c2e4904" integrity sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ== @@ -2591,59 +2307,48 @@ array.prototype.findlast@^1.2.4: es-shim-unscopables "^1.0.2" array.prototype.flat@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18" - integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - es-shim-unscopables "^1.0.0" - -array.prototype.flatmap@^1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527" - integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== + version "1.3.3" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz#534aaf9e6e8dd79fb6b9a9917f839ef1ec63afe5" + integrity sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - es-shim-unscopables "^1.0.0" + call-bind "^1.0.8" + define-properties "^1.2.1" + es-abstract "^1.23.5" + es-shim-unscopables "^1.0.2" -array.prototype.toreversed@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz#b989a6bf35c4c5051e1dc0325151bf8088954eba" - integrity sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA== +array.prototype.flatmap@^1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz#712cc792ae70370ae40586264629e33aab5dd38b" + integrity sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - es-shim-unscopables "^1.0.0" + call-bind "^1.0.8" + define-properties "^1.2.1" + es-abstract "^1.23.5" + es-shim-unscopables "^1.0.2" -array.prototype.tosorted@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz#c8c89348337e51b8a3c48a9227f9ce93ceedcba8" - integrity sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg== +array.prototype.tosorted@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz#fe954678ff53034e717ea3352a03f0b0b86f7ffc" + integrity sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA== dependencies: - call-bind "^1.0.5" + call-bind "^1.0.7" define-properties "^1.2.1" - es-abstract "^1.22.3" - es-errors "^1.1.0" + es-abstract "^1.23.3" + es-errors "^1.3.0" es-shim-unscopables "^1.0.2" -arraybuffer.prototype.slice@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" - integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== +arraybuffer.prototype.slice@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz#9d760d84dbdd06d0cbf92c8849615a1a7ab3183c" + integrity sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ== dependencies: array-buffer-byte-length "^1.0.1" - call-bind "^1.0.5" + call-bind "^1.0.8" define-properties "^1.2.1" - es-abstract "^1.22.3" - es-errors "^1.2.1" - get-intrinsic "^1.2.3" + es-abstract "^1.23.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.6" is-array-buffer "^3.0.4" - is-shared-array-buffer "^1.0.2" asap@~2.0.6: version "2.0.6" @@ -2719,12 +2424,12 @@ babel-plugin-jest-hoist@^29.6.3: "@types/babel__traverse" "^7.0.6" babel-plugin-polyfill-corejs2@^0.4.10: - version "0.4.11" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33" - integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== + version "0.4.12" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz#ca55bbec8ab0edeeef3d7b8ffd75322e210879a9" + integrity sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og== dependencies: "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.6.2" + "@babel/helper-define-polyfill-provider" "^0.6.3" semver "^6.3.1" babel-plugin-polyfill-corejs3@^0.10.6: @@ -2736,11 +2441,11 @@ babel-plugin-polyfill-corejs3@^0.10.6: core-js-compat "^3.38.0" babel-plugin-polyfill-regenerator@^0.6.1: - version "0.6.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz#addc47e240edd1da1058ebda03021f382bba785e" - integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== + version "0.6.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz#abeb1f3f1c762eace37587f42548b08b57789bc8" + integrity sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q== dependencies: - "@babel/helper-define-polyfill-provider" "^0.6.2" + "@babel/helper-define-polyfill-provider" "^0.6.3" babel-plugin-syntax-hermes-parser@^0.23.1: version "0.23.1" @@ -2764,22 +2469,25 @@ babel-plugin-transform-flow-enums@^0.0.2: "@babel/plugin-syntax-flow" "^7.12.1" babel-preset-current-node-syntax@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" - integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== + version "1.1.0" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz#9a929eafece419612ef4ae4f60b1862ebad8ef30" + integrity sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw== dependencies: "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-bigint" "^7.8.3" - "@babel/plugin-syntax-class-properties" "^7.8.3" - "@babel/plugin-syntax-import-meta" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-import-attributes" "^7.24.7" + "@babel/plugin-syntax-import-meta" "^7.10.4" "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-top-level-await" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" babel-preset-jest@^29.6.3: version "29.6.3" @@ -2840,29 +2548,24 @@ braces@^3.0.3, braces@~3.0.2: dependencies: fill-range "^7.1.1" -browser-stdout@1.3.1: +browser-process-hrtime@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== + +browser-stdout@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== -browserslist@^4.22.2: - version "4.23.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" - integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== - dependencies: - caniuse-lite "^1.0.30001587" - electron-to-chromium "^1.4.668" - node-releases "^2.0.14" - update-browserslist-db "^1.0.13" - browserslist@^4.24.0, browserslist@^4.24.2: - version "4.24.2" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580" - integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== + version "4.24.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.3.tgz#5fc2725ca8fb3c1432e13dac278c7cc103e026d2" + integrity sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA== dependencies: - caniuse-lite "^1.0.30001669" - electron-to-chromium "^1.5.41" - node-releases "^2.0.18" + caniuse-lite "^1.0.30001688" + electron-to-chromium "^1.5.73" + node-releases "^2.0.19" update-browserslist-db "^1.1.1" bser@2.1.1: @@ -2885,13 +2588,22 @@ buffer@^5.5.0: base64-js "^1.3.1" ieee754 "^1.1.13" -bunyan-debug-stream@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/bunyan-debug-stream/-/bunyan-debug-stream-2.0.1.tgz#9bd7c7e30c7b2cf711317e9d37529b0464c3b164" - integrity sha512-MCEoqggU7NMt7f2O+PU8VkqfSkoQoa4lmN/OWhaRfqFRBF1Se2TOXQyLF6NxC+EtfrdthnquQe8jOe83fpEoGA== +bunyamin@^1.5.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/bunyamin/-/bunyamin-1.6.3.tgz#fd319bae316223014390386ecdb00739bebacc68" + integrity sha512-m1hAijFhu8pFiidsVc0XEDic46uxPK+mKNLqkb5mluNx0nTolNzx/DjwMqHChQWCgfOLMjKYJJ2uPTQLE6t4Ng== dependencies: - colors "1.4.0" - exception-formatter "^1.0.4" + "@flatten-js/interval-tree" "^1.1.2" + multi-sort-stream "^1.0.4" + stream-json "^1.7.5" + trace-event-lib "^1.3.1" + +bunyan-debug-stream@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/bunyan-debug-stream/-/bunyan-debug-stream-3.1.0.tgz#78309c67ad85cfb8f011155334152c49209dcda8" + integrity sha512-VaFYbDVdiSn3ZpdozrjZ8mFpxHXl26t11C1DKRQtbo0EgffqeFNrRLOGIESKVeGEvVu4qMxMSSxzNlSw7oTj7w== + dependencies: + chalk "^4.1.2" bunyan@^1.8.12: version "1.8.15" @@ -2903,21 +2615,53 @@ bunyan@^1.8.12: mv "~2" safe-json-stringify "~1" -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== +bunyan@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/bunyan/-/bunyan-2.0.5.tgz#9dd056755220dddd8b5bb9cf76f3d0d766e96e71" + integrity sha512-Jvl74TdxCN6rSP9W1I6+UOUtwslTDqsSFkDqZlFb/ilaSvQ+bZAnXT/GT97IZ5L+Vph0joPZPhxUyn6FLNmFAA== + dependencies: + exeunt "1.1.0" + optionalDependencies: + dtrace-provider "~0.8" + moment "^2.19.3" + mv "~2" + safe-json-stringify "~1" -call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +caf@^15.0.1: + version "15.0.1" + resolved "https://registry.yarnpkg.com/caf/-/caf-15.0.1.tgz#28f1f17bd93dc4b5d95207ad07066eddf4768160" + integrity sha512-Xp/IK6vMwujxWZXra7djdYzPdPnEQKa7Mudu2wZgDQ3TJry1I0TgtjEgwZHpoBcMp68j4fb0/FZ1SJyMEgJrXQ== + +call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840" + integrity sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g== dependencies: - es-define-property "^1.0.0" es-errors "^1.3.0" function-bind "^1.1.2" + +call-bind@^1.0.7, call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" get-intrinsic "^1.2.4" - set-function-length "^1.2.1" + set-function-length "^1.2.2" + +call-bound@^1.0.2, call-bound@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.3.tgz#41cfd032b593e39176a71533ab4f384aa04fd681" + integrity sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA== + dependencies: + call-bind-apply-helpers "^1.0.1" + get-intrinsic "^1.2.6" caller-callsite@^2.0.0: version "2.0.0" @@ -2953,24 +2697,10 @@ camelcase@^6.0.0, camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001587: - version "1.0.30001621" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001621.tgz#4adcb443c8b9c8303e04498318f987616b8fea2e" - integrity sha512-+NLXZiviFFKX0fk8Piwv3PfLPGtRqJeq2TiNoUff/qB5KJgwecJTvCXDpmlyP/eCI/GUEmp/h/y5j0yckiiZrA== - -caniuse-lite@^1.0.30001669: - version "1.0.30001676" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001676.tgz#fe133d41fe74af8f7cc93b8a714c3e86a86e6f04" - integrity sha512-Qz6zwGCiPghQXGJvgQAem79esjitvJ+CxSbSQkW9H/UX5hg8XM88d4lp2W+MEQ81j+Hip58Il+jGVdazk1z9cw== - -chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" +caniuse-lite@^1.0.30001688: + version "1.0.30001690" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz#f2d15e3aaf8e18f76b2b8c1481abde063b8104c8" + integrity sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w== chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" @@ -2994,10 +2724,10 @@ child-process-promise@^2.2.0: node-version "^1.0.0" promise-polyfill "^6.0.1" -chokidar@3.5.3: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== +chokidar@^3.5.3: + version "3.6.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== dependencies: anymatch "~3.1.2" braces "~3.0.2" @@ -3042,9 +2772,9 @@ ci-info@^3.2.0, ci-info@^3.7.0: integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== cjs-module-lexer@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz#c485341ae8fd999ca4ee5af2d7a1c9ae01e0099c" - integrity sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q== + version "1.4.1" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz#707413784dbb3a72aa11c2f2b042a0bef4004170" + integrity sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA== cli-cursor@^3.1.0: version "3.1.0" @@ -3138,11 +2868,6 @@ colorette@^1.0.7: resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== -colors@1.4.0, colors@^1.0.3: - version "1.4.0" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" - integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== - command-exists@^1.2.8: version "1.2.9" resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.9.tgz#c50725af3808c8ab0260fd60b01fbfa25b954f69" @@ -3168,7 +2893,7 @@ commondir@^1.0.1: resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== -compressible@~2.0.16: +compressible@~2.0.18: version "2.0.18" resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== @@ -3176,16 +2901,16 @@ compressible@~2.0.16: mime-db ">= 1.43.0 < 2" compression@^1.7.1: - version "1.7.4" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + version "1.7.5" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.5.tgz#fdd256c0a642e39e314c478f6c2cd654edd74c93" + integrity sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q== dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" + bytes "3.1.2" + compressible "~2.0.18" debug "2.6.9" + negotiator "~0.6.4" on-headers "~1.0.2" - safe-buffer "5.1.2" + safe-buffer "5.2.1" vary "~1.1.2" concat-map@0.0.1: @@ -3261,10 +2986,10 @@ cross-spawn@^4.0.2: lru-cache "^4.0.1" which "^1.2.9" -cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== +cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" @@ -3275,37 +3000,37 @@ csstype@^3.0.2: resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== -data-view-buffer@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" - integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== +data-view-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz#211a03ba95ecaf7798a8c7198d79536211f88570" + integrity sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ== dependencies: - call-bind "^1.0.6" + call-bound "^1.0.3" es-errors "^1.3.0" - is-data-view "^1.0.1" + is-data-view "^1.0.2" -data-view-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" - integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== +data-view-byte-length@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz#9e80f7ca52453ce3e93d25a35318767ea7704735" + integrity sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ== dependencies: - call-bind "^1.0.7" + call-bound "^1.0.3" es-errors "^1.3.0" - is-data-view "^1.0.1" + is-data-view "^1.0.2" -data-view-byte-offset@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" - integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== +data-view-byte-offset@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz#068307f9b71ab76dbbe10291389e020856606191" + integrity sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ== dependencies: - call-bind "^1.0.6" + call-bound "^1.0.2" es-errors "^1.3.0" is-data-view "^1.0.1" dayjs@^1.8.15: - version "1.11.11" - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.11.tgz#dfe0e9d54c5f8b68ccf8ca5f72ac603e7e5ed59e" - integrity sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg== + version "1.11.13" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c" + integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg== debug@2.6.9, debug@^2.2.0, debug@^2.6.9: version "2.6.9" @@ -3314,12 +3039,12 @@ debug@2.6.9, debug@^2.2.0, debug@^2.6.9: dependencies: ms "2.0.0" -debug@4.3.4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== +debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5: + version "4.4.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" + integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== dependencies: - ms "2.1.2" + ms "^2.1.3" decamelize@^1.2.0: version "1.2.0" @@ -3362,7 +3087,7 @@ define-data-property@^1.0.1, define-data-property@^1.1.4: es-errors "^1.3.0" gopd "^1.0.1" -define-properties@^1.2.0, define-properties@^1.2.1: +define-properties@^1.1.3, define-properties@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== @@ -3396,22 +3121,35 @@ detect-newline@^3.0.0: resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== -detox@^19: - version "19.13.0" - resolved "https://registry.yarnpkg.com/detox/-/detox-19.13.0.tgz#6eae8b4e5ef5ca913d465ddc5bd7855fe8834c5c" - integrity sha512-tKg0m5wlb4r1MISFtqPFXwdLncXWQhWaoAV6nuC3MmBGcJnTSrSa7wNZG26HhfEeR8c6eRUqMFHKefiZnWoO1Q== +detox-copilot@^0.0.27: + version "0.0.27" + resolved "https://registry.yarnpkg.com/detox-copilot/-/detox-copilot-0.0.27.tgz#350ee91ae6ba77acac78513ccbda7aafcb3c6faf" + integrity sha512-H2febTNp0arVx2A8rvM1C2BwDiBEP/2Ya8Hd1mVyV66rR5u8om1gdIypaRGm+plpTLCHhlefe4+7qLtHgVzpng== + +detox@^20.31.0: + version "20.31.0" + resolved "https://registry.yarnpkg.com/detox/-/detox-20.31.0.tgz#55a286b7431b150d23d25702e13ad977fc005c6c" + integrity sha512-6Vsm/o8hElUYuZrBOYDNfkxEU+8q1CZ38wg/st8e1guOaDamIO/5u4hVUHVmId381/3bxfTvC6cO5WgW6BXmUQ== dependencies: ajv "^8.6.3" bunyan "^1.8.12" - bunyan-debug-stream "^2.0.1" - chalk "^2.4.2" + bunyan-debug-stream "^3.1.0" + caf "^15.0.1" + chalk "^4.0.0" child-process-promise "^2.2.0" - find-up "^4.1.0" - fs-extra "^4.0.2" - funpermaproxy "^1.0.1" + detox-copilot "^0.0.27" + execa "^5.1.1" + find-up "^5.0.0" + fs-extra "^11.0.0" + funpermaproxy "^1.1.0" + glob "^8.0.3" ini "^1.3.4" - lodash "^4.17.5" - minimist "^1.2.0" + jest-environment-emit "^1.0.8" + json-cycle "^1.3.0" + lodash "^4.17.11" + multi-sort-stream "^1.0.3" + multipipe "^4.0.0" + node-ipc "9.2.1" proper-lockfile "^3.0.2" resolve-from "^5.0.0" sanitize-filename "^1.6.1" @@ -3419,13 +3157,15 @@ detox@^19: serialize-error "^8.0.1" shell-quote "^1.7.2" signal-exit "^3.0.3" - tail "^2.0.0" + stream-json "^1.7.4" + strip-ansi "^6.0.1" telnet-client "1.2.8" tempfile "^2.0.0" + trace-event-lib "^1.3.1" which "^1.3.1" ws "^7.0.0" - yargs "^16.0.3" - yargs-parser "^20.2.2" + yargs "^17.0.0" + yargs-parser "^21.0.0" yargs-unparser "^2.0.0" diff-sequences@^29.6.3: @@ -3433,12 +3173,7 @@ diff-sequences@^29.6.3: resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== -diff@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" - integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== - -diff@^5.0.0: +diff@^5.0.0, diff@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531" integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A== @@ -3471,20 +3206,41 @@ dtrace-provider@~0.8: dependencies: nan "^2.14.0" +dunder-proto@^1.0.0, dunder-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== + dependencies: + call-bind-apply-helpers "^1.0.1" + es-errors "^1.3.0" + gopd "^1.2.0" + +duplexer2@^0.1.2: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" + integrity sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA== + dependencies: + readable-stream "^2.0.2" + +eastasianwidth@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + +easy-stack@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/easy-stack/-/easy-stack-1.0.1.tgz#8afe4264626988cabb11f3c704ccd0c835411066" + integrity sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w== + ee-first@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== -electron-to-chromium@^1.4.668: - version "1.4.782" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.782.tgz#726d7916f0f0a80524c2a2a19e5dceb60d35ce0e" - integrity sha512-JUfU61e8tr+i5Y1FKXcKs+Xe+rJ+CEqm4cgv1kMihPE2EvYHmYyVr3Im/+1+Z5B29Be2EEGCZCwAc6Tazdl1Yg== - -electron-to-chromium@^1.5.41: - version "1.5.50" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.50.tgz#d9ba818da7b2b5ef1f3dd32bce7046feb7e93234" - integrity sha512-eMVObiUQ2LdgeO1F/ySTXsvqvxb6ZH2zPGaMYsWzRDdOddUa77tdmI0ltg+L16UpbWdhPmuF3wIQYyQq65WfZw== +electron-to-chromium@^1.5.73: + version "1.5.76" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.76.tgz#db20295c5061b68f07c8ea4dfcbd701485d94a3d" + integrity sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ== emittery@^0.13.1: version "0.13.1" @@ -3496,11 +3252,21 @@ emoji-regex@^8.0.0: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + encodeurl@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== +encodeurl@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" + integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== + env-paths@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" @@ -3533,89 +3299,92 @@ errorhandler@^1.5.1: accepts "~1.3.7" escape-html "~1.0.3" -es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.1, es-abstract@^1.23.2, es-abstract@^1.23.3: - version "1.23.3" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" - integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== +es-abstract@^1.17.5, es-abstract@^1.23.2, es-abstract@^1.23.3, es-abstract@^1.23.5, es-abstract@^1.23.6: + version "1.23.8" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.8.tgz#99754723118355d82fcef9ce4c90ccbcd5d2a285" + integrity sha512-lfab8IzDn6EpI1ibZakcgS6WsfEBiB+43cuJo+wgylx1xKXf+Sp+YR3vFuQwC/u3sxYwV8Cxe3B0DpVUu/WiJQ== dependencies: - array-buffer-byte-length "^1.0.1" - arraybuffer.prototype.slice "^1.0.3" + array-buffer-byte-length "^1.0.2" + arraybuffer.prototype.slice "^1.0.4" available-typed-arrays "^1.0.7" - call-bind "^1.0.7" - data-view-buffer "^1.0.1" - data-view-byte-length "^1.0.1" - data-view-byte-offset "^1.0.0" - es-define-property "^1.0.0" + call-bind "^1.0.8" + call-bound "^1.0.3" + data-view-buffer "^1.0.2" + data-view-byte-length "^1.0.2" + data-view-byte-offset "^1.0.1" + es-define-property "^1.0.1" es-errors "^1.3.0" es-object-atoms "^1.0.0" es-set-tostringtag "^2.0.3" - es-to-primitive "^1.2.1" - function.prototype.name "^1.1.6" - get-intrinsic "^1.2.4" - get-symbol-description "^1.0.2" - globalthis "^1.0.3" - gopd "^1.0.1" + es-to-primitive "^1.3.0" + function.prototype.name "^1.1.8" + get-intrinsic "^1.2.6" + get-symbol-description "^1.1.0" + globalthis "^1.0.4" + gopd "^1.2.0" has-property-descriptors "^1.0.2" - has-proto "^1.0.3" - has-symbols "^1.0.3" + has-proto "^1.2.0" + has-symbols "^1.1.0" hasown "^2.0.2" - internal-slot "^1.0.7" - is-array-buffer "^3.0.4" + internal-slot "^1.1.0" + is-array-buffer "^3.0.5" is-callable "^1.2.7" - is-data-view "^1.0.1" - is-negative-zero "^2.0.3" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.3" - is-string "^1.0.7" - is-typed-array "^1.1.13" - is-weakref "^1.0.2" - object-inspect "^1.13.1" + is-data-view "^1.0.2" + is-regex "^1.2.1" + is-shared-array-buffer "^1.0.4" + is-string "^1.1.1" + is-typed-array "^1.1.15" + is-weakref "^1.1.0" + math-intrinsics "^1.1.0" + object-inspect "^1.13.3" object-keys "^1.1.1" - object.assign "^4.1.5" - regexp.prototype.flags "^1.5.2" - safe-array-concat "^1.1.2" - safe-regex-test "^1.0.3" - string.prototype.trim "^1.2.9" - string.prototype.trimend "^1.0.8" + object.assign "^4.1.7" + own-keys "^1.0.0" + regexp.prototype.flags "^1.5.3" + safe-array-concat "^1.1.3" + safe-push-apply "^1.0.0" + safe-regex-test "^1.1.0" + string.prototype.trim "^1.2.10" + string.prototype.trimend "^1.0.9" string.prototype.trimstart "^1.0.8" - typed-array-buffer "^1.0.2" - typed-array-byte-length "^1.0.1" - typed-array-byte-offset "^1.0.2" - typed-array-length "^1.0.6" - unbox-primitive "^1.0.2" - which-typed-array "^1.1.15" - -es-define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== - dependencies: - get-intrinsic "^1.2.4" + typed-array-buffer "^1.0.3" + typed-array-byte-length "^1.0.3" + typed-array-byte-offset "^1.0.4" + typed-array-length "^1.0.7" + unbox-primitive "^1.1.0" + which-typed-array "^1.1.18" + +es-define-property@^1.0.0, es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== -es-errors@^1.1.0, es-errors@^1.2.1, es-errors@^1.3.0: +es-errors@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== -es-iterator-helpers@^1.0.17: - version "1.0.19" - resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz#117003d0e5fec237b4b5c08aded722e0c6d50ca8" - integrity sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw== +es-iterator-helpers@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz#d1dd0f58129054c0ad922e6a9a1e65eef435fe75" + integrity sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.3" define-properties "^1.2.1" - es-abstract "^1.23.3" + es-abstract "^1.23.6" es-errors "^1.3.0" es-set-tostringtag "^2.0.3" function-bind "^1.1.2" - get-intrinsic "^1.2.4" - globalthis "^1.0.3" + get-intrinsic "^1.2.6" + globalthis "^1.0.4" + gopd "^1.2.0" has-property-descriptors "^1.0.2" - has-proto "^1.0.3" - has-symbols "^1.0.3" - internal-slot "^1.0.7" - iterator.prototype "^1.1.2" - safe-array-concat "^1.1.2" + has-proto "^1.2.0" + has-symbols "^1.1.0" + internal-slot "^1.1.0" + iterator.prototype "^1.1.4" + safe-array-concat "^1.1.3" es-object-atoms@^1.0.0: version "1.0.0" @@ -3633,28 +3402,23 @@ es-set-tostringtag@^2.0.3: has-tostringtag "^1.0.2" hasown "^2.0.1" -es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2: +es-shim-unscopables@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== dependencies: hasown "^2.0.0" -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== +es-to-primitive@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz#96c89c82cc49fd8794a24835ba3e1ff87f214e18" + integrity sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g== dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -escalade@^3.1.1, escalade@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" - integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + is-callable "^1.2.7" + is-date-object "^1.0.5" + is-symbol "^1.0.4" -escalade@^3.2.0: +escalade@^3.1.1, escalade@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== @@ -3664,11 +3428,6 @@ escape-html@~1.0.3: resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== -escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" @@ -3679,6 +3438,11 @@ escape-string-regexp@^2.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + eslint-config-prettier@^8.5.0: version "8.10.0" resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11" @@ -3725,28 +3489,28 @@ eslint-plugin-react-native@^4.0.0: eslint-plugin-react-native-globals "^0.1.1" eslint-plugin-react@^7.30.1: - version "7.34.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.34.1.tgz#6806b70c97796f5bbfb235a5d3379ece5f4da997" - integrity sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw== - dependencies: - array-includes "^3.1.7" - array.prototype.findlast "^1.2.4" - array.prototype.flatmap "^1.3.2" - array.prototype.toreversed "^1.1.2" - array.prototype.tosorted "^1.1.3" + version "7.37.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.37.3.tgz#567549e9251533975c4ea9706f986c3a64832031" + integrity sha512-DomWuTQPFYZwF/7c9W2fkKkStqZmBd3uugfqBYLdkZ3Hii23WzZuOLUskGxB8qkSKqftxEeGL1TB2kMhrce0jA== + dependencies: + array-includes "^3.1.8" + array.prototype.findlast "^1.2.5" + array.prototype.flatmap "^1.3.3" + array.prototype.tosorted "^1.1.4" doctrine "^2.1.0" - es-iterator-helpers "^1.0.17" + es-iterator-helpers "^1.2.1" estraverse "^5.3.0" + hasown "^2.0.2" jsx-ast-utils "^2.4.1 || ^3.0.0" minimatch "^3.1.2" - object.entries "^1.1.7" - object.fromentries "^2.0.7" - object.hasown "^1.1.3" - object.values "^1.1.7" + object.entries "^1.1.8" + object.fromentries "^2.0.8" + object.values "^1.2.1" prop-types "^15.8.1" resolve "^2.0.0-next.5" semver "^6.3.1" - string.prototype.matchall "^4.0.10" + string.prototype.matchall "^4.0.12" + string.prototype.repeat "^1.0.0" eslint-scope@5.1.1, eslint-scope@^5.1.1: version "5.1.1" @@ -3775,15 +3539,15 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4 integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== eslint@^8.19.0: - version "8.57.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668" - integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== + version "8.57.1" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz#7df109654aba7e3bbe5c8eae533c5e461d3c6ca9" + integrity sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.6.1" "@eslint/eslintrc" "^2.1.4" - "@eslint/js" "8.57.0" - "@humanwhocodes/config-array" "^0.11.14" + "@eslint/js" "8.57.1" + "@humanwhocodes/config-array" "^0.13.0" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" "@ungap/structured-clone" "^1.2.0" @@ -3833,9 +3597,9 @@ esprima@^4.0.0, esprima@~4.0.0: integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esquery@^1.4.2: - version "1.5.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" - integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== + version "1.6.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" + integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== dependencies: estraverse "^5.1.0" @@ -3866,18 +3630,16 @@ etag@~1.8.1: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== +event-pubsub@4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/event-pubsub/-/event-pubsub-4.3.0.tgz#f68d816bc29f1ec02c539dc58c8dd40ce72cb36e" + integrity sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ== + event-target-shim@^5.0.0, event-target-shim@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== -exception-formatter@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/exception-formatter/-/exception-formatter-1.0.7.tgz#3291616b86fceabefa97aee6a4708032c6e3b96d" - integrity sha512-zV45vEsjytJrwfGq6X9qd1Ll56cW4NC2mhCO6lqwMk4ZpA1fZ6C3UiaQM/X7if+7wZFmCgss3ahp9B/uVFuLRw== - dependencies: - colors "^1.0.3" - execa@^5.0.0, execa@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" @@ -3893,6 +3655,11 @@ execa@^5.0.0, execa@^5.1.1: signal-exit "^3.0.3" strip-final-newline "^2.0.0" +exeunt@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/exeunt/-/exeunt-1.1.0.tgz#af72db6f94b3cb75e921aee375d513049843d284" + integrity sha512-dd++Yn/0Fp+gtJ04YHov7MeAii+LFivJc6KqnJNfplzLVUkUDrfKoQDTLlCgzcW15vY5hKlHasWeIsQJ8agHsw== + exit@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" @@ -3940,17 +3707,22 @@ fast-levenshtein@^2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== +fast-uri@^3.0.1: + version "3.0.3" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.3.tgz#892a1c91802d5d7860de728f18608a0573142241" + integrity sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw== + fast-xml-parser@^4.4.1: - version "4.5.0" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz#2882b7d01a6825dfdf909638f2de0256351def37" - integrity sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg== + version "4.5.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.5.1.tgz#a7e665ff79b7919100a5202f23984b6150f9b31e" + integrity sha512-y655CeyUQ+jj7KBbYMc4FG01V8ZQqjN+gDYGJ50RtfsUB8iG9AmwmwoAgeKLJdmueKKMrH1RJ7yXHTSoczdv5w== dependencies: strnum "^1.0.5" fastq@^1.6.0: - version "1.17.1" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" - integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + version "1.18.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.18.0.tgz#d631d7e25faffea81887fe5ea8c9010e1b36fee0" + integrity sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw== dependencies: reusify "^1.0.4" @@ -3997,14 +3769,6 @@ find-cache-dir@^2.0.0: make-dir "^2.0.0" pkg-dir "^3.0.0" -find-up@5.0.0, find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - find-up@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" @@ -4020,6 +3784,14 @@ find-up@^4.0.0, find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + find-yarn-workspace-root@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" @@ -4042,9 +3814,9 @@ flat@^5.0.2: integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== flatted@^3.2.9: - version "3.3.1" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" - integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + version "3.3.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.2.tgz#adba1448a9841bec72b42c532ea23dbbedef1a27" + integrity sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA== flow-enums-runtime@^0.0.6: version "0.0.6" @@ -4052,9 +3824,9 @@ flow-enums-runtime@^0.0.6: integrity sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw== flow-parser@0.*: - version "0.236.0" - resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.236.0.tgz#8e8e6c59ff7e8d196c0ed215b3919320a1c6e332" - integrity sha512-0OEk9Gr+Yj7wjDW2KgaNYUypKau71jAfFyeLQF5iVtxqc6uJHag/MT7pmaEApf4qM7u86DkBcd4ualddYMfbLw== + version "0.257.1" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.257.1.tgz#1d563688f5c0b5a573ce380a86aa1cc2c44c65df" + integrity sha512-7+KYDpAXyBPD/wODhbPYO6IGUx+WwtJcLLG/r3DvbNyxaDyuYaTBKbSqeCldWQzuFcj+MsOVx2bpkEwVPB9JRw== for-each@^0.3.3: version "0.3.3" @@ -4063,19 +3835,27 @@ for-each@^0.3.3: dependencies: is-callable "^1.1.3" +foreground-child@^3.1.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.0.tgz#0ac8644c06e431439f8561db8ecf29a7b5519c77" + integrity sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^4.0.1" + fresh@0.5.2: version "0.5.2" resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== -fs-extra@^4.0.2: - version "4.0.3" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" - integrity sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== +fs-extra@^11.0.0: + version "11.2.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b" + integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" fs-extra@^8.1.0: version "8.1.0" @@ -4111,22 +3891,24 @@ function-bind@^1.1.2: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== -function.prototype.name@^1.1.5, function.prototype.name@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" - integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== +function.prototype.name@^1.1.6, function.prototype.name@^1.1.8: + version "1.1.8" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz#e68e1df7b259a5c949eeef95cdbde53edffabb78" + integrity sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.8" + call-bound "^1.0.3" + define-properties "^1.2.1" functions-have-names "^1.2.3" + hasown "^2.0.2" + is-callable "^1.2.7" functions-have-names@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== -funpermaproxy@^1.0.1: +funpermaproxy@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/funpermaproxy/-/funpermaproxy-1.1.0.tgz#39cb0b8bea908051e4608d8a414f1d87b55bf557" integrity sha512-2Sp1hWuO8m5fqeFDusyhKqYPT+7rGLw34N3qonDcdRP8+n7M7Gl/yKp/q7oCxnnJ6pWCectOmLFJpsMU/++KrQ== @@ -4141,16 +3923,21 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== +get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6: + version "1.2.6" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.6.tgz#43dd3dd0e7b49b82b2dfcad10dc824bf7fc265d5" + integrity sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA== dependencies: + call-bind-apply-helpers "^1.0.1" + dunder-proto "^1.0.0" + es-define-property "^1.0.1" es-errors "^1.3.0" + es-object-atoms "^1.0.0" function-bind "^1.1.2" - has-proto "^1.0.1" - has-symbols "^1.0.3" - hasown "^2.0.0" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + math-intrinsics "^1.0.0" get-package-type@^0.1.0: version "0.1.0" @@ -4162,14 +3949,14 @@ get-stream@^6.0.0: resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== -get-symbol-description@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" - integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== +get-symbol-description@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz#7bdd54e0befe8ffc9f3b4e203220d9f1e881b6ee" + integrity sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg== dependencies: - call-bind "^1.0.5" + call-bound "^1.0.3" es-errors "^1.3.0" - get-intrinsic "^1.2.4" + get-intrinsic "^1.2.6" glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" @@ -4185,16 +3972,17 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob@8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" - integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== +glob@^10.4.5: + version "10.4.5" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956" + integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^5.0.1" - once "^1.3.0" + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" glob@^6.0.1: version "6.0.4" @@ -4219,6 +4007,17 @@ glob@^7.1.1, glob@^7.1.3, glob@^7.1.4: once "^1.3.0" path-is-absolute "^1.0.0" +glob@^8.0.3: + version "8.1.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" + integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + globals@^11.1.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" @@ -4231,7 +4030,7 @@ globals@^13.19.0: dependencies: type-fest "^0.20.2" -globalthis@^1.0.3: +globalthis@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== @@ -4251,14 +4050,12 @@ globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" +gopd@^1.0.1, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== -graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: +graceful-fs@^4.1.11, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== @@ -4268,15 +4065,10 @@ graphemer@^1.4.0: resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== -has-bigints@^1.0.1, has-bigints@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== +has-bigints@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz#28607e965ac967e03cd2a2c70a2636a1edad49fe" + integrity sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg== has-flag@^4.0.0: version "4.0.0" @@ -4290,15 +4082,17 @@ has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: dependencies: es-define-property "^1.0.0" -has-proto@^1.0.1, has-proto@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" - integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== +has-proto@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz#5de5a6eabd95fdffd9818b43055e8065e39fe9d5" + integrity sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ== + dependencies: + dunder-proto "^1.0.0" -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-symbols@^1.0.3, has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: version "1.0.2" @@ -4314,20 +4108,11 @@ hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: dependencies: function-bind "^1.1.2" -he@1.2.0: +he@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== -hermes-eslint@^0.23.1: - version "0.23.1" - resolved "https://registry.yarnpkg.com/hermes-eslint/-/hermes-eslint-0.23.1.tgz#e0801e58bd4a70f01b0b0659805f315ab7ea6691" - integrity sha512-DaEpbJobK1KwpTSXrPIKkHs2h+B+RTw2F1g9S70tjtJ14a3zM+2gPVUtc8xyffQqRJ6tPfs+/zRKwV17lwDvqA== - dependencies: - esrecurse "^4.3.0" - hermes-estree "0.23.1" - hermes-parser "0.23.1" - hermes-estree@0.23.1: version "0.23.1" resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.23.1.tgz#d0bac369a030188120ee7024926aabe5a9f84fdb" @@ -4390,20 +4175,15 @@ ieee754@^1.1.13: resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== -ignore@^5.0.5, ignore@^5.2.0: - version "5.3.1" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" - integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== - -ignore@^5.3.1: +ignore@^5.0.5, ignore@^5.2.0, ignore@^5.3.1: version "5.3.2" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== image-size@^1.0.2: - version "1.1.1" - resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.1.1.tgz#ddd67d4dc340e52ac29ce5f546a09f4e29e840ac" - integrity sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ== + version "1.2.0" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.2.0.tgz#312af27a2ff4ff58595ad00b9344dd684c910df6" + integrity sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w== dependencies: queue "6.0.2" @@ -4424,9 +4204,9 @@ import-fresh@^3.2.1, import-fresh@^3.3.0: resolve-from "^4.0.0" import-local@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" - integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== + version "3.2.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.2.0.tgz#c3d5c745798c02a6f8b897726aba5100186ee260" + integrity sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA== dependencies: pkg-dir "^4.2.0" resolve-cwd "^3.0.0" @@ -4454,14 +4234,14 @@ ini@^1.3.4: resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== -internal-slot@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" - integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== +internal-slot@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz#1eac91762947d2f7056bc838d93e13b2e9604961" + integrity sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw== dependencies: es-errors "^1.3.0" - hasown "^2.0.0" - side-channel "^1.0.4" + hasown "^2.0.2" + side-channel "^1.1.0" invariant@^2.2.4: version "2.2.4" @@ -4470,13 +4250,14 @@ invariant@^2.2.4: dependencies: loose-envify "^1.0.0" -is-array-buffer@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" - integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== +is-array-buffer@^3.0.4, is-array-buffer@^3.0.5: + version "3.0.5" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz#65742e1e687bd2cc666253068fd8707fe4d44280" + integrity sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A== dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.2.1" + call-bind "^1.0.8" + call-bound "^1.0.3" + get-intrinsic "^1.2.6" is-arrayish@^0.2.1: version "0.2.1" @@ -4490,12 +4271,12 @@ is-async-function@^2.0.0: dependencies: has-tostringtag "^1.0.0" -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== +is-bigint@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz#dda7a3445df57a42583db4228682eba7c4170672" + integrity sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ== dependencies: - has-bigints "^1.0.1" + has-bigints "^1.0.2" is-binary-path@~2.1.0: version "2.1.0" @@ -4504,39 +4285,42 @@ is-binary-path@~2.1.0: dependencies: binary-extensions "^2.0.0" -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== +is-boolean-object@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.1.tgz#c20d0c654be05da4fbc23c562635c019e93daf89" + integrity sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng== dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" + call-bound "^1.0.2" + has-tostringtag "^1.0.2" -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: +is-callable@^1.1.3, is-callable@^1.2.7: version "1.2.7" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== -is-core-module@^2.13.0: - version "2.13.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" - integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== +is-core-module@^2.13.0, is-core-module@^2.16.0: + version "2.16.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4" + integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w== dependencies: - hasown "^2.0.0" + hasown "^2.0.2" -is-data-view@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" - integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== +is-data-view@^1.0.1, is-data-view@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz#bae0a41b9688986c2188dda6657e56b8f9e63b8e" + integrity sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw== dependencies: + call-bound "^1.0.2" + get-intrinsic "^1.2.6" is-typed-array "^1.1.13" -is-date-object@^1.0.1, is-date-object@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== +is-date-object@^1.0.5, is-date-object@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz#ad85541996fc7aa8b2729701d27b7319f95d82f7" + integrity sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg== dependencies: - has-tostringtag "^1.0.0" + call-bound "^1.0.2" + has-tostringtag "^1.0.2" is-directory@^0.3.1: version "0.3.1" @@ -4553,12 +4337,12 @@ is-extglob@^2.1.1: resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== -is-finalizationregistry@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6" - integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== +is-finalizationregistry@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz#eefdcdc6c94ddd0674d9c85887bf93f944a97c90" + integrity sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg== dependencies: - call-bind "^1.0.2" + call-bound "^1.0.3" is-fullwidth-code-point@^2.0.0: version "2.0.0" @@ -4599,17 +4383,13 @@ is-map@^2.0.3: resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e" integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== -is-negative-zero@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" - integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== - -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== +is-number-object@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz#144b21e95a1bc148205dcc2814a9134ec41b2541" + integrity sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw== dependencies: - has-tostringtag "^1.0.0" + call-bound "^1.0.3" + has-tostringtag "^1.0.2" is-number@^7.0.0: version "7.0.0" @@ -4633,51 +4413,56 @@ is-plain-object@^2.0.4: dependencies: isobject "^3.0.1" -is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== +is-regex@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz#76d70a3ed10ef9be48eb577887d74205bf0cad22" + integrity sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g== dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" + call-bound "^1.0.2" + gopd "^1.2.0" + has-tostringtag "^1.0.2" + hasown "^2.0.2" is-set@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d" integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== -is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" - integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== +is-shared-array-buffer@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz#9b67844bd9b7f246ba0708c3a93e34269c774f6f" + integrity sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A== dependencies: - call-bind "^1.0.7" + call-bound "^1.0.3" is-stream@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== +is-string@^1.0.7, is-string@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz#92ea3f3d5c5b6e039ca8677e5ac8d07ea773cbb9" + integrity sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA== dependencies: - has-tostringtag "^1.0.0" + call-bound "^1.0.3" + has-tostringtag "^1.0.2" -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== +is-symbol@^1.0.4, is-symbol@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz#f47761279f532e2b05a7024a7506dbbedacd0634" + integrity sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w== dependencies: - has-symbols "^1.0.2" + call-bound "^1.0.2" + has-symbols "^1.1.0" + safe-regex-test "^1.1.0" -is-typed-array@^1.1.13: - version "1.1.13" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" - integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== +is-typed-array@^1.1.13, is-typed-array@^1.1.14, is-typed-array@^1.1.15: + version "1.1.15" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz#4bfb4a45b61cee83a5a46fba778e4e8d59c0ce0b" + integrity sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ== dependencies: - which-typed-array "^1.1.14" + which-typed-array "^1.1.16" is-unicode-supported@^0.1.0: version "0.1.0" @@ -4689,20 +4474,20 @@ is-weakmap@^2.0.2: resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd" integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== -is-weakref@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" - integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== +is-weakref@^1.0.2, is-weakref@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.0.tgz#47e3472ae95a63fa9cf25660bcf0c181c39770ef" + integrity sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q== dependencies: - call-bind "^1.0.2" + call-bound "^1.0.2" is-weakset@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.3.tgz#e801519df8c0c43e12ff2834eead84ec9e624007" - integrity sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz#c9f5deb0bc1906c6d6f1027f284ddf459249daca" + integrity sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ== dependencies: - call-bind "^1.0.7" - get-intrinsic "^1.2.4" + call-bound "^1.0.3" + get-intrinsic "^1.2.6" is-wsl@^1.1.0: version "1.1.0" @@ -4753,9 +4538,9 @@ istanbul-lib-instrument@^5.0.4: semver "^6.3.0" istanbul-lib-instrument@^6.0.0: - version "6.0.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz#91655936cf7380e4e473383081e38478b69993b1" - integrity sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw== + version "6.0.3" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz#fa15401df6c15874bcb2105f773325d78c666765" + integrity sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q== dependencies: "@babel/core" "^7.23.9" "@babel/parser" "^7.23.9" @@ -4789,16 +4574,26 @@ istanbul-reports@^3.1.3: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" -iterator.prototype@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.2.tgz#5e29c8924f01916cb9335f1ff80619dcff22b0c0" - integrity sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w== +iterator.prototype@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.4.tgz#4ae6cf98b97fdc717b7e159d79dc25f8fc9482f1" + integrity sha512-x4WH0BWmrMmg4oHHl+duwubhrvczGlyuGAZu3nvrf0UXOfPu8IhZObFEr7DE/iv01YgVZrsOiRcqw2srkKEDIA== dependencies: - define-properties "^1.2.1" - get-intrinsic "^1.2.1" - has-symbols "^1.0.3" - reflect.getprototypeof "^1.0.4" - set-function-name "^2.0.1" + define-data-property "^1.1.4" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.6" + has-symbols "^1.1.0" + reflect.getprototypeof "^1.0.8" + set-function-name "^2.0.2" + +jackspeak@^3.1.2: + version "3.4.3" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" + integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" jest-changed-files@^29.7.0: version "29.7.0" @@ -4908,6 +4703,20 @@ jest-each@^29.7.0: jest-util "^29.7.0" pretty-format "^29.7.0" +jest-environment-emit@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/jest-environment-emit/-/jest-environment-emit-1.0.8.tgz#ab0dad2c1dd04d3ca092762a99080607b0eef10b" + integrity sha512-WNqvxBLH0yNojHJQ99Y21963aT7UTavxV3PgiBQFi8zwrlnKU6HvkB6LOvQrbk5I8mI8JEKvcoOrQOvBVMLIXQ== + dependencies: + bunyamin "^1.5.2" + bunyan "^2.0.5" + bunyan-debug-stream "^3.1.0" + funpermaproxy "^1.1.0" + lodash.merge "^4.6.2" + node-ipc "9.2.1" + strip-ansi "^6.0.0" + tslib "^2.5.3" + jest-environment-node@^29.6.3, jest-environment-node@^29.7.0: version "29.7.0" resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" @@ -5173,9 +4982,9 @@ jest@^29.6.3: ws "^8.2.3" joi@^17.2.1: - version "17.13.1" - resolved "https://registry.yarnpkg.com/joi/-/joi-17.13.1.tgz#9c7b53dc3b44dd9ae200255cc3b398874918a6ca" - integrity sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg== + version "17.13.3" + resolved "https://registry.yarnpkg.com/joi/-/joi-17.13.3.tgz#0f5cc1169c999b30d344366d384b12d92558bcec" + integrity sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA== dependencies: "@hapi/hoek" "^9.3.0" "@hapi/topo" "^5.1.0" @@ -5183,18 +4992,23 @@ joi@^17.2.1: "@sideway/formula" "^3.0.1" "@sideway/pinpoint" "^2.0.0" +js-message@1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/js-message/-/js-message-1.0.7.tgz#fbddd053c7a47021871bb8b2c95397cc17c20e47" + integrity sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA== + +js-queue@2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/js-queue/-/js-queue-2.0.2.tgz#0be590338f903b36c73d33c31883a821412cd482" + integrity sha512-pbKLsbCfi7kriM3s1J4DDCo7jQkI58zPLHi0heXPzPlj0hjUsm+FesPUbE0DSbIVIK503A36aUBoCN7eMFedkA== + dependencies: + easy-stack "^1.0.1" + "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@4.1.0, js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== - dependencies: - argparse "^2.0.1" - js-yaml@^3.13.1: version "3.14.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" @@ -5203,6 +5017,13 @@ js-yaml@^3.13.1: argparse "^1.0.7" esprima "^4.0.0" +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + jsc-android@^250231.0.0: version "250231.0.0" resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-250231.0.0.tgz#91720f8df382a108872fa4b3f558f33ba5e95262" @@ -5238,26 +5059,26 @@ jscodeshift@^0.14.0: temp "^0.8.4" write-file-atomic "^2.3.0" -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== +jsesc@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d" + integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA== -jsesc@^3.0.2, jsesc@~3.0.2: +jsesc@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== - json-buffer@3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== +json-cycle@^1.3.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/json-cycle/-/json-cycle-1.5.0.tgz#b1f1d976eee16cef51d5f3d3b3caece3e90ba23a" + integrity sha512-GOehvd5PO2FeZ5T4c+RxobeT5a1PiGpF4u9/3+UvrMU4bhnVqzJY7hm39wg8PDCqkU91fWGH8qjWR4bn+wgq9w== + json-parse-better-errors@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" @@ -5284,11 +5105,12 @@ json-stable-stringify-without-jsonify@^1.0.1: integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== json-stable-stringify@^1.0.2: - version "1.1.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz#52d4361b47d49168bcc4e564189a42e5a7439454" - integrity sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg== + version "1.2.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.2.1.tgz#addb683c2b78014d0b78d704c2fcbdf0695a60e2" + integrity sha512-Lp6HbbBgosLmJbjx0pBLbgvx68FaFU1sdkmBuckmhhJ88kL13OA51CDtR2yJB50eCNMH9wRqtQNNiAqQH4YXnA== dependencies: - call-bind "^1.0.5" + call-bind "^1.0.8" + call-bound "^1.0.3" isarray "^2.0.5" jsonify "^0.0.1" object-keys "^1.1.1" @@ -5426,12 +5248,12 @@ lodash.throttle@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== -lodash@^4.17.21, lodash@^4.17.5: +lodash@^4.17.11, lodash@^4.17.21: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== -log-symbols@4.1.0, log-symbols@^4.1.0: +log-symbols@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== @@ -5455,6 +5277,11 @@ loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" +lru-cache@^10.2.0: + version "10.4.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== + lru-cache@^4.0.1: version "4.1.5" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" @@ -5497,6 +5324,11 @@ marky@^1.2.2: resolved "https://registry.yarnpkg.com/marky/-/marky-1.2.5.tgz#55796b688cbd72390d2d399eaaf1832c9413e3c0" integrity sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q== +math-intrinsics@^1.0.0, math-intrinsics@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== + memoize-one@^5.0.0: version "5.2.1" resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e" @@ -5711,7 +5543,7 @@ metro@0.81.0, metro@^0.81.0: ws "^7.5.10" yargs "^17.6.2" -micromatch@^4.0.2: +micromatch@^4.0.2, micromatch@^4.0.4: version "4.0.8" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== @@ -5719,19 +5551,16 @@ micromatch@^4.0.2: braces "^3.0.3" picomatch "^2.3.1" -micromatch@^4.0.4: - version "4.0.7" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.7.tgz#33e8190d9fe474a9895525f5618eee136d46c2e5" - integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q== - dependencies: - braces "^3.0.3" - picomatch "^2.3.1" - -mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": +mime-db@1.52.0: version "1.52.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== +"mime-db@>= 1.43.0 < 2": + version "1.53.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.53.0.tgz#3cb63cd820fc29896d9d4e8c32ab4fcd74ccb447" + integrity sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg== + mime-types@^2.1.27, mime-types@~2.1.34: version "2.1.35" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" @@ -5761,14 +5590,7 @@ mimic-fn@^2.1.0: dependencies: brace-expansion "^1.1.7" -minimatch@5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.0.1.tgz#fb9022f7528125187c92bd9e9b6366be1cf3415b" - integrity sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g== - dependencies: - brace-expansion "^2.0.1" - -minimatch@^5.0.1: +minimatch@^5.0.1, minimatch@^5.1.6: version "5.1.6" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== @@ -5782,11 +5604,16 @@ minimatch@^9.0.4: dependencies: brace-expansion "^2.0.1" -minimist@^1.2.0, minimist@^1.2.6: +minimist@^1.2.6: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== + mkdirp@^0.5.1, mkdirp@~0.5.1: version "0.5.6" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" @@ -5799,31 +5626,31 @@ mkdirp@^1.0.4: resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -mocha@^10.4.0: - version "10.4.0" - resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.4.0.tgz#ed03db96ee9cfc6d20c56f8e2af07b961dbae261" - integrity sha512-eqhGB8JKapEYcC4ytX/xrzKforgEc3j1pGlAXVy3eRwrtAy5/nIfT1SvgGzfN0XZZxeLq0aQWkOUAmqIJiv+bA== - dependencies: - ansi-colors "4.1.1" - browser-stdout "1.3.1" - chokidar "3.5.3" - debug "4.3.4" - diff "5.0.0" - escape-string-regexp "4.0.0" - find-up "5.0.0" - glob "8.1.0" - he "1.2.0" - js-yaml "4.1.0" - log-symbols "4.1.0" - minimatch "5.0.1" - ms "2.1.3" - serialize-javascript "6.0.0" - strip-json-comments "3.1.1" - supports-color "8.1.1" - workerpool "6.2.1" - yargs "16.2.0" - yargs-parser "20.2.4" - yargs-unparser "2.0.0" +mocha@^11.0.1: + version "11.0.1" + resolved "https://registry.yarnpkg.com/mocha/-/mocha-11.0.1.tgz#85c1c0e806275fe2479245be4ac4a0d81f533aa8" + integrity sha512-+3GkODfsDG71KSCQhc4IekSW+ItCK/kiez1Z28ksWvYhKXV/syxMlerR/sC7whDp7IyreZ4YxceMLdTs5hQE8A== + dependencies: + ansi-colors "^4.1.3" + browser-stdout "^1.3.1" + chokidar "^3.5.3" + debug "^4.3.5" + diff "^5.2.0" + escape-string-regexp "^4.0.0" + find-up "^5.0.0" + glob "^10.4.5" + he "^1.2.0" + js-yaml "^4.1.0" + log-symbols "^4.1.0" + minimatch "^5.1.6" + ms "^2.1.3" + serialize-javascript "^6.0.2" + strip-json-comments "^3.1.1" + supports-color "^8.1.1" + workerpool "^6.5.1" + yargs "^16.2.0" + yargs-parser "^20.2.9" + yargs-unparser "^2.0.0" moment@^2.19.3: version "2.30.1" @@ -5835,16 +5662,24 @@ ms@2.0.0: resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@2.1.3: +ms@2.1.3, ms@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== +multi-sort-stream@^1.0.3, multi-sort-stream@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/multi-sort-stream/-/multi-sort-stream-1.0.4.tgz#e4348edc9edc36e16333e531a90c0f166235cc99" + integrity sha512-hAZ8JOEQFbgdLe8HWZbb7gdZg0/yAIHF00Qfo3kd0rXFv96nXe+/bPTrKHZ2QMHugGX4FiAyET1Lt+jiB+7Qlg== + +multipipe@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-4.0.0.tgz#d302554ae664c1157dbfd1e8f98f03c517b3948a" + integrity sha512-jzcEAzFXoWwWwUbvHCNPwBlTz3WCWe/jPcXSmTfbo/VjRwRTfvLZ/bdvtiTdqCe8d4otCSsPCbhGYcX+eggpKQ== + dependencies: + duplexer2 "^0.1.2" + object-assign "^4.1.0" + mv@~2: version "2.1.1" resolved "https://registry.yarnpkg.com/mv/-/mv-2.1.1.tgz#ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2" @@ -5855,9 +5690,9 @@ mv@~2: rimraf "~2.4.0" nan@^2.14.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.19.0.tgz#bb58122ad55a6c5bc973303908d5b16cfdd5a8c0" - integrity sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw== + version "2.22.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.22.0.tgz#31bc433fc33213c97bad36404bb68063de604de3" + integrity sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw== natural-compare@^1.4.0: version "1.4.0" @@ -5874,6 +5709,11 @@ negotiator@0.6.3: resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== +negotiator@~0.6.4: + version "0.6.4" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.4.tgz#777948e2452651c570b712dd01c23e262713fff7" + integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== + neo-async@^2.5.0: version "2.6.2" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" @@ -5924,15 +5764,19 @@ node-int64@^0.4.0: resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== -node-releases@^2.0.14: - version "2.0.14" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" - integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== +node-ipc@9.2.1: + version "9.2.1" + resolved "https://registry.yarnpkg.com/node-ipc/-/node-ipc-9.2.1.tgz#b32f66115f9d6ce841dc4ec2009d6a733f98bb6b" + integrity sha512-mJzaM6O3xHf9VT8BULvJSbdVbmHUKRNOH7zDDkCrA1/T+CVjq2WVIDfLt0azZRXpgArJtl3rtmEozrbXPZ9GaQ== + dependencies: + event-pubsub "4.3.0" + js-message "1.0.7" + js-queue "2.0.2" -node-releases@^2.0.18: - version "2.0.18" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" - integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== +node-releases@^2.0.19: + version "2.0.19" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314" + integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw== node-stream-zip@^1.9.1: version "1.15.0" @@ -5968,32 +5812,34 @@ ob1@0.81.0: dependencies: flow-enums-runtime "^0.0.6" -object-assign@^4.1.1: +object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== -object-inspect@^1.13.1: - version "1.13.1" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" - integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== +object-inspect@^1.13.3: + version "1.13.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" + integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -object.assign@^4.1.4, object.assign@^4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" - integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== +object.assign@^4.1.4, object.assign@^4.1.7: + version "4.1.7" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz#8c14ca1a424c6a561b0bb2a22f66f5049a945d3d" + integrity sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw== dependencies: - call-bind "^1.0.5" + call-bind "^1.0.8" + call-bound "^1.0.3" define-properties "^1.2.1" - has-symbols "^1.0.3" + es-object-atoms "^1.0.0" + has-symbols "^1.1.0" object-keys "^1.1.1" -object.entries@^1.1.7: +object.entries@^1.1.8: version "1.1.8" resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.8.tgz#bffe6f282e01f4d17807204a24f8edd823599c41" integrity sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ== @@ -6002,7 +5848,7 @@ object.entries@^1.1.7: define-properties "^1.2.1" es-object-atoms "^1.0.0" -object.fromentries@^2.0.7: +object.fromentries@^2.0.8: version "2.0.8" resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65" integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ== @@ -6012,21 +5858,13 @@ object.fromentries@^2.0.7: es-abstract "^1.23.2" es-object-atoms "^1.0.0" -object.hasown@^1.1.3: - version "1.1.4" - resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.4.tgz#e270ae377e4c120cdcb7656ce66884a6218283dc" - integrity sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg== - dependencies: - define-properties "^1.2.1" - es-abstract "^1.23.2" - es-object-atoms "^1.0.0" - -object.values@^1.1.6, object.values@^1.1.7: - version "1.2.0" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b" - integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ== +object.values@^1.1.6, object.values@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz#deed520a50809ff7f75a7cfd4bc64c7a038c6216" + integrity sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.3" define-properties "^1.2.1" es-object-atoms "^1.0.0" @@ -6110,6 +5948,15 @@ os-tmpdir@~1.0.2: resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== +own-keys@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz#e4006910a2bf913585289676eebd6f390cf51358" + integrity sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg== + dependencies: + get-intrinsic "^1.2.6" + object-keys "^1.1.1" + safe-push-apply "^1.0.0" + p-limit@^2.0.0, p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" @@ -6150,6 +5997,11 @@ p-try@^2.0.0: resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== +package-json-from-dist@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" + integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== + parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -6226,22 +6078,25 @@ path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-to-regexp@^6.2.1: - version "6.2.2" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.2.tgz#324377a83e5049cbecadc5554d6a63a9a4866b36" - integrity sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw== + version "6.3.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.3.0.tgz#2b6a26a337737a8e1416f9272ed0766b1c0389f4" + integrity sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ== path-type@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -picocolors@^1.0.0, picocolors@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" - integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== - -picocolors@^1.1.0: +picocolors@^1.0.0, picocolors@^1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== @@ -6392,9 +6247,9 @@ range-parser@~1.2.1: integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== react-devtools-core@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-5.3.1.tgz#d57f5b8f74f16e622bd6a7bc270161e4ba162666" - integrity sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw== + version "5.3.2" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-5.3.2.tgz#d5df92f8ef2a587986d094ef2c47d84cf4ae46ec" + integrity sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg== dependencies: shell-quote "^1.6.1" ws "^7" @@ -6418,19 +6273,19 @@ react-is@^17.0.1: version "0.0.0" uid "" -react-native@0.76.2: - version "0.76.2" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.76.2.tgz#966c7c61bd089002540ce668d9fbe544f2f9ea96" - integrity sha512-mkEBKGOmJxhfq8IOsvmk0QuTzlBt9vS+uo0gwbqfUmEDqoC359v80zhUf94WimYBrBkpRQWFbEu5iqMDHrYzlQ== +react-native@0.76.5: + version "0.76.5" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.76.5.tgz#3ce43d3c31f46cfd98e56ef2dfc70866c04ad185" + integrity sha512-op2p2kB+lqMF1D7AdX4+wvaR0OPFbvWYs+VBE7bwsb99Cn9xISrLRLAgFflZedQsa5HvnOGrULhtnmItbIKVVw== dependencies: "@jest/create-cache-key-function" "^29.6.3" - "@react-native/assets-registry" "0.76.2" - "@react-native/codegen" "0.76.2" - "@react-native/community-cli-plugin" "0.76.2" - "@react-native/gradle-plugin" "0.76.2" - "@react-native/js-polyfills" "0.76.2" - "@react-native/normalize-colors" "0.76.2" - "@react-native/virtualized-lists" "0.76.2" + "@react-native/assets-registry" "0.76.5" + "@react-native/codegen" "0.76.5" + "@react-native/community-cli-plugin" "0.76.5" + "@react-native/gradle-plugin" "0.76.5" + "@react-native/js-polyfills" "0.76.5" + "@react-native/normalize-colors" "0.76.5" + "@react-native/virtualized-lists" "0.76.5" abort-controller "^3.0.0" anser "^1.4.9" ansi-regex "^5.0.0" @@ -6491,16 +6346,7 @@ react@18.3.1: dependencies: loose-envify "^1.1.0" -readable-stream@^3.4.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readable-stream@~2.3.6: +readable-stream@^2.0.2, readable-stream@~2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== @@ -6513,6 +6359,15 @@ readable-stream@~2.3.6: string_decoder "~1.1.1" util-deprecate "~1.0.1" +readable-stream@^3.4.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + readdirp@~3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" @@ -6535,25 +6390,19 @@ recast@^0.21.0: source-map "~0.6.1" tslib "^2.0.1" -reflect.getprototypeof@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz#3ab04c32a8390b770712b7a8633972702d278859" - integrity sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg== +reflect.getprototypeof@^1.0.6, reflect.getprototypeof@^1.0.8, reflect.getprototypeof@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.9.tgz#c905f3386008de95a62315f3ea8630404be19e2f" + integrity sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" define-properties "^1.2.1" - es-abstract "^1.23.1" + dunder-proto "^1.0.1" + es-abstract "^1.23.6" es-errors "^1.3.0" - get-intrinsic "^1.2.4" - globalthis "^1.0.3" - which-builtin-type "^1.1.3" - -regenerate-unicode-properties@^10.1.0: - version "10.1.1" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" - integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== - dependencies: - regenerate "^1.4.2" + get-intrinsic "^1.2.6" + gopd "^1.2.0" + which-builtin-type "^1.2.1" regenerate-unicode-properties@^10.2.0: version "10.2.0" @@ -6584,37 +6433,25 @@ regenerator-transform@^0.15.2: dependencies: "@babel/runtime" "^7.8.4" -regexp.prototype.flags@^1.5.2: - version "1.5.2" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" - integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== +regexp.prototype.flags@^1.5.3: + version "1.5.3" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz#b3ae40b1d2499b8350ab2c3fe6ef3845d3a96f42" + integrity sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ== dependencies: - call-bind "^1.0.6" + call-bind "^1.0.7" define-properties "^1.2.1" es-errors "^1.3.0" - set-function-name "^2.0.1" - -regexpu-core@^5.3.1: - version "5.3.2" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" - integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== - dependencies: - "@babel/regjsgen" "^0.8.0" - regenerate "^1.4.2" - regenerate-unicode-properties "^10.1.0" - regjsparser "^0.9.1" - unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.1.0" + set-function-name "^2.0.2" -regexpu-core@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.1.1.tgz#b469b245594cb2d088ceebc6369dceb8c00becac" - integrity sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw== +regexpu-core@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.2.0.tgz#0e5190d79e542bf294955dccabae04d3c7d53826" + integrity sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA== dependencies: regenerate "^1.4.2" regenerate-unicode-properties "^10.2.0" regjsgen "^0.8.0" - regjsparser "^0.11.0" + regjsparser "^0.12.0" unicode-match-property-ecmascript "^2.0.0" unicode-match-property-value-ecmascript "^2.1.0" @@ -6623,20 +6460,13 @@ regjsgen@^0.8.0: resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz#df23ff26e0c5b300a6470cad160a9d090c3a37ab" integrity sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q== -regjsparser@^0.11.0: - version "0.11.2" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.11.2.tgz#7404ad42be00226d72bcf1f003f1f441861913d8" - integrity sha512-3OGZZ4HoLJkkAZx/48mTXJNlmqTGOzc0o9OWQPuWpkOlXXPbyN6OafCcoXUnBqE2D3f/T5L+pWc1kdEmnfnRsA== +regjsparser@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.12.0.tgz#0e846df6c6530586429377de56e0475583b088dc" + integrity sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ== dependencies: jsesc "~3.0.2" -regjsparser@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" - integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== - dependencies: - jsesc "~0.5.0" - require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" @@ -6675,16 +6505,16 @@ resolve-from@^5.0.0: integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== resolve.exports@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" - integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== + version "2.0.3" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.3.tgz#41955e6f1b4013b7586f873749a635dea07ebe3f" + integrity sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A== resolve@^1.14.2, resolve@^1.20.0: - version "1.22.8" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" - integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + version "1.22.10" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz#b663e83ffb09bbf2386944736baae803029b8b39" + integrity sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w== dependencies: - is-core-module "^2.13.0" + is-core-module "^2.16.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" @@ -6750,39 +6580,48 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" -safe-array-concat@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" - integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== +safe-array-concat@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz#c9e54ec4f603b0bbb8e7e5007a5ee7aecd1538c3" + integrity sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q== dependencies: - call-bind "^1.0.7" - get-intrinsic "^1.2.4" - has-symbols "^1.0.3" + call-bind "^1.0.8" + call-bound "^1.0.2" + get-intrinsic "^1.2.6" + has-symbols "^1.1.0" isarray "^2.0.5" -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@^5.1.0, safe-buffer@~5.2.0: +safe-buffer@5.2.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + safe-json-stringify@~1: version "1.2.0" resolved "https://registry.yarnpkg.com/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz#356e44bc98f1f93ce45df14bcd7c01cda86e0afd" integrity sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg== -safe-regex-test@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" - integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== +safe-push-apply@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz#01850e981c1602d398c85081f360e4e6d03d27f5" + integrity sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA== + dependencies: + es-errors "^1.3.0" + isarray "^2.0.5" + +safe-regex-test@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz#7f87dfb67a3150782eaaf18583ff5d1711ac10c1" + integrity sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw== dependencies: - call-bind "^1.0.6" + call-bound "^1.0.2" es-errors "^1.3.0" - is-regex "^1.1.4" + is-regex "^1.2.1" sanitize-filename@^1.6.1: version "1.6.3" @@ -6823,20 +6662,15 @@ semver@^6.3.0, semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.0.0, semver@^7.3.7, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4: - version "7.6.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.2.tgz#1e3b34759f896e8f14d6134732ce798aeb0c6e13" - integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w== - -semver@^7.1.3, semver@^7.6.0: +semver@^7.0.0, semver@^7.1.3, semver@^7.3.7, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0: version "7.6.3" resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== -send@0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== +send@0.19.0: + version "0.19.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8" + integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== dependencies: debug "2.6.9" depd "2.0.0" @@ -6864,29 +6698,29 @@ serialize-error@^8.0.1: dependencies: type-fest "^0.20.2" -serialize-javascript@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" - integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== +serialize-javascript@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" + integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== dependencies: randombytes "^2.1.0" serve-static@^1.13.1: - version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + version "1.16.2" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.2.tgz#b6a5343da47f6bdd2673848bf45754941e803296" + integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== dependencies: - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" parseurl "~1.3.3" - send "0.18.0" + send "0.19.0" set-blocking@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== -set-function-length@^1.2.1: +set-function-length@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== @@ -6898,7 +6732,7 @@ set-function-length@^1.2.1: gopd "^1.0.1" has-property-descriptors "^1.0.2" -set-function-name@^2.0.1, set-function-name@^2.0.2: +set-function-name@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== @@ -6933,9 +6767,9 @@ shebang-regex@^3.0.0: integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== shell-quote@^1.6.1, shell-quote@^1.7.2, shell-quote@^1.7.3: - version "1.8.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" - integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== + version "1.8.2" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.2.tgz#d2d83e057959d53ec261311e9e9b8f51dcb2934a" + integrity sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA== should-equal@^2.0.0: version "2.0.0" @@ -6986,21 +6820,56 @@ should@^13.2.1: should-type-adaptors "^1.0.1" should-util "^1.0.0" -side-channel@^1.0.4, side-channel@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" - integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== +side-channel-list@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad" + integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== dependencies: - call-bind "^1.0.7" es-errors "^1.3.0" - get-intrinsic "^1.2.4" - object-inspect "^1.13.1" + object-inspect "^1.13.3" + +side-channel-map@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42" + integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + +side-channel-weakmap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea" + integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + side-channel-map "^1.0.1" + +side-channel@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9" + integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + side-channel-list "^1.0.0" + side-channel-map "^1.0.1" + side-channel-weakmap "^1.0.2" signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +signal-exit@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + sinon@^11.1.2: version "11.1.2" resolved "https://registry.yarnpkg.com/sinon/-/sinon-11.1.2.tgz#9e78850c747241d5c59d1614d8f9cbe8840e8674" @@ -7102,6 +6971,18 @@ statuses@~1.5.0: resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== +stream-chain@^2.2.5: + version "2.2.5" + resolved "https://registry.yarnpkg.com/stream-chain/-/stream-chain-2.2.5.tgz#b30967e8f14ee033c5b9a19bbe8a2cba90ba0d09" + integrity sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA== + +stream-json@^1.7.4, stream-json@^1.7.5: + version "1.9.1" + resolved "https://registry.yarnpkg.com/stream-json/-/stream-json-1.9.1.tgz#e3fec03e984a503718946c170db7d74556c2a187" + integrity sha512-uWkjJ+2Nt/LO9Z/JyKZbMusL8Dkh97uUBTv3AJQ74y07lVahLY4eEFsPsE97pxYBwr8nnjMAIch5eqI0gPShyw== + dependencies: + stream-chain "^2.2.5" + string-length@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" @@ -7115,6 +6996,15 @@ string-natural-compare@^3.0.1: resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4" integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw== +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" @@ -7124,40 +7014,62 @@ string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string.prototype.matchall@^4.0.10: - version "4.0.11" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz#1092a72c59268d2abaad76582dccc687c0297e0a" - integrity sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg== +string-width@^5.0.1, string-width@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== dependencies: - call-bind "^1.0.7" + eastasianwidth "^0.2.0" + emoji-regex "^9.2.2" + strip-ansi "^7.0.1" + +string.prototype.matchall@^4.0.12: + version "4.0.12" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz#6c88740e49ad4956b1332a911e949583a275d4c0" + integrity sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA== + dependencies: + call-bind "^1.0.8" + call-bound "^1.0.3" define-properties "^1.2.1" - es-abstract "^1.23.2" + es-abstract "^1.23.6" es-errors "^1.3.0" es-object-atoms "^1.0.0" - get-intrinsic "^1.2.4" - gopd "^1.0.1" - has-symbols "^1.0.3" - internal-slot "^1.0.7" - regexp.prototype.flags "^1.5.2" + get-intrinsic "^1.2.6" + gopd "^1.2.0" + has-symbols "^1.1.0" + internal-slot "^1.1.0" + regexp.prototype.flags "^1.5.3" set-function-name "^2.0.2" - side-channel "^1.0.6" + side-channel "^1.1.0" -string.prototype.trim@^1.2.9: - version "1.2.9" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" - integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== +string.prototype.repeat@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz#e90872ee0308b29435aa26275f6e1b762daee01a" + integrity sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w== dependencies: - call-bind "^1.0.7" + define-properties "^1.1.3" + es-abstract "^1.17.5" + +string.prototype.trim@^1.2.10: + version "1.2.10" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz#40b2dd5ee94c959b4dcfb1d65ce72e90da480c81" + integrity sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA== + dependencies: + call-bind "^1.0.8" + call-bound "^1.0.2" + define-data-property "^1.1.4" define-properties "^1.2.1" - es-abstract "^1.23.0" + es-abstract "^1.23.5" es-object-atoms "^1.0.0" + has-property-descriptors "^1.0.2" -string.prototype.trimend@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" - integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== +string.prototype.trimend@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz#62e2731272cd285041b36596054e9f66569b6942" + integrity sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.2" define-properties "^1.2.1" es-object-atoms "^1.0.0" @@ -7184,6 +7096,13 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^5.0.0, strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" @@ -7198,6 +7117,13 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1: dependencies: ansi-regex "^5.0.1" +strip-ansi@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + dependencies: + ansi-regex "^6.0.1" + strip-bom@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" @@ -7208,7 +7134,7 @@ strip-final-newline@^2.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== -strip-json-comments@3.1.1, strip-json-comments@^3.1.1: +strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== @@ -7223,20 +7149,6 @@ sudo-prompt@^9.0.0: resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.2.1.tgz#77efb84309c9ca489527a4e749f287e6bdd52afd" integrity sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw== -supports-color@8.1.1, supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - supports-color@^7.1.0, supports-color@^7.2.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" @@ -7244,16 +7156,18 @@ supports-color@^7.1.0, supports-color@^7.2.0: dependencies: has-flag "^4.0.0" +supports-color@^8.0.0, supports-color@^8.1.1: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -tail@^2.0.0: - version "2.2.6" - resolved "https://registry.yarnpkg.com/tail/-/tail-2.2.6.tgz#24abd701963639b896c42496d5f416216ec0b558" - integrity sha512-IQ6G4wK/t8VBauYiGPLx+d3fA5XjSVagjWV5SIYzvEvglbQjwEcukeYI68JOPpdydjxhZ9sIgzRlSmwSpphHyw== - telnet-client@1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/telnet-client/-/telnet-client-1.2.8.tgz#946c0dadc8daa3f19bb40a3e898cb870403a4ca4" @@ -7282,9 +7196,9 @@ tempfile@^2.0.0: uuid "^3.0.1" terser@^5.15.0: - version "5.31.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.31.0.tgz#06eef86f17007dbad4593f11a574c7f5eb02c6a1" - integrity sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg== + version "5.37.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.37.0.tgz#38aa66d1cfc43d0638fab54e43ff8a4f72a21ba3" + integrity sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" @@ -7335,11 +7249,6 @@ tmpl@1.0.5: resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - to-regex-range@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" @@ -7357,6 +7266,13 @@ tr46@~0.0.3: resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== +trace-event-lib@^1.3.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/trace-event-lib/-/trace-event-lib-1.4.1.tgz#a749b8141650f56dcdecea760df4735f28d1ac6b" + integrity sha512-TOgFolKG8JFY+9d5EohGWMvwvteRafcyfPWWNIqcuD1W/FUvxWcy2MSCZ/beYHM63oYPHYHCd3tkbgCctHVP7w== + dependencies: + browser-process-hrtime "^1.0.0" + truncate-utf8-bytes@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" @@ -7365,19 +7281,19 @@ truncate-utf8-bytes@^1.0.0: utf8-byte-length "^1.0.1" ts-api-utils@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" - integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== + version "1.4.3" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.4.3.tgz#bfc2215fe6528fecab2b0fba570a2e8a4263b064" + integrity sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw== tslib@^1.8.1: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.0.1: - version "2.6.2" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" - integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== +tslib@^2.0.1, tslib@^2.5.3: + version "2.8.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== tsutils@^3.21.0: version "3.21.0" @@ -7393,11 +7309,16 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" -type-detect@4.0.8, type-detect@^4.0.8: +type-detect@4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== +type-detect@^4.0.8: + version "4.1.0" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.1.0.tgz#deb2453e8f08dcae7ae98c626b13dddb0155906c" + integrity sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw== + type-fest@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" @@ -7413,74 +7334,75 @@ type-fest@^0.7.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== -typed-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" - integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== +typed-array-buffer@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz#a72395450a4869ec033fd549371b47af3a2ee536" + integrity sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw== dependencies: - call-bind "^1.0.7" + call-bound "^1.0.3" es-errors "^1.3.0" - is-typed-array "^1.1.13" + is-typed-array "^1.1.14" -typed-array-byte-length@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" - integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== +typed-array-byte-length@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz#8407a04f7d78684f3d252aa1a143d2b77b4160ce" + integrity sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" for-each "^0.3.3" - gopd "^1.0.1" - has-proto "^1.0.3" - is-typed-array "^1.1.13" + gopd "^1.2.0" + has-proto "^1.2.0" + is-typed-array "^1.1.14" -typed-array-byte-offset@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" - integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== +typed-array-byte-offset@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz#ae3698b8ec91a8ab945016108aef00d5bff12355" + integrity sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ== dependencies: available-typed-arrays "^1.0.7" - call-bind "^1.0.7" + call-bind "^1.0.8" for-each "^0.3.3" - gopd "^1.0.1" - has-proto "^1.0.3" - is-typed-array "^1.1.13" + gopd "^1.2.0" + has-proto "^1.2.0" + is-typed-array "^1.1.15" + reflect.getprototypeof "^1.0.9" -typed-array-length@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" - integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== +typed-array-length@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz#ee4deff984b64be1e118b0de8c9c877d5ce73d3d" + integrity sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg== dependencies: call-bind "^1.0.7" for-each "^0.3.3" gopd "^1.0.1" - has-proto "^1.0.3" is-typed-array "^1.1.13" possible-typed-array-names "^1.0.0" + reflect.getprototypeof "^1.0.6" -typescript@^5.4.5: - version "5.4.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611" - integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== +typescript@^5.7.2: + version "5.7.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.2.tgz#3169cf8c4c8a828cde53ba9ecb3d2b1d5dd67be6" + integrity sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg== -unbox-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" - integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== +unbox-primitive@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz#8d9d2c9edeea8460c7f35033a88867944934d1e2" + integrity sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw== dependencies: - call-bind "^1.0.2" + call-bound "^1.0.3" has-bigints "^1.0.2" - has-symbols "^1.0.3" - which-boxed-primitive "^1.0.2" + has-symbols "^1.1.0" + which-boxed-primitive "^1.1.1" -undici-types@~5.26.4: - version "5.26.5" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" - integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== +undici-types@~6.20.0: + version "6.20.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.20.0.tgz#8171bf22c1f588d1554d55bf204bc624af388433" + integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg== unicode-canonical-property-names-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" - integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + version "2.0.1" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz#cb3173fe47ca743e228216e4a3ddc4c84d628cc2" + integrity sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg== unicode-match-property-ecmascript@^2.0.0: version "2.0.0" @@ -7491,9 +7413,9 @@ unicode-match-property-ecmascript@^2.0.0: unicode-property-aliases-ecmascript "^2.0.0" unicode-match-property-value-ecmascript@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" - integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + version "2.2.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz#a0401aee72714598f739b68b104e4fe3a0cb3c71" + integrity sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg== unicode-property-aliases-ecmascript@^2.0.0: version "2.1.0" @@ -7515,14 +7437,6 @@ unpipe@~1.0.0: resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== -update-browserslist-db@^1.0.13: - version "1.0.16" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz#f6d489ed90fb2f07d67784eb3f53d7891f736356" - integrity sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ== - dependencies: - escalade "^3.1.2" - picocolors "^1.0.1" - update-browserslist-db@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" @@ -7531,7 +7445,7 @@ update-browserslist-db@^1.1.1: escalade "^3.2.0" picocolors "^1.1.0" -uri-js@^4.2.2, uri-js@^4.4.1: +uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== @@ -7567,9 +7481,9 @@ uuid@^3.0.1: integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== v8-to-istanbul@^9.0.1: - version "9.2.0" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz#2ed7644a245cddd83d4e087b9b33b3e62dfd10ad" - integrity sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA== + version "9.3.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz#b9572abfa62bd556c16d75fdebc1a411d5ff3175" + integrity sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA== dependencies: "@jridgewell/trace-mapping" "^0.3.12" "@types/istanbul-lib-coverage" "^2.0.1" @@ -7617,36 +7531,37 @@ whatwg-url@^5.0.0: tr46 "~0.0.3" webidl-conversions "^3.0.0" -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== +which-boxed-primitive@^1.1.0, which-boxed-primitive@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz#d76ec27df7fa165f18d5808374a5fe23c29b176e" + integrity sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA== dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" + is-bigint "^1.1.0" + is-boolean-object "^1.2.1" + is-number-object "^1.1.1" + is-string "^1.1.1" + is-symbol "^1.1.1" -which-builtin-type@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.1.3.tgz#b1b8443707cc58b6e9bf98d32110ff0c2cbd029b" - integrity sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== +which-builtin-type@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz#89183da1b4907ab089a6b02029cc5d8d6574270e" + integrity sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q== dependencies: - function.prototype.name "^1.1.5" - has-tostringtag "^1.0.0" + call-bound "^1.0.2" + function.prototype.name "^1.1.6" + has-tostringtag "^1.0.2" is-async-function "^2.0.0" - is-date-object "^1.0.5" - is-finalizationregistry "^1.0.2" + is-date-object "^1.1.0" + is-finalizationregistry "^1.1.0" is-generator-function "^1.0.10" - is-regex "^1.1.4" + is-regex "^1.2.1" is-weakref "^1.0.2" isarray "^2.0.5" - which-boxed-primitive "^1.0.2" - which-collection "^1.0.1" - which-typed-array "^1.1.9" + which-boxed-primitive "^1.1.0" + which-collection "^1.0.2" + which-typed-array "^1.1.16" -which-collection@^1.0.1: +which-collection@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0" integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== @@ -7661,15 +7576,16 @@ which-module@^2.0.0: resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== -which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.9: - version "1.1.15" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" - integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== +which-typed-array@^1.1.16, which-typed-array@^1.1.18: + version "1.1.18" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.18.tgz#df2389ebf3fbb246a71390e90730a9edb6ce17ad" + integrity sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA== dependencies: available-typed-arrays "^1.0.7" - call-bind "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.3" for-each "^0.3.3" - gopd "^1.0.1" + gopd "^1.2.0" has-tostringtag "^1.0.2" which@^1.2.9, which@^1.3.1: @@ -7691,10 +7607,19 @@ word-wrap@^1.2.5: resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== -workerpool@6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343" - integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw== +workerpool@^6.5.1: + version "6.5.1" + resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.5.1.tgz#060f73b39d0caf97c6db64da004cd01b4c099544" + integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA== + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" wrap-ansi@^6.2.0: version "6.2.0" @@ -7714,6 +7639,15 @@ wrap-ansi@^7.0.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== + dependencies: + ansi-styles "^6.1.0" + string-width "^5.0.1" + strip-ansi "^7.0.1" + wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" @@ -7743,20 +7677,15 @@ ws@^6.2.3: dependencies: async-limiter "~1.0.0" -ws@^7, ws@^7.0.0: - version "7.5.9" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" - integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== - -ws@^7.5.10: +ws@^7, ws@^7.0.0, ws@^7.5.10: version "7.5.10" resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.10.tgz#58b5c20dc281633f6c19113f39b349bd8bd558d9" integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== ws@^8.2.3: - version "8.17.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.0.tgz#d145d18eca2ed25aaf791a183903f7be5e295fea" - integrity sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow== + version "8.18.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" + integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== xtend@~4.0.1: version "4.0.2" @@ -7783,21 +7712,11 @@ yallist@^3.0.2: resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== -yaml@^2.2.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.2.tgz#7a2b30f2243a5fc299e1f14ca58d475ed4bc5362" - integrity sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA== - -yaml@^2.2.2: +yaml@^2.2.1, yaml@^2.2.2: version "2.6.1" resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.1.tgz#42f2b1ba89203f374609572d5349fb8686500773" integrity sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg== -yargs-parser@20.2.4: - version "20.2.4" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" - integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== - yargs-parser@^18.1.2: version "18.1.3" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" @@ -7806,17 +7725,17 @@ yargs-parser@^18.1.2: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^20.2.2: +yargs-parser@^20.2.2, yargs-parser@^20.2.9: version "20.2.9" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== -yargs-parser@^21.1.1: +yargs-parser@^21.0.0, yargs-parser@^21.1.1: version "21.1.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== -yargs-unparser@2.0.0, yargs-unparser@^2.0.0: +yargs-unparser@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== @@ -7826,19 +7745,6 @@ yargs-unparser@2.0.0, yargs-unparser@^2.0.0: flat "^5.0.2" is-plain-obj "^2.1.0" -yargs@16.2.0, yargs@^16.0.3: - version "16.2.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" - integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.0" - y18n "^5.0.5" - yargs-parser "^20.2.2" - yargs@^15.1.0: version "15.4.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" @@ -7856,7 +7762,20 @@ yargs@^15.1.0: y18n "^4.0.0" yargs-parser "^18.1.2" -yargs@^17.3.1, yargs@^17.6.2: +yargs@^16.2.0: + version "16.2.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yargs@^17.0.0, yargs@^17.3.1, yargs@^17.6.2: version "17.7.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== diff --git a/android/build.gradle b/android/build.gradle index 2fa912e1..8a31e69b 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -108,6 +108,16 @@ android { appJSONGoogleMobileAdsOptimizeAdLoading : appJSONGoogleMobileAdsOptimizeAdLoadingBool ] buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() + + sourceSets { + main { + if (isNewArchitectureEnabled()) { + java.srcDirs += ['src/newarch'] + } else { + java.srcDirs += ['src/oldarch'] + } + } + } } lintOptions { disable 'GradleCompatible' diff --git a/android/src/main/java/io/invertase/googlemobileads/ReactNativeAppModule.java b/android/src/main/java/io/invertase/googlemobileads/ReactNativeAppModule.java index c845b11d..ef810132 100644 --- a/android/src/main/java/io/invertase/googlemobileads/ReactNativeAppModule.java +++ b/android/src/main/java/io/invertase/googlemobileads/ReactNativeAppModule.java @@ -30,10 +30,10 @@ import io.invertase.googlemobileads.common.ReactNativePreferences; public class ReactNativeAppModule extends ReactNativeModule { - private static final String TAG = "RNAppModule"; + static final String NAME = "RNAppModule"; ReactNativeAppModule(ReactApplicationContext reactContext) { - super(reactContext, TAG); + super(reactContext, NAME); } @Override diff --git a/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsConsentModule.java b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsConsentModule.java index 8e443ee9..aa81b097 100644 --- a/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsConsentModule.java +++ b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsConsentModule.java @@ -35,11 +35,11 @@ public class ReactNativeGoogleMobileAdsConsentModule extends ReactNativeModule { - private static final String TAG = "RNGoogleMobileAdsConsentModule"; + static final String NAME = "RNGoogleMobileAdsConsentModule"; private ConsentInformation consentInformation; public ReactNativeGoogleMobileAdsConsentModule(ReactApplicationContext reactContext) { - super(reactContext, TAG); + super(reactContext, NAME); consentInformation = UserMessagingPlatform.getConsentInformation(reactContext); } diff --git a/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsMediaView.kt b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsMediaView.kt new file mode 100644 index 00000000..2e1ce1a0 --- /dev/null +++ b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsMediaView.kt @@ -0,0 +1,57 @@ +package io.invertase.googlemobileads + +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import android.annotation.SuppressLint +import android.widget.ImageView +import com.facebook.react.bridge.ReactContext +import com.google.android.gms.ads.nativead.MediaView + +@SuppressLint("ViewConstructor") +class ReactNativeGoogleMobileAdsMediaView( + private val context: ReactContext +): MediaView(context) { + fun setResponseId(responseId: String?) { + val nativeModule = context.getNativeModule(ReactNativeGoogleMobileAdsNativeModule::class.java) + nativeModule?.getNativeAd(responseId ?: "")?.let { + this.mediaContent = it.mediaContent + requestLayout() + } + } + + fun setResizeMode(resizeMode: String?) { + when (resizeMode) { + "cover" -> setImageScaleType(ImageView.ScaleType.CENTER_CROP) + "contain" -> setImageScaleType(ImageView.ScaleType.CENTER_INSIDE) + "stretch" -> setImageScaleType(ImageView.ScaleType.FIT_XY) + } + } + + override fun requestLayout() { + super.requestLayout() + post(measureAndLayout) + } + + private val measureAndLayout = Runnable { + measure( + MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY), + MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY) + ) + layout(left, top, right, bottom) + } +} diff --git a/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsMediaViewManager.kt b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsMediaViewManager.kt new file mode 100644 index 00000000..42669b08 --- /dev/null +++ b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsMediaViewManager.kt @@ -0,0 +1,55 @@ +package io.invertase.googlemobileads + +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import com.facebook.react.bridge.ReactApplicationContext +import com.facebook.react.module.annotations.ReactModule +import com.facebook.react.uimanager.ThemedReactContext +import com.facebook.react.uimanager.ViewGroupManager +import com.facebook.react.uimanager.ViewManagerDelegate +import com.facebook.react.uimanager.annotations.ReactProp +import com.facebook.react.viewmanagers.RNGoogleMobileAdsMediaViewManagerDelegate +import com.facebook.react.viewmanagers.RNGoogleMobileAdsMediaViewManagerInterface + +@ReactModule(name = ReactNativeGoogleMobileAdsMediaViewManager.NAME) +class ReactNativeGoogleMobileAdsMediaViewManager( + reactContext: ReactApplicationContext +) : ViewGroupManager(reactContext), + RNGoogleMobileAdsMediaViewManagerInterface { + private val delegate: ViewManagerDelegate = RNGoogleMobileAdsMediaViewManagerDelegate(this) + + override fun getDelegate(): ViewManagerDelegate = delegate + + override fun getName(): String = NAME + + override fun createViewInstance(context: ThemedReactContext): ReactNativeGoogleMobileAdsMediaView = ReactNativeGoogleMobileAdsMediaView(context) + + @ReactProp(name = "responseId") + override fun setResponseId(view: ReactNativeGoogleMobileAdsMediaView, responseId: String?) { + view.setResponseId(responseId) + } + + @ReactProp(name = "resizeMode") + override fun setResizeMode(view: ReactNativeGoogleMobileAdsMediaView, resizeMode: String?) { + view.setResizeMode(resizeMode) + } + + companion object { + const val NAME = "RNGoogleMobileAdsMediaView" + } +} diff --git a/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsModule.kt b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsModule.kt index aedc2daa..e0b497ab 100644 --- a/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsModule.kt +++ b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsModule.kt @@ -26,13 +26,11 @@ import com.google.android.gms.ads.AdRequest import com.google.android.gms.ads.AdValue; import com.google.android.gms.ads.OnAdInspectorClosedListener -private const val SERVICE = "RNGoogleMobileAdsModule"; - class ReactNativeGoogleMobileAdsModule( reactContext: ReactApplicationContext ) : ReactContextBaseJavaModule(reactContext) { - override fun getName() = SERVICE + override fun getName() = NAME override fun getConstants(): Map { return mapOf( @@ -164,7 +162,6 @@ class ReactNativeGoogleMobileAdsModule( } } - @ReactMethod fun openDebugMenu(adUnit: String) { currentActivity?.runOnUiThread { @@ -181,4 +178,8 @@ class ReactNativeGoogleMobileAdsModule( fun setAppMuted(muted: Boolean) { MobileAds.setAppMuted(muted) } + + companion object { + const val NAME = "RNGoogleMobileAdsModule" + } } diff --git a/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeAdView.kt b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeAdView.kt new file mode 100644 index 00000000..eecb1578 --- /dev/null +++ b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeAdView.kt @@ -0,0 +1,107 @@ +package io.invertase.googlemobileads + +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import android.annotation.SuppressLint +import android.widget.FrameLayout +import com.facebook.react.bridge.ReactContext +import com.facebook.react.uimanager.UIManagerHelper +import com.facebook.react.uimanager.common.UIManagerType +import com.facebook.react.views.view.ReactViewGroup +import com.google.android.gms.ads.nativead.MediaView +import com.google.android.gms.ads.nativead.NativeAd +import com.google.android.gms.ads.nativead.NativeAdView +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.Job +import kotlinx.coroutines.delay +import kotlinx.coroutines.launch + + +@SuppressLint("ViewConstructor") +class ReactNativeGoogleMobileAdsNativeAdView( + private val context: ReactContext +): FrameLayout(context) { + val viewGroup = ReactViewGroup(context) + private val nativeAdView = NativeAdView(context) + private var nativeAd: NativeAd? = null + private var reloadJob: Job? = null + + init { + nativeAdView.addView(viewGroup) + addView(nativeAdView) + } + + fun setResponseId(responseId: String?) { + val nativeModule = context.getNativeModule(ReactNativeGoogleMobileAdsNativeModule::class.java) + nativeModule?.getNativeAd(responseId ?: "")?.let { + if (nativeAd == it) { + return + } + nativeAd = it + reloadAd() + } + } + + fun registerAsset(assetType: String, reactTag: Int) { + val uiManager = UIManagerHelper.getUIManagerForReactTag(context, reactTag) + val assetView = uiManager?.resolveView(reactTag) ?: return + when (assetType) { + "advertiser" -> nativeAdView.advertiserView = assetView + "body" -> nativeAdView.bodyView = assetView + "callToAction" -> nativeAdView.callToActionView = assetView + "headline" -> nativeAdView.headlineView = assetView + "price" -> nativeAdView.priceView = assetView + "store" -> nativeAdView.storeView = assetView + "starRating" -> nativeAdView.starRatingView = assetView + "icon" -> nativeAdView.iconView = assetView + "image" -> nativeAdView.imageView = assetView + "media" -> nativeAdView.mediaView = assetView as MediaView + } + reloadAd() + } + + private fun reloadAd() { + reloadJob?.cancel() + reloadJob = CoroutineScope(Dispatchers.Main).launch { + delay(100) + nativeAd?.let { nativeAdView.setNativeAd(it) } + nativeAdView.rootView.requestLayout() + } + } + + override fun requestLayout() { + super.requestLayout() + post(measureAndLayout) + } + + fun destroy() { + reloadJob?.cancel() + reloadJob = null + nativeAdView.removeView(viewGroup) + nativeAdView.destroy() + } + + private val measureAndLayout = Runnable { + measure( + MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY), + MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY) + ) + layout(left, top, right, bottom) + } +} diff --git a/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeAdViewManager.kt b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeAdViewManager.kt new file mode 100644 index 00000000..5ae43917 --- /dev/null +++ b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeAdViewManager.kt @@ -0,0 +1,85 @@ +package io.invertase.googlemobileads + +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import android.view.View +import com.facebook.react.bridge.ReactApplicationContext +import com.facebook.react.bridge.ReactMethod +import com.facebook.react.module.annotations.ReactModule +import com.facebook.react.uimanager.ThemedReactContext +import com.facebook.react.uimanager.ViewGroupManager +import com.facebook.react.uimanager.ViewManagerDelegate +import com.facebook.react.uimanager.annotations.ReactProp +import com.facebook.react.viewmanagers.RNGoogleMobileAdsNativeViewManagerDelegate +import com.facebook.react.viewmanagers.RNGoogleMobileAdsNativeViewManagerInterface + +@ReactModule(name = ReactNativeGoogleMobileAdsNativeAdViewManager.NAME) +class ReactNativeGoogleMobileAdsNativeAdViewManager( + reactContext: ReactApplicationContext +) : ViewGroupManager(reactContext), + RNGoogleMobileAdsNativeViewManagerInterface { + private val delegate: ViewManagerDelegate = RNGoogleMobileAdsNativeViewManagerDelegate(this) + + override fun getDelegate(): ViewManagerDelegate = delegate + + override fun getName(): String = NAME + + override fun createViewInstance(context: ThemedReactContext): ReactNativeGoogleMobileAdsNativeAdView = ReactNativeGoogleMobileAdsNativeAdView(context) + + override fun onDropViewInstance(adView: ReactNativeGoogleMobileAdsNativeAdView) { + super.onDropViewInstance(adView) + adView.destroy() + } + + override fun prepareToRecycleView( + reactContext: ThemedReactContext, + view: ReactNativeGoogleMobileAdsNativeAdView + ): ReactNativeGoogleMobileAdsNativeAdView? { + return null + } + + @ReactProp(name = "responseId") + override fun setResponseId(view: ReactNativeGoogleMobileAdsNativeAdView, responseId: String?) { + view.setResponseId(responseId) + } + + @ReactMethod + override fun registerAsset(view: ReactNativeGoogleMobileAdsNativeAdView, assetKey: String, reactTag: Int) { + view.registerAsset(assetKey, reactTag) + } + + override fun addView(parent: ReactNativeGoogleMobileAdsNativeAdView, child: View, index: Int) { + parent.viewGroup.addView(child, index) + } + + override fun getChildCount(parent: ReactNativeGoogleMobileAdsNativeAdView): Int { + return parent.viewGroup.childCount + } + + override fun getChildAt(parent: ReactNativeGoogleMobileAdsNativeAdView, index: Int): View? { + return parent.viewGroup.getChildAt(index) + } + + override fun removeViewAt(parent: ReactNativeGoogleMobileAdsNativeAdView, index: Int) { + parent.viewGroup.removeViewAt(index) + } + + companion object { + const val NAME = "RNGoogleMobileAdsNativeView" + } +} diff --git a/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeModule.kt b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeModule.kt new file mode 100644 index 00000000..f1fb2194 --- /dev/null +++ b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsNativeModule.kt @@ -0,0 +1,211 @@ +package io.invertase.googlemobileads + +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import com.facebook.react.bridge.Arguments +import com.facebook.react.bridge.Promise +import com.facebook.react.bridge.ReactApplicationContext +import com.facebook.react.bridge.ReactMethod +import com.facebook.react.bridge.ReadableMap +import com.facebook.react.module.annotations.ReactModule +import com.google.android.gms.ads.AdListener +import com.google.android.gms.ads.AdLoader +import com.google.android.gms.ads.MediaAspectRatio +import com.google.android.gms.ads.VideoController.VideoLifecycleCallbacks +import com.google.android.gms.ads.VideoOptions +import com.google.android.gms.ads.nativead.NativeAd +import com.google.android.gms.ads.nativead.NativeAdOptions + +@ReactModule(ReactNativeGoogleMobileAdsNativeModule.NAME) +class ReactNativeGoogleMobileAdsNativeModule( + reactContext: ReactApplicationContext +) : NativeGoogleMobileAdsNativeModuleSpec(reactContext) { + private val adHolders = HashMap() + + override fun getName() = NAME + + @ReactMethod + override fun load(adUnitId: String, requestOptions: ReadableMap, promise: Promise) { + val holder = NativeAdHolder(adUnitId, requestOptions) + holder.loadAd { nativeAd -> + val responseId = nativeAd.responseInfo?.responseId ?: return@loadAd + adHolders[responseId] = holder + + val data = Arguments.createMap() + data.putString("responseId", responseId) + data.putString("advertiser", nativeAd.advertiser) + data.putString("body", nativeAd.body) + data.putString("callToAction", nativeAd.callToAction) + data.putString("headline", nativeAd.headline) + data.putString("price", nativeAd.price) + data.putString("store", nativeAd.store) + nativeAd.starRating?.let { + data.putDouble("starRating", it) + } ?: run { + data.putNull("starRating") + } + nativeAd.icon?.let { + val icon = Arguments.createMap() + icon.putDouble("scale", it.scale) + icon.putString("url", it.uri.toString()) + data.putMap("icon", icon) + } ?: run { + data.putNull("icon") + } + val mediaContent = Arguments.createMap() + nativeAd.mediaContent?.let { + mediaContent.putDouble("aspectRatio", it.aspectRatio.toDouble()) + mediaContent.putBoolean("hasVideoContent", it.hasVideoContent()) + mediaContent.putDouble("duration", it.duration.toDouble()) + data.putMap("mediaContent", mediaContent) + } + + promise.resolve(data) + } + } + + @ReactMethod + override fun destroy(responseId: String) { + adHolders[responseId]?.destroy() + adHolders.remove(responseId) + } + + override fun invalidate() { + super.invalidate() + adHolders.values.forEach { + it.destroy() + } + adHolders.clear() + } + + fun getNativeAd(responseId: String): NativeAd? { + return adHolders[responseId]?.nativeAd + } + + private inner class NativeAdHolder(private val adUnitId: String, private val requestOptions: ReadableMap) { + var nativeAd: NativeAd? = null + private set + + private val adListener: AdListener = object : AdListener() { + override fun onAdImpression() { + emitAdEvent("impression") + } + + override fun onAdClicked() { + emitAdEvent("clicked") + } + + override fun onAdOpened() { + emitAdEvent("opened") + } + + override fun onAdClosed() { + emitAdEvent("closed") + } + } + + private val videoLifecycleCallbacks: VideoLifecycleCallbacks = object : VideoLifecycleCallbacks() { + override fun onVideoPlay() { + emitAdEvent("video_played") + } + + override fun onVideoPause() { + emitAdEvent("video_paused") + } + + override fun onVideoEnd() { + emitAdEvent("video_ended") + } + + override fun onVideoMute(isMuted: Boolean) { + emitAdEvent(if (isMuted) { + "video_muted" + } else { + "video_unmuted" + }) + } + } + + fun loadAd(loadedListener: NativeAd.OnNativeAdLoadedListener) { + val mediaAspectRatio = if (requestOptions.hasKey("aspectRatio")) { + when (requestOptions.getInt("aspectRatio")) { + 1 -> MediaAspectRatio.ANY + 2 -> MediaAspectRatio.PORTRAIT + 3 -> MediaAspectRatio.LANDSCAPE + 4 -> MediaAspectRatio.SQUARE + else -> MediaAspectRatio.UNKNOWN + } + } else { + MediaAspectRatio.ANY + } + val adChoicesPlacement = if (requestOptions.hasKey("adChoicesPlacement")) { + when (requestOptions.getInt("adChoicesPlacement")) { + 0 -> NativeAdOptions.ADCHOICES_TOP_RIGHT + 1 -> NativeAdOptions.ADCHOICES_TOP_LEFT + 2 -> NativeAdOptions.ADCHOICES_BOTTOM_RIGHT + 3 -> NativeAdOptions.ADCHOICES_BOTTOM_LEFT + else -> NativeAdOptions.ADCHOICES_TOP_RIGHT + } + } else { + NativeAdOptions.ADCHOICES_TOP_RIGHT + } + val startVideoMuted = if (requestOptions.hasKey("startVideoMuted")) { + requestOptions.getBoolean("startVideoMuted") + } else { + true + } + val videoOptions = VideoOptions.Builder() + .setStartMuted(startVideoMuted) + .build() + val nativeAdOptions = NativeAdOptions.Builder() +// .setReturnUrlsForImageAssets(true) + .setMediaAspectRatio(mediaAspectRatio) + .setAdChoicesPlacement(adChoicesPlacement) + .setVideoOptions(videoOptions) + .build() + val adLoader = AdLoader.Builder(reactApplicationContext, adUnitId) + .withNativeAdOptions(nativeAdOptions) + .withAdListener(adListener) + .forNativeAd { nativeAd -> + this.nativeAd = nativeAd + nativeAd.mediaContent?.videoController?.videoLifecycleCallbacks = videoLifecycleCallbacks + loadedListener.onNativeAdLoaded(nativeAd) + } + .build() + val adRequest = ReactNativeGoogleMobileAdsCommon.buildAdRequest(requestOptions) + adLoader.loadAd(adRequest) + } + + fun destroy() { + nativeAd?.destroy() + nativeAd = null + } + + private fun emitAdEvent(type: String) { + val nativeAd = this.nativeAd ?: return + val payload = Arguments.createMap() + payload.putString("responseId", nativeAd.responseInfo?.responseId) + payload.putString("type", type) + this@ReactNativeGoogleMobileAdsNativeModule.emitOnAdEvent(payload) + } + } + + companion object { + const val NAME = "RNGoogleMobileAdsNativeModule" + } +} diff --git a/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsPackage.kt b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsPackage.kt index 10269e62..5ba01fc1 100644 --- a/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsPackage.kt +++ b/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsPackage.kt @@ -17,26 +17,115 @@ package io.invertase.googlemobileads * */ -import com.facebook.react.ReactPackage +import com.facebook.react.TurboReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext +import com.facebook.react.module.model.ReactModuleInfo +import com.facebook.react.module.model.ReactModuleInfoProvider import com.facebook.react.uimanager.ViewManager @SuppressWarnings("unused") -class ReactNativeGoogleMobileAdsPackage : ReactPackage { - override fun createNativeModules(reactContext: ReactApplicationContext) = listOf( - ReactNativeAppModule(reactContext), - ReactNativeGoogleMobileAdsModule(reactContext), - ReactNativeGoogleMobileAdsConsentModule(reactContext), - ReactNativeGoogleMobileAdsAppOpenModule(reactContext), - ReactNativeGoogleMobileAdsInterstitialModule(reactContext), - ReactNativeGoogleMobileAdsRewardedModule(reactContext), - ReactNativeGoogleMobileAdsRewardedInterstitialModule(reactContext) - ) - +class ReactNativeGoogleMobileAdsPackage : TurboReactPackage() { override fun createViewManagers( reactContext: ReactApplicationContext ): List> { - return listOf(ReactNativeGoogleMobileAdsBannerAdViewManager()) + return listOf( + ReactNativeGoogleMobileAdsBannerAdViewManager(), + ReactNativeGoogleMobileAdsNativeAdViewManager(reactContext), + ReactNativeGoogleMobileAdsMediaViewManager(reactContext) + ) + } + + override fun getModule(name: String, reactContext: ReactApplicationContext): NativeModule? { + when (name) { + ReactNativeAppModule.NAME -> return ReactNativeAppModule(reactContext) + ReactNativeGoogleMobileAdsModule.NAME -> return ReactNativeGoogleMobileAdsModule(reactContext) + ReactNativeGoogleMobileAdsConsentModule.NAME -> return ReactNativeGoogleMobileAdsConsentModule(reactContext) + ReactNativeGoogleMobileAdsAppOpenModule.NAME -> return ReactNativeGoogleMobileAdsAppOpenModule(reactContext) + ReactNativeGoogleMobileAdsInterstitialModule.NAME -> return ReactNativeGoogleMobileAdsInterstitialModule(reactContext) + ReactNativeGoogleMobileAdsRewardedModule.NAME -> return ReactNativeGoogleMobileAdsRewardedModule(reactContext) + ReactNativeGoogleMobileAdsRewardedInterstitialModule.NAME -> return ReactNativeGoogleMobileAdsRewardedInterstitialModule(reactContext) + ReactNativeGoogleMobileAdsNativeModule.NAME -> return ReactNativeGoogleMobileAdsNativeModule(reactContext) + } + return null } + + override fun getReactModuleInfoProvider(): ReactModuleInfoProvider = + ReactModuleInfoProvider { + val moduleInfos: MutableMap = HashMap() + val isTurboModule = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED + moduleInfos[ReactNativeAppModule.NAME] = + ReactModuleInfo( + ReactNativeAppModule.NAME, + ReactNativeAppModule.NAME, + false, // canOverrideExistingModule + false, // needsEagerInit + false, // isCxxModule + false, // isTurboModule + ) + moduleInfos[ReactNativeGoogleMobileAdsModule.NAME] = + ReactModuleInfo( + ReactNativeGoogleMobileAdsModule.NAME, + ReactNativeGoogleMobileAdsModule.NAME, + false, + false, + false, + false, + ) + moduleInfos[ReactNativeGoogleMobileAdsConsentModule.NAME] = + ReactModuleInfo( + ReactNativeGoogleMobileAdsConsentModule.NAME, + ReactNativeGoogleMobileAdsConsentModule.NAME, + false, + false, + false, + false, + ) + moduleInfos[ReactNativeGoogleMobileAdsAppOpenModule.NAME] = + ReactModuleInfo( + ReactNativeGoogleMobileAdsAppOpenModule.NAME, + ReactNativeGoogleMobileAdsAppOpenModule.NAME, + false, + false, + false, + false, + ) + moduleInfos[ReactNativeGoogleMobileAdsInterstitialModule.NAME] = + ReactModuleInfo( + ReactNativeGoogleMobileAdsInterstitialModule.NAME, + ReactNativeGoogleMobileAdsInterstitialModule.NAME, + false, + false, + false, + false, + ) + moduleInfos[ReactNativeGoogleMobileAdsRewardedModule.NAME] = + ReactModuleInfo( + ReactNativeGoogleMobileAdsRewardedModule.NAME, + ReactNativeGoogleMobileAdsRewardedModule.NAME, + false, + false, + false, + false, + ) + moduleInfos[ReactNativeGoogleMobileAdsRewardedInterstitialModule.NAME] = + ReactModuleInfo( + ReactNativeGoogleMobileAdsRewardedInterstitialModule.NAME, + ReactNativeGoogleMobileAdsRewardedInterstitialModule.NAME, + false, + false, + false, + false, + ) + moduleInfos[ReactNativeGoogleMobileAdsNativeModule.NAME] = + ReactModuleInfo( + ReactNativeGoogleMobileAdsNativeModule.NAME, + ReactNativeGoogleMobileAdsNativeModule.NAME, + false, + false, + false, + isTurboModule, + ) + moduleInfos + } } diff --git a/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsMediaViewManagerDelegate.java b/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsMediaViewManagerDelegate.java new file mode 100644 index 00000000..10379f25 --- /dev/null +++ b/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsMediaViewManagerDelegate.java @@ -0,0 +1,29 @@ +package com.facebook.react.viewmanagers; + +import android.view.View; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import com.facebook.react.uimanager.BaseViewManagerDelegate; +import com.facebook.react.uimanager.BaseViewManagerInterface; + +public class RNGoogleMobileAdsMediaViewManagerDelegate< + T extends View, + U extends BaseViewManagerInterface & RNGoogleMobileAdsMediaViewManagerInterface> + extends BaseViewManagerDelegate { + public RNGoogleMobileAdsMediaViewManagerDelegate(U viewManager) { + super(viewManager); + } + + @Override + public void setProperty(@NonNull T view, String propName, @Nullable Object value) { + assert propName != null; + switch (propName) { + case "responseId": + mViewManager.setResponseId(view, value == null ? null : (String) value); + break; + case "resizeMode": + mViewManager.setResizeMode(view, value == null ? null : (String) value); + break; + } + } +} diff --git a/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsMediaViewManagerInterface.java b/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsMediaViewManagerInterface.java new file mode 100644 index 00000000..216ec431 --- /dev/null +++ b/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsMediaViewManagerInterface.java @@ -0,0 +1,10 @@ +package com.facebook.react.viewmanagers; + +import android.view.View; +import androidx.annotation.Nullable; + +public interface RNGoogleMobileAdsMediaViewManagerInterface { + void setResponseId(T view, @Nullable String responseId); + + void setResizeMode(T view, @Nullable String resizeMode); +} diff --git a/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsNativeViewManagerDelegate.java b/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsNativeViewManagerDelegate.java new file mode 100644 index 00000000..f108b8d4 --- /dev/null +++ b/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsNativeViewManagerDelegate.java @@ -0,0 +1,33 @@ +package com.facebook.react.viewmanagers; + +import android.view.View; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import com.facebook.react.bridge.ReadableArray; +import com.facebook.react.uimanager.BaseViewManagerDelegate; +import com.facebook.react.uimanager.BaseViewManagerInterface; + +public class RNGoogleMobileAdsNativeViewManagerDelegate< + T extends View, + U extends BaseViewManagerInterface & RNGoogleMobileAdsNativeViewManagerInterface> + extends BaseViewManagerDelegate { + public RNGoogleMobileAdsNativeViewManagerDelegate(U viewManager) { + super(viewManager); + } + + @Override + public void setProperty(@NonNull T view, String propName, @Nullable Object value) { + assert propName != null; + if (propName.equals("responseId")) { + mViewManager.setResponseId(view, value == null ? null : (String) value); + } + } + + @Override + public void receiveCommand(@NonNull T view, String commandName, ReadableArray args) { + assert commandName != null; + if (commandName.equals("registerAsset")) { + mViewManager.registerAsset(view, args.getString(0), args.getInt(1)); + } + } +} diff --git a/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsNativeViewManagerInterface.java b/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsNativeViewManagerInterface.java new file mode 100644 index 00000000..1c9e248d --- /dev/null +++ b/android/src/oldarch/com/facebook/react/viewmanagers/RNGoogleMobileAdsNativeViewManagerInterface.java @@ -0,0 +1,10 @@ +package com.facebook.react.viewmanagers; + +import android.view.View; +import androidx.annotation.Nullable; + +public interface RNGoogleMobileAdsNativeViewManagerInterface { + void setResponseId(T view, @Nullable String responseId); + + void registerAsset(T view, String assetKey, int reactTag); +} diff --git a/android/src/oldarch/io/invertase/googlemobileads/NativeGoogleMobileAdsNativeModuleSpec.kt b/android/src/oldarch/io/invertase/googlemobileads/NativeGoogleMobileAdsNativeModuleSpec.kt new file mode 100644 index 00000000..d44c4656 --- /dev/null +++ b/android/src/oldarch/io/invertase/googlemobileads/NativeGoogleMobileAdsNativeModuleSpec.kt @@ -0,0 +1,18 @@ +package io.invertase.googlemobileads + +import com.facebook.react.bridge.Promise +import com.facebook.react.bridge.ReactApplicationContext +import com.facebook.react.bridge.ReactContextBaseJavaModule +import com.facebook.react.bridge.ReadableMap +import com.facebook.react.modules.core.DeviceEventManagerModule + +abstract class NativeGoogleMobileAdsNativeModuleSpec(reactContext: ReactApplicationContext) : ReactContextBaseJavaModule(reactContext) { + abstract fun load(adUnitId: String, requestOptions: ReadableMap, promise: Promise) + abstract fun destroy(responseId: String) + + fun emitOnAdEvent(params: ReadableMap) { + reactApplicationContext + .getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter::class.java) + .emit("RNGMANativeAdEvent", params) + } +} diff --git a/docs.json b/docs.json index 060fe40f..a3406182 100644 --- a/docs.json +++ b/docs.json @@ -8,6 +8,7 @@ [ ["Getting Started", "/"], ["Displaying Ads", "/displaying-ads"], + ["Native Ads", "/native-ads"], ["Common Reasons For Ads Not Showing", "/common-reasons-for-ads-not-showing"] ] ], diff --git a/docs/displaying-ads.mdx b/docs/displaying-ads.mdx index 1903c1dd..ab5b9ffe 100644 --- a/docs/displaying-ads.mdx +++ b/docs/displaying-ads.mdx @@ -503,3 +503,7 @@ function App() { ``` The `sizes` prop takes an array of [`BannerAdSize`](https://github.com/invertase/react-native-google-mobile-ads/blob/main/src/BannerAdSize.ts) types. + +## Native Ads + +Head over to the [Native Ads](/native-ads) documentation. diff --git a/docs/native-ads.mdx b/docs/native-ads.mdx new file mode 100644 index 00000000..9654ddb2 --- /dev/null +++ b/docs/native-ads.mdx @@ -0,0 +1,365 @@ +# Native Ads + +Native ads are ad assets that are presented to users through UI components that are native to the platform. +They're shown using the same types of views with which you're already building your layouts, and can be formatted to match your app's visual design. + +When a native ad loads, your app receives an ad object that contains its assets, and the app — rather than the Google Mobile Ads SDK — is responsible for displaying them. + +Broadly speaking, there are two parts to successfully implementing native ads: Loading an ad using the SDK and then displaying the ad content in your app. + +## Load ads + +Native ads are loaded with `NativeAd.createForAdRequest` static method, which returns a promise that resolves with a `NativeAd` object. +The first argument of the method is the "Ad Unit ID". +For testing, we can use a Test ID, however for production the ID from the Google AdMob dashboard under "Ad units" should be used: + +```tsx +NativeAd.createForAdRequest(TestIds.NATIVE) + .then(setNativeAd) + .catch(console.error); +``` + +### Native ad Options + +Native ads have many advanced features that allow you to make additional customizations to create the best possible ad experience. + +You can pass an optional `NativeAdRequestOptions` object as the second argument to `NativeAd.createForAdRequest` to customize the ad request: + +```tsx +NativeAd.createForAdRequest(TestIds.NATIVE, { + aspectRatio: NativeMediaAspectRatio.LANDSCAPE, +}); +``` + +#### Preferred media aspect ratio controls + +Media Aspect Ratio Controls let you specify a preference for the aspect ratio of ad creatives. + + +Use of this API does not guarantee that all ad creatives will meet the preference specified. + + +Specify `requestOptions.aspectRatio` with a `NativeMediaAspectRatio` enum value when calling `NativeAd.createForAdRequest`. + +- When unset, the returned ad can have any media aspect ratio. +- When set, you will be able to improve the user experience by specifying the preferred type of aspect ratio. + +The following example instructs the SDK to prefer a return image or video with a specific aspect ratio. + +```tsx +NativeAd.createForAdRequest(TestIds.NATIVE, { + aspectRatio: NativeMediaAspectRatio.LANDSCAPE, +}); +``` + +#### AdChoices placements + +The AdChoices position controls lets you choose which corner to render the AdChoices icon. + +Specify `requestOptions.adChoicesPlacement` with a `NativeAdChoicesPlacement` enum value when calling `NativeAd.createForAdRequest`. + +- If unset, the AdChoices icon position is set to the top right. +- If set, AdChoices is placed at the custom position as requested. + +The following example demonstrates how to set a custom AdChoices image position. + +```tsx +NativeAd.createForAdRequest(TestIds.NATIVE, { + adChoicesPlacement: NativeAdChoicesPlacement.TOP_LEFT, +}); +``` + +#### Start mute behavior + +The start muted behavior lets you disable or enable a video's starting audio. + +Specify `requestOptions.startVideoMuted` with a boolean value when calling `NativeAd.createForAdRequest`. + +- The start muted behavior is enabled by default. +- When disabled, your app requests the video should begin with audio. +- When enabled, your app requests that the video should begin with audio muted. + +The following example shows how to start the video with un-muted audio. + +```tsx +NativeAd.createForAdRequest(TestIds.NATIVE, { + startVideoMuted: false, +}); +``` + +#### Other Ad Request Options +You can specify other request options to be sent while loading an advert, such as keywords and location. +Setting additional request options helps AdMob choose better tailored ads from the network. +View the [RequestOptions](https://github.com/invertase/react-native-google-mobile-ads/blob/main/src/types/RequestOptions.ts) source code to see the full range of options available. + +## Display ads + +When a native ad loads, your app is then responsible for displaying the ad (though it doesn't necessarily have to do so immediately). +To make displaying system-defined ad formats easier, the SDK offers some useful resources, as described below. + +### NativeAdView component + +For the NativeAd format, there is the corresponding `NativeAdView` component. +This component is a wrapper component that publishers should use as the root for the NativeAd. +A single `NativeAdView` corresponds to a single native ad. +Each view used to display that ads assets should be placed within the view hierarchy of the `NativeAdView` component. +Pass the `NativeAd` object to the `nativeAd` prop of the `NativeAdView` component to register the ad view: + +```tsx +const NativeComponent = () => { + const [nativeAd, setNativeAd] = useState(); + + useEffect(() => { + NativeAd.createForAdRequest(TestIds.NATIVE) + .then(setNativeAd) + .catch(console.error); + }, []); + + return ( + + // Components to display assets must be placed here + + ); +}; +``` + +### NativeAsset component + +`NativeAsset` component, which should be placed within the view hierarchy of a `NativeAdView`, is used to register the view used for each individual asset. +Registering the views in this way allows the SDK to automatically handle tasks such as: + +- Recording clicks. +- Recording impressions (when the first pixel is visible on the screen). +- Displaying the AdChoices overlay. + +`NativeAsset` component is a headless component, which means the component does not have UI implementation. +Customize your UI components as needed and place them inside the `NativeAsset` component, setting the `assetType` prop to the asset type you are displaying: + +```tsx +const NativeComponent = () => { + const [nativeAd, setNativeAd] = useState(); + + useEffect(() => { + NativeAd.createForAdRequest(TestIds.NATIVE) + .then(setNativeAd) + .catch(console.error); + }, []); + + return ( + + + {nativeAd.headline} + + + ); +}; +``` + +Place the asset view(such as `Text`, `Image` component) as a direct child of the `NativeAsset` component. See more in [Caveats: `NativeAsset` placement](/native-ads#nativeasset-placement) section. + +### NativeMediaView component + +Main image and video assets are displayed to users via `NativeMediaView`. It should be placed within the view hierarchy of a `NativeAdView`, as with any other asset view. + +Unlike other asset views, the `NativeMediaView` automatically populates its content. + +```tsx +const NativeComponent = () => { + return ( + + + // Other assets.. + + ); +}; +``` + +#### Resize Mode + +The `NativeMediaView` component respects the `resizeMode` property when displaying images. The `resizeMode` defaults to `cover`. + +Supports the following values: +- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that: + - Both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding) + - At least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding) +- `contain`: Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or less than the corresponding dimension of the view (minus padding). +- `stretch`: Scale width and height independently, This may change the aspect ratio of the source image. + +NativeMediaView's `aspectRatio` style property is set to `nativeAd.mediaContent.aspectRatio` by default. + +```tsx +const NativeComponent = () => { + return ( + + + // Other assets.. + + ); +}; +``` + +### AdChoices overlay + +An AdChoices overlay is added as an ad view by the SDK when a backfill ad is returned. +If your app uses native ads backfill, leave space in your [preferred corner](/native-ads#adchoices-placements) of your native ad view for the automatically inserted AdChoices logo. +Also, it's important that the AdChoices overlay is seen, so choose background colors and images appropriately. +For more information on the overlay's appearance and function, refer to the [programmatic native ads implementation guidelines](https://support.google.com/admob/answer/6329638#adchoices). + +### Ad attribution for programmatic native ads + +When displaying programmatic native ads, you must display an ad attribution to denote that the view is an advertisement. +Learn more in [policy guidelines](https://support.google.com/admob/answer/6329638#ad-attribution). + +### Code example + +These are the steps for displaying a native ad: + +1. Place the `NativeAdView`, register it by setting the `nativeAd` prop to the NativeAd object. +2. For each ad asset to be displayed: + - Populate the asset view with the asset in the `NativeAd` object. + - Register the asset view by wrapping it with the `NativeAsset` component. +3. Place the `NativeMediaView` inside your native ad layout to display media asset. + +```tsx +const NativeComponent = () => { + const [nativeAd, setNativeAd] = useState(); + + useEffect(() => { + NativeAd.createForAdRequest(TestIds.NATIVE) + .then(setNativeAd) + .catch(console.error); + }, []); + + return ( + // Wrap all the ad assets in the NativeAdView component, and register the view with the nativeAd prop + + // Display the icon asset with Image component, and use NativeAsset to register the view + {nativeAd.icon && ( + + + + )} + // Display the headline asset with Text component, and use NativeAsset to register the view + + + {nativeAd.headline} + + + // Always display an ad attribution to denote that the view is an advertisement + Sponsored + // Display the media asset + + // Repeat the process for the other assets in the NativeAd. + + ); +}; +``` + +## Receiving ad events + +The `NativeAd` object emits events that you can listen to. + +Use the `addAdEventListener` method to listen to ad events emitted by the `NativeAd`. Pass one of the `NativeAdEventType` enum values to specify the event type. + +Check the [NativeAdEventType](https://github.com/invertase/react-native-google-mobile-ads/blob/main/src/NativeAdEventType.ts) source code to see the full range of events available. + +```tsx +const NativeComponent = () => { + const [nativeAd, setNativeAd] = useState(); + + useEffect(() => { + NativeAd.createForAdRequest(TestIds.NATIVE) + .then(setNativeAd) + .catch(console.error); + }, []); + + useEffect(() => { + if (!nativeAd) return; + const listener = nativeAd.addAdEventListener(NativeAdEventType.CLICKED, () => { + console.log('Native ad clicked'); + }); + return () => { + listener.remove(); + // or + nativeAd.destroy(); + }; + }, [nativeAd]); + + return ( + + // Components to display assets must be placed here + + ); +}; +``` + +## Destroying ads + +Always destroy the `NativeAd` object when it is no longer needed to free up resources. + +Calling the `destroy` method also removes all event listeners registered on the `NativeAd` object. + +```tsx +const NativeComponent = () => { + const [nativeAd, setNativeAd] = useState(); + + useEffect(() => { + NativeAd.createForAdRequest(TestIds.NATIVE) + .then(setNativeAd) + .catch(console.error); + }, []); + + useEffect(() => { + if (!nativeAd) return; + return () => { + nativeAd.destroy(); + }; + }, [nativeAd]); + + return ( + + // Components to display assets must be placed here + + ); +}; +``` + +## Caveats / Limitations + +### `NativeAsset` placement + +Place the asset view(such as `Text`, `Image` component) as a direct child of the `NativeAsset` component, +and do not wrap the asset view with another view. +The SDK automatically handles tasks such as recording / handling clicks on the asset view. +Wrapping the asset view with another view can interfere with these tasks. + +Do: +```tsx + + {nativeAd.cta} + + + + +``` +Don't: +```tsx + + + {nativeAd.cta} + + + + + + + +``` + +### Not implemented features + +These features are not implemented in the current version: + - Custom Ad Choices view + - Custom video playback controls + - Custom click gestures + - [Custom native ad formats](https://support.google.com/admanager/answer/6366911) diff --git a/ios/RNGoogleMobileAds/RNGoogleMobileAdsMediaView.h b/ios/RNGoogleMobileAds/RNGoogleMobileAdsMediaView.h new file mode 100644 index 00000000..8600feb9 --- /dev/null +++ b/ios/RNGoogleMobileAds/RNGoogleMobileAdsMediaView.h @@ -0,0 +1,49 @@ +/** + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +#import +#import +#import + +#ifdef RCT_NEW_ARCH_ENABLED +#import +#else +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +#ifdef RCT_NEW_ARCH_ENABLED +@interface RNGoogleMobileAdsMediaView : RCTViewComponentView + +@property(nonatomic, strong, nullable) GADMediaView *contentView; +#else +@interface RNGoogleMobileAdsMediaView : GADMediaView + +- (instancetype)initWithBridge:(RCTBridge *)bridge; +#endif + +@property(nonatomic, copy) NSString *responseId; +@property(nonatomic, copy) NSString *resizeMode; + +@end + +@interface RNGoogleMobileAdsMediaViewManager : RCTViewManager + +@end + +NS_ASSUME_NONNULL_END diff --git a/ios/RNGoogleMobileAds/RNGoogleMobileAdsMediaView.mm b/ios/RNGoogleMobileAds/RNGoogleMobileAdsMediaView.mm new file mode 100644 index 00000000..07fae886 --- /dev/null +++ b/ios/RNGoogleMobileAds/RNGoogleMobileAdsMediaView.mm @@ -0,0 +1,152 @@ +/** + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +#import "RNGoogleMobileAdsMediaView.h" +#import "RNGoogleMobileAdsNativeModule.h" + +#ifdef RCT_NEW_ARCH_ENABLED +#import +#import +#import +#import + +#import "RCTFabricComponentsPlugins.h" +#endif + +@interface RCTBridge (Private) ++ (RCTBridge *)currentBridge; +@end + +#ifdef RCT_NEW_ARCH_ENABLED +using namespace facebook::react; + +@interface RNGoogleMobileAdsMediaView () +@end +#endif + +@implementation RNGoogleMobileAdsMediaView { + __weak RCTBridge *_bridge; + __weak RNGoogleMobileAdsNativeModule *_nativeModule; + GADMediaView *_mediaView; + UIViewContentMode _contentMode; +} + +#ifdef RCT_NEW_ARCH_ENABLED +#pragma mark - Fabric specific + +- (instancetype)initWithFrame:(CGRect)frame { + if (self = [super initWithFrame:frame]) { + static const auto defaultProps = std::make_shared(); + _props = defaultProps; + + _bridge = [RCTBridge currentBridge]; + _nativeModule = [_bridge moduleForClass:RNGoogleMobileAdsNativeModule.class]; + _mediaView = [[GADMediaView alloc] init]; + _contentMode = UIViewContentModeScaleAspectFill; + self.contentView = _mediaView; + } + + return self; +} + +#pragma mark - RCTComponentViewProtocol + ++ (ComponentDescriptorProvider)componentDescriptorProvider { + return concreteComponentDescriptorProvider(); +} + ++ (BOOL)shouldBeRecycled { + return NO; +} + +- (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const &)oldProps { + const auto &oldViewProps = + *std::static_pointer_cast(_props); + const auto &newViewProps = + *std::static_pointer_cast(props); + + if (oldViewProps.responseId != newViewProps.responseId) { + NSString *responseId = [[NSString alloc] initWithUTF8String:newViewProps.responseId.c_str()]; + [self setResponseId:responseId]; + } + + if (oldViewProps.resizeMode != newViewProps.resizeMode) { + NSString *resizeMode = [[NSString alloc] initWithUTF8String:newViewProps.resizeMode.c_str()]; + [self setResizeMode:resizeMode]; + } + + [super updateProps:props oldProps:oldProps]; +} + +#else +#pragma mark - Paper specific + +- (instancetype)initWithBridge:(RCTBridge *)bridge { + if (self = [super init]) { + _bridge = bridge; + _nativeModule = [_bridge moduleForClass:RNGoogleMobileAdsNativeModule.class]; + _mediaView = self; + } + return self; +} + +#endif // RCT_NEW_ARCH_ENABLED + +#pragma mark - Common logics + +- (void)setResponseId:(NSString *)responseId { + _responseId = responseId; + GADNativeAd *nativeAd = [_nativeModule nativeAdForResponseId:responseId]; + _mediaView.mediaContent = nativeAd.mediaContent; + _mediaView.contentMode = _contentMode; +} + +- (void)setResizeMode:(NSString *)resizeMode { + _resizeMode = resizeMode; + if ([resizeMode isEqualToString:@"cover"]) { + _contentMode = UIViewContentModeScaleAspectFill; + } else if ([resizeMode isEqualToString:@"contain"]) { + _contentMode = UIViewContentModeScaleAspectFit; + } else if ([resizeMode isEqualToString:@"stretch"]) { + _contentMode = UIViewContentModeScaleToFill; + } + _mediaView.contentMode = _contentMode; +} + +@end + +@implementation RNGoogleMobileAdsMediaViewManager + +RCT_EXPORT_MODULE(RNGoogleMobileAdsMediaView) + +RCT_EXPORT_VIEW_PROPERTY(responseId, NSString) + +RCT_EXPORT_VIEW_PROPERTY(resizeMode, NSString) + +#ifndef RCT_NEW_ARCH_ENABLED +- (UIView *)view { + return [[RNGoogleMobileAdsMediaView alloc] initWithBridge:self.bridge]; +} +#endif + +@end + +#ifdef RCT_NEW_ARCH_ENABLED +Class RNGoogleMobileAdsMediaViewCls(void) { + return RNGoogleMobileAdsMediaView.class; +} +#endif diff --git a/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeModule.h b/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeModule.h new file mode 100644 index 00000000..b3c2de29 --- /dev/null +++ b/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeModule.h @@ -0,0 +1,35 @@ +/** + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +#import +#import + +#ifdef RCT_NEW_ARCH_ENABLED +#import + +@interface RNGoogleMobileAdsNativeModule + : NativeGoogleMobileAdsNativeModuleSpecBase +#else +#import +#import + +@interface RNGoogleMobileAdsNativeModule : RCTEventEmitter +#endif + +- (GADNativeAd *)nativeAdForResponseId:(NSString *)responseId; + +@end diff --git a/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeModule.mm b/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeModule.mm new file mode 100644 index 00000000..217b970b --- /dev/null +++ b/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeModule.mm @@ -0,0 +1,290 @@ +/** + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +#if !TARGET_OS_MACCATALYST + +#import "RNGoogleMobileAdsNativeModule.h" +#import "RNGoogleMobileAdsCommon.h" + +typedef void (^RNGMANativeAdLoadCompletionHandler)(GADNativeAd *_Nullable nativeAd, + NSError *_Nullable error); + +@interface RNGMANativeAdHolder + : NSObject + +@property(strong, nullable) GADNativeAd *nativeAd; + +- (instancetype)initWithNativeModule:(RNGoogleMobileAdsNativeModule *)nativeModule + adUnitId:(NSString *)adUnitId + requestOptions:(NSDictionary *)requestOptions; + +- (void)loadWithCompletionHandler:(RNGMANativeAdLoadCompletionHandler)completionHandler; + +- (void)dispose; + +@end + +@implementation RNGoogleMobileAdsNativeModule { + NSMutableDictionary *_adHolders; +} + +RCT_EXPORT_MODULE(); + +- (dispatch_queue_t)methodQueue { + return dispatch_get_main_queue(); +} + +#ifdef RCT_NEW_ARCH_ENABLED +- (std::shared_ptr)getTurboModule: + (const facebook::react::ObjCTurboModule::InitParams &)params { + return std::make_shared(params); +} +#else +- (NSArray *)supportedEvents { + return @[ @"RNGMANativeAdEvent" ]; +} +#endif + +- (instancetype)init { + if (self = [super init]) { + _adHolders = [NSMutableDictionary dictionary]; + } + return self; +} + +RCT_EXPORT_METHOD( + load + : (NSString *)adUnitId requestOptions + : (NSDictionary *)requestOptions resolve + : (RCTPromiseResolveBlock)resolve reject + : (RCTPromiseRejectBlock)reject { + RNGMANativeAdHolder *adHolder = + [[RNGMANativeAdHolder alloc] initWithNativeModule:self + adUnitId:adUnitId + requestOptions:requestOptions]; + + [adHolder loadWithCompletionHandler:^(GADNativeAd *nativeAd, NSError *error) { + if (error != nil) { + reject(@"ERROR_LOAD", error.description, error); + return; + } + + NSString *responseId = nativeAd.responseInfo.responseIdentifier; + [_adHolders setValue:adHolder forKey:responseId]; + + resolve(@{ + @"responseId" : responseId, + @"advertiser" : nativeAd.advertiser ?: [NSNull null], + @"body" : nativeAd.body ?: [NSNull null], + @"callToAction" : nativeAd.callToAction ?: [NSNull null], + @"headline" : nativeAd.headline ?: [NSNull null], + @"price" : nativeAd.price ?: [NSNull null], + @"store" : nativeAd.store ?: [NSNull null], + @"starRating" : nativeAd.starRating ?: [NSNull null], + @"icon" : nativeAd.icon != nil + ? @{@"scale" : @(nativeAd.icon.scale), @"url" : nativeAd.icon.imageURL.absoluteString} + : [NSNull null], + @"mediaContent" : @{ + @"aspectRatio" : @(nativeAd.mediaContent.aspectRatio), + @"hasVideoContent" : @(nativeAd.mediaContent.hasVideoContent), + @"duration" : @(nativeAd.mediaContent.duration) + } + }); + }]; + }) + +RCT_EXPORT_METHOD(destroy + : (NSString *)responseId { + [[_adHolders valueForKey:responseId] dispose]; + [_adHolders removeObjectForKey:responseId]; + }); + +- (GADNativeAd *)nativeAdForResponseId:(NSString *)responseId { + return [_adHolders valueForKey:responseId].nativeAd; +} + +- (void)dealloc { + NSArray *adHolders = [_adHolders allValues]; + for (RNGMANativeAdHolder *adHolder in adHolders) { + [adHolder dispose]; + } + [_adHolders removeAllObjects]; +} + +@end + +#pragma mark - RNGMANativeAdHolder + +@implementation RNGMANativeAdHolder { + __weak RNGoogleMobileAdsNativeModule *_nativeModule; + GADAdLoader *_adLoader; + GAMRequest *_adRequest; + RNGMANativeAdLoadCompletionHandler _completionHandler; +} + +- (instancetype)initWithNativeModule:(RNGoogleMobileAdsNativeModule *)nativeModule + adUnitId:(NSString *)adUnitId + requestOptions:(NSDictionary *)requestOptions { + if (self = [super init]) { + _nativeModule = nativeModule; + + GADNativeAdImageAdLoaderOptions *imageOptions = [[GADNativeAdImageAdLoaderOptions alloc] init]; + // imageOptions.disableImageLoading = YES; + GADNativeAdMediaAdLoaderOptions *mediaOptions = [[GADNativeAdMediaAdLoaderOptions alloc] init]; + if (requestOptions[@"aspectRatio"]) { + switch ([requestOptions[@"aspectRatio"] intValue]) { + case 1: + mediaOptions.mediaAspectRatio = GADMediaAspectRatioAny; + break; + case 2: + mediaOptions.mediaAspectRatio = GADMediaAspectRatioLandscape; + break; + case 3: + mediaOptions.mediaAspectRatio = GADMediaAspectRatioPortrait; + break; + case 4: + mediaOptions.mediaAspectRatio = GADMediaAspectRatioSquare; + break; + } + } + GADNativeAdViewAdOptions *adViewOptions = [[GADNativeAdViewAdOptions alloc] init]; + if (requestOptions[@"aspectRatio"]) { + switch ([requestOptions[@"aspectRatio"] intValue]) { + case 0: + adViewOptions.preferredAdChoicesPosition = GADAdChoicesPositionTopLeftCorner; + break; + case 1: + adViewOptions.preferredAdChoicesPosition = GADAdChoicesPositionTopRightCorner; + break; + case 2: + adViewOptions.preferredAdChoicesPosition = GADAdChoicesPositionBottomRightCorner; + break; + case 3: + adViewOptions.preferredAdChoicesPosition = GADAdChoicesPositionBottomLeftCorner; + break; + } + } + GADVideoOptions *videoOptions = [[GADVideoOptions alloc] init]; + if (requestOptions[@"startVideoMuted"]) { + videoOptions.startMuted = [requestOptions[@"startVideoMuted"] boolValue]; + } + + _adLoader = [[GADAdLoader alloc] + initWithAdUnitID:adUnitId + rootViewController:[RNGoogleMobileAdsCommon currentViewController] + adTypes:@[ GADAdLoaderAdTypeNative ] + options:@[ imageOptions, mediaOptions, adViewOptions, videoOptions ]]; + _adLoader.delegate = self; + _adRequest = [RNGoogleMobileAdsCommon buildAdRequest:requestOptions]; + } + return self; +} + +- (void)loadWithCompletionHandler:(RNGMANativeAdLoadCompletionHandler)completionHandler { + _completionHandler = completionHandler; + [_adLoader loadRequest:_adRequest]; +} + +- (void)dispose { + _nativeAd = nil; + _nativeModule = nil; + _adLoader = nil; + _adRequest = nil; + _completionHandler = nil; +} + +#pragma mark - GADNativeAdLoaderDelegate + +- (void)adLoader:(nonnull GADAdLoader *)adLoader + didReceiveNativeAd:(nonnull GADNativeAd *)nativeAd { + _nativeAd = nativeAd; + _nativeAd.delegate = self; + if (nativeAd.mediaContent.hasVideoContent) { + nativeAd.mediaContent.videoController.delegate = self; + } + _completionHandler(nativeAd, nil); + _completionHandler = nil; +} + +- (void)adLoader:(nonnull GADAdLoader *)adLoader + didFailToReceiveAdWithError:(nonnull NSError *)error { + _completionHandler(nil, error); + _completionHandler = nil; +} + +#pragma mark - GADNativeAdDelegate + +- (void)nativeAdDidRecordImpression:(GADNativeAd *)nativeAd { + [self emitAdEvent:@"impression"]; +} + +- (void)nativeAdDidRecordClick:(GADNativeAd *)nativeAd { + [self emitAdEvent:@"clicked"]; +} + +- (void)nativeAdWillPresentScreen:(GADNativeAd *)nativeAd { + [self emitAdEvent:@"opened"]; +} + +- (void)nativeAdWillDismissScreen:(GADNativeAd *)nativeAd { + // Not in use +} + +- (void)nativeAdDidDismissScreen:(GADNativeAd *)nativeAd { + [self emitAdEvent:@"closed"]; +} + +- (void)nativeAdWillLeaveApplication:(GADNativeAd *)nativeAd { + // Not in use +} + +- (void)videoControllerDidPlayVideo:(nonnull GADVideoController *)videoController { + [self emitAdEvent:@"video_played"]; +} + +- (void)videoControllerDidPauseVideo:(nonnull GADVideoController *)videoController { + [self emitAdEvent:@"video_paused"]; +} + +- (void)videoControllerDidEndVideoPlayback:(nonnull GADVideoController *)videoController { + [self emitAdEvent:@"video_ended"]; +} + +- (void)videoControllerDidMuteVideo:(nonnull GADVideoController *)videoController { + [self emitAdEvent:@"video_muted"]; +} + +- (void)videoControllerDidUnmuteVideo:(nonnull GADVideoController *)videoController { + [self emitAdEvent:@"video_unmuted"]; +} + +- (void)emitAdEvent:(NSString *)type { + if (_nativeModule == nil || _nativeAd == nil) { + return; + } + NSDictionary *payload = + @{@"responseId" : _nativeAd.responseInfo.responseIdentifier, @"type" : type}; +#ifdef RCT_NEW_ARCH_ENABLED + [_nativeModule emitOnAdEvent:payload]; +#else + [_nativeModule sendEventWithName:@"RNGMANativeAdEvent" body:payload]; +#endif +} + +@end + +#endif diff --git a/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeView.h b/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeView.h new file mode 100644 index 00000000..c43526dc --- /dev/null +++ b/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeView.h @@ -0,0 +1,48 @@ +/** + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +#import +#import +#import + +#ifdef RCT_NEW_ARCH_ENABLED +#import +#else +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +#ifdef RCT_NEW_ARCH_ENABLED +@interface RNGoogleMobileAdsNativeView : RCTViewComponentView + +@property(nonatomic, strong, nullable) GADNativeAdView *contentView; +#else +@interface RNGoogleMobileAdsNativeView : GADNativeAdView + +- (instancetype)initWithBridge:(RCTBridge *)bridge; +#endif + +@property(nonatomic, copy) NSString *responseId; + +@end + +@interface RNGoogleMobileAdsNativeViewManager : RCTViewManager + +@end + +NS_ASSUME_NONNULL_END diff --git a/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeView.mm b/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeView.mm new file mode 100644 index 00000000..874b5f50 --- /dev/null +++ b/ios/RNGoogleMobileAds/RNGoogleMobileAdsNativeView.mm @@ -0,0 +1,218 @@ +/** + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +#import "RNGoogleMobileAdsNativeView.h" +#import "RNGoogleMobileAdsMediaView.h" +#import "RNGoogleMobileAdsNativeModule.h" + +#ifdef RCT_NEW_ARCH_ENABLED +#import +#import +#import +#import + +#import "RCTFabricComponentsPlugins.h" +#endif + +@interface RCTBridge (Private) ++ (RCTBridge *)currentBridge; +@end + +#ifdef RCT_NEW_ARCH_ENABLED +using namespace facebook::react; + +@interface RNGoogleMobileAdsNativeView () +@end +#endif + +@implementation RNGoogleMobileAdsNativeView { + __weak RCTBridge *_bridge; + __weak RNGoogleMobileAdsNativeModule *_nativeModule; + __weak GADNativeAd *_nativeAd; + GADNativeAdView *_nativeAdView; + dispatch_block_t _debouncedReload; +} + +#ifdef RCT_NEW_ARCH_ENABLED +#pragma mark - Fabric specific + +- (instancetype)initWithFrame:(CGRect)frame { + if (self = [super initWithFrame:frame]) { + static const auto defaultProps = std::make_shared(); + _props = defaultProps; + + _bridge = [RCTBridge currentBridge]; + _nativeModule = [_bridge moduleForClass:RNGoogleMobileAdsNativeModule.class]; + _nativeAdView = [[GADNativeAdView alloc] init]; + self.contentView = _nativeAdView; + } + + return self; +} + +#pragma mark - RCTComponentViewProtocol + ++ (ComponentDescriptorProvider)componentDescriptorProvider { + return concreteComponentDescriptorProvider(); +} + ++ (BOOL)shouldBeRecycled { + return NO; +} + +- (void)mountChildComponentView:(UIView *)childComponentView + index:(NSInteger)index { + [_nativeAdView insertSubview:childComponentView atIndex:index]; +} + +- (void)unmountChildComponentView:(UIView *)childComponentView + index:(NSInteger)index { + [childComponentView removeFromSuperview]; +} + +- (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const &)oldProps { + const auto &oldViewProps = + *std::static_pointer_cast(_props); + const auto &newViewProps = + *std::static_pointer_cast(props); + + if (oldViewProps.responseId != newViewProps.responseId) { + NSString *responseId = [[NSString alloc] initWithUTF8String:newViewProps.responseId.c_str()]; + [self setResponseId:responseId]; + } + + [super updateProps:props oldProps:oldProps]; +} + +- (void)handleCommand:(const NSString *)commandName args:(const NSArray *)args { + RCTRNGoogleMobileAdsNativeViewHandleCommand(self, commandName, args); +} + +#else +#pragma mark - Paper specific + +- (instancetype)initWithBridge:(RCTBridge *)bridge { + if (self = [super init]) { + _bridge = bridge; + _nativeModule = [_bridge moduleForClass:RNGoogleMobileAdsNativeModule.class]; + _nativeAdView = self; + } + return self; +} + +#endif // RCT_NEW_ARCH_ENABLED + +#pragma mark - Common logics + +- (void)setResponseId:(NSString *)responseId { + _responseId = responseId; + _nativeAd = [_nativeModule nativeAdForResponseId:responseId]; + [self reloadAd]; +} + +- (void)registerAsset:(NSString *)assetType reactTag:(NSInteger)reactTag { + RCTExecuteOnMainQueue(^{ + UIView *view = [_bridge.uiManager viewForReactTag:@(reactTag)]; + + if ([assetType isEqual:@"media"] && [view isKindOfClass:RNGoogleMobileAdsMediaView.class]) { +#ifdef RCT_NEW_ARCH_ENABLED + GADMediaView *mediaView = ((RNGoogleMobileAdsMediaView *)view).contentView; +#else + GADMediaView *mediaView = (RNGoogleMobileAdsMediaView *) view; +#endif + [_nativeAdView setMediaView:mediaView]; + [self reloadAd]; + return; + } + + NSDictionary *viewMappings = @{ + @"advertiser" : @"advertiserView", + @"body" : @"bodyView", + @"callToAction" : @"callToActionView", + @"headline" : @"headlineView", + @"price" : @"priceView", + @"store" : @"storeView", + @"starRating" : @"starRatingView", + @"icon" : @"iconView", + @"image" : @"imageView", + }; + NSString *property = viewMappings[assetType]; + if (property) { + view.userInteractionEnabled = NO; + [_nativeAdView setValue:view forKey:property]; + [self reloadAd]; + } + }); +} + +- (void)reloadAd { + if (_debouncedReload != nil) { + dispatch_block_cancel(_debouncedReload); + } + _debouncedReload = dispatch_block_create(DISPATCH_BLOCK_NO_QOS_CLASS, ^{ + if (_nativeAd != nil) { + _nativeAdView.nativeAd = _nativeAd; + } + }); + dispatch_time_t time = dispatch_time(DISPATCH_TIME_NOW, 0.1 * NSEC_PER_SEC); + dispatch_after(time, dispatch_get_main_queue(), _debouncedReload); +} + +- (void)dealloc { + _nativeAdView = nil; + if (_debouncedReload != nil) { + dispatch_block_cancel(_debouncedReload); + _debouncedReload = nil; + } +} + +@end + +@implementation RNGoogleMobileAdsNativeViewManager + +RCT_EXPORT_MODULE(RNGoogleMobileAdsNativeView) + +RCT_EXPORT_VIEW_PROPERTY(responseId, NSString) + +#ifndef RCT_NEW_ARCH_ENABLED +- (UIView *)view { + return [[RNGoogleMobileAdsNativeView alloc] initWithBridge:self.bridge]; +} + +RCT_EXPORT_METHOD(registerAsset + : (nonnull NSNumber *)reactTag commandID + : (NSInteger)commandID commandArgs + : (NSArray *)commandArgs) { + [self.bridge.uiManager + addUIBlock:^(RCTUIManager *uiManager, NSDictionary *viewRegistry) { + RNGoogleMobileAdsNativeView *view = viewRegistry[reactTag]; + if (!view || ![view isKindOfClass:[RNGoogleMobileAdsNativeView class]]) { + RCTLogError(@"Cannot find NativeView with tag #%@", reactTag); + return; + } + [view registerAsset:commandArgs[0] reactTag:((NSNumber *)commandArgs[1]).intValue]; + }]; +} +#endif + +@end + +#ifdef RCT_NEW_ARCH_ENABLED +Class RNGoogleMobileAdsNativeViewCls(void) { + return RNGoogleMobileAdsNativeView.class; +} +#endif diff --git a/jest.setup.ts b/jest.setup.ts index b26be8ea..373e25b6 100644 --- a/jest.setup.ts +++ b/jest.setup.ts @@ -50,3 +50,10 @@ jest.doMock('./src/specs/components/GoogleMobileAdsBannerViewNativeComponent', ( default: ReactNative.View, }; }); +jest.doMock('./src/specs/components/GoogleMobileAdsNativeViewNativeComponent', () => { + return { + __esModule: true, + Commands: {}, + default: ReactNative.View, + }; +}); diff --git a/refresh-example.sh b/refresh-example.sh index 3ac58aef..d6372262 100755 --- a/refresh-example.sh +++ b/refresh-example.sh @@ -20,6 +20,7 @@ else cp RNGoogleMobileAdsExample/.detoxrc.json TEMP/ # Custom detox settings cp RNGoogleMobileAdsExample/app.json TEMP/ # Our custom configuration settings / mobile ads app id etc cp RNGoogleMobileAdsExample/App.tsx TEMP/ # Our sample app + cp -r RNGoogleMobileAdsExample/patches TEMP/ # Our patches # Our Android DetoxTest integration itself is obviously custom mkdir -p TEMP/android/app/src/androidTest/java/com/rngooglemobileadsexample @@ -34,11 +35,11 @@ fi \rm -fr RNGoogleMobileAdsExample # Make the new RNGoogleMobileAdsExample -npm_config_yes=true npx react-native init RNGoogleMobileAdsExample --skip-install +npm_config_yes=true npx @react-native-community/cli init RNGoogleMobileAdsExample --skip-install --skip-git-init pushd RNGoogleMobileAdsExample rm -rf .ruby-version Gemfile Gemfile.lock _ruby-version _bundle .bundle yarn add 'link:../' -yarn add detox mocha jest-circus jest-environment-node @babel/preset-env typescript --dev +yarn add detox mocha jest-circus jest-environment-node @babel/preset-env typescript patch-package --dev #yarn add 'link:../../jet/' yarn add https://github.com/invertase/jet#@mikehardy/jet-next --dev @@ -47,8 +48,7 @@ yarn add https://github.com/invertase/jet#@mikehardy/jet-next --dev # echo "org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8" >> android/gradle.properties # Detox + Android -echo "Integrating Detox for Android (maven repo, dependency, build config items, kotlin...)" -sed -i -e $'s/ext {/ext {\\\n kotlinVersion = "1.7.10"/' android/build.gradle +echo "Integrating Detox for Android (maven repo, dependency, build config items)" sed -i -e $'s/dependencies {/dependencies {\\\n classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"/' android/build.gradle rm -f android/build.gradle?? sed -i -e $'s/dependencies {/dependencies {\\\n androidTestImplementation(project(path: ":detox"))/' android/app/build.gradle @@ -58,7 +58,7 @@ sed -i -e $'s/rootProject.name = \'RNGoogleMobileAdsExample\'/rootProject.name = rm -f android/settings.gradle?? # React-native builds on iOS are very noisy with warnings in other packages that drown our warnings out. Reduce warnings to just our packages. -sed -i -e $'s/__apply_Xcode_12_5_M1_post_install_workaround(installer)/__apply_Xcode_12_5_M1_post_install_workaround(installer)\\\n\\\n # quiet non-module warnings - only interested in google-mobile-ads warnings\\\n installer.pods_project.targets.each do |target|\\\n if !target.name.include? "react-native-google-mobile-ads"\\\n target.build_configurations.each do |config|\\\n config.build_settings["GCC_WARN_INHIBIT_ALL_WARNINGS"] = "YES"\\\n end\\\n end\\\n end/' ios/Podfile +sed -i -e $'s/# https/# quiet non-module warnings - only interested in google-mobile-ads warnings\\\n installer.pods_project.targets.each do |target|\\\n if !target.name.include? "react-native-google-mobile-ads"\\\n target.build_configurations.each do |config|\\\n config.build_settings["GCC_WARN_INHIBIT_ALL_WARNINGS"] = "YES"\\\n end\\\n end\\\n end\\\n\\\n # https/' ios/Podfile rm -f ios/Podfile?? # We want to easily test normal android release build setup, which is with proguard on @@ -67,15 +67,10 @@ rm -f android/app/build.gradle?? sed -i -e $'s/proguardFiles/proguardFile "${rootProject.projectDir}\/..\/node_modules\/detox\/android\/detox\/proguard-rules-app.pro"\\\n proguardFiles/' android/app/build.gradle rm -f android/app/build.gradle?? -# This is just a speed optimization, very optional, but asks xcodebuild to use clang and clang++ without the fully-qualified path -# That means that you can then make a symlink in your path with clang or clang++ and have it use a different binary -# In that way you can install ccache or buildcache and get much faster compiles... -sed -i -e $'s/__apply_Xcode_12_5_M1_post_install_workaround(installer)/__apply_Xcode_12_5_M1_post_install_workaround(installer)\\\n\\\n installer.pods_project.targets.each do |target|\\\n target.build_configurations.each do |config|\\\n config.build_settings["CC"] = "clang"\\\n config.build_settings["LD"] = "clang"\\\n config.build_settings["CXX"] = "clang++"\\\n config.build_settings["LDPLUSPLUS"] = "clang++"\\\n end\\\n end/' ios/Podfile +# Use ccache get much faster compiles... +sed -i -e $'s/# :ccache_enabled/:ccache_enabled/' ios/Podfile rm -f ios/Podfile?? -# run pod install after installing our module -npm_config_yes=true npx pod-install - # Copy the important files back in popd echo "Copying Google Mobile Ads customized example files into refreshed RNGoogleMobileAdsExample..." @@ -83,6 +78,16 @@ cp -frv TEMP/.detox* RNGoogleMobileAdsExample/ cp -frv TEMP/.mocha* RNGoogleMobileAdsExample/ rm -f RNGoogleMobileAdsExample/App.js cp -frv TEMP/* RNGoogleMobileAdsExample/ - # Clean up after ourselves -\rm -fr TEMP \ No newline at end of file +\rm -fr TEMP + +# Final install commands + +pushd RNGoogleMobileAdsExample + +# Set ourselves up to run patch-package on post-install +npm_config_yes=true npx json -I -f package.json -e 'this.scripts.postinstall = "yarn patch-package"' +yarn patch-package + +# run pod install after installing our module +npm_config_yes=true npx pod-install \ No newline at end of file diff --git a/src/NativeAdEventType.ts b/src/NativeAdEventType.ts new file mode 100644 index 00000000..7142edb1 --- /dev/null +++ b/src/NativeAdEventType.ts @@ -0,0 +1,46 @@ +export enum NativeAdEventType { + /** + * Called when an impression is recorded for an ad. + */ + IMPRESSION = 'impression', + + /** + * Called when a click is recorded for an ad. + */ + CLICKED = 'clicked', + + /** + * Called when an ad opens an overlay that covers the screen. + */ + OPENED = 'opened', + + /** + * Called when the user is about to return to the application after clicking on an ad. + */ + CLOSED = 'closed', + + /** + * Called when the video controller has begun or resumed playing a video + */ + VIDEO_PLAYED = 'video_played', + + /** + * Called when the video controller has paused video. + */ + VIDEO_PAUSED = 'video_paused', + + /** + * Called when the video controller’s video playback has ended. + */ + VIDEO_ENDED = 'video_ended', + + /** + * Called when the video controller has muted video. + */ + VIDEO_MUTED = 'video_muted', + + /** + * Called when the video controller has unmuted video. + */ + VIDEO_UNMUTED = 'video_unmuted', +} diff --git a/src/TestIds.ts b/src/TestIds.ts index 2bd77511..3d202f96 100644 --- a/src/TestIds.ts +++ b/src/TestIds.ts @@ -24,12 +24,15 @@ export const TestIds = { INTERSTITIAL: '', REWARDED: '', REWARDED_INTERSTITIAL: '', - GAM_APP_OPEN: '/6499/example/app-open', - GAM_BANNER: '/6499/example/banner', - GAM_INTERSTITIAL: '/6499/example/interstitial', - GAM_REWARDED: '/6499/example/rewarded', - GAM_REWARDED_INTERSTITIAL: '/21775744923/example/rewarded_interstitial', - GAM_NATIVE: '/6499/example/native', + NATIVE: '', + NATIVE_VIDEO: '', + GAM_APP_OPEN: '/21775744923/example/app-open', + GAM_BANNER: '/21775744923/example/fixed-size-banner', + GAM_INTERSTITIAL: '/21775744923/example/interstitial', + GAM_REWARDED: '/21775744923/example/rewarded', + GAM_REWARDED_INTERSTITIAL: '/21775744923/example/rewarded-interstitial', + GAM_NATIVE: '/21775744923/example/native', + GAM_NATIVE_VIDEO: '/21775744923/example/native-video', ...Platform.select({ android: { APP_OPEN: 'ca-app-pub-3940256099942544/9257395921', @@ -39,6 +42,8 @@ export const TestIds = { INTERSTITIAL_VIDEO: 'ca-app-pub-3940256099942544/8691691433', REWARDED: 'ca-app-pub-3940256099942544/5224354917', REWARDED_INTERSTITIAL: 'ca-app-pub-3940256099942544/5354046379', + NATIVE: 'ca-app-pub-3940256099942544/2247696110', + NATIVE_VIDEO: 'ca-app-pub-3940256099942544/1044960115', }, ios: { APP_OPEN: 'ca-app-pub-3940256099942544/5575463023', @@ -48,6 +53,8 @@ export const TestIds = { INTERSTITIAL_VIDEO: 'ca-app-pub-3940256099942544/5135589807', REWARDED: 'ca-app-pub-3940256099942544/1712485313', REWARDED_INTERSTITIAL: 'ca-app-pub-3940256099942544/6978759866', + NATIVE: 'ca-app-pub-3940256099942544/3986624511', + NATIVE_VIDEO: 'ca-app-pub-3940256099942544/2521693316', }, }), }; diff --git a/src/ads/native-ad/NativeAd.ts b/src/ads/native-ad/NativeAd.ts new file mode 100644 index 00000000..6f22829e --- /dev/null +++ b/src/ads/native-ad/NativeAd.ts @@ -0,0 +1,152 @@ +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import { EventSubscription, NativeEventEmitter, Platform } from 'react-native'; +import EventEmitter from 'react-native/Libraries/vendor/emitter/EventEmitter'; + +import { NativeAdEventType } from '../../NativeAdEventType'; +import { isFunction, isOneOf, isString } from '../../common'; +import NativeGoogleMobileAdsNativeModule, { + NativeAdEventPayload, + NativeAdImage, + NativeAdProps, + NativeMediaContent, +} from '../../specs/modules/NativeGoogleMobileAdsNativeModule'; +import { NativeAdRequestOptions } from '../../types'; +import { validateAdRequestOptions } from '../../validateAdRequestOptions'; + +/** + * A class for loading Native Ads. + */ +export class NativeAd { + readonly adUnitId: string; + readonly responseId: string; + readonly advertiser: string | null; + readonly body: string; + readonly callToAction: string; + readonly headline: string; + readonly price: string | null; + readonly store: string | null; + readonly starRating: number | null; + readonly icon: NativeAdImage | null; + readonly images: Array | null; + readonly mediaContent: NativeMediaContent | null; + readonly extras: Record | null; + + private nativeEventSubscription: EventSubscription; + private eventEmitter: EventEmitter; + + private constructor(adUnitId: string, props: NativeAdProps) { + this.adUnitId = adUnitId; + this.responseId = props.responseId; + this.advertiser = props.advertiser; + this.body = props.body; + this.callToAction = props.callToAction; + this.headline = props.headline; + this.price = props.price; + this.store = props.store; + this.starRating = props.starRating; + this.icon = props.icon; + this.images = props.images; + this.mediaContent = props.mediaContent; + this.extras = props.extras as Record; + + if ('onAdEvent' in NativeGoogleMobileAdsNativeModule) { + this.nativeEventSubscription = NativeGoogleMobileAdsNativeModule.onAdEvent( + this.onNativeAdEvent.bind(this), + ); + } else { + let eventEmitter; + if (Platform.OS === 'ios') { + eventEmitter = new NativeEventEmitter(NativeGoogleMobileAdsNativeModule); + } else { + eventEmitter = new NativeEventEmitter(); + } + this.nativeEventSubscription = eventEmitter.addListener( + 'RNGMANativeAdEvent', + this.onNativeAdEvent.bind(this), + ); + } + this.eventEmitter = new EventEmitter(); + } + + private onNativeAdEvent({ responseId, type }: NativeAdEventPayload) { + if (this.responseId !== responseId) { + return; + } + this.eventEmitter.emit(type); + } + + addAdEventListener(type: NativeAdEventType, listener: () => void) { + if (!isOneOf(type, Object.values(NativeAdEventType))) { + throw new Error(`NativeAd.addAdEventListener(*) 'type' expected a valid event type value.`); + } + if (!isFunction(listener)) { + throw new Error(`NativeAd.addAdEventListener(_, *) 'listener' expected a function.`); + } + + return this.eventEmitter.addListener(type, listener); + } + + removeAllAdEventListeners() { + this.eventEmitter.removeAllListeners(); + } + + destroy() { + NativeGoogleMobileAdsNativeModule.destroy(this.responseId); + this.nativeEventSubscription.remove(); + this.removeAllAdEventListeners(); + } + + /** + * Creates a new NativeAd instance. + * + * #### Example + * + * ```js + * import { NativeAd, AdEventType, TestIds } from 'react-native-google-mobile-ads'; + * + * const nativeAd = await NativeAd.createForAdRequest(TestIds.NATIVE, { + * requestAgent: 'CoolAds', + * }); + * ``` + * + * @param adUnitId The Ad Unit ID for the Native Ad. You can find this on your Google Mobile Ads dashboard. + * @param requestOptions Optional RequestOptions used to load the ad. + */ + static async createForAdRequest( + adUnitId: string, + requestOptions?: NativeAdRequestOptions, + ): Promise { + if (!isString(adUnitId)) { + throw new Error("NativeAd.createForAdRequest(*) 'adUnitId' expected an string value."); + } + + let options = {}; + try { + options = validateAdRequestOptions(requestOptions); + } catch (e) { + if (e instanceof Error) { + throw new Error(`NativeAd.createForAdRequest(_, *) ${e.message}.`); + } + } + + const props = await NativeGoogleMobileAdsNativeModule.load(adUnitId, options); + + return new NativeAd(adUnitId, props); + } +} diff --git a/src/ads/native-ad/NativeAdContext.ts b/src/ads/native-ad/NativeAdContext.ts new file mode 100644 index 00000000..63f152bf --- /dev/null +++ b/src/ads/native-ad/NativeAdContext.ts @@ -0,0 +1,26 @@ +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import { NativeAd } from './NativeAd'; +import React, { createContext, RefObject } from 'react'; +import type GoogleMobileAdsNativeView from '../../specs/components/GoogleMobileAdsNativeViewNativeComponent'; + +type NativeAdContextType = { + nativeAd: NativeAd; + viewRef: RefObject>; +}; +export const NativeAdContext = createContext({} as NativeAdContextType); diff --git a/src/ads/native-ad/NativeAdView.tsx b/src/ads/native-ad/NativeAdView.tsx new file mode 100644 index 00000000..97d2f086 --- /dev/null +++ b/src/ads/native-ad/NativeAdView.tsx @@ -0,0 +1,43 @@ +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import React, { useRef } from 'react'; +import { ViewProps } from 'react-native'; +import { NativeAd } from './NativeAd'; +import { NativeAdContext } from './NativeAdContext'; +import GoogleMobileAdsNativeView from '../../specs/components/GoogleMobileAdsNativeViewNativeComponent'; + +export type NativeAdViewProps = ViewProps & { + nativeAd: NativeAd; +}; + +export const NativeAdView = (props: NativeAdViewProps) => { + const { nativeAd, children, ...viewProps } = props; + const ref = useRef>(null); + return ( + + + {children} + + + ); +}; diff --git a/src/ads/native-ad/NativeAsset.tsx b/src/ads/native-ad/NativeAsset.tsx new file mode 100644 index 00000000..49406669 --- /dev/null +++ b/src/ads/native-ad/NativeAsset.tsx @@ -0,0 +1,66 @@ +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import React, { ReactElement, useContext, useEffect, useRef } from 'react'; +import { findNodeHandle } from 'react-native'; +import { NativeAdContext } from './NativeAdContext'; +import { Commands } from '../../specs/components/GoogleMobileAdsNativeViewNativeComponent'; +import { composeRefs, getElementRef } from '../../common/ref'; + +export enum NativeAssetType { + ADVERTISER = 'advertiser', + BODY = 'body', + CALL_TO_ACTION = 'callToAction', + HEADLINE = 'headline', + PRICE = 'price', + STORE = 'store', + STAR_RATING = 'starRating', + ICON = 'icon', + IMAGE = 'image', +} + +export type NativeAssetProps = { + assetType: NativeAssetType; + children: ReactElement; +}; + +export const NativeAsset = (props: NativeAssetProps) => { + const { assetType, children } = props; + const { viewRef } = useContext(NativeAdContext); + const ref = useRef(null); + + useEffect(() => { + if (!viewRef.current) { + return; + } + const node = ref.current; + const reactTag = findNodeHandle(node); + if (reactTag) { + Commands.registerAsset(viewRef.current, assetType, reactTag); + } + }, [viewRef]); + + if (!React.isValidElement(children)) { + return null; + } + + const childrenRef = getElementRef(children); + return React.cloneElement(children, { + // @ts-ignore + ref: composeRefs(ref, childrenRef), + }) as ReactElement; +}; diff --git a/src/ads/native-ad/NativeMediaView.tsx b/src/ads/native-ad/NativeMediaView.tsx new file mode 100644 index 00000000..b7827340 --- /dev/null +++ b/src/ads/native-ad/NativeMediaView.tsx @@ -0,0 +1,44 @@ +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import React, { useContext } from 'react'; +import { ViewProps } from 'react-native'; +import GoogleMobileAdsMediaView from '../../specs/components/GoogleMobileAdsMediaViewNativeComponent'; +import { NativeAsset } from './NativeAsset'; +import { NativeAdContext } from './NativeAdContext'; + +export type NativeMediaViewProps = ViewProps & { + resizeMode?: 'cover' | 'contain' | 'stretch'; +}; + +export const NativeMediaView = (props: NativeMediaViewProps) => { + const { resizeMode, style, ...viewProps } = props; + const { nativeAd } = useContext(NativeAdContext); + const { responseId, mediaContent } = nativeAd; + + return ( + // @ts-ignore + + + + ); +}; diff --git a/src/common/ref.ts b/src/common/ref.ts new file mode 100644 index 00000000..80ad11ab --- /dev/null +++ b/src/common/ref.ts @@ -0,0 +1,44 @@ +import React from 'react'; + +type PossibleRef = React.Ref | undefined; +interface ElementWithRef extends React.ReactElement { + ref?: PossibleRef; +} + +/** + * Access the ref using the method that doesn't yield a warning. + * + * Before React 19 accessing `element.props.ref` will throw a warning and suggest using `element.ref` + * After React 19 accessing `element.ref` does the opposite. + * https://github.com/facebook/react/pull/28348 + */ +export function getElementRef(element: React.ReactElement): PossibleRef { + // React <=18 in DEV + let getter = Object.getOwnPropertyDescriptor(element.props, 'ref')?.get; + let mayWarn = getter && 'isReactWarning' in getter && getter.isReactWarning; + if (mayWarn) { + return (element as ElementWithRef).ref; + } + + // React 19 in DEV + getter = Object.getOwnPropertyDescriptor(element, 'ref')?.get; + mayWarn = getter && 'isReactWarning' in getter && getter.isReactWarning; + if (mayWarn) { + return element.props.ref; + } + + // Not DEV + return element.props.ref || (element as ElementWithRef).ref; +} + +export function composeRefs(...refs: PossibleRef[]) { + return (value: T) => { + refs.forEach(ref => { + if (typeof ref === 'function') { + ref(value); + } else if (ref !== null && ref !== undefined) { + (ref as React.MutableRefObject).current = value; + } + }); + }; +} diff --git a/src/index.ts b/src/index.ts index f1580c03..e8ad3b2b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -37,6 +37,7 @@ export { TestIds } from './TestIds'; export { AdEventType } from './AdEventType'; export { BannerAdSize, GAMBannerAdSize } from './BannerAdSize'; export { GAMAdEventType } from './GAMAdEventType'; +export { NativeAdEventType } from './NativeAdEventType'; export { RewardedAdEventType } from './RewardedAdEventType'; export { AdsConsent } from './AdsConsent'; export { AppOpenAd } from './ads/AppOpenAd'; @@ -44,6 +45,10 @@ export { InterstitialAd } from './ads/InterstitialAd'; export { RewardedAd } from './ads/RewardedAd'; export { RewardedInterstitialAd } from './ads/RewardedInterstitialAd'; export { BannerAd } from './ads/BannerAd'; +export { NativeAd } from './ads/native-ad/NativeAd'; +export { NativeAdView } from './ads/native-ad/NativeAdView'; +export { NativeMediaView } from './ads/native-ad/NativeMediaView'; +export { NativeAsset, NativeAssetType } from './ads/native-ad/NativeAsset'; export { GAMBannerAd } from './ads/GAMBannerAd'; export { GAMInterstitialAd } from './ads/GAMInterstitialAd'; export { useAppOpenAd } from './hooks/useAppOpenAd'; diff --git a/src/specs/components/GoogleMobileAdsBannerViewNativeComponent.ts b/src/specs/components/GoogleMobileAdsBannerViewNativeComponent.ts index 98c0eb81..97c3b6f6 100644 --- a/src/specs/components/GoogleMobileAdsBannerViewNativeComponent.ts +++ b/src/specs/components/GoogleMobileAdsBannerViewNativeComponent.ts @@ -1,3 +1,20 @@ +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + import type * as React from 'react'; import type { HostComponent, ViewProps } from 'react-native'; import type { BubblingEventHandler, Float } from 'react-native/Libraries/Types/CodegenTypes'; diff --git a/src/specs/components/GoogleMobileAdsMediaViewNativeComponent.ts b/src/specs/components/GoogleMobileAdsMediaViewNativeComponent.ts new file mode 100644 index 00000000..5465164f --- /dev/null +++ b/src/specs/components/GoogleMobileAdsMediaViewNativeComponent.ts @@ -0,0 +1,30 @@ +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import type { HostComponent, ViewProps } from 'react-native'; +import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; + +export interface NativeProps extends ViewProps { + responseId: string; + resizeMode?: string; +} + +type NativeViewComponentType = HostComponent; + +export default codegenNativeComponent( + 'RNGoogleMobileAdsMediaView', +) as NativeViewComponentType; diff --git a/src/specs/components/GoogleMobileAdsNativeViewNativeComponent.ts b/src/specs/components/GoogleMobileAdsNativeViewNativeComponent.ts new file mode 100644 index 00000000..1c0f1d98 --- /dev/null +++ b/src/specs/components/GoogleMobileAdsNativeViewNativeComponent.ts @@ -0,0 +1,44 @@ +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import type * as React from 'react'; +import type { HostComponent, ViewProps } from 'react-native'; +import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; +import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands'; +import type { Int32 } from 'react-native/Libraries/Types/CodegenTypes'; + +export interface NativeProps extends ViewProps { + responseId: string; +} + +type NativeViewComponentType = HostComponent; + +interface NativeCommands { + registerAsset: ( + viewRef: React.ElementRef, + assetType: string, + reactTag: Int32, + ) => void; +} + +export const Commands: NativeCommands = codegenNativeCommands({ + supportedCommands: ['registerAsset'], +}); + +export default codegenNativeComponent( + 'RNGoogleMobileAdsNativeView', +) as NativeViewComponentType; diff --git a/src/specs/modules/NativeGoogleMobileAdsModule.ts b/src/specs/modules/NativeGoogleMobileAdsModule.ts index d82f1ee3..358a0fab 100644 --- a/src/specs/modules/NativeGoogleMobileAdsModule.ts +++ b/src/specs/modules/NativeGoogleMobileAdsModule.ts @@ -1,4 +1,4 @@ -/** +/* * Copyright (c) 2016-present Invertase Limited & Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -17,7 +17,7 @@ import type { TurboModule } from 'react-native'; import { TurboModuleRegistry } from 'react-native'; -import { UnsafeObject } from 'react-native/Libraries/Types/CodegenTypes'; +import type { UnsafeObject } from 'react-native/Libraries/Types/CodegenTypes'; import { AdapterStatus } from '../../types'; diff --git a/src/specs/modules/NativeGoogleMobileAdsNativeModule.ts b/src/specs/modules/NativeGoogleMobileAdsNativeModule.ts new file mode 100644 index 00000000..46c98ec5 --- /dev/null +++ b/src/specs/modules/NativeGoogleMobileAdsNativeModule.ts @@ -0,0 +1,64 @@ +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import type { TurboModule } from 'react-native'; +import { TurboModuleRegistry } from 'react-native'; +import type { + Double, + Float, + UnsafeObject, + EventEmitter, +} from 'react-native/Libraries/Types/CodegenTypes'; + +export type NativeAdProps = { + responseId: string; + advertiser: string | null; + body: string; + callToAction: string; + headline: string; + price: string | null; + store: string | null; + starRating: Double | null; + icon: NativeAdImage | null; + images: Array | null; + mediaContent: NativeMediaContent; + extras: UnsafeObject | null; +}; + +export type NativeAdImage = { + url: string; + scale: Double; +}; + +export type NativeMediaContent = { + aspectRatio: Float; + hasVideoContent: boolean; + duration: Float; +}; + +export type NativeAdEventPayload = { + responseId: string; + type: string; +}; + +export interface Spec extends TurboModule { + load(adUnitId: string, requestOptions: UnsafeObject): Promise; + destroy(responseId: string): void; + readonly onAdEvent: EventEmitter; +} + +export default TurboModuleRegistry.getEnforcing('RNGoogleMobileAdsNativeModule'); diff --git a/src/types/NativeAdRequestOptions.ts b/src/types/NativeAdRequestOptions.ts new file mode 100644 index 00000000..255355f0 --- /dev/null +++ b/src/types/NativeAdRequestOptions.ts @@ -0,0 +1,55 @@ +/* + * Copyright (c) 2016-present Invertase Limited & Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this library except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +import { RequestOptions } from './RequestOptions'; + +export enum NativeMediaAspectRatio { + ANY = 1, + LANDSCAPE = 2, + PORTRAIT = 3, + SQUARE = 4, +} + +export enum NativeAdChoicesPlacement { + TOP_LEFT = 0, + TOP_RIGHT = 1, + BOTTOM_RIGHT = 2, + BOTTOM_LEFT = 3, +} + +export interface NativeAdRequestOptions extends RequestOptions { + /** + * Specifies a preference for the aspect ratio of ad creatives. + * Setting this option does not guarantee that all ad creatives will meet the preference specified. + * - When unset, the returned ad can have any media aspect ratio. + * - When set, you will be able to improve the user experience by specifying the preferred type of aspect ratio. + */ + aspectRatio?: NativeMediaAspectRatio; + /** + * Chooses which corner to render the AdChoices icon. + * - If unset, the AdChoices icon position is set to the top right. + * - If set, AdChoices is placed at the custom position as requested. + */ + adChoicesPlacement?: NativeAdChoicesPlacement; + /** + * Disables or enables a video's starting audio. + * - The start muted behavior is enabled by default. + * - When disabled, your app requests the video should begin with audio. + * - When enabled, your app requests that the video should begin with audio muted. + */ + startVideoMuted?: boolean; +} diff --git a/src/types/index.ts b/src/types/index.ts index deeec585..c46ce629 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -26,3 +26,4 @@ export * from './RequestConfiguration'; export * from './RequestOptions'; export * from './RewardedAdReward'; export * from './AppEvent'; +export * from './NativeAdRequestOptions';